/* ============================================
   FRUTAS LOCAS — Editorial Bakery & Grocery
   Charcoal + Coral | Playfair + Inter + Crimson
   ============================================ */

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

:root {
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --charcoal-mid: #3d3d3d;
  --coral: #E85D4A;
  --coral-dark: #c94a38;
  --coral-light: #f07562;
  --cream: #FAF6F3;
  --cream-dark: #f0ebe6;
  --warm-white: #FEFCFA;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #8a8a8a;
  --text-inverse: #FAF6F3;
  --border: rgba(26, 26, 26, 0.1);
  --border-strong: rgba(26, 26, 26, 0.2);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Crimson Text', Georgia, serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s 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-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--warm-white);
  overflow-x: hidden;
}

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

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

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

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--charcoal);
  color: var(--text-inverse);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  transition: top var(--transition);
}
.skip-link:focus {
  top: var(--space-sm);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 74, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--text-inverse);
  transform: translateY(-2px);
}

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

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
}
.logo:hover { color: var(--coral); }

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--text-primary); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--charcoal);
  color: #fff !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--coral) !important;
  color: #fff !important;
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  box-shadow: 0 -7px 0 0 var(--charcoal), 0 7px 0 0 var(--charcoal);
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
  box-shadow: 0 0 0 0 transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  transform: rotate(45deg);
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  transform: rotate(-45deg);
  border-radius: 2px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(232, 93, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.hero-content {
  max-width: 560px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-body {
  font-family: var(--font-accent);
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.15);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
}

.hero-img--accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 45%;
  border: 6px solid var(--warm-white);
}

.hero-accent-circle {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(232, 93, 74, 0.4);
}
.hero-accent-circle::after {
  content: '🍊';
  font-size: 2.5rem;
  filter: grayscale(0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: float 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  background: var(--charcoal);
  padding: var(--space-sm) 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 243, 0.7);
  padding: 0 var(--space-md);
  flex-shrink: 0;
}
.dot {
  color: var(--coral) !important;
  font-size: 0.5rem !important;
  padding: 0 var(--space-sm) !important;
  align-self: center;
}

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

/* ============================================
   PRODUCTS
   ============================================ */

.products {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.section-header {
  margin-bottom: var(--space-xl);
}
.section-header--centered {
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}

.product-card--large {
  grid-column: span 7;
}
.product-card--wide {
  grid-column: span 12;
}
.product-card:not(.product-card--large):not(.product-card--wide) {
  grid-column: span 5;
}

.product-card-img {
  overflow: hidden;
  height: 240px;
}
.product-card--large .product-card-img { height: 320px; }
.product-card--wide .product-card-img { height: 200px; }

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: var(--space-md);
}

.product-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  background: rgba(232, 93, 74, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.product-card-desc {
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: var(--space-3xl) 0;
  background: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 600px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.12);
  height: 560px;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.15);
  border: 4px solid var(--warm-white);
}
.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote {
  position: absolute;
  top: -30px;
  right: 40px;
  background: var(--charcoal);
  color: var(--text-inverse);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 280px;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.2);
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-xs);
}
.about-quote cite {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--coral-light);
}

.about-content {
  padding: var(--space-lg) 0;
}

.about-body {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.about-values {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 93, 74, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}
.value-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.125rem;
}
.value-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ============================================
   WHY US
   ============================================ */

.why-us {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
  color: var(--text-inverse);
}

.why-us .section-title { color: var(--text-inverse); }
.why-us .section-subtitle { color: rgba(250, 246, 243, 0.6); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  padding: var(--space-lg);
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(232, 93, 74, 0.25);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text-inverse);
}

.feature-desc {
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(250, 246, 243, 0.6);
}

/* ============================================
   VISIT
   ============================================ */

.visit {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.visit-address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}
.visit-address strong {
  display: block;
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.25rem;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.visit-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}
.visit-detail strong {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}
.visit-detail a,
.visit-detail span {
  font-size: 1rem;
  color: var(--text-primary);
}
.visit-detail a:hover { color: var(--coral); }

.btn-directions {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
.btn-directions:hover {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 8px 24px rgba(232, 93, 74, 0.3);
}

/* MAP */
.visit-map {
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid var(--border-strong);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(232, 93, 74, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 93, 74, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.map-pin {
  color: var(--coral);
  margin-bottom: var(--space-sm);
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.map-address {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}
.map-hint {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}
.map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  padding: var(--space-3xl) 0;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-body {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.contact-direct-item:hover {
  border-color: var(--coral);
  background: rgba(232, 93, 74, 0.05);
  color: var(--coral);
}
.contact-direct-item svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* FORM */
.contact-form-wrap {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 93, 74, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-md);
  color: #16a34a;
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-success svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--charcoal);
  color: var(--text-inverse);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-strong);
}

.footer-brand .logo {
  color: var(--text-inverse);
  margin-bottom: var(--space-sm);
}
.footer-brand .logo:hover { color: var(--coral); }

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(250, 246, 243, 0.6);
  max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(250, 246, 243, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-inverse); }

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 246, 243, 0.6);
  margin-bottom: var(--space-sm);
}
.footer-contact a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(250, 246, 243, 0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--coral); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  font-size: 0.8125rem;
  color: rgba(250, 246, 243, 0.4);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-2xl) 0;
  }
  .hero-content {
    max-width: 100%;
    order: 1;
  }
  .hero-body { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual {
    order: 0;
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-img--main { width: 80%; height: 85%; }
  .hero-img--accent { width: 55%; height: 50%; }

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

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 400px;
    order: -1;
  }
  .about-img-main { height: 400px; }
  .about-img-float { right: -20px; bottom: -20px; }
  .about-quote { right: 20px; top: -20px; }

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

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--warm-white);
    box-shadow: -8px 0 32px rgba(26, 26, 26, 0.15);
    padding: 100px var(--space-lg) var(--space-lg);
    transition: right var(--transition);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  .main-nav a { font-size: 1.125rem; }
  .nav-cta {
    margin-top: var(--space-sm);
    display: block;
    text-align: center;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: var(--space-xl); }
  .hero-headline { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-visual { height: 320px; }
  .hero-scroll-indicator { display: none; }

  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card--large,
  .product-card:not(.product-card--large):not(.product-card--wide),
  .product-card--wide {
    grid-column: span 1;
  }
  .product-card-img { height: 200px; }
  .product-card--large .product-card-img { height: 240px; }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card { padding: var(--space-md); }

  .about-img-float { display: none; }
  .about-quote { position: relative; top: 0; right: 0; max-width: 100%; margin-top: var(--space-md); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form-wrap { padding: var(--space-md); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: var(--space-sm); }
  .stat-divider { width: 40px; height: 1px; }
  .hero-visual { height: 260px; }
}
