/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream:       #fef9f0;
  --cream-dark:  #f5edd6;
  --cream-light: #fffdf7;
  --ink:         #1a1a1a;
  --ink-light:   #3d3d3d;
  --ink-muted:   #6b6b6b;
  --gold:        #b8860b;
  --gold-light:  #d4a843;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
address { font-style: normal; }
ul { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--emerald-900); color: var(--cream);
  padding: .5rem 1rem; border-radius: var(--radius);
  z-index: 9999; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: .75rem;
}
.section-eyebrow--light { color: var(--cream-dark); opacity: .7; }

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-headline--light { color: var(--cream); }
.section-headline--muted { color: var(--ink-light); }

.accent { color: var(--emerald-700); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: .9375rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: .6rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: var(--emerald-800);
  color: var(--cream);
  border-color: var(--emerald-800);
}
.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-800);
  border-color: var(--emerald-800);
}
.btn-outline:hover {
  background: var(--emerald-800);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream);
  color: var(--emerald-900);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(254, 249, 240, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 78, 59, .08);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(254, 249, 240, .96);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--emerald-800);
  color: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.25rem;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.logo-sub {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color var(--transition);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--emerald-700);
  transition: width var(--transition);
}
.nav-list a:hover { color: var(--emerald-700); }
.nav-list a:hover::after { width: 100%; }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(6,78,59,.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list li { border-bottom: 1px solid rgba(6,78,59,.06); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }
  .nav-list a::after { display: none; }
  .nav-list .btn { margin-top: .5rem; text-align: center; justify-content: center; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding: 8rem 0 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--emerald-700);
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--emerald-700); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card--main {
  width: 100%;
  aspect-ratio: 5/6;
  position: relative;
}
.hero-card--main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card__badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--emerald-900);
  color: var(--cream);
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
}

/* Stat cards */
.stat-card {
  position: absolute;
  background: var(--cream-light);
  border: 1px solid rgba(6,78,59,.1);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 2;
}
.stat-card--1 {
  bottom: 38%; left: -2rem;
  flex-direction: column;
  align-items: flex-start;
  min-width: 140px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--emerald-800);
  line-height: 1;
}
.stat-number .stat-unit { font-size: 1rem; }
.stat-label {
  font-size: .8rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.stat-sub { font-size: .75rem; }

.stat-card--2 {
  top: 12%; right: -1.5rem;
}
.stat-card--3 {
  bottom: 10%; right: -1rem;
}
.stat-icon {
  flex-shrink: 0;
  color: var(--emerald-700);
}

@media (max-width: 900px) {
  .hero { padding-top: 6rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { max-width: 100%; }
  .hero-visual { min-height: 400px; }
  .stat-card--1 { left: 0; }
  .stat-card--2 { right: 0; }
  .stat-card--3 { right: 0; }
}

@media (max-width: 480px) {
  .hero-card__badge { display: none; }
  .stat-card { padding: .75rem 1rem; }
  .stat-number { font-size: 1.4rem; }
}

/* Hero wave */
.hero-wave {
  margin-top: auto;
  color: var(--cream);
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Sections ─────────────────────────────────────── */
.section { padding: 6rem 0; }
.section--dark {
  background: var(--emerald-900);
  color: var(--cream);
}
.section--cream {
  background: var(--cream-dark);
}

/* ── About ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--emerald-700);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .2;
}

.about-content .section-headline { margin-bottom: 1.25rem; }
.about-content p {
  color: var(--ink-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
}
.feature-icon {
  color: var(--emerald-700);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-accent { display: none; }
  .about-features { grid-template-columns: 1fr; }
}

/* ── Offerings ─────────────────────────────────────── */
.offerings-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.offerings-header .section-headline { margin-bottom: .75rem; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.18);
}

.offering-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.offering-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.offering-card:hover .offering-card__img-wrap img {
  transform: scale(1.05);
}

.offering-card__body {
  padding: 1.75rem;
}
.offering-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .6rem;
}
.offering-card__desc {
  font-size: .9rem;
  color: rgba(254,249,240,.7);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .offerings-grid { grid-template-columns: 1fr; }
}

/* ── Gallery ──────────────────────────────────────── */
.gallery { text-align: center; }
.gallery .section-headline { margin-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; }
  .gallery-item:nth-child(n+2) { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: auto; }
  .gallery-item { aspect-ratio: 4/3; }
}

/* ── Visit ────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-content .section-headline { margin-bottom: 2rem; }

.visit-info {
  font-size: 1.05rem;
  color: var(--ink-light);
}
.visit-info p { margin-bottom: 1.25rem; }
.visit-address strong,
.visit-hours strong {
  display: block;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: .25rem;
}
.visit-phone a {
  color: var(--emerald-700);
  font-weight: 600;
  font-size: 1.25rem;
  transition: color var(--transition);
}
.visit-phone a:hover { color: var(--emerald-600); }
.visit-hours span { display: block; }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.map-link { position: relative; display: block; }
.map-link img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.map-link__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,78,59,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  transition: var(--transition);
}
.map-link:hover .map-link__overlay { background: rgba(6,78,59,.8); }

@media (max-width: 768px) {
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Contact ──────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-headline { margin-bottom: 1rem; }
.contact-desc {
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 400px;
}

.contact-form {
  background: var(--cream-light);
  border: 1px solid rgba(6,78,59,.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .4rem;
}
.optional {
  font-weight: 400;
  color: var(--ink-muted);
  font-size: .8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(6,78,59,.15);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald-700);
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: .8rem;
  color: var(--ink-muted);
  margin-top: .75rem;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--emerald-800);
}
.form-success svg { margin: 0 auto 1rem; color: var(--emerald-700); }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.form-success p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--emerald-900);
  color: var(--cream);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.footer-brand .logo-mark {
  width: 48px; height: 48px;
  font-size: 1.5rem;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-tagline {
  font-size: .85rem;
  color: rgba(254,249,240,.6);
}
.footer-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold-light); }
.footer-copy {
  font-size: .8rem;
  color: rgba(254,249,240,.4);
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Selection ────────────────────────────────────── */
::selection {
  background: var(--emerald-700);
  color: var(--cream);
}
