@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #71886d;
  --primary-dark: #3f5d42;
  --sage-soft: #dfe8dc;
  --sage-pale: #edf3e9;
  --bone: #f7f4ec;
  --paper: #fffefa;
  --terracotta: #c9785e;
  --terracotta-dark: #9e4f3d;
  --ink: #223026;
  --muted: #637065;
  --line: #d9dfd2;
  --shadow: 0 18px 45px rgba(50, 68, 48, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bone);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.46)),
    repeating-linear-gradient(90deg, rgba(63, 93, 66, 0.035) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(0deg, rgba(201, 120, 94, 0.025) 0 1px, transparent 1px 7px);
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(113, 136, 109, 0.22);
  backdrop-filter: blur(16px);
}

.nav-row {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.42rem;
  line-height: 1;
  color: var(--primary-dark);
}

.logo span {
  display: block;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: auto;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--terracotta-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.nav-phone {
  font-weight: 800;
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(63, 93, 66, 0.35);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--primary-dark);
  color: var(--paper);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--terracotta-dark);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border-color: rgba(63, 93, 66, 0.42);
}

.btn-secondary:hover {
  background: var(--sage-soft);
  color: var(--ink);
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: rgba(237, 243, 233, 0.7);
}

.section-paper {
  background: var(--paper);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 0.98;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 4.45rem;
  max-width: 680px;
}

h2 {
  font-size: 3.05rem;
}

h3 {
  font-size: 1.72rem;
}

p {
  margin: 0;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 720px;
}

.center {
  text-align: center;
}

.center .lede {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--paper);
}

.hero-copy {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px max(40px, calc((100vw - 1240px) / 2));
}

.hero-copy .lede {
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-media,
.page-visual,
.split-media,
.gallery-item,
.service-photo,
.bio-photo,
.insta-tile,
.contact-visual {
  position: relative;
  overflow: hidden;
  background: var(--sage-soft);
}

.hero-media {
  min-height: 620px;
}

.hero-media img,
.page-visual img,
.split-media img,
.gallery-item img,
.service-photo img,
.bio-photo img,
.insta-tile img,
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.page-visual::after,
.split-media::after,
.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 48, 38, 0.08), rgba(34, 48, 38, 0.2));
  pointer-events: none;
}

.img-fallback {
  background: var(--primary);
  min-height: 300px;
}

.rating-render {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--terracotta-dark);
}

.rating-render .stars {
  display: inline-flex;
  gap: 3px;
}

.rating-render svg {
  width: 18px;
  height: 18px;
}

.rating-render .empty-star {
  color: rgba(158, 79, 61, 0.28);
}

.rating-text {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.price-ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.78);
}

.price-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.72);
}

.price-row strong {
  font-size: 1rem;
}

.price-row span {
  font-weight: 800;
  color: var(--terracotta-dark);
  white-space: nowrap;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(40px, calc((100vw - 1240px) / 2)) 72px 64px;
}

.split-copy.left {
  padding: 72px 64px 72px max(40px, calc((100vw - 1240px) / 2));
}

.split-copy p + p {
  margin-top: 18px;
}

.split-media {
  min-height: 520px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--terracotta);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 340px;
  gap: 18px;
  margin-top: 38px;
}

.gallery-item {
  min-height: 340px;
  border-radius: 8px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--paper);
  background: rgba(34, 48, 38, 0.72);
  font-weight: 800;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 34px;
}

.page-visual {
  min-height: 440px;
  border-radius: 8px;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy p {
  color: var(--muted);
}

.story-copy p + p {
  margin-top: 18px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 42px;
}

.highlight-card,
.service-card,
.bio-card,
.review-card,
.detail-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.82);
  box-shadow: 0 12px 26px rgba(50, 68, 48, 0.07);
}

.highlight-card {
  padding: 24px;
}

.highlight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sage-soft);
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.highlight-icon svg {
  width: 23px;
  height: 23px;
}

.highlight-card h3,
.bio-card h3 {
  font-size: 1.42rem;
}

.highlight-card p,
.bio-card p,
.review-card p,
.detail-card p {
  color: var(--muted);
  margin-top: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
  margin-top: 42px;
}

.bio-card {
  overflow: hidden;
}

.bio-photo {
  min-height: 275px;
  height: 275px;
}

.bio-copy {
  padding: 24px;
}

