*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #0f2519;
  --green-800: #1a3a2a;
  --green-700: #244d37;
  --green-600: #2d6046;
  --green-500: #3a7d5c;
  --green-400: #52a078;
  --green-100: #d4e8dc;
  --green-50:  #eef5f0;

  --cream: #faf9f6;
  --cream-dark: #f3f1ec;
  --cream-mid: #eae7e0;

  --ink: #1a1a18;
  --ink-light: #4a4a44;
  --ink-muted: #7a7a72;
  --ink-faint: #b0afa8;

  --gold: #c8a961;
  --gold-light: #e8d5a0;

  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(15, 37, 25, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 37, 25, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 37, 25, 0.12);
  --shadow-card: 0 2px 12px rgba(15, 37, 25, 0.06);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-mid);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green-800);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: 0;
}

.nav-logo-text {
  color: var(--ink-light);
  font-size: 14px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-500);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--green-700);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-800) !important;
  color: var(--cream) !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--green-700) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42, 90, 65, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 169, 97, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-headline em {
  color: var(--green-700);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(26, 58, 42, 0.25);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-light);
  border: 1px solid var(--cream-mid);
}

.btn-ghost:hover {
  border-color: var(--green-400);
  color: var(--green-700);
}

.btn-full {
  width: 100%;
}

/* Hero visual + floating cards */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.hero-card--main {
  width: 100%;
  aspect-ratio: 520 / 380;
}

.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--stat {
  position: absolute;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.stat-card--1 {
  bottom: 60px;
  left: -30px;
}

.stat-card--2 {
  top: 40px;
  right: -20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  max-width: 200px;
}

.stat-card--3 {
  bottom: -10px;
  right: 40px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-700);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.stat-card--2 svg {
  color: var(--green-500);
  flex-shrink: 0;
}

.hero-line {
  height: 1px;
  background: linear-gradient(90deg, var(--cream-mid), transparent 80%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-sub {
  font-size: 17px;
  color: var(--ink-light);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ─── PRODUCTS ─── */
.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 24px 28px 28px;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.product-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--green-800);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.15;
}

.about-content {
  padding: 20px 0;
}

.about-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 40px;
  list-style: none;
}

.about-feature dt {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.about-feature dd {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ─── LOCATION ─── */
.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.location-address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
}

.location-address strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.location-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.location-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-light);
}

.location-details a {
  color: var(--green-600);
  font-weight: 500;
  transition: color var(--transition);
}

.location-details a:hover {
  color: var(--green-800);
}

.location-details svg {
  color: var(--green-500);
  flex-shrink: 0;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Hours */
.location-hours {
  background: var(--green-800);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--cream);
}

.location-hours-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--gold-light);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  color: rgba(250, 249, 246, 0.7);
  font-weight: 400;
}

.hours-time {
  color: var(--cream);
  font-weight: 400;
}

.hours-note {
  font-size: 12px;
  color: rgba(250, 249, 246, 0.4);
  line-height: 1.5;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-card);
}

.contact-content {
  padding: 8px 0;
}

.contact-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
  margin: 20px 0 32px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-700);
  transition: color var(--transition), gap var(--transition);
}

.contact-phone:hover {
  color: var(--green-800);
  gap: 14px;
}

.contact-phone svg {
  color: var(--green-500);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--ink);
  padding: 12px 16px;
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-faint);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(82, 160, 120, 0.1);
}

.form-success {
  font-size: 14px;
  color: var(--green-700);
  text-align: center;
  padding: 12px;
  background: var(--green-50);
  border-radius: var(--radius);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--green-900);
  color: var(--cream);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-700);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
}

.footer-logo-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 249, 246, 0.5);
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col address,
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250, 249, 246, 0.6);
}

.footer-col a {
  color: rgba(250, 249, 246, 0.7);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 249, 246, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(250, 249, 246, 0.35);
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-links.mobile-open {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-links.mobile-open.open {
  opacity: 1;
  pointer-events: all;
}

.nav-links.mobile-open a {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .products-grid {
    gap: 20px;
  }

  .about-grid {
    gap: 40px;
  }

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

  .contact-card {
    padding: 40px;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 0 60px;
  }

  .hero-visual {
    min-height: 320px;
    order: -1;
  }

  .stat-card--1 {
    left: 0;
    bottom: 40px;
  }

  .stat-card--2 {
    right: 0;
    top: 20px;
  }

  .stat-card--3 {
    right: 10px;
    bottom: 0;
  }

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

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

  .about-visual {
    order: -1;
  }

  .about-img-stack {
    aspect-ratio: 16 / 10;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 2rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 260px;
  }

  .stat-card--2 {
    max-width: 160px;
  }

  .stat-number {
    font-size: 22px;
  }
}
