/* ═══ FERN & LORE — Production Stylesheet ═══ */

:root {
  --forest: #1B3A2A;
  --fern: #2D5A3D;
  --fern-mid: #3E7A54;
  --sage: #E8F0EB;
  --cream: #FAF8F4;
  --parchment: #F2EDE4;
  --gold: #C4A044;
  --gold-soft: #D4B968;
  --ink: #2A2A28;
  --ink-light: #5A5A56;
  --mist: #D8DDD9;
  --white: #FEFEFE;
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --body: 'Libre Baskerville', 'Georgia', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}
::selection { background: var(--fern); color: var(--cream); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.8rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
nav.scrolled {
  padding: 1rem 3.5rem;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 1px 20px rgba(27,58,42,0.04);
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { height: 28px; width: auto; max-width: 120px; opacity: 0.9; transition: all 0.5s ease; object-fit: contain; }
.nav-wordmark {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--forest);
}
.nav-wordmark .amp { font-style: italic; color: var(--gold); margin: 0 0.08em; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-light); transition: color 0.3s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links .nav-cta {
  color: var(--forest); font-weight: 700;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px; transition: all 0.3s;
}
.nav-links .nav-cta:hover { color: var(--gold); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 110; background: none; border: none;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--forest); display: block; transition: all 0.3s; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block; font-family: var(--body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer; position: relative;
}
.btn-fill {
  background: var(--forest); color: var(--cream); border: none;
}
.btn-fill:hover {
  background: var(--fern-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27,58,42,0.2);
}
.btn-line {
  display: inline-block; font-family: var(--body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px; transition: all 0.3s;
}
.btn-line:hover { color: var(--gold); }

/* ═══ SHARED ═══ */
.section-label {
  font-family: var(--body); font-size: 0.62rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fern); margin-bottom: 1.5rem; opacity: 0.6;
}
.wave-divider { width: 100%; overflow: hidden; line-height: 0; position: relative; z-index: 2; }
.wave-divider svg { width: 100%; height: 80px; display: block; }
.wave-divider.flip { transform: scaleY(-1); }

.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--cream);
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300; color: var(--forest);
  line-height: 1.2; margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--fern); }
.page-header > p {
  font-size: 0.92rem; color: var(--ink-light);
  max-width: 500px; margin: 0 auto; line-height: 1.85;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,90,61,0.12), transparent 70%);
  top: -15%; left: -10%;
  animation: orbDrift1 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,160,68,0.09), transparent 70%);
  bottom: -10%; right: -8%;
  animation: orbDrift2 18s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,90,61,0.08), transparent 70%);
  top: 30%; right: 15%;
  animation: orbDrift3 25s ease-in-out infinite;
}
.hero-logo-mark {
  width: 200px; max-height: 120px; object-fit: contain; margin-bottom: 2rem;
  opacity: 0; animation: fadeIn 1.2s ease 0.2s forwards;
}
.hero-brandname {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; letter-spacing: 0.04em;
  color: var(--forest); line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
}
.hero-brandname .amp { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 400; font-style: italic;
  color: var(--gold); letter-spacing: 0.15em;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease 0.65s forwards;
}
.hero-manifesto {
  max-width: 640px; margin: 0 auto;
  opacity: 0; animation: fadeUp 1s ease 0.8s forwards;
}
.hero-manifesto p {
  font-family: var(--body); font-size: 1rem;
  line-height: 2; color: var(--ink);
}
.hero-closing {
  font-family: var(--serif); font-size: 1.15rem;
  font-style: italic; color: var(--forest);
  margin-top: 2rem;
  opacity: 0; animation: fadeUp 1s ease 0.95s forwards;
}
.hero-cta-row {
  margin-top: 3rem;
  opacity: 0; animation: fadeUp 1s ease 1.1s forwards;
}

/* ═══ ABOUT ═══ */
.about {
  background: var(--sage); color: var(--ink);
  padding: 7rem 2rem; position: relative; overflow: hidden;
}
.about::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,160,68,0.06), transparent 70%);
  pointer-events: none;
}
.about-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.about-label {
  font-family: var(--body); font-size: 0.62rem;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
  text-align: center; opacity: 0.7;
}
.about h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; line-height: 1.25;
  text-align: center; color: var(--forest); margin-bottom: 3rem;
}
.about h2 em { font-style: italic; color: var(--fern); }
.about-prose p {
  font-size: 0.95rem; line-height: 2;
  color: var(--ink-light); margin-bottom: 1.5rem;
}
.about-prose p strong { color: var(--forest); font-weight: 700; }
.about-pullquote {
  margin: 2.5rem 0; padding: 2rem 0;
  border-top: 1px solid rgba(196,160,68,0.3);
  border-bottom: 1px solid rgba(196,160,68,0.3);
  text-align: center;
}
.about-pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 400; font-style: italic;
  line-height: 1.55; color: var(--forest);
  max-width: 500px; margin: 0 auto;
}
.about-name-block { margin-top: 3rem; text-align: center; }
.about-founder-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 3px solid rgba(196,160,68,0.25);
  box-shadow: 0 8px 30px rgba(27,58,42,0.1);
}
.about-founder-placeholder {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--parchment);
  border: 2px dashed rgba(196,160,68,0.3);
  margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.3rem;
}
.about-founder-placeholder span {
  font-family: var(--body); font-size: 0.55rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); opacity: 0.5;
}
.about-founder-placeholder svg {
  width: 24px; height: 24px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; opacity: 0.4;
}
.about-name-block h3 {
  font-family: var(--serif); font-size: 1.25rem;
  font-weight: 500; color: var(--forest); margin-bottom: 1rem;
}
.about-name-block p {
  font-size: 0.88rem; line-height: 1.95;
  color: var(--ink-light); max-width: 500px; margin: 0 auto 0.8rem;
}
.about-name-block p em { font-style: italic; color: var(--fern); }
.about-name-block p strong { color: var(--forest); font-weight: 700; }
.about-closing-line {
  font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; color: var(--gold);
  margin-top: 1.5rem;
}

/* ═══ SERVICES ═══ */
.services { background: var(--cream); padding: 6rem 2rem; }
.services-inner { max-width: 800px; margin: 0 auto; }
.services-intro { text-align: center; margin-bottom: 4rem; }
.services-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--forest);
  line-height: 1.25; margin-bottom: 1.2rem;
}
.services-intro h2 em { font-style: italic; }
.services-intro > p {
  font-size: 0.92rem; color: var(--ink-light);
  max-width: 500px; margin: 0 auto; line-height: 1.85;
}
.svc-stack { display: flex; flex-direction: column; gap: 2.5rem; }
.svc {
  padding: 3rem; background: var(--white);
  border: 1px solid var(--mist);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.svc:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(27,58,42,0.07);
}
.svc-eyebrow {
  font-family: var(--body); font-size: 0.58rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
}
.svc h3 {
  font-family: var(--serif); font-size: 1.7rem;
  font-weight: 400; color: var(--forest);
  margin-bottom: 0.4rem; line-height: 1.2;
}
.svc-price {
  font-family: var(--serif); font-size: 1.15rem;
  color: var(--gold); font-weight: 300;
  font-style: italic; margin-bottom: 1.8rem;
}
.svc p.svc-desc {
  font-size: 0.88rem; line-height: 1.85;
  color: var(--ink-light); margin-bottom: 1.8rem;
  max-width: 580px;
}
.svc-includes-label {
  font-family: var(--body); font-size: 0.58rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--fern); margin-bottom: 0.8rem; opacity: 0.6;
}
.svc-list { list-style: none; margin-bottom: 1.8rem; }
.svc-list li {
  font-size: 0.82rem; line-height: 1.75;
  color: var(--ink-light); padding-left: 1.2rem;
  position: relative; margin-bottom: 0.35rem;
}
.svc-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.65em;
  width: 5px; height: 1px; background: var(--gold);
}
.svc-sub-label {
  font-family: var(--body); font-size: 0.55rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--forest); margin: 1.3rem 0 0.7rem; opacity: 0.5;
}
.svc-timeline {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--ink-light); opacity: 0.5; margin-bottom: 0.7rem;
}
.svc-bestfor {
  font-size: 0.82rem; line-height: 1.75;
  color: var(--ink-light); font-style: italic;
  margin-bottom: 1.8rem; padding-left: 1rem;
  border-left: 2px solid var(--sage);
}
.svc-with-img {
  padding: 0; overflow: hidden;
}
.svc-with-img .svc-banner {
  width: 100%; height: 180px;
  background-size: cover; background-position: center;
  position: relative;
}
.svc-with-img .svc-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(254,254,254,0.6) 100%);
}
.svc-with-img .svc-content { padding: 2.5rem 3rem 3rem; }
.svc-retainer {
  padding: 2.5rem 3rem;
  background: var(--parchment);
  border: 1px solid rgba(196,160,68,0.2);
}
.svc-retainer .svc-eyebrow { color: var(--fern); }
.svc-retainer h3 { font-size: 1.4rem; }
.svc-retainer .svc-availability {
  font-size: 0.78rem; color: var(--ink-light);
  font-style: italic; opacity: 0.6; margin-bottom: 1.5rem;
}
.services-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.78rem; color: var(--ink-light);
  opacity: 0.45; font-style: italic;
}

