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

:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --warm-50:  #fffbeb;
  --warm-100: #fef3c7;
  --warm-200: #fde68a;
  --warm-300: #fcd34d;
  --warm-400: #fbbf24;
  --warm-500: #f59e0b;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:  0 4px 12px rgba(15,23,42,.07), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg:  0 12px 32px rgba(15,23,42,.10), 0 4px 8px rgba(15,23,42,.05);
  --shadow-xl:  0 20px 48px rgba(15,23,42,.12), 0 8px 16px rgba(15,23,42,.06);

  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--slate-50);
  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; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal-700);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,.4);
}

.btn-outline-light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--teal-700);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: .875rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ── Header / Nav ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--shadow-md);
  padding: .625rem 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  transition: var(--transition);
}
.header.scrolled .logo { color: var(--teal-700); }

.logo-icon { font-size: 1.6rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-link {
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.15); }
.header.scrolled .nav-link { color: var(--slate-600); }
.header.scrolled .nav-link:hover { color: var(--teal-700); background: var(--teal-50); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after { content: ''; }
.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after { background: var(--slate-700); }

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.72) 0%,
    rgba(13,148,136,.55) 50%,
    rgba(15,23,42,.65) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .06;
  background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  padding: 8rem 0 4rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--warm-200);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  padding: .4rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--warm-300);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Shared ─────────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-header { margin-bottom: 3.5rem; }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal-600);
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Flavors ────────────────────────────────────────────── */
.flavors { background: #fff; }

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.flavor-card {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--slate-100);
}
.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.flavor-card-visual {
  height: 200px;
  overflow: hidden;
}
.flavor-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.flavor-card:hover .flavor-card-visual img { transform: scale(1.07); }

.flavor-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.flavor-emoji { font-size: 1.75rem; }

.flavor-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate-900);
}

.flavor-desc {
  font-size: .925rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.flavor-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-top: .25rem;
}

/* ── Features ───────────────────────────────────────────── */
.features {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-900) 100%);
  color: #fff;
}

.features .section-header { margin-bottom: 3rem; }
.features .section-tag {
  color: var(--teal-200);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
}
.features .section-title { color: #fff; }
.features .section-subtitle { color: var(--teal-200); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--warm-300);
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #fff;
}

.feature-desc {
  font-size: .925rem;
  color: var(--teal-200);
  line-height: 1.65;
}

/* ── About ──────────────────────────────────────────────── */
.about { background: var(--slate-50); }

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 260px; height: 200px; object-fit: cover; }

.about-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  background: var(--teal-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.4;
}

.about-content .section-tag { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.25rem; }

.about-text {
  color: var(--slate-600);
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--slate-700);
}
.highlight-icon { font-size: 1.25rem; }

/* ── CTA ────────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(13,148,136,.88) 0%, rgba(15,23,42,.82) 100%);
}

.cta-content {
  text-align: center;
  position: relative;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ── Location ───────────────────────────────────────────── */
.location { background: #fff; }

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

.location-info { display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.location-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-md);
}

.location-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: var(--radius-md);
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: .25rem;
}

.location-card p {
  color: var(--slate-500);
  font-size: .95rem;
  line-height: 1.6;
}
.location-card a {
  color: var(--teal-600);
  font-weight: 600;
  transition: var(--transition);
}
.location-card a:hover { color: var(--teal-800); }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}

.map-placeholder {
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--slate-100) 100%);
  padding: 3rem;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.map-icon {
  color: var(--teal-500);
  margin-bottom: .5rem;
}

.map-placeholder p {
  color: var(--slate-600);
  font-size: .95rem;
}

/* ── Contact ────────────────────────────────────────────── */
.contact { background: var(--slate-50); }

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

.contact-info .section-tag { margin-bottom: 1rem; }
.contact-info .section-title { margin-bottom: 1rem; }

.contact-text {
  color: var(--slate-500);
  font-size: 1.025rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details { display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--slate-700);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
}
.contact-detail:hover { color: var(--teal-600); }
.contact-detail svg { color: var(--teal-500); flex-shrink: 0; }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 700;
  font-size: .85rem;
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,184,166,.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: var(--teal-800);
  font-weight: 600;
}
.form-success svg { color: var(--teal-600); flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--slate-800);
}

.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }

.footer-links h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links ul { display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .9rem;
  color: var(--slate-400);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: .85rem;
  color: var(--slate-500);
}

/* ── Back to Top ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-600);
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal-700);
  transform: translateY(-3px);
}

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

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { order: -1; max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    color: var(--slate-700);
    padding: .75rem 1rem;
    font-size: 1.05rem;
  }
  .nav-link:hover { background: var(--teal-50); color: var(--teal-700); }

  .nav-menu .btn-primary {
    margin-top: 1rem;
    text-align: center;
  }

  .hero-content { padding: 7rem 0 3rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-number { font-size: 1.4rem; }

  .section { padding: 4rem 0; }

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

  .about-img-secondary { right: -.5rem; bottom: -1.5rem; }
  .about-img-secondary img { width: 200px; height: 160px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
  .about-highlights { grid-template-columns: 1fr; }
}