.bio-role {
  margin-top: 8px;
  color: var(--terracotta-dark);
  font-weight: 800;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 104px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-photo {
  min-height: 250px;
  height: 250px;
}

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.service-topline h3 {
  font-size: 1.44rem;
}

.service-price {
  color: var(--terracotta-dark);
  font-weight: 900;
  white-space: nowrap;
}

.service-content p {
  color: var(--muted);
  flex: 1;
}

.service-content .btn {
  margin-top: 22px;
  align-self: flex-start;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 38px;
}

.policy-card {
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.policy-card p {
  color: var(--muted);
  margin-top: 10px;
}

.reviews-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 38px;
}

.review-card {
  padding: 30px;
}

.review-card blockquote {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.1;
}

.review-card cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.82);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--primary-dark);
}

.faq-mark::before {
  content: "+";
}

.faq-item.is-open .faq-mark::before {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.instagram-strip {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.instagram-copy {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.instagram-copy .btn {
  align-self: flex-start;
  margin-top: 24px;
}

.insta-tile {
  min-height: 260px;
  border-radius: 8px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 8px;
  background: var(--primary-dark);
  color: var(--paper);
}

.cta-panel h2,
.cta-panel p {
  color: var(--paper);
}

.cta-panel p {
  margin-top: 12px;
  max-width: 700px;
}

.cta-panel .btn {
  background: var(--paper);
  color: var(--primary-dark);
}

.cta-panel .btn:hover {
  background: var(--terracotta);
  color: var(--paper);
}

.cta-phone {
  margin-top: 14px;
  font-weight: 800;
  color: var(--sage-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 900;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 13px 14px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 28px;
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.detail-card {
  padding: 26px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.detail-line {
  display: grid;
  gap: 4px;
}

.detail-line strong {
  color: var(--ink);
}

.detail-line span,
.detail-line a {
  color: var(--muted);
}

.contact-visual {
  min-height: 360px;
  border-radius: 8px;
}

.map-block {
  min-height: 260px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49%, rgba(63, 93, 66, 0.14) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(63, 93, 66, 0.14) 50%, transparent 51%),
    var(--sage-pale);
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.map-block strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.map-block span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 800;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  margin-right: auto;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .price-strip,
  .split-section,
  .intro-grid,
  .services-layout,
  .reviews-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .split-copy,
  .split-copy.left {
    min-height: auto;
    padding: 64px 40px;
  }

  .hero-media,
  .split-media {
    min-height: 440px;
  }

  .services-intro {
    position: static;
  }

  .highlights-grid,
  .team-grid,
  .policy-grid,
  .instagram-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1240px);
  }

  .nav-row {
    gap: 12px;
  }

  .logo {
    font-size: 1.18rem;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-right: 0;
    padding: 12px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(34, 48, 38, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(217, 223, 210, 0.75);
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy,
  .split-copy,
  .split-copy.left {
    padding: 54px 24px;
  }

  .price-list,
  .gallery-grid,
  .highlights-grid,
  .team-grid,
  .policy-grid,
  .instagram-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    margin-right: 0;
  }
}

@media (max-width: 520px) {
  .logo {
    max-width: 140px;
    font-size: 1.04rem;
  }

  .btn-small {
    padding: 0 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-panel .btn,
  .instagram-copy .btn,
  .contact-form .btn {
    width: 100%;
  }

  .price-row,
  .service-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form,
  .cta-panel {
    padding: 24px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }
}

/* ── Post-process safety net (patches common LLM omissions) ── */
.mobile-nav { display: none; }
.mobile-nav.open { display: flex; flex-direction: column; }
@media (max-width: 768px) {
  .nav-links, .nav-right, .header-right, .desktop-nav { display: none !important; }
  .nav-toggle, .mobile-toggle, .hamburger { display: flex !important; }
  .mobile-nav { position: absolute; top: 72px; left: 0; right: 0; background: var(--primary, #1a1a1a); padding: 16px 24px; z-index: 999; gap: 8px; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a, .mobile-nav span { padding: 12px 0; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
/* Ensure reveal-class elements become visible even if JS observer mismatches */
.reveal { opacity: 1 !important; transform: none !important; }
.reveal.visible, .reveal.is-visible, .reveal.in-view { opacity: 1 !important; transform: none !important; }
/* Hide hidden elements */
.hidden, [hidden] { display: none !important; }
body { overflow-x: hidden; }
.img-fallback { background: var(--primary, #1a1a1a); min-height: 300px; }
img { max-width: 100%; height: auto; }
