/* ============================================
   FREEZE & CHEESE — PREMIUM CATERING WEBSITE
   Aesthetic: Elegant, warm, editorial, refined
   ============================================ */

:root {
  /* Brand palette — drawn from logo + profile */
  --green-deep: #0E2E1F;        /* Logo dark green */
  --green-rich: #163E2A;
  --green-soft: #1F4D34;
  --gold: #E8B027;              /* Logo gold/yellow */
  --gold-bright: #F5C53D;
  --gold-soft: #F8DC8E;
  --blue-deep: #1B4D7A;         /* Logo blue */
  --blue-bright: #2E7BB0;

  /* Editorial neutrals */
  --cream: #F8F4EC;
  --cream-warm: #F2EBDD;
  --ivory: #FBF8F1;
  --ink: #1A1A18;
  --ink-soft: #3D3D38;
  --muted: #6B6B62;
  --line: #E5DFD0;

  /* Typography */
  --display: 'Fraunces', 'Georgia', serif;
  --body: 'Manrope', system-ui, sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Effects */
  --shadow-sm: 0 4px 20px -8px rgba(14, 46, 31, 0.12);
  --shadow-md: 0 16px 40px -16px rgba(14, 46, 31, 0.18);
  --shadow-lg: 0 32px 80px -24px rgba(14, 46, 31, 0.25);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  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; }

::selection { background: var(--gold); color: var(--green-deep); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.eyebrow {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.section-tag {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  background: rgba(232, 176, 39, 0.12);
  color: var(--gold);
  border: 1px solid rgba(232, 176, 39, 0.3);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-tag.light {
  background: rgba(232, 176, 39, 0.18);
  color: var(--gold-bright);
  border-color: rgba(232, 176, 39, 0.4);
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-bright); }

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.65;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--green-rich);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(232, 176, 39, 0.4);
}
.btn-gold svg { transition: transform 0.3s var(--ease); }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--cream);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand-logo {
  height: 56px;
  width: auto;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links a {
  padding: 0.6rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  position: relative;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--green-deep);
  background: rgba(14, 46, 31, 0.05);
}
.nav-cta {
  background: var(--green-deep);
  color: var(--cream) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--green-deep) !important;
}
.nav-cta.active { background: var(--gold); color: var(--green-deep) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--green-deep);
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(232, 176, 39, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(14, 46, 31, 0.06), transparent 60%),
    var(--ivory);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.hero-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy { animation: fadeUp 0.9s var(--ease) both; }
.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--green-deep);
  margin: 1.25rem 0 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
}
.hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-deep);
  font-variation-settings: "opsz" 144;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  animation: fadeUp 1.1s 0.15s var(--ease) both;
}
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-illustration {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -1;
  transform: translate(20px, 20px);
  opacity: 0.6;
}
.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--line);
}
.hero-badge svg { color: var(--gold); flex-shrink: 0; }
.hero-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 0.1rem;
}
.hero-badge span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-y) 0;
  background: var(--cream);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-side { position: sticky; top: 6rem; }
.about-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
.about-body .lead {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 300;
  line-height: 1.45;
  color: var(--green-deep);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2rem;
}
.about-body strong { color: var(--green-deep); font-weight: 600; }

/* ============================================
   SPECIALTIES
   ============================================ */
.specialties {
  padding: var(--section-y) 0;
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.specialties::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 176, 39, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.cuisine-card {
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 176, 39, 0.18);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.cuisine-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.cuisine-card:hover {
  background: rgba(232, 176, 39, 0.06);
  border-color: rgba(232, 176, 39, 0.4);
  transform: translateY(-4px);
}
.cuisine-card:hover::before { transform: scaleX(1); }
.cuisine-num {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  font-feature-settings: "tnum";
}
.cuisine-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}
.cuisine-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.7);
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
  padding: var(--section-y) 0;
  background: var(--ivory);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.sector {
  text-align: center;
  padding: 2.5rem 1.75rem;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.sector:hover { transform: translateY(-6px); }
.sector-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  box-shadow: 0 16px 32px -12px rgba(232, 176, 39, 0.4);
  transition: transform 0.4s var(--ease);
}
.sector-icon svg { width: 44px; height: 44px; }
.sector:hover .sector-icon { transform: rotate(-5deg) scale(1.05); }
.sector h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 144;
}
.sector p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   VALUES
   ============================================ */