/* ═══ PROCESS ═══ */
.process { background: var(--parchment); padding: 7rem 2rem; }
.process-inner { max-width: 840px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300; color: var(--forest); line-height: 1.25;
}
.process-header h2 em { font-style: italic; }
.process-flow { display: flex; flex-direction: column; position: relative; }
.process-flow::before {
  content: ''; position: absolute;
  top: 0; bottom: 0; left: 32px; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}
.pstep {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 2rem; padding: 2rem 0; align-items: start;
}
.pstep-num {
  width: 64px; text-align: center;
  font-family: var(--serif); font-size: 1.7rem;
  font-weight: 300; color: var(--gold);
  position: relative; z-index: 1;
  background: var(--parchment); padding: 0.3rem 0;
}
.pstep-body h3 {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 500; color: var(--forest); margin-bottom: 0.4rem;
}
.pstep-body p { font-size: 0.88rem; line-height: 1.85; color: var(--ink-light); }

/* ═══ BLOG ═══ */
.blog { background: var(--cream); padding: 4rem 2rem 7rem; }
.blog-inner { max-width: 1100px; margin: 0 auto; }

/* Featured post (first blog card, large) */
.blog-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0; margin-bottom: 3rem;
  background: var(--white);
  border: 1px solid var(--mist);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.blog-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(27,58,42,0.07);
}
.blog-featured-img {
  min-height: 380px;
  background-size: cover; background-position: center;
  position: relative;
}
.blog-featured-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,42,0.08), transparent);
}
.blog-featured-body {
  padding: 3.5rem; display: flex;
  flex-direction: column; justify-content: center;
}
.blog-featured-tag {
  font-family: var(--body); font-size: 0.55rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.blog-featured-body h2 {
  font-family: var(--serif); font-size: 1.65rem;
  font-weight: 400; color: var(--forest);
  line-height: 1.3; margin-bottom: 1rem;
}
.blog-featured-body p {
  font-size: 0.88rem; line-height: 1.85;
  color: var(--ink-light); margin-bottom: 2rem;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--mist);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27,58,42,0.07);
}
.blog-card-img {
  width: 100%; height: 220px;
  background-size: cover; background-position: center;
  position: relative;
}
.blog-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,58,42,0.06));
}
.blog-card-body { padding: 1.8rem; }
.blog-card-tag {
  font-family: var(--body); font-size: 0.52rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.blog-card-body h3 {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 500; color: var(--forest);
  margin-bottom: 0.7rem; line-height: 1.35;
}
.blog-card-body p {
  font-size: 0.8rem; line-height: 1.75;
  color: var(--ink-light); margin-bottom: 1.3rem;
}
.blog-read-link {
  font-family: var(--body); font-size: 0.62rem;
  font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--forest);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px; transition: all 0.3s;
}
.blog-read-link:hover { color: var(--gold); }

/* ═══ CONTACT ═══ */
.contact { background: var(--cream); padding: 4rem 2rem 7rem; }
.contact-inner {
  max-width: 880px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
.contact-text > p {
  font-size: 0.92rem; line-height: 1.9;
  color: var(--ink-light); margin-bottom: 2.5rem;
}
.expect-heading {
  font-family: var(--body); font-size: 0.62rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--fern); opacity: 0.6; margin-bottom: 1.3rem;
}
.expect-row {
  display: flex; gap: 0.8rem;
  margin-bottom: 1rem; align-items: baseline;
}
.expect-row-num {
  font-family: var(--serif); font-size: 1rem;
  color: var(--gold); flex-shrink: 0;
}
.expect-row-text { font-size: 0.85rem; line-height: 1.65; color: var(--ink-light); }
.contact-embed {
  background: var(--white); padding: 1rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  min-height: 640px; text-align: center;
}
.cal-placeholder { opacity: 0.35; }
.cal-placeholder svg {
  width: 36px; height: 36px;
  stroke: var(--fern); fill: none; stroke-width: 1.5;
  margin-bottom: 1rem;
}
.cal-placeholder p {
  font-size: 0.8rem; color: var(--ink-light); margin-bottom: 0.3rem;
}
.cal-placeholder p:first-of-type {
  font-weight: 700; color: var(--forest); font-size: 0.85rem;
}

