/* ============================================================
   Authentic Couple — authenticcouple.com
   ============================================================ */

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #faf8f2;
  color: #353f38;
  font-family: 'Work Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #537458; text-decoration: none; }
a:hover { color: #b07a2c; }
::selection { background: #e2e7db; }
:focus-visible { outline: 2px solid #b07a2c; outline-offset: 2px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.wrap { max-width: 1080px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

section { scroll-margin-top: 80px; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7e2d4;
}
.nav-inner {
  padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.brand {
  font-family: 'Source Serif 4', serif;
  font-size: 20px; font-weight: 600; color: #405644;
  letter-spacing: .01em;
  display: flex; align-items: center; gap: 10px;
}
.brand:hover { color: #405644; }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: #576159; }
.nav-links a:hover { color: #b07a2c; }
.nav-links a.nav-cta {
  color: #405644;
  border: 1px solid #849e85;
  border-radius: 999px;
  padding: 5px 14px;
  margin: -6px 0;
}
.nav-links a.nav-cta:hover { background: #ecefe8; color: #405644; }

/* ---------- Hero ----------
   By default the hero shows the soft green gradient below. A background
   photo can be published from the Foliokind mirror ("Hero background");
   when one is set, the template adds .has-photo, which lays a dark wash
   over the photo and switches the hero text to light so it stays readable.
   No code changes needed to add or remove the photo — it's all editable. */
.hero {
  position: relative;
  background: linear-gradient(180deg, #faf5e9 0%, #faf8f2 88%);
  border-bottom: 1px solid #eee9dc;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg.has-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(41, 53, 43, .62) 0%, rgba(41, 53, 43, .38) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 88px; padding-bottom: 72px; animation: rise .7s ease both; }
.hero.has-photo .hero-title { color: #fdfcf8; }
.hero.has-photo .hero-sub { color: #e7ecdf; }
.hero.has-photo .kicker { color: #e8c98a; }
.hero.has-photo .btn-ghost { color: #faf8f2; border-color: rgba(250, 248, 242, .55); }
.hero.has-photo .btn-ghost:hover { background: rgba(250, 248, 242, .14); color: #fff; }

.kicker {
  margin: 0 0 18px;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: #b07a2c;
}

.hero-title {
  margin: 0;
  font-family: 'Source Serif 4', serif;
  font-weight: 500;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.12;
  color: #334638;
  max-width: 17ch;
  text-wrap: pretty;
}
.hero-sub {
  margin: 26px 0 0;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  max-width: 56ch;
  color: #576159;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
}
.btn-primary { background: #537458; color: #faf8f2; }
.btn-primary:hover { background: #45644a; color: #faf8f2; }
.btn-ghost { color: #537458; border: 1px solid #bfcab9; }
.btn-ghost:hover { background: #faf5e9; color: #537458; }

.hero-leaves { display: flex; gap: 8px; margin-top: 64px; opacity: .8; }

/* ---------- Section headings ---------- */
.section-title {
  margin: 0 0 48px;
  font-family: 'Source Serif 4', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 36px);
  color: #334638;
}
.section-title.tight { margin-bottom: 16px; max-width: 22ch; }

/* ---------- About ---------- */
.about-grid {
  padding-top: 84px; padding-bottom: 84px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: start;
}
.about-grid .section-title { margin-bottom: 24px; }
.about-text p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.75; color: #49534b; }
.about-text p:last-child { margin-bottom: 0; }

.portrait { margin: 0; justify-self: center; max-width: 420px; width: 100%; }
/* The portrait is a swappable Foliokind photo region. .photo-david is the
   design's default image; a photo published from the mirror overrides it. */
.portrait-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(60, 90, 71, .18);
  background-size: cover;
  background-position: 50% 50%;
}
.photo-david { background-image: url('/images/david-brundige.jpg'); }
.portrait figcaption { margin-top: 12px; font-size: 13.5px; color: #8c8f82; text-align: center; }

/* ---------- Approach ---------- */
.band-green { background: #faf5e9; border-top: 1px solid #eadfc4; border-bottom: 1px solid #eadfc4; }
.section-pad { padding-top: 84px; padding-bottom: 84px; }
.section-lede { margin: 0 0 48px; font-size: 16.5px; line-height: 1.7; color: #576159; max-width: 62ch; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: #faf8f2;
  border: 1px solid #eadfc4;
  border-radius: 12px;
  padding: 28px;
}
.card-num { font-family: 'Source Serif 4', serif; font-size: 15px; color: #b07a2c; margin-bottom: 12px; }
.card h3 {
  margin: 0 0 10px;
  font-family: 'Source Serif 4', serif;
  font-weight: 500; font-size: 20px; color: #334638;
}
.card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: #576159; }

.approach-note { margin: 44px 0 0; font-size: 15px; line-height: 1.7; color: #6d786d; max-width: 62ch; }

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.svc {
  border: 1px solid #e7e2d4;
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.svc h3 { margin: 0; font-family: 'Source Serif 4', serif; font-weight: 500; font-size: 22px; color: #334638; }
.svc p { margin: 0; font-size: 15.5px; line-height: 1.65; color: #576159; flex: 1; }
.svc .svc-price { margin: 0; font-size: 14px; color: #8c8f82; flex: 0; }
.svc-featured {
  border: 1.5px solid #b07a2c;
  background: linear-gradient(180deg, #faf5e9, #faf8f2 70%);
}
.svc-tag {
  margin: 0;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: #b07a2c;
}

/* ---------- Stories ---------- */
.band-cream { background: #faf5e9; border-top: 1px solid #eee9dc; border-bottom: 1px solid #eee9dc; }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.quote {
  margin: 0;
  background: #faf8f2;
  border: 1px solid #e7e2d4;
  border-radius: 12px;
  padding: 32px;
}
.quote p {
  margin: 0 0 18px;
  font-family: 'Source Serif 4', serif;
  font-size: 18.5px; line-height: 1.7; color: #405644;
}
.quote footer { font-size: 14.5px; font-weight: 600; color: #b07a2c; }

/* ---------- FAQ ---------- */
.narrow { max-width: 780px; }
#faq .section-title { margin-bottom: 36px; }
.faq-item { border-bottom: 1px solid #e7e2d4; padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { font-weight: 600; font-size: 16.5px; color: #334638; cursor: pointer; }
.faq-item p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.7; color: #576159; }

/* ---------- Contact ---------- */
.contact-band { background: #faf5e9; border-top: 1px solid #eadfc4; }
.contact-inner { max-width: 680px; padding-top: 84px; padding-bottom: 96px; }
.contact-inner .section-title { margin-bottom: 14px; }
.contact-lede { margin: 0 0 36px; font-size: 16px; line-height: 1.7; color: #576159; }

.contact-form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; font-size: 14px; font-weight: 600; color: #405644; }
.field input,
.field select,
.field textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid #ccd1c5;
  border-radius: 8px;
  background: #faf8f2;
  color: #353f38;
}
.field textarea { resize: vertical; }

.radio-label { font-size: 14px; font-weight: 600; color: #405644; }
.radio-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 15px; color: #49534b; }
.radio-row label { display: flex; align-items: center; gap: 7px; cursor: pointer; font-weight: 400; }
.radio-row input { accent-color: #537458; }

/* Honeypot — hidden from humans, bots fill it in */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-submit {
  font-family: 'Work Sans', sans-serif;
  background: #537458;
  color: #faf8f2;
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
}
.btn-submit:hover { background: #45644a; }
.btn-submit:active { background: #3a543c; }

.form-status { margin: 12px 0 0; font-size: 13.5px; color: #8c8f82; }
.form-status.ok { color: #45644a; font-weight: 600; }
.form-status.err { color: #a04b2c; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #405644; color: #dee4dc; }
.footer-inner {
  padding-top: 40px; padding-bottom: 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 14px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Source Serif 4', serif; font-size: 17px; }
.footer-meta { color: #afbcac; }

/* ---------- 404 page ---------- */
.error-page { text-align: center; padding-top: 120px; padding-bottom: 120px; }
.error-page h1 {
  font-family: 'Source Serif 4', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 44px);
  color: #334638;
  margin: 24px 0 14px;
}
.error-page p { color: #576159; font-size: 16.5px; line-height: 1.7; margin: 0 0 32px; }