.values {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.values-intro { position: sticky; top: 6rem; }
.values-intro p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 1.5rem;
  line-height: 1.7;
}
.values-list { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
}
.value-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.value-marker {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.value-item h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
  font-variation-settings: "opsz" 144;
}
.value-item p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  padding: var(--section-y) 0;
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
}
.client-marquee {
  position: relative;
  margin-top: 3rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.client-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.client-name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  white-space: nowrap;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease);
}
.client-name:hover { opacity: 1; color: var(--gold-bright); }
.client-dot {
  color: var(--gold);
  font-size: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144;
}
.cta h2 em { font-style: italic; }
.cta p {
  color: var(--green-rich);
  font-size: 1.05rem;
}
.cta .btn-gold {
  background: var(--green-deep);
  color: var(--cream);
}
.cta .btn-gold:hover {
  background: var(--green-rich);
  box-shadow: 0 16px 40px -10px rgba(14, 46, 31, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-deep);
  color: rgba(248, 244, 236, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-variation-settings: "opsz" 144;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  transition: color 0.25s var(--ease);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-cta { color: var(--gold) !important; font-weight: 500; }
.footer-bottom {
  padding: 1.5rem var(--gutter);
  border-top: 1px solid rgba(248, 244, 236, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(248, 244, 236, 0.5);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.page-contact { background: var(--cream); }

.contact-hero {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 176, 39, 0.12), transparent 60%),
    var(--green-deep);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero-inner {
  position: relative;
  max-width: 760px;
}
.contact-hero .eyebrow { color: var(--gold-bright); margin-bottom: 1rem; }
.contact-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.contact-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.contact-hero p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.8);
  max-width: 580px;
  margin: 0 auto;
}

.contact-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card {
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}
.info-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(232, 176, 39, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }
.info-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  grid-column: 2;
  font-variation-settings: "opsz" 144;
}
.info-card p, .info-link {
  grid-column: 2;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-style: normal;
}
.info-link:hover { color: var(--gold); }

.hours-card .hours-list {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border: none; }
.hours-list li span:first-child { font-weight: 500; color: var(--green-deep); }
.hours-list li span:last-child { color: var(--muted); }
.hours-note {
  font-style: italic;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  margin-top: 0.4rem;
  display: block !important;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.4);
}
.whatsapp-btn:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.5);
}

/* Contact form */
.contact-form-wrap {
  background: var(--ivory);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.form-header { margin-bottom: 2rem; }
.form-header h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144;
}
.form-header p { color: var(--muted); font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.03em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: all 0.25s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(232, 176, 39, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show { display: block; }
.contact-form.hide { display: none; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: pop 0.5s var(--ease);
}
.success-icon svg { width: 36px; height: 36px; }
.form-success h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Map */
.map-section {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  background: var(--cream);
}
.map-frame {
  position: relative;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.map-frame iframe {
  display: block;
  filter: contrast(1.05) saturate(0.85);
}
.map-cta {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: var(--ivory);
  color: var(--green-deep);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
}
.map-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 50;
  transition: all 0.3s var(--ease);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20BD5A;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 500px; margin: 1rem auto 0; }
  .about-grid, .values-grid { grid-template-columns: 1fr; }
  .about-side, .values-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 0.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 0.85rem;
  }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; right: 0; bottom: -20px; margin: 0 1rem; }
  .map-cta { top: 1rem; right: 1rem; padding: 0.55rem 0.9rem; font-size: 0.78rem; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .brand-logo { height: 44px; }
}