/* ═══ FOOTER ═══ */
footer { background: var(--forest); padding: 3rem; color: var(--cream); }
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: center; width: 100%; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-logo { height: 20px; width: auto; max-width: 80px; opacity: 0.8; filter: brightness(3) saturate(0.3); object-fit: contain; }
.footer-wordmark {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 400; color: rgba(250,248,244,0.8);
}
.footer-wordmark .amp { font-style: italic; color: var(--gold-soft); }
.footer-social { display: flex; gap: 1.2rem; align-items: center; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid rgba(250,248,244,0.12);
  border-radius: 50%; transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold-soft);
  background: rgba(250,248,244,0.05);
}
.footer-social svg {
  width: 12px; height: 12px;
  fill: rgba(250,248,244,0.35); transition: fill 0.3s;
}
.footer-social a:hover svg { fill: var(--gold-soft); }
.footer-links { list-style: none; display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-family: var(--body); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,248,244,0.3); transition: color 0.3s;
}
.footer-links a:hover { color: rgba(250,248,244,0.8); }
footer .footer-copy {
  font-size: 0.65rem; opacity: 0.2;
  letter-spacing: 0.06em; font-family: var(--body);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(40px,-60px); }
  66% { transform: translate(-30px,30px); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(-50px,40px); }
  66% { transform: translate(30px,-35px); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(35px,-30px); }
}
.reveal {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══ RESPONSIVE: TABLET ═══ */
@media (max-width: 960px) {
  nav { padding: 1.4rem 2.5rem; }
  nav.scrolled { padding: 0.9rem 2.5rem; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 280px; }
  .blog-featured-body { padding: 2.5rem; }
  .svc-with-img .svc-banner { height: 150px; }
  .svc-with-img .svc-content { padding: 2rem 2.5rem 2.5rem; }
  .contact-inner { gap: 2.5rem; }
}

/* ═══ RESPONSIVE: MOBILE ═══ */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(30px);
    justify-content: center; align-items: center;
    gap: 2.2rem; z-index: 105;
  }
  .nav-links.open a { font-size: 0.82rem; color: var(--forest); }

  .hero { padding: 6rem 1.5rem 4rem; min-height: auto; }
  .hero-logo-mark { width: 140px; margin-bottom: 1.5rem; }
  .hero-brandname { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-tagline { font-size: 0.9rem; letter-spacing: 0.1em; }
  .hero-manifesto { max-width: 100%; }
  .hero-manifesto p { font-size: 0.92rem; line-height: 1.85; }
  .hero-closing { font-size: 1rem; }
  .hero-cta-row .btn { padding: 1rem 2.2rem; font-size: 0.65rem; }

  .page-header { padding: 7rem 1.5rem 2.5rem; }
  .page-header h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  .about, .services, .process, .blog, .contact { padding: 4rem 1.5rem; }
  .about h2, .services-intro h2, .process-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .about-founder-photo, .about-founder-placeholder { width: 130px; height: 130px; }

  .svc { padding: 2rem 1.5rem; }
  .svc h3 { font-size: 1.4rem; }
  .svc-retainer { padding: 2rem 1.5rem; }
  .svc-with-img .svc-banner { height: 120px; }
  .svc-with-img .svc-content { padding: 1.5rem; }

  .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-featured-body { padding: 2rem 1.5rem; }
  .blog-featured-body h2 { font-size: 1.35rem; }
  .blog-card-img { height: 180px; }

  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-embed { min-height: 580px; padding: 0.5rem; }

  footer { padding: 2.5rem 1.5rem; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links { gap: 1.2rem; font-size: 0.6rem; }
}

/* ═══ RESPONSIVE: SMALL MOBILE ═══ */
@media (max-width: 400px) {
  .hero-logo-mark { width: 110px; }
  .hero-brandname { font-size: 2.5rem; }
  .hero-tagline { font-size: 0.8rem; margin-bottom: 1.5rem; }
  .hero-manifesto p { font-size: 0.85rem; }
  .btn { padding: 0.9rem 1.8rem; font-size: 0.62rem; }
  .svc { padding: 1.5rem 1.2rem; }
  .svc h3 { font-size: 1.2rem; }
  .blog-card-body { padding: 1.3rem; }
  .blog-card-body h3 { font-size: 1.05rem; }
}

/* ═══ BLOG POST (Individual Article Pages) ═══ */
.blog-post {
  max-width: 720px; margin: 0 auto;
  padding: 10rem 2rem 4rem;
}
.blog-post-header {
  text-align: center; margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196,160,68,0.2);
}
.blog-post-tag {
  font-family: var(--body); font-size: 0.55rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: inline-block;
}
.blog-post-header h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400; color: var(--forest);
  line-height: 1.3; margin-bottom: 1rem;
}
.blog-post-meta {
  font-size: 0.78rem; color: var(--ink-light);
  letter-spacing: 0.04em;
}
.blog-post-body {
  margin-bottom: 4rem;
}
.blog-post-body p {
  font-size: 0.95rem; line-height: 2;
  color: var(--ink); margin-bottom: 1.5rem;
}
.blog-post-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400; color: var(--forest);
  margin: 2.5rem 0 1rem; line-height: 1.3;
}
.blog-post-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 500;
  color: var(--forest); margin: 2rem 0 0.8rem;
}
.blog-post-body blockquote {
  margin: 2.5rem 0; padding: 2rem 0;
  border-top: 1px solid rgba(196,160,68,0.3);
  border-bottom: 1px solid rgba(196,160,68,0.3);
  text-align: center;
}
.blog-post-body blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400; font-style: italic;
  line-height: 1.55; color: var(--forest);
  margin-bottom: 0;
}
.blog-post-body ul, .blog-post-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.blog-post-body li {
  font-size: 0.92rem; line-height: 1.85;
  color: var(--ink); margin-bottom: 0.5rem;
}
.blog-post-body strong { color: var(--forest); font-weight: 700; }
.blog-post-body em { font-style: italic; color: var(--fern); }
.blog-post-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--sage);
  margin-bottom: 2rem;
}
.blog-post-cta h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--forest); margin-bottom: 0.8rem;
}
.blog-post-cta p {
  font-size: 0.88rem; color: var(--ink-light);
  line-height: 1.75; margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .blog-post { padding: 7rem 1.5rem 3rem; }
  .blog-post-header h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .blog-post-body p { font-size: 0.9rem; }
  .blog-post-cta { padding: 2rem 1.5rem; }
}

/* ═══ CONTACT FORM ═══ */
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--mist);
}
.contact-book-section {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--sage);
  text-align: center;
}
.contact-book-section .expect-heading { text-align: center; }
.fl-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.form-group .required { color: var(--gold); }
.form-group input,
.form-group textarea {
  font-family: var(--body);
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--mist);
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  line-height: 1.6;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-light);
  opacity: 0.45;
  font-style: italic;
}
.form-group textarea { resize: vertical; min-height: 100px; }

@media (max-width: 768px) {
  .contact-form-wrap { padding: 1.5rem; }
  .contact-book-section { padding: 1.5rem; }
}
