/* ═══════════════════════════════════════════
   KVS ENTERPRISES — STYLE.CSS
   Premium Shoe Laces | Agra, India
   ═══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Colors */
  --bg-primary: #FAFAF7;
  --bg-secondary: #F4F1EA;
  --accent-gold: #B8975A;
  --accent-dark-gold: #8A6E3E;
  --ink: #1A1A18;
  --body-text: #4A4740;
  --muted-text: #9A9590;
  --border: #E5E0D5;
  --white-card: #FFFFFF;
  --red-accent: #C0392B;
  --footer-bg: #111110;
  --footer-muted: #9A9590;
  --footer-link: #E5E0D5;
  --footer-heading: #A39E98;
  --footer-divider: #2A2A28;
  --whatsapp-green: #25D366;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-padding-desktop: 110px;
  --section-padding-mobile: 70px;
  --container-max: 1280px;
  --container-padding: 0 5vw;
  --card-padding: 32px;
  --card-gap: 24px;

  /* Border Radius */
  --radius-button: 100px;
  --radius-card: 20px;
  --radius-input: 12px;
  --radius-image: 24px;
  --radius-chip: 100px;

  /* Shadows */
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-button-hover: 0 8px 24px rgba(184, 151, 90, 0.35);
  --shadow-nav-scrolled: 0 2px 20px rgba(0, 0, 0, 0.06);

  /* Nav */
  --nav-height-desktop: 68px;
  --nav-height-mobile: 60px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--body-text);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: 15px;
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
}

/* ── UTILITY CLASSES ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-label-chip {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-chip);
  padding: 8px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.gold-line {
  width: 80px;
  height: 1px;
  background: var(--accent-gold);
  margin: 20px auto 0;
}

.gold-line-small {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
  margin: 12px 0 16px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height-desktop);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: var(--shadow-nav-scrolled);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-logo .dot {
  color: var(--accent-gold);
  margin: 0 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body-text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 11px 28px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-overlay.open {
  transform: translateX(0);
}

.mobile-overlay a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s ease;
}

.mobile-overlay a:hover,
.mobile-overlay a.active {
  color: var(--accent-gold);
}

.mobile-overlay .nav-cta {
  margin-top: 12px;
  font-size: 16px;
  padding: 16px 48px;
}

.mobile-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 300;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--whatsapp-green);
  opacity: 0.4;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  transition: stroke 0.3s ease;
}

.back-to-top:hover {
  background: var(--accent-gold);
}

.back-to-top:hover svg {
  stroke: #fff;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  padding: 72px 5vw 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.footer-brand .footer-logo .dot {
  color: var(--accent-gold);
  margin: 0 4px;
}

.footer-brand .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--footer-muted);
  margin-bottom: 8px;
}

.footer-brand .sub-info {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--footer-link);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--footer-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-icons a svg {
  width: 16px;
  height: 16px;
  fill: var(--footer-muted);
  transition: fill 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent-gold);
}

.social-icons a:hover svg {
  fill: #fff;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--footer-heading);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--footer-link);
  transition: color 0.3s ease;
  line-height: 1.9;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-col .address-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--footer-link);
  line-height: 1.9;
}

.footer-divider {
  max-width: var(--container-max);
  margin: 40px auto 20px;
  border: none;
  border-top: 1px solid var(--footer-divider);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.footer-bottom span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--footer-muted);
}

/* ═══════════════════════════════════════════
   HOME — HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height-desktop);
}

.hero .container {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--accent-gold);
}

.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 600;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--muted-text);
  margin-bottom: 20px;
}

.hero-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  max-width: 420px;
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-gold);
  box-shadow: var(--shadow-button-hover);
}

.btn-outline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--accent-gold);
  padding: 16px 36px;
  border-radius: var(--radius-button);
  border: 1.5px solid var(--accent-gold);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat {
  position: relative;
  padding-right: 48px;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.hero-stat .stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-text);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  background: var(--bg-secondary);
  border-radius: 32px;
  padding: 40px 32px 28px;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-mini-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease;
}

.hero-mini-card:hover {
  transform: translateY(-4px);
}

.color-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 12px;
}

.hero-mini-card .card-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted-text);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-mini-card .card-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-gold);
}

.hero-visual-caption {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-text);
  text-align: center;
}

/* Hero Banner Image */
.hero-banner-img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  transition: transform 0.6s ease;
}

.hero-banner-img:hover img {
  transform: scale(1.03);
}

/* Hero Mini Card with Image */
.hero-mini-card .card-thumb {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.hero-mini-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-mini-card:hover .card-thumb img {
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════
   HOME — MARQUEE TICKER
   ═══════════════════════════════════════════ */
.marquee {
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-gold);
  letter-spacing: 2px;
  padding: 0 12px;
  flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════
   HOME — ABOUT PREVIEW
   ═══════════════════════════════════════════ */
.about-preview {
  background: var(--white-card);
  padding: var(--section-padding-desktop) 5vw;
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}

.mosaic-block {
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.mosaic-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-block:hover img {
  transform: scale(1.05);
}

.mosaic-block .mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.mosaic-block-1 {
  grid-row: 1 / 3;
  background: var(--ink);
}

.mosaic-block-1 span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  font-weight: 600;
  color: var(--accent-gold);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.mosaic-block-2 {
  background: var(--bg-secondary);
}

.mosaic-block-2 span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--accent-gold);
  text-align: center;
  padding: 16px;
  position: relative;
  z-index: 2;
}

.mosaic-block-3 {
  background: var(--accent-gold);
}

.mosaic-block-4 {
  background: var(--border);
}

.mosaic-block-4 span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-dark-gold);
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-preview-content .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-preview-content p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 32px;
}

.feature-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.feature-chip {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
}

.feature-chip .chip-bold {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}

.feature-chip .chip-small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-text);
}

.read-more-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: var(--accent-dark-gold);
}

/* ═══════════════════════════════════════════
   HOME — PRODUCTS SHOWCASE
   ═══════════════════════════════════════════ */
.products-showcase {
  background: var(--bg-primary);
  padding: var(--section-padding-desktop) 5vw;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.section-header .left .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.section-header .right a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.section-header .right a:hover {
  color: var(--accent-dark-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  max-width: var(--container-max);
  margin: 0 auto;
}

.product-card {
  background: var(--white-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
}

.product-card-image {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-chip);
  z-index: 2;
}

.product-badge.red {
  background: var(--red-accent);
}

.product-badge.gold {
  background: var(--accent-gold);
  color: var(--ink);
}

.product-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.product-card-info {
  padding: 20px 24px 24px;
}

.product-type {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

.size-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.size-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted-text);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: var(--radius-chip);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}

.price-unit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-text);
}

.product-order-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.product-order-btn:hover {
  background: var(--accent-gold);
}

/* ═══════════════════════════════════════════
   HOME — FEATURE PILLARS
   ═══════════════════════════════════════════ */
.feature-pillars {
  background: var(--bg-secondary);
  padding: var(--section-padding-desktop) 5vw;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
}

.pillar {
  padding: 60px 48px;
  position: relative;
}

.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.5;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.pillar p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   HOME — PRODUCT GALLERY
   ═══════════════════════════════════════════ */
.product-gallery {
  background: var(--white-card);
  padding: var(--section-padding-desktop) 5vw;
}

.product-gallery .section-center {
  text-align: center;
  margin-bottom: 48px;
}

.product-gallery .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item.tall {
  grid-row: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-caption span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }
}

/* ═══════════════════════════════════════════
   HOME — CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  background: var(--ink);
  padding: 80px 5vw;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-banner .gold-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-banner .subtext {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--footer-muted);
}

.cta-btn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  background: var(--accent-gold);
  color: var(--ink);
  padding: 18px 48px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  border: none;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--accent-dark-gold);
  color: #fff;
}

/* ═══════════════════════════════════════════
   ABOUT — PAGE HERO
   ═══════════════════════════════════════════ */
.page-hero {
  height: 480px;
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height-desktop);
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: blur(2px);
}

.page-hero .section-label,
.page-hero h1,
.page-hero .italic-sub,
.page-hero .gold-line {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero .italic-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   ABOUT — FOUNDER SECTION
   ═══════════════════════════════════════════ */
.founder-section {
  background: var(--white-card);
  padding: 100px 5vw;
}

.founder-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.founder-visual {
  aspect-ratio: 3 / 4;
  background: var(--ink);
  border-radius: var(--radius-image);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-visual .initials {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 600;
  color: rgba(184, 151, 90, 0.3);
  line-height: 1;
}

.founder-visual .founder-name-block {
  text-align: center;
  margin-top: 16px;
}

.founder-visual .founder-name-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.founder-visual .founder-name-block span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--footer-muted);
}

.founder-visual .gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 0 0 24px 24px;
}

.founder-story .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.15;
}

.founder-story .italic-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  line-height: 1.5;
}

.founder-story p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.founder-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.founder-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
}

.founder-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ABOUT — OUR VALUES
   ═══════════════════════════════════════════ */
.our-values {
  background: var(--bg-primary);
  padding: 100px 5vw;
}

.our-values .section-center {
  text-align: center;
  margin-bottom: 48px;
}

.our-values .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  max-width: var(--container-max);
  margin: 0 auto;
}

