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

:root {
  --green-dark: #1A3A2A;
  --green: #2D5A3D;
  --green-light: #3D7A54;
  --green-pale: #E8F0EB;
  --cream: #F5F2EB;
  --cream-light: #FAF8F4;
  --white: #FFFFFF;
  --text: #1A1A18;
  --text-muted: #6B6B66;
  --text-light: #9A9A94;
  --line: #E2DFD8;
  --line-light: #EDEBE6;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 200;
  font-size: 0.875rem;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

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

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 58, 42, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 242, 235, 0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 242, 235, 0.08);
}

.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-dark);
  border: 1px solid var(--green);
  border-radius: 2px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.primary-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s var(--ease);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--green-dark); }
.primary-nav a:hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  padding: 0;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 1px;
  background: var(--green-dark);
  box-shadow: 0 6px 0 var(--green-dark), 0 -6px 0 var(--green-dark);
  transition: all 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .hamburger {
  box-shadow: 0 0 0 var(--green-dark);
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--green-dark);
  transform: rotate(90deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 90, 61, 0.85) 0%, rgba(26, 58, 42, 0.95) 50%, rgba(15, 32, 22, 1) 100%);
  z-index: 1;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(61, 122, 84, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(100, 160, 120, 0.2) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.6);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline br { display: none; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(245, 242, 235, 0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 242, 235, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,242,235,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── About ── */
.about {
  padding: 8rem 0;
  background: var(--cream-light);
}

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

.about-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.about-image:hover img { transform: scale(1.02); }

.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ── Selections ── */
.selections {
  padding: 8rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.selection-card {
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream-light);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.selection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.selection-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.selection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.selection-card:hover .selection-card-image img { transform: scale(1.05); }

.selection-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-dark);
  padding: 1.5rem 1.75rem 0.5rem;
}

.selection-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.75rem 1.75rem;
}

/* ── Visit ── */
.visit {
  padding: 8rem 0;
  background: var(--cream);
}

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

.visit-address {
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.visit-address strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.visit-hours h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.visit-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--text-muted);
}

.visit-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--green);
  transition: color 0.3s var(--ease);
}
.contact-row:hover { color: var(--green-dark); }

.visit-map {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--line-light);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

/* ── Contact ── */
.contact {
  padding: 8rem 0;
  background: var(--white);
}

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

.contact-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
}
.form-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 2px;
  color: var(--green-dark);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 0;
  background: var(--green-dark);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand .logo-mark {
  border-color: rgba(245,242,235,0.3);
  color: var(--cream);
}
.footer-brand .logo-text {
  color: var(--cream);
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(245,242,235,0.5);
}

.footer-address {
  font-size: 0.8125rem;
  color: rgba(245,242,235,0.35);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image { max-height: 480px; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }

  .nav-toggle { display: block; z-index: 110; }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream-light);
    padding: 6rem 2.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .primary-nav li {
    border-bottom: 1px solid var(--line-light);
  }
  .primary-nav a {
    display: block;
    padding: 1.25rem 0;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
  .primary-nav a::after { display: none; }

  .hero-headline br { display: block; }

  .selections-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .about-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }

  .about, .selections, .visit, .contact {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; justify-content: center; }
}
