/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0F172A;
  background: #F0FDFA;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --mint: #34D399;
  --mint-light: #A7F3D0;
  --mint-pale: #ECFDF5;
  --redberry: #F43F5E;
  --redberry-light: #FFE4E6;
  --sand: #FEF3C7;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 12px 48px rgba(15,23,42,0.12);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--redberry);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.section-title span { color: var(--mint); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--mint);
  color: var(--navy);
}
.btn--primary:hover { background: #2EC48C; box-shadow: 0 8px 24px rgba(52,211,153,0.35); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
  padding: 0.625rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100dvh;
  background: var(--navy);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 99;
}
.main-nav.open { transform: translateX(0); }
.main-nav a {
  color: var(--gray-200);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.main-nav a:hover { color: var(--mint); padding-left: 0.5rem; }
.main-nav .btn { margin-top: 1rem; text-align: center; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    transform: none;
  }
  .main-nav a {
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
  }
  .main-nav a:hover { padding-left: 1rem; }
  .main-nav .btn { margin-top: 0; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.35) 100%);
  z-index: 1;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.shape { position: absolute; }
.shape--circle {
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--redberry);
  opacity: 0.15;
  top: -80px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape--square {
  width: 200px; height: 200px;
  background: var(--mint);
  opacity: 0.2;
  bottom: 15%; left: 5%;
  transform: rotate(25deg);
  animation: float 6s ease-in-out infinite reverse;
}
.shape--triangle {
  width: 0; height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--sand);
  opacity: 0.18;
  top: 25%; right: 10%;
  animation: spin 20s linear infinite;
}
.shape--ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 6px solid var(--mint);
  opacity: 0.25;
  bottom: 10%; right: 25%;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(3deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 5rem;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.hero-headline br { display: none; }
@media (min-width: 640px) { .hero-headline br { display: block; } }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Marquee ── */
.marquee {
  background: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  animation: scroll 20s linear infinite;
}
.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.marquee .dot { color: var(--mint); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── About ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--redberry);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(244,63,94,0.4);
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-text p { color: var(--gray-600); margin-bottom: 1rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ── Products ── */
.products {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.products-bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.04;
  top: -200px; right: -200px;
  pointer-events: none;
}
.products .section-header { text-align: center; margin-bottom: 3rem; }
.products .section-title { color: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.product-card {
  background: var(--navy-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--redberry);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
}
.product-card h3 {
  font-size: 1.25rem;
  color: var(--white);
  padding: 1.25rem 1.5rem 0.25rem;
}
.product-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Story ── */
.story { background: var(--mint-pale); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.story-content p { color: var(--gray-600); margin-bottom: 1rem; }
.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.story-visual { position: relative; }
.story-img-stack { position: relative; }
.story-img-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-accent {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--redberry);
  opacity: 0.15;
  border-radius: var(--radius);
  bottom: -2rem; left: -1.5rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Visit ── */
.visit { background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.visit-details {
  margin: 2rem 0;
  display: grid;
  gap: 1.5rem;
}
.visit-item dt {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--redberry);
  margin-bottom: 0.375rem;
}
.visit-item dd {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}
.visit-item a {
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  transition: border-color 0.2s, color 0.2s;
}
.visit-item a:hover { color: var(--mint); border-color: var(--mint); }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.visit-visual { position: relative; }
.visit-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Contact ── */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--redberry);
  opacity: 0.05;
  top: -200px; left: -100px;
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.contact-content .section-title { color: var(--white); }
.contact-content p { color: var(--gray-400); font-size: 1.05rem; max-width: 440px; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--gray-50);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 0.75rem;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--mint-pale);
  border: 2px solid var(--mint);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
@media (min-width: 768px) {
  .contact-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ── Footer ── */
.footer { background: var(--navy); color: var(--gray-400); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; color: var(--gray-400); }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--white); padding-left: 0.5rem; }
.footer-contact p { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.6; }
.footer-contact a {
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s, color 0.2s;
}
.footer-contact a:hover { color: var(--mint); border-color: var(--mint); }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ── 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);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
