/* ---------- Design tokens ---------- */
:root {
  --ink: #2C3A50;
  --ink-soft: #4E5A70;
  --ink-softer: #6A7488;
  --cream: #F7F1EA;
  --cream-alt: #F1E8DB;
  --card: #FCF9F3;
  --card-warm: #EDE4D6;
  --gold: #8A6636;
  --gold-dark: #83612F;
  --gold-light: #A9814F;
  --gold-lighter: #C79A5E;
  --sage: #A8AC98;
  --sage-icon: #8E947C;
  --sage-icon-bg: rgba(168, 172, 152, .15);
  --sage-icon-border: rgba(168, 172, 152, .42);
  --navy-band: #26313F;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --max: 1200px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--serif); color: var(--ink); margin: 0; }
p { margin: 0; }
::selection { background: rgba(169, 131, 79, .85); color: var(--cream); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.2rem);
}
.wrap.narrow { max-width: 900px; }
.center { text-align: center; }

section { position: relative; }
.section-alt { background: var(--cream-alt); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px rgba(138, 102, 54, .26);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(138, 102, 54, .32);
}
.btn-nav { padding: .68rem 1.3rem; font-size: .92rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; padding: .85rem 1.4rem; font-size: 1rem; margin-top: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: rgba(247, 241, 234, 0);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  background: rgba(247, 241, 234, .9);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  box-shadow: 0 8px 30px rgba(44, 58, 80, .08);
  border-bottom-color: rgba(44, 58, 80, .08);
}
.header-inner {
  padding: clamp(.75rem, 1.8vw, 1.05rem) clamp(1.1rem, 4vw, 2.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.logo-rings { flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(.78rem, 1.5vw, .98rem);
  letter-spacing: .14em;
  color: var(--ink);
}
.logo-line2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(.5rem, 1vw, .6rem);
  letter-spacing: .4em;
  color: var(--gold);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.6vw, 1.4rem);
}
.site-nav a:not(.btn) {
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--ink);
}
.site-nav a:not(.btn):hover { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(44, 58, 80, .18);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-toggle span:last-child { width: 68%; background: var(--gold-light); }

.mobile-menu {
  display: none;
  background: rgba(247, 241, 234, .98);
  border-top: 1px solid rgba(44, 58, 80, .08);
  box-shadow: 0 18px 40px rgba(44, 58, 80, .12);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 1.4rem;
}
.mobile-menu a:not(.btn) {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(44, 58, 80, .07);
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Eyebrow / ornaments ---------- */
.eyebrow-row { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.eyebrow-row--center { justify-content: center; }
.eyebrow {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.rule { height: 1.5px; width: 32px; background: var(--gold-light); }
.rule-sm { width: 26px; }

.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.7rem; }
.ornament-line {
  height: 1px;
  width: min(70px, 12vw);
  background: linear-gradient(90deg, transparent, var(--gold-lighter));
}
.ornament-line:last-child { background: linear-gradient(90deg, var(--gold-lighter), transparent); }
.ornament--reversed { gap: 1.3rem; }

/* ---------- Hero ---------- */
.hero .wrap { padding-top: clamp(44px, 6vw, 92px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2.2rem, 5vw, 4.6rem);
}
.hero-copy { flex: 1 1 420px; min-width: min(100%, 320px); }
.hero-copy h1 {
  font-weight: 600;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.hero-copy h1 em { font-style: italic; color: var(--gold); }
.lede {
  margin-top: 1.5rem;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.lede strong { color: var(--gold); font-weight: 600; }
.lede-sub {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  margin-top:1.3rem;
}
.hero-copy > div:last-child { margin-top: 2.1rem; }

.hero-media { flex: 1 1 380px; min-width: min(100%, 300px); position: relative; }
.hero-frame {
  position: absolute;
  inset: 14px 14px -16px -16px;
  border: 1.5px solid var(--gold-lighter);
  border-radius: 200px 200px 22px 22px;
  pointer-events: none;
}
.botanical-hero { position: absolute; top: -26px; right: 8px; z-index: 2; }

.photo-slot {
  position: relative;
  border-radius: 190px 190px 20px 20px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(44, 58, 80, .16);
  background: linear-gradient(160deg, var(--card-warm), #DCCFB8);
  aspect-ratio: 4 / 5;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot--empty img { display: none; }
.photo-slot--empty::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(169,131,79,.16), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(168,172,152,.18), transparent 55%);
}
.photo-slot--empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 34' width='90' height='53'%3E%3Ccircle cx='21' cy='17' r='12.5' fill='none' stroke='%23A9814F' stroke-width='1.4' opacity='.55'/%3E%3Ccircle cx='37' cy='17' r='12.5' fill='none' stroke='%238A6636' stroke-width='1.4' opacity='.55'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.photo-credit {
  position: absolute;
  right: .6rem;
  bottom: .6rem;
  z-index: 3;
  font-size: .68rem;
  line-height: 1.3;
  color: rgba(247, 241, 234, .85);
  background: rgba(44, 58, 80, .38);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: .25rem .6rem;
  border-radius: 999px;
}
.photo-credit a { color: rgba(247, 241, 234, .95); text-decoration: underline; text-decoration-color: rgba(247, 241, 234, .4); }
.photo-credit a:hover { color: #fff; }
.photo-slot--empty .photo-credit { display: none; }

/* ---------- Stakes ---------- */
.stakes .wrap { padding: clamp(60px, 9vw, 116px) clamp(1.1rem, 4vw, 2.2rem); }
.stakes h2 {
  max-width: 20ch;
  margin: 0 auto;
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.stakes h2 em { font-style: italic; color: var(--gold); }
.stakes p {
  margin: 1.5rem auto 0;
  max-width: 58ch;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.75;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ---------- Section head (services / path / testimonials) ---------- */
.section-head { max-width: 660px; margin: 0 auto clamp(2.6rem, 5vw, 3.6rem); }
.section-head h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--gold); }

/* ---------- Services cards ---------- */
.services .wrap { padding: clamp(64px, 9vw, 120px) clamp(1.1rem, 4vw, 2.2rem); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  align-items: stretch;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(44, 58, 80, .09);
  border-radius: 18px;
  padding: clamp(1.6rem, 2.6vw, 2rem);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(44, 58, 80, .1);
  border-color: rgba(169, 131, 79, .4);
}
.icon-circle {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage-icon-bg);
  border: 1px solid var(--sage-icon-border);
  margin-bottom: 1.2rem;
}
.icon-circle--sm { width: 50px; height: 50px; flex: none; margin-bottom: 0; }
.card h3 { font-weight: 600; font-size: 1.55rem; line-height: 1.15; }
.card p { margin-top: .55rem; font-size: 1.02rem; line-height: 1.62; color: var(--ink-soft); }

/* ---------- Story ---------- */
.story .wrap {
  padding: clamp(64px, 9vw, 120px) clamp(1.1rem, 4vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2.2rem, 5vw, 4.6rem);
}
.story-media {
  flex: 1 1 320px;
  min-width: min(100%, 280px);
  max-width: 440px;
  position: relative;
}
.corner { position: absolute; width: 60px; height: 60px; }
.corner-tl { top: 16px; left: -16px; border-left: 1.5px solid var(--gold-light); border-top: 1.5px solid var(--gold-light); }
.corner-br { bottom: 16px; right: -16px; border-right: 1.5px solid var(--sage); border-bottom: 1.5px solid var(--sage); }
.botanical-story { position: absolute; top: -24px; left: 22px; z-index: 2; transform: scaleX(-1); }
.photo-slot--story {
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(44, 58, 80, .18);
  background: linear-gradient(160deg, #E7DECF, #D8C8AC);
  aspect-ratio: 3 / 4;
}
.story-copy { flex: 1 1 400px; min-width: min(100%, 300px); }
.story-copy h2 {
  font-weight: 600;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.story-copy p {
  margin-top: 1.3rem;
  max-width: 58ch;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.story-copy p strong { color: var(--gold); font-weight: 600; }
.story-copy p.credentials {
  margin-top: 1.1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-softer);
}
.signature { margin-top: 1.7rem; display: flex; align-items: baseline; gap: .7rem; }
.signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.signature-role {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Path ---------- */
.path .wrap { padding: clamp(64px, 9vw, 120px) clamp(1.1rem, 4vw, 2.2rem); max-width: 1080px; }
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1.6rem, 3.4vw, 2.8rem);
}
.path-step { text-align: center; }
.path-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.9rem;
  line-height: 1;
  color: var(--gold-light);
}
.path-step h3 { margin-top: .7rem; font-weight: 600; font-size: 1.5rem; }
.path-step p { margin: .6rem auto 0; max-width: 34ch; font-size: 1.02rem; line-height: 1.62; color: var(--ink-soft); }
.path-cta { text-align: center; margin-top: clamp(2.6rem, 5vw, 3.6rem); }

/* ---------- Transformation ---------- */
.transformation .wrap {
  padding: clamp(64px, 9vw, 120px) clamp(1.1rem, 4vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2.2rem, 5vw, 4.4rem);
}
.transformation-copy { flex: 1 1 380px; min-width: min(100%, 300px); }
.transformation-copy h2 {
  font-weight: 600;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.lede-sm {
  margin: 1.1rem 0 1.9rem;
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.lede-sm em { font-style: italic; color: var(--gold); }
.impact-list { display: flex; flex-direction: column; gap: 1.15rem; }
.impact-item { display: flex; align-items: center; gap: 1.1rem; }
.impact-item h3 { font-weight: 600; font-size: 1.42rem; line-height: 1.15; }
.impact-item p { margin-top: .15rem; font-size: .98rem; line-height: 1.5; color: var(--ink-softer); }

.transformation-media { flex: 1 1 340px; min-width: min(100%, 300px); position: relative; }
.frame-outline {
  position: absolute;
  inset: -14px -14px 16px 16px;
  border: 1.5px solid var(--gold-lighter);
  border-radius: 20px;
  pointer-events: none;
}
.photo-slot--transformation {
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(44, 58, 80, .16);
  background: linear-gradient(160deg, var(--card-warm), #D8C8AC);
  aspect-ratio: 4 / 5;
}

/* ---------- Testimonials ---------- */
.testimonials .wrap { padding: clamp(64px, 9vw, 120px) clamp(1.1rem, 4vw, 2.2rem); }
.section-head.center { text-align: center; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(1.1rem, 2.3vw, 1.7rem);
  align-items: stretch;
}
.testimonial {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(44, 58, 80, .09);
  border-radius: 18px;
  padding: clamp(1.7rem, 3vw, 2.2rem);
}
.testimonial svg { margin-bottom: 1.1rem; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.testimonial figcaption { margin-top: 1.4rem; }
.testimonial .name { display: block; font-weight: 700; font-size: .96rem; color: var(--gold); }
.testimonial .role { display: block; font-size: .88rem; color: #8B8574; }

/* ---------- Faith band ---------- */
.faith-band {
  background: var(--navy-band);
  overflow: hidden;
}
.faith-band .wrap { padding: clamp(64px, 9vw, 116px) clamp(1.1rem, 4vw, 2.2rem); }
.faith-band h2 {
  color: var(--cream);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.faith-band h2 em { font-style: italic; color: var(--gold-lighter); }
.faith-band p {
  margin: 1.5rem auto 0;
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
  color: rgba(247, 241, 234, .78);
  text-wrap: pretty;
}

/* ---------- Final CTA ---------- */
.final-cta .wrap { padding: clamp(64px, 10vw, 128px) clamp(1.1rem, 4vw, 2.2rem); }
.final-cta h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.008em;
  text-wrap: balance;
}
.final-cta h2 em { font-style: italic; color: var(--gold); }
.final-cta p {
  margin: 1.4rem auto 0;
  max-width: 58ch;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.72;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.final-cta > .wrap > div:last-child { margin-top: 2.1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid rgba(44, 58, 80, .1); }
.site-footer .wrap { padding: clamp(52px, 7vw, 84px) clamp(1.1rem, 4vw, 2.2rem) clamp(28px, 4vw, 38px); max-width: 1080px; }
.footer-brand { text-align: center; }
.logo--footer { display: inline-flex; margin: 0 auto; }
.logo--footer img { width: min(250px); height: auto; }
.footer-brand p {
  margin: 1rem auto 0;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.social-row { margin: 1.7rem auto 0; display: flex; justify-content: center; align-items: center; gap: 1.4rem; }
.social-row a { color: var(--sage-icon); display: inline-flex; }
.social-row a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: clamp(2.4rem, 4.5vw, 3.2rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(44, 58, 80, .1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem 1.2rem;
  text-align: center;
}
.footer-bottom span { font-size: .84rem; color: #8B8574; }
.footer-bottom .dot { color: #B4A88E; }
.footer-bottom a { color: var(--gold); font-weight: 600; }
.footer-bottom a:hover { color: var(--gold-dark); }
