@font-face{font-family:"Archivo Black";src:url("fonts/archivo-black.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Archivo";src:url("fonts/archivo-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Archivo";src:url("fonts/archivo-500.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"Archivo";src:url("fonts/archivo-600.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}

:root {
  --green: #1F3D2B;
  --green-hover: #2C5239;
  --parch: #F1EBDD;
  --parch-deep: #E6DEC9;
  --field: #FAF7EF;
  --brass: #B8893B;
  --black: #141310;
  --muted: #47594D;
  --radius: 6px;
  --wrap: 1120px;
  --display: "Archivo Black", "Archivo", Impact, "Arial Black", sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--parch);
  color: var(--green);
  font: 400 17px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* setup bar (removed when setupDone is true) */
.setup-bar {
  background: var(--black);
  color: var(--parch);
  font: 500 14px/1.4 var(--body);
  padding: 10px 24px;
  text-align: center;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--parch);
  border-bottom: 3px solid var(--brass);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.logo img { height: 42px; width: auto; }
.hdr-right { display: flex; align-items: center; gap: 20px; }
.hdr-phone {
  font-family: var(--display);
  font-size: 22px;
  text-decoration: none;
  white-space: nowrap;
}
.hdr-phone:hover { text-decoration: underline; text-underline-offset: 5px; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  color: var(--parch);
  background: var(--green);
  border: 3px solid var(--green);
  border-radius: var(--radius);
  cursor: pointer;
}
.btn:hover { background: var(--green-hover); border-color: var(--green-hover); }
.btn.alt { background: transparent; color: var(--green); }
.btn.alt:hover { background: var(--green); color: var(--parch); }
.btn.small { min-height: 46px; padding: 0 20px; font-size: 16px; }

/* hero */
.hero { padding: 64px 0 72px; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(38px, 5.2vw, 60px); }
.hero p { font-size: 20px; max-width: 30em; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* photo slot: shows the size until the photo file is added */
.ph {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--parch-deep);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph .ph-size {
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 88px);
  color: rgba(31, 61, 43, 0.3);
}

/* info strip */
.info { background: var(--green); color: var(--parch); }
.info .wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.info small { display: block; font-size: 14px; color: #C9CFBF; }
.info strong, .info a { font-family: var(--display); font-weight: 400; font-size: 19px; text-decoration: none; }
.info a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* sections */
.section { padding: 80px 0; }
.section h2 { font-size: clamp(32px, 4.6vw, 52px); }
.lead { font-size: 19px; margin: 14px 0 0; max-width: 34em; }

/* rate board */
.board { margin-top: 40px; }
.row {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr) 210px;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-top: 3px solid var(--brass);
}
.row:last-child { border-bottom: 3px solid var(--brass); }
.size {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.size small { font-size: 0.32em; margin-left: 6px; letter-spacing: 0; }
.row h3 { font-family: var(--body); font-weight: 600; font-size: 22px; letter-spacing: 0; line-height: 1.25; margin: 10px 0 6px; }
.row p { margin: 0; max-width: 30em; }
.price { font-family: var(--display); font-size: 42px; line-height: 1; }
.price small { font-family: var(--body); font-weight: 500; font-size: 16px; margin-left: 4px; }
.subrates { font-size: 15px; line-height: 1.5; color: var(--muted); margin-top: 8px; }
.row-cta { display: flex; flex-direction: column; gap: 14px; }

/* steps */
.band { background: var(--parch-deep); }
.steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.steps li { border-top: 3px solid var(--brass); padding-top: 18px; }
.steps .n { display: block; font-family: var(--display); font-size: 48px; line-height: 1; margin-bottom: 12px; }
.steps p { margin: 0; }

/* faq */
.faq { margin-top: 36px; max-width: 760px; }
.faq details { border-top: 1px solid rgba(31, 61, 43, 0.3); }
.faq details:last-child { border-bottom: 1px solid rgba(31, 61, 43, 0.3); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  font-weight: 600;
  font-size: 19px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 26px;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 16px; max-width: 38em; }
.faq details p:last-child { margin-bottom: 22px; }
.faq ul { margin: 0 0 16px; padding-left: 22px; max-width: 38em; }
.faq li { margin-bottom: 6px; }

/* form */
.request { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 64px; align-items: start; }
form .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
form .full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  font: 400 17px var(--body);
  color: var(--green);
  background: var(--field);
  border: 2px solid var(--green);
  border-radius: var(--radius);
}
textarea { min-height: 110px; resize: vertical; }
form .btn { width: 100%; margin-top: 4px; }
.optional { font-weight: 400; color: var(--muted); }

.contact-box { border-top: 3px solid var(--brass); padding-top: 22px; }
.contact-box .big {
  display: block;
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 50px);
  line-height: 1.05;
  text-decoration: none;
  margin: 6px 0 20px;
}
.contact-box p { margin: 0 0 14px; }
.contact-box small { display: block; font-size: 14px; color: var(--muted); }

/* footer */
.site-footer { background: var(--black); color: var(--parch); padding: 52px 0 40px; }
.site-footer .wrap { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.site-footer img { height: 38px; width: auto; }
.site-footer p { margin: 14px 0 0; color: #C9CFBF; font-size: 15px; }
.site-footer h3 { font-family: var(--body); font-weight: 600; font-size: 15px; letter-spacing: 0; color: #C9CFBF; margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-footer :focus-visible { outline-color: var(--parch); }
.site-footer .fine { grid-column: 1 / -1; border-top: 1px solid rgba(241, 235, 221, 0.2); padding-top: 22px; margin-top: 8px; font-size: 14px; color: #C9CFBF; }

/* plain pages (thanks, privacy) */
.page { padding: 72px 0 96px; }
.page .prose { max-width: 700px; }
.page h1 { font-size: clamp(38px, 5.5vw, 62px); margin-bottom: 22px; }
.page h2 { font-size: 26px; margin: 36px 0 8px; }
.page p { margin: 0 0 16px; }

/* mobile call bar */
.callbar { display: none; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 48px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .row { grid-template-columns: 1fr; gap: 18px; }
  .row-cta { flex-direction: row; align-items: center; justify-content: space-between; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .request { grid-template-columns: 1fr; gap: 48px; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .site-footer .brand { grid-column: 1 / -1; }
  .section { padding: 60px 0; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .site-header .wrap { min-height: 64px; }
  .logo img { height: 34px; }
  .hdr-right { display: none; }
  .info .wrap { grid-template-columns: 1fr; gap: 14px; }
  .callbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 30;
    background: var(--green);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .callbar a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--parch);
    font-family: var(--display);
    font-size: 16px;
    text-decoration: none;
    border-left: 1px solid rgba(241, 235, 221, 0.25);
  }
  .callbar a:first-child { border-left: 0; }
  .callbar :focus-visible { outline-color: var(--parch); outline-offset: -5px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero p { font-size: 18px; }
  .steps { grid-template-columns: 1fr; }
  form .grid { grid-template-columns: 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.hp { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }
