/* ============================================
   MEDHANWI DAIRY – style.css
   Flavour of Purity
   Fonts: Inter (sans-serif, all uses)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --primary:          #2E6494;
  --primary-dark:     #1d4a72;
  --primary-light:    #4a87b8;
  --primary-pale:     #ddeaf5;
  --primary-ultra:    #f0f7ff;
  --accent:           #c8dff2;
  --gold:             #c9a84c;
  --cream:            #faf8f4;
  --white:            #ffffff;
  --text-dark:        #1a2e42;
  --text-mid:         #3a5570;
  --text-light:       #6a8aaa;
  --border:           #c5daea;
  --shadow-sm:        0 2px 12px rgba(46,100,148,.08);
  --shadow-md:        0 8px 32px rgba(46,100,148,.14);
  --shadow-lg:        0 20px 60px rgba(46,100,148,.18);
  --radius:           14px;
  --radius-lg:        24px;
  --ease:             cubic-bezier(.4,0,.2,1);
  --t:                .3s;
  --font-display:     'Inter', system-ui, sans-serif;
  --font-body:        'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--primary-pale); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo: larger & proportionate ── */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-ultra);
  border: 2px solid var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(46,100,148,.12);
  transition: box-shadow var(--t) var(--ease);
}
.brand-logo:hover .logo-img-wrap {
  box-shadow: 0 4px 20px rgba(46,100,148,.22);
}
.logo-img-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.01em;
}
.brand-name .tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ── Nav ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t) var(--ease);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width var(--t) var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  transition: background var(--t) var(--ease), transform var(--t) !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  gap: 1rem;
}
.mobile-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: .5rem 0;
  border-bottom: 1px solid var(--primary-pale);
  display: block;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .nav-cta {
  background: var(--primary) !important;
  color: white !important;
  text-align: center;
  border-radius: 50px !important;
  padding: 12px !important;
  border-bottom: none !important;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-ultra) 0%, #e8f3fb 50%, var(--cream) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: .04;
}
.hero-bg-circle.c1 { width: 640px; height: 640px; top: -220px; right: -180px; }
.hero-bg-circle.c2 { width: 420px; height: 420px; bottom: -160px; left: -80px; }
.hero-bg-circle.c3 { width: 220px; height: 220px; top: 40%; right: 12%; }

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2.2rem;
  max-width: 480px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t) var(--ease), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,100,148,.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t) var(--ease);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.8rem;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-item .label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Hero visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-ring {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(46,100,148,.14);
  box-shadow:
    0 0 0 18px rgba(46,100,148,.04),
    0 0 0 36px rgba(46,100,148,.02),
    var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  animation: floatLogo 6s ease-in-out infinite;
}

.hero-logo-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--primary-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap img {
  width: 82%;
  height: auto;
  object-fit: contain;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Floating tags */
.hero-float-tag {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.t1 { top: 48px; right: 10px; animation: floatTag 3s ease-in-out infinite; }
.t2 { bottom: 80px; left: -8px; animation: floatTag 3s 1s ease-in-out infinite; }
.t3 { top: 48%; right: -14px; animation: floatTag 3s 2s ease-in-out infinite; }

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ── Marquee bar ── */
.marquee-bar {
  background: var(--primary);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track span {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.marquee-track .dot {
  color: rgba(255,255,255,.35);
  font-size: .7rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section { padding: 5.5rem 0; }
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .7rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  background: var(--primary);
  padding: 4rem 0;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  color: white;
  padding: 1.8rem 1.2rem;
}
.why-card .icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background var(--t);
}
.why-card:hover .icon-wrap { background: rgba(255,255,255,.24); }
.why-card svg { width: 28px; height: 28px; fill: white; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.why-card p {
  font-size: .87rem;
  opacity: .82;
  line-height: 1.65;
  font-weight: 400;
}

/* ============================================
   PRODUCTS
   ============================================ */
#products { background: var(--cream); }

.product-filter {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .03em;
  background: white;
  border: 2px solid var(--border);
  color: var(--text-mid);
  transition: all var(--t) var(--ease);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

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

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 190px;
  background: var(--primary-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-emoji {
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(46,100,148,.18));
  transition: transform var(--t) var(--ease);
}
.product-card:hover .product-emoji { transform: scale(1.1) rotate(-4deg); }

.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--primary);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.product-badge.fresh { background: #2d8a4e; }
.product-badge.new { background: #c0392b; }

.product-body { padding: 1.4rem; }
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.product-body p {
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: .9rem;
  line-height: 1.6;
}

.product-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.product-tag {
  font-size: .75rem;
  font-weight: 600;
  background: var(--primary-pale);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
}
.product-footer .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.product-footer .price span { font-size: .76rem; font-weight: 400; color: var(--text-light); }
.btn-sm {
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--primary);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  transition: background var(--t), transform var(--t);
}
.btn-sm:hover { background: var(--primary-dark); transform: scale(1.04); }

/* ============================================
   ABOUT
   ============================================ */
#about { background: white; }

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

/* ── Logo frame — larger & proportionate ── */
.about-visual { position: relative; }

.about-logo-frame {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--primary-ultra);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  overflow: visible;
}

.about-logo-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 40% 40%, rgba(46,100,148,.06), transparent 70%);
}

.about-logo-img {
  width: 78%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(46,100,148,.15));
}

.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--primary);
  color: white;
  width: 116px; height: 116px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.35;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: block;
  font-weight: 700;
}

.about-trust-chips {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.trust-chip {
  background: var(--primary-ultra);
  border: 1px solid var(--primary-pale);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
}

/* About content */
.about-content .eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.about-content p {
  color: var(--text-mid);
  margin-bottom: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  font-size: .97rem;
}
.about-content em {
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-display);
}

.values-list {
  margin: 1.8rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.value-icon {
  width: 36px; height: 36px;
  background: var(--primary-pale);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.value-icon svg { width: 18px; height: 18px; fill: var(--primary); }
.value-text strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.value-text span {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { background: var(--primary-ultra); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--primary-pale);
  position: absolute;
  top: -10px; left: 18px;
  line-height: 1;
}

.stars { display: flex; gap: 3px; margin-bottom: .9rem; }
.star { color: #f4a623; font-size: 1rem; }

.testimonial-card p {
  font-size: .92rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.reviewer-info span {
  font-size: .78rem;
  color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
#contact { background: white; }

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

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .8rem;
}
.contact-info p {
  color: var(--text-mid);
  margin-bottom: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail .icon-box {
  width: 44px; height: 44px;
  background: var(--primary-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .icon-box svg { width: 22px; height: 22px; fill: var(--primary); }
.contact-detail strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}
.contact-detail span { font-size: .93rem; color: var(--text-dark); line-height: 1.5; }
.contact-detail a { color: var(--primary); }

.follow-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: .75rem !important;
}

.social-links-contact { display: flex; gap: .7rem; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: background var(--t), transform var(--t);
}
.social-btn svg { width: 20px; height: 20px; fill: var(--primary); }
.social-btn:hover { background: var(--primary); transform: translateY(-3px); }
.social-btn:hover svg { fill: white; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
}
.map-wrap iframe {
  width: 100%; height: 320px;
  border: none; display: block;
}
.map-link {
  display: block;
  text-align: center;
  padding: .9rem;
  background: var(--primary-ultra);
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  transition: background var(--t);
}
.map-link:hover { background: var(--primary-pale); }

/* Contact Form */
.contact-form {
  background: var(--primary-ultra);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.contact-form .sub {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.form-row { margin-bottom: 1.1rem; }
.form-row label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: .35rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  appearance: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46,100,148,.12);
}
.form-row textarea { height: 108px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

.form-success {
  display: none;
  text-align: center;
  padding: 1.4rem;
  color: #2d8a4e;
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

/* Footer logo — larger & aligned */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.2rem;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.footer-brand .brand-text .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}
.footer-brand .brand-text .tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.footer-social { display: flex; gap: .55rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  transition: background var(--t), transform var(--t);
}
.footer-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social a:hover svg { fill: white; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t), padding-left var(--t);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: rgba(255,255,255,.62);
  margin-bottom: .55rem;
}
.footer-contact li svg { width: 15px; height: 15px; fill: var(--primary-light); flex-shrink: 0; margin-top: 3px; }
.footer-hours {
  font-size: .78rem;
  margin-top: .9rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
}

.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-bottom a:hover { color: white; }

/* ============================================
   ANIMATIONS / UTILITIES
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

#back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
  border: none;
  cursor: pointer;
  transition: opacity var(--t), transform var(--t), background var(--t);
}
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-3px); background: var(--primary-dark); }
#back-top svg { width: 22px; height: 22px; fill: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-inner { gap: 2.5rem; }
  .about-inner { gap: 3rem; }
  .hero-logo-ring { width: 310px; height: 310px; }
  .hero-logo-wrap { width: 264px; height: 264px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }
  .hero-visual { order: -1; }
  .hero-logo-ring { width: 260px; height: 260px; margin: 0 auto; }
  .hero-logo-wrap { width: 220px; height: 220px; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-float-tag { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { width: 96px; height: 96px; font-size: .65rem; }
  .about-logo-frame { max-width: 340px; }

  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .logo-img-wrap { width: 58px; height: 58px; }
  .logo-img-wrap img { width: 48px; height: 48px; }
  .brand-name .name { font-size: 1.05rem; }
  .header-inner { padding: 0 1.2rem; }
  .section-inner { padding: 0 1.2rem; }
  .hero-inner { padding: 2.5rem 1.2rem; }
  .hero-logo-ring { width: 220px; height: 220px; }
  .hero-logo-wrap { width: 184px; height: 184px; }
  .why-us-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
  .contact-form { padding: 1.6rem 1.2rem; }
  .about-badge { width: 82px; height: 82px; right: -10px; bottom: -10px; }
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item--large {
  grid-column: span 2;
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, #fff8e8 100%);
  border: 2px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}

.gallery-img-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.gallery-emoji {
  font-size: 4rem;
  transition: transform .3s ease;
  display: block;
}

.gallery-item--large .gallery-emoji {
  font-size: 5.5rem;
}

.gallery-img-wrap:hover .gallery-emoji {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(139,90,43,.85) 0%, transparent 100%);
  padding: 1rem 1.2rem 0.8rem;
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery-img-wrap:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  font-family: var(--font-display);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--large { grid-column: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery-emoji { font-size: 3rem; }
  .gallery-item--large .gallery-emoji { font-size: 3.8rem; }
}

/* ============ SVG PRODUCT ILLUSTRATIONS ============ */
.product-image svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform var(--t) var(--ease);
}
.product-card:hover .product-image svg {
  transform: scale(1.06);
}
.product-image {
  background: var(--primary-ultra);
}

/* Gallery SVG inner wrapper */
.gallery-svg-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-svg-inner svg {
  width: 80%;
  height: 80%;
  transition: transform .3s ease;
}
.gallery-img-wrap:hover .gallery-svg-inner svg {
  transform: scale(1.1);
}

/* ============================================
   LEGAL MODALS (Privacy Policy & Terms of Use)
   ============================================ */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 40, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.legal-modal.is-open {
  display: flex;
}
.legal-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  animation: modalSlideIn .28s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(22px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.legal-modal-close {
  position: sticky;
  top: 1.1rem;
  float: right;
  margin: 1.1rem 1.1rem 0 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f2f5;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: background .18s, color .18s;
  z-index: 1;
}
.legal-modal-close:hover { background: var(--primary); color: #fff; }
.legal-modal-content {
  padding: 2rem 2.4rem 2.4rem;
  clear: both;
}
.legal-modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: .3rem;
}
.legal-date {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.legal-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.5rem 0 .5rem;
}
.legal-modal-content p {
  font-size: .9rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: .8rem;
}
.legal-modal-content ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: .8rem;
}
.legal-modal-content ul li {
  font-size: .9rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: .35rem;
}
.legal-modal-content a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-modal-content a:hover { color: var(--primary-dark, var(--primary)); }

@media (max-width: 540px) {
  .legal-modal-content { padding: 1.4rem 1.2rem 1.8rem; }
  .legal-modal-content h2 { font-size: 1.4rem; }
}