.value-card {
  background: var(--white-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 32px;
}

.value-card .number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--border);
  line-height: 1;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.value-card p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   ABOUT — PRODUCTS OVERVIEW
   ═══════════════════════════════════════════ */
.products-overview {
  background: var(--bg-secondary);
  padding: 100px 5vw;
}

.products-overview .section-center {
  text-align: center;
  margin-bottom: 48px;
}

.products-overview .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.products-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.products-list-col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.products-list-col ul li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 2;
  padding-left: 20px;
  position: relative;
}

.products-list-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.products-overview .note-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--muted-text);
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ABOUT — WHY CHOOSE US
   ═══════════════════════════════════════════ */
.why-choose {
  background: var(--white-card);
  padding: 100px 5vw;
}

.why-choose .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-choose-text .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
}

.why-choose-text > p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 32px;
}

.quote-block {
  border-left: 3px solid var(--accent-gold);
  padding-left: 24px;
}

.quote-block .quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}

.quote-block .quote-author {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-text);
}

.stats-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 28px;
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.stat-card .stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   CONTACT — PAGE HERO
   ═══════════════════════════════════════════ */
.page-hero.contact-hero {
  height: 420px;
}

/* ═══════════════════════════════════════════
   CONTACT — MAIN SECTION
   ═══════════════════════════════════════════ */
.contact-main {
  background: var(--white-card);
  padding: 100px 5vw;
}

.contact-main .container {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-area .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.contact-form-area .form-subtext {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-input);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-text);
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red-accent);
}

.form-group .error-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--red-accent);
  margin-top: 4px;
  display: none;
}

.form-group.has-error .error-text {
  display: block;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9590' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.submit-btn {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--accent-gold);
}

.form-wa-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-text);
  margin-top: 16px;
  text-align: center;
}

.form-wa-note a {
  color: var(--accent-gold);
  font-weight: 500;
}

.success-message {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  color: #166534;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

/* Contact Info Side */
.contact-info-area .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.contact-info-area > p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 28px;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card .icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-card .info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 4px;
}

.contact-info-card .info-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}

.contact-info-card .info-value a {
  color: var(--ink);
  transition: color 0.3s ease;
}

.contact-info-card .info-value a:hover {
  color: var(--accent-gold);
}

.whatsapp-order-block {
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
}

.whatsapp-order-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.whatsapp-order-block p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--footer-muted);
  margin-bottom: 20px;
}

.whatsapp-order-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  background: var(--whatsapp-green);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}

.whatsapp-order-btn:hover {
  background: #1ebe57;
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════
   CONTACT — MAP SECTION
   ═══════════════════════════════════════════ */
.map-section {
  background: var(--bg-primary);
  padding: 80px 5vw;
}

.map-section .section-center {
  text-align: center;
  margin-bottom: 36px;
}

.map-section .section-h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.map-container {
  max-width: var(--container-max);
  margin: 0 auto 20px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-section .map-address {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-text);
  text-align: center;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height-desktop) + 48px);
    padding-bottom: 48px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pillar:not(:last-child)::after {
    width: 60%;
    height: 1px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }

  .pillars-grid .pillar {
    padding: 40px 32px;
  }

  .about-preview .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-mosaic {
    height: 360px;
    max-width: 500px;
    margin: 0 auto;
  }

  .founder-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--card-gap);
  }

  .products-list-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-main .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .navbar {
    height: var(--nav-height-mobile);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Section padding */
  .about-preview,
  .products-showcase,
  .feature-pillars {
    padding: var(--section-padding-mobile) 5vw;
  }

  .founder-section,
  .our-values,
  .products-overview,
  .why-choose,
  .contact-main {
    padding: var(--section-padding-mobile) 5vw;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height-mobile) + 40px);
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 72px);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat {
    padding-right: 24px;
  }

  .hero-stat .stat-number {
    font-size: 36px;
  }

  /* Page hero */
  .page-hero {
    height: 360px;
  }

  .page-hero.contact-hero {
    height: 320px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* CTA */
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Stats */
  .stats-grid-2x2 {
    grid-template-columns: 1fr 1fr;
  }

  /* Feature chips */
  .feature-chips {
    grid-template-columns: 1fr;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 80px;
  }

  /* Map */
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    padding: 28px 20px 20px;
  }

  .hero-cards-grid {
    gap: 12px;
  }

  .hero-mini-card .card-price {
    font-size: 20px;
  }

  .mosaic-block-1 span {
    font-size: 56px;
  }

  .about-mosaic {
    height: 300px;
  }

  .contact-info-card .info-value a {
    color: var(--accent-gold);
  }

  .stat-card .stat-number {
    font-size: 40px;
  }

  .cta-btn {
    padding: 16px 36px;
    font-size: 15px;
  }
}
