:root {
  --ink: #403b34;
  --muted: #686157;
  --paper: #fffaf4;
  --cream: #f3ede3;
  --white: #fffefd;
  --primary-green: #4f634b;
  --green-hover: #3d4f39;
  --sage: #e3e8de;
  --primary-orange: #925c48;
  --line: #ded8ce;
  --shadow: 0 18px 48px rgba(64, 59, 52, 0.1);
  --script: "Nothing You Could Do", "Brush Script MT", cursive;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-gutter: clamp(20px, 5vw, 72px);
  --page-inset: max(var(--page-gutter), calc((100% - 1200px) / 2));
  --section-space: clamp(64px, 8vw, 112px);
  --radius: 4px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px / 1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.2em; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
::selection { color: var(--ink); background: var(--sage); }

h1, h2, h3, p { margin: 0 0 20px; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 5vw, 68px); }
h2 { font-size: clamp(36px, 4.4vw, 56px); }
h3 { font-size: 30px; }
p { text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--primary-orange);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* One navigation and button system on every page. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 18px var(--page-inset);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.site-header.scrolled, .site-header.solid {
  color: var(--ink);
  background: rgba(255, 250, 244, 0.97);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  font-family: var(--script);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav-links a, .footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:not(.nav-button):hover, .footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button, .nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: 600 13px / 1.5 var(--sans);
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.nav-button { min-height: 44px; padding: 11px 22px; border-color: currentColor; }
.button.primary, .site-header.scrolled .nav-button, .site-header.solid .nav-button {
  color: #fff;
  border-color: var(--primary-green);
  background: var(--primary-green);
}
.button.primary:hover, .nav-button:hover,
.site-header.scrolled .nav-button:hover, .site-header.solid .nav-button:hover {
  color: #fff;
  border-color: var(--green-hover);
  background: var(--green-hover);
}
.button.ghost { color: #fff; border-color: rgba(255, 255, 255, 0.85); background: rgba(25, 28, 23, 0.12); }
.button.ghost:hover { color: var(--ink); border-color: var(--paper); background: var(--paper); }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary-green);
  outline-offset: 4px;
}
.hero a:focus-visible, .site-footer a:focus-visible,
.site-header:not(.scrolled):not(.solid) :focus-visible { outline-color: #fff; }
.menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 6px auto; background: currentColor; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Photography leads; handwriting is reserved for the brand and hero. */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 640px;
  min-height: clamp(640px, 90svh, 920px);
  overflow: hidden;
  color: #fff;
  background: var(--primary-green);
}
.hero-image, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 34%; }
.hero-scrim {
  background: linear-gradient(180deg, rgba(26, 30, 24, 0.64), rgba(26, 30, 24, 0.6) 14%, rgba(26, 30, 24, 0.12) 40%, rgba(26, 30, 24, 0.65));
}
.hero-content {
  position: relative;
  width: min(960px, calc(100% - 2 * var(--page-gutter)));
  padding: 180px 0 clamp(64px, 8vh, 96px);
  text-align: center;
}
.hero h1 { margin-bottom: 32px; font-size: clamp(62px, 8vw, 104px); line-height: 1; }
.hero h1 span { display: block; }
.hero-script {
  margin-top: 8px;
  font-family: var(--script);
  font-size: clamp(29px, 5.5vw, 66px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero-actions .button { min-width: 212px; }

section:not(.hero):not(.intro-band) { padding: var(--section-space) var(--page-inset); }
.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 40px var(--page-inset);
  background: var(--cream);
}
.intro-band > div { padding-inline: 32px; }
.intro-band > div:first-child { padding-left: 0; }
.intro-band > div:last-child { padding-right: 0; }
.intro-band > div + div { border-left: 1px solid var(--line); }
.intro-band strong, .intro-band span { display: block; }
.intro-band strong { margin-bottom: 10px; font: 500 30px / 1.15 var(--serif); }
.intro-band span { color: var(--muted); font-size: 14px; }
.section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.section-heading > :last-child { margin-bottom: 0; }
.section-heading > p:not(.eyebrow) { max-width: 620px; margin-inline: auto; color: var(--muted); }
.split-section, .contact-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.copy-block { min-width: 0; max-width: 600px; }
.copy-block p:not(.eyebrow) { max-width: 54ch; color: var(--muted); }
.copy-block .button { margin-top: 12px; }
.image-stack {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  aspect-ratio: 1.12;
  min-width: 0;
}
.image-stack img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.image-stack img:first-child { grid-area: 1 / 3 / 9 / 13; object-position: 75% center; }
.image-stack img:last-child { grid-area: 6 / 1 / 11 / 8; border: 8px solid var(--paper); box-shadow: var(--shadow); }
.contact-split { background: var(--cream); }
.contact-split .image-stack img:last-child { border-color: var(--cream); }
.steps-section, .faq-section { background: var(--white); }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.timeline article { padding-top: 24px; border-top: 1px solid var(--line); }
.timeline span { display: block; margin-bottom: 20px; color: var(--primary-green); font: 500 40px / 1 var(--serif); }
.timeline p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

/* Aligned package names, prices and inclusions make comparison easier. */
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.package-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 20px;
  padding: clamp(24px, 2.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.package-card.featured { border-color: var(--primary-green); background: var(--sage); }
.package-card .package-kicker { margin: 0; font-size: 28px; line-height: 1.2; }
.package-price { margin: 0; color: var(--primary-green); font: 500 clamp(30px, 2.8vw, 38px) / 1.15 var(--serif); letter-spacing: -0.025em; white-space: nowrap; }
.package-card > p:not(.package-price) { margin: 0; color: var(--muted); font-size: 15px; }
.package-card ul { display: grid; align-content: start; gap: 12px; margin: 0; padding: 24px 0 0 18px; border-top: 1px solid var(--line); font-size: 15px; }
.package-card li { padding-left: 3px; }
.package-card li::marker { color: var(--primary-green); }
.package-card.featured ul { border-top-color: #c3ccbd; }
.started-section { background: var(--cream); text-align: center; }
.started-inner { max-width: 760px; margin-inline: auto; }
.started-inner > p:not(.eyebrow) { max-width: 600px; margin: 0 auto; color: var(--muted); }
.started-inner .button { margin-top: 32px; }
.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 40px 24px 0; cursor: pointer; list-style: none; font: 500 clamp(23px, 2.5vw, 28px) / 1.25 var(--serif); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 28px;
  width: 18px;
  height: 18px;
  background: linear-gradient(var(--primary-green), var(--primary-green)) center / 12px 1px no-repeat,
    linear-gradient(var(--primary-green), var(--primary-green)) center / 1px 12px no-repeat;
}
.faq-list details[open] summary::after { background-size: 12px 1px, 1px 0; }
.faq-list p { max-width: 72ch; margin: 0; padding: 0 40px 24px 0; color: var(--muted); }

.social-inspiration { background: var(--paper); }
.social-heading { text-decoration: none; }
.social-heading:hover { text-decoration: underline; text-decoration-thickness: 1px; }
.instagram-feed { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.instagram-card { display: flex; flex-direction: column; min-width: 0; }
.instagram-media { display: block; margin-bottom: 18px; overflow: hidden; border-radius: var(--radius); }
.instagram-media img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; transition: transform 300ms ease; }
.instagram-media:hover img { transform: scale(1.025); }
.instagram-card p { margin-bottom: 14px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.instagram-link { align-self: start; margin-top: auto; color: var(--primary-green); font-size: 13px; font-weight: 600; }
.carousel-dots { display: none; }
.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px var(--page-inset);
  color: #fff;
  background: var(--primary-green);
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.site-footer p { margin: 0; font-size: 12px; }
.site-footer .brand-text { font-size: 24px; }
.site-footer .brand-logo { width: 36px; height: 36px; }

.contact-main { padding-top: var(--header-height); }
.contact-hero { background: var(--cream); }
.contact-hero img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.field-group { display: grid; align-content: start; gap: 8px; min-width: 0; }
.contact-form .full { grid-column: 1 / -1; }
.form-trap { display: none; }
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.form-note a { color: var(--primary-green); }
.contact-form label { color: var(--ink); font-size: 14px; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #8f887d;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); opacity: 1; }
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; }
.simple-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 780px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 80px var(--page-gutter);
}
.simple-page > p:not(.eyebrow) { color: var(--muted); }
.simple-page .button { margin-block: 12px 24px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-footer { grid-template-columns: 1fr auto; row-gap: 24px; }
  .site-footer p { grid-column: 1 / -1; }
  .footer-links { justify-content: end; }
  .intro-band > div { padding-inline: 24px; }
}
@media (max-width: 900px) {
  :root { --header-height: 80px; }
  .site-header { padding-block: 14px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--page-gutter);
    right: var(--page-gutter);
    display: none;
    padding: 16px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; gap: 4px; }
  .nav-links a { padding-block: 14px; }
  .nav-links .nav-button { margin-block: 8px; color: #fff; border-color: var(--primary-green); background: var(--primary-green); }
  .site-header .nav-links :focus-visible { outline-color: var(--primary-green); }
  .split-section, .contact-hero { grid-template-columns: 1fr; gap: 40px; }
  .copy-block { max-width: 620px; }
  .image-stack { width: min(620px, 100%); justify-self: center; }
  .contact-split .copy-block { order: -1; }
  .contact-hero img { max-width: 620px; justify-self: center; aspect-ratio: 16 / 10; }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  .instagram-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
}
@media (max-width: 820px) {
  .package-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .package-price { font-size: 36px; }
  .intro-band { grid-template-columns: 1fr; padding-block: 32px; }
  .intro-band > div { padding: 24px 0; }
  .intro-band > div:first-child { padding-top: 0; }
  .intro-band > div:last-child { padding-bottom: 0; }
  .intro-band > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .intro-band span { max-width: 65ch; }
}
@media (max-width: 620px) {
  :root { --header-height: 76px; }
  .brand { gap: 10px; }
  .brand-logo { width: 36px; height: 36px; }
  .brand-text { font-size: 23px; }
  .hero { min-height: clamp(620px, 175vw, 740px); }
  .hero-image { object-position: 53% center; }
  .hero-content { padding: 160px 0 56px; }
  .hero h1 { margin-bottom: 28px; }
  .hero-script { font-size: clamp(27px, 7.7vw, 45px); }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .button { width: min(280px, 100%); }
  .section-heading { margin-bottom: 36px; }
  .image-stack img:last-child { border-width: 6px; }
  .timeline { gap: 32px 24px; }
  .timeline h3 { font-size: 28px; }
  .timeline span { margin-bottom: 16px; }
  .timeline p { font-size: 14px; }
  .instagram-feed {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--cream);
    padding: 4px 4px 20px;
    margin-inline: -4px;
  }
  .instagram-card { flex: 0 0 min(80vw, 320px); scroll-snap-align: start; }
  .carousel-dots { display: flex; justify-content: center; gap: 4px; margin-top: 12px; }
  .carousel-dot { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
  .carousel-dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #b3baad; }
  .carousel-dot.is-active::after { background: var(--primary-green); }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { justify-content: start; }
  .site-footer p { grid-column: auto; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 20px; }
  .contact-form button { width: 100%; }
}
@media (max-width: 360px) {
  .brand-text { font-size: 21px; }
  .timeline { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
