/* ─── 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;
  --emerald-500: #10b981;
  --cream-50: #f9f7f2;
  --cream-100: #f5f0e8;
  --cream-200: #ede6d8;
  --cream-300: #e0d5c4;
  --ink-900: #1a1a1a;
  --ink-700: #3a3a3a;
  --ink-500: #6b6b6b;
  --ink-300: #9e9e9e;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--emerald-900);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 560px;
  line-height: 1.7;
}

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

.section-header .section-desc {
  margin-bottom: 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--cream-50);
  border-color: var(--emerald-800);
}

.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.btn-accent {
  background: var(--cream-50);
  color: var(--emerald-900);
  border-color: var(--cream-50);
}

.btn-accent:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-900);
  border-color: var(--emerald-900);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--cream-50);
  border-color: var(--cream-200);
}

.btn-outline-light:hover {
  background: var(--cream-50);
  color: var(--emerald-900);
  transform: translateY(-2px);
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--emerald-900);
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald-800);
  color: var(--cream-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--emerald-800);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-700);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--emerald-900);
  padding: 4px;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(6, 78, 59, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 78, 59, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 24px;
}

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

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-image {
  position: relative;
}

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(6, 78, 59, 0.15);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--emerald-800);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.15;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-300);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Marquee ─── */
.marquee {
  background: var(--emerald-900);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-200);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Products ─── */
.products {
  padding: 120px 0;
  background: var(--cream-50);
}

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

.product-card {
  background: var(--cream-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(6, 78, 59, 0.12);
}

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

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

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

.product-card-content {
  padding: 28px;
}

.product-card-content h3 {
  font-size: 1.35rem;
  color: var(--emerald-900);
  margin-bottom: 10px;
}

.product-card-content p {
  font-size: 0.95rem;
  color: var(--ink-700);
  line-height: 1.65;
}

/* ─── Feature Split ─── */
.feature-split {
  padding: 120px 0;
  background: var(--cream-100);
}

.feature-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.feature-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split-content .section-headline {
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-list-icon {
  color: var(--emerald-700);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li strong {
  color: var(--emerald-900);
}

/* ─── About ─── */
.about {
  padding: 120px 0;
  background: var(--cream-50);
}

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

.about-content .section-headline {
  margin-bottom: 28px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-images {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

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

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--cream-50);
}

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

/* ─── Visit ─── */
.visit {
  padding: 120px 0;
  background: var(--emerald-900);
  color: var(--cream-50);
}

.visit .section-eyebrow {
  color: var(--emerald-500);
}

.visit .section-headline {
  color: var(--cream-50);
  margin-bottom: 48px;
}

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

.visit-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.address-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.address-icon {
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.address-block strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--cream-50);
}

.address-block a {
  color: var(--cream-200);
  transition: var(--transition);
}

.address-block a:hover {
  color: var(--cream-50);
}

.address-block div {
  color: var(--cream-200);
  line-height: 1.7;
  font-size: 1rem;
}

.visit-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visit-cta .btn-accent {
  background: var(--cream-50);
  color: var(--emerald-900);
  border-color: var(--cream-50);
}

.visit-cta .btn-accent:hover {
  background: var(--cream-100);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 100px 0;
  background: var(--cream-100);
  text-align: center;
}

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.cta-headline {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--ink-900);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
.footer {
  background: var(--ink-900);
  color: var(--cream-200);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-brand .logo {
  color: var(--cream-50);
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: var(--emerald-700);
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--ink-300);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--ink-300);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-300);
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  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);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero .container {
    gap: 48px;
  }

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

  .feature-split-inner,
  .about-grid,
  .visit-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--cream-200);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

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

  .hero {
    padding: 100px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-scroll {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .feature-split-inner,
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-secondary {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 16px;
  }

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

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

  .visit-cta {
    flex-direction: column;
  }

  .visit-cta .btn {
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
