/* =============================================
   SOURAV PERA & CO. — Premium Heritage CSS
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  --maroon: #6B1E1E;
  --maroon-dark: #4a1515;
  --maroon-light: #8a2a2a;
  --gold: #C9A227;
  --gold-light: #dbb84a;
  --gold-pale: #f0e0a0;
  --ivory: #FFF8EC;
  --ivory-warm: #FDF3E0;
  --terracotta: #8C4A2F;
  --charcoal: #2E2E2E;
  --charcoal-light: #555;
  --charcoal-muted: #888;
  --white: #ffffff;

  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', sans-serif;

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

  --shadow-sm: 0 2px 12px rgba(107,30,30,0.08);
  --shadow-md: 0 8px 32px rgba(107,30,30,0.12);
  --shadow-lg: 0 24px 64px rgba(107,30,30,0.15);

  --transition-fast: 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-base: 0.4s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.7s cubic-bezier(0.4,0,0.2,1);

  --container-max: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

iframe { border: 0; }

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--maroon);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.section-title--light { color: var(--ivory); }
.section-title--light em { color: var(--gold-pale); }

.section-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 4px 24px rgba(107,30,30,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,248,236,0.5);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,248,236,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon);
  color: var(--ivory);
}

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

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255,248,236,0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(107,30,30,0.08), var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover { opacity: 0.8; }

.logo-mark {
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1;
  transition: transform var(--transition-base);
}

.nav-logo:hover .logo-mark { transform: rotate(30deg); }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ivory);
  transition: color var(--transition-fast);
}

.navbar.scrolled .logo-name { color: var(--maroon); }

.logo-tagline {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(255,248,236,0.6);
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.navbar.scrolled .logo-tagline { color: var(--charcoal-muted); }

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

.nav-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,248,236,0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: scaleX(1); }

.navbar.scrolled .nav-link { color: var(--charcoal-light); }
.navbar.scrolled .nav-link:hover { color: var(--maroon); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span { background: var(--maroon); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroScale 10s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes heroScale {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,8,8,0.72) 0%,
    rgba(107,30,30,0.55) 40%,
    rgba(44,18,12,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 880px;
}

.hero-overline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 24px;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-pale);
  display: block;
}

.hero-subtext {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,248,236,0.78);
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.8;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.9s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1s 1.2s both;
}

.scroll-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,248,236,0.55);
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: var(--maroon);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(201,162,39,0.3);
  border-bottom: 1px solid rgba(201,162,39,0.3);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.marquee-dot { color: var(--gold-light); opacity: 0.6; }

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

/* =============================================
   OUR STORY
   ============================================= */
.story {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  margin-bottom: clamp(64px, 9vw, 120px);
}

.story-img-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.story-img-frame:hover .story-img { transform: scale(1.04); }

.story-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--maroon);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-family: var(--font-display);
}

.badge-year {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.badge-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.story-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.story-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(107,30,30,0.12);
}

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

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(107,30,30,0.15);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--maroon), var(--gold));
}

.timeline-item {
  display: flex;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--maroon);
  border: 3px solid var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  transition: transform var(--transition-base), background var(--transition-base);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  background: var(--gold);
}

.timeline-era {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  font-weight: 300;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
}

.why-us-bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
}

.why-us-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,8,8,0.88) 0%, rgba(107,30,30,0.78) 100%);
}

.why-us .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.why-card {
  background: rgba(255,248,236,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(255,248,236,0.1);
  border-color: rgba(201,162,39,0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.why-icon {
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.88rem;
  color: rgba(255,248,236,0.65);
  line-height: 1.85;
  font-weight: 300;
}

/* =============================================
   PRODUCT SECTION
   ============================================= */
.product {
  padding: var(--section-pad) 0;
  background: var(--ivory-warm);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.product-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.product-img-wrapper:hover .product-img { transform: scale(1.04); }

.product-badge-float {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--maroon);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  width: 78px;
  height: 78px;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.product-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--maroon);
  margin-bottom: 16px;
  margin-top: 12px;
}

.product-name em {
  font-style: italic;
  color: var(--terracotta);
}

.product-tagline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal-muted);
  margin-bottom: 24px;
}

.product-divider {
  width: 56px;
  height: 1.5px;
  background: var(--gold);
  margin: 24px 0;
}

.product-desc {
  font-size: 0.93rem;
  color: var(--charcoal-light);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 28px;
}

.product-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 400;
}

.feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
}

.pickup-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(107,30,30,0.06);
  border: 1px solid rgba(107,30,30,0.15);
  border-left: 3px solid var(--maroon);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 32px;
}

.pickup-icon { font-size: 1.4rem; flex-shrink: 0; }

.pickup-notice strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 6px;
}

.pickup-notice p {
  font-size: 0.84rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.product-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 200px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
}

.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(107,30,30,0.12);
  line-height: 1;
  transition: color var(--transition-base);
}

.process-step:hover .process-num { color: var(--gold); }

.process-step-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.process-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.process-step:hover .process-step-img img { transform: scale(1.05); }

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  font-weight: 300;
}

.process-connector {
  display: flex;
  justify-content: center;
  opacity: 0.7;
  padding: 4px 0;
  margin-left: 80px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--ivory-warm);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--maroon);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
  filter: brightness(0.9) saturate(1.1);
}

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

.gallery-item--tall img {
  aspect-ratio: 1 / 2;
}

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

.gallery-item--wide img {
  aspect-ratio: 2 / 1;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.7) saturate(1.3);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(26,8,8,0.8), transparent);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

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

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--ivory);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(107,30,30,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.25);
}

.t-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.t-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

.t-loc {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-top: 2px;
}

/* =============================================
   VISIT US
   ============================================= */
.visit {
  padding: var(--section-pad) 0;
  background: var(--ivory-warm);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.visit-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(107,30,30,0.1);
}

.visit-card:last-of-type { border-bottom: none; }

.visit-card-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-card-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}

.visit-card-body {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-weight: 300;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  padding: 4px 0;
}

.hours-note {
  font-size: 0.78rem;
  color: var(--charcoal-muted);
  font-style: italic;
  margin-top: 8px;
}

.visit-link {
  display: block;
  font-size: 0.88rem;
  color: var(--maroon);
  font-weight: 500;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.visit-link:hover { color: var(--gold); }

.visit-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,30,30,0.12);
}

.pickup-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--maroon);
  color: var(--ivory);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 16px;
}

.pickup-banner-icon { font-size: 1.4rem; flex-shrink: 0; }

.pickup-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.pickup-banner p {
  font-size: 0.83rem;
  color: rgba(255,248,236,0.75);
  line-height: 1.65;
  font-weight: 300;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.contact-bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(0.6);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,8,8,0.92) 0%, rgba(107,30,30,0.85) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 20px;
  margin-top: 12px;
}

.contact-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.contact-body {
  font-size: 0.93rem;
  color: rgba(255,248,236,0.65);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,248,236,0.7);
  transition: color var(--transition-fast);
}

.social-btn:hover { color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(16px);
}

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,248,236,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,248,236,0.3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,248,236,0.1);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

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

.form-actions { margin-bottom: 20px; }

.form-quick-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,248,236,0.45);
}

.quick-btn {
  font-family: var(--font-display);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  transition: all var(--transition-fast);
}

.quick-btn--wa {
  color: #25d366;
  border-color: rgba(37,211,102,0.35);
}

.quick-btn--wa:hover {
  background: rgba(37,211,102,0.12);
}

.quick-btn--call {
  color: var(--gold);
  border-color: rgba(201,162,39,0.35);
}

.quick-btn--call:hover {
  background: rgba(201,162,39,0.12);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
}

.footer-top {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 72px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-mark { color: var(--gold); font-size: 1.1rem; }
.footer-logo .logo-name { color: var(--ivory); font-size: 0.9rem; }
.footer-logo .logo-tagline { color: rgba(255,248,236,0.45); }

.footer-desc {
  font-size: 0.84rem;
  color: rgba(255,248,236,0.5);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,248,236,0.12);
  border-radius: var(--radius-sm);
  color: rgba(255,248,236,0.5);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,162,39,0.08);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-link {
  font-size: 0.87rem;
  color: rgba(255,248,236,0.5);
  transition: color var(--transition-fast);
  font-weight: 300;
}

.footer-link:hover { color: var(--ivory); }

.footer-hours { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }

.footer-hours .hours-row {
  color: rgba(255,248,236,0.5);
  font-size: 0.84rem;
  font-weight: 300;
}

.footer-pickup { margin-top: 16px; }

.pickup-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(107,30,30,0.8);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,248,236,0.06);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,248,236,0.3);
  font-weight: 300;
}

.footer-tagline-bottom {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(201,162,39,0.5);
}

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--maroon);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--maroon);
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .story-grid,
  .product-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .story-image-col { order: -1; }

  .process-step {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
  }

  .process-step-img {
    grid-column: 2;
    max-width: 280px;
  }

  .process-step-info {
    grid-column: 2;
  }

  .process-connector { margin-left: 48px; }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 60px 40px;
    transition: right var(--transition-base);
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .nav-links.is-open { right: 0; }

  .nav-link { color: var(--charcoal-light); font-size: 0.8rem; }

  .nav-toggle { display: flex; z-index: 1000; }

  .nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-toggle.is-active span { background: var(--maroon) !important; }

  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item img,
  .gallery-item--tall img,
  .gallery-item--wide img { aspect-ratio: 1/1; }

  .story-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 48px; height: 1px; }

  .hero-cta { flex-direction: column; align-items: center; }

  .product-cta { flex-direction: column; }
  .visit-cta-row { flex-direction: column; }

  .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* =============================================
   UTILITY
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* =============================================
   NAV REVIEW BUTTON
   ============================================= */
.nav-review-btn {
  background: none;
  border: 1.5px solid rgba(201,162,39,0.5);
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 7px 16px !important;
  color: var(--gold) !important;
  transition: all var(--transition-fast);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
  line-height: 1;
}

.nav-review-btn:hover {
  background: var(--gold);
  color: var(--maroon) !important;
  border-color: var(--gold);
}

.navbar.scrolled .nav-review-btn {
  border-color: rgba(107,30,30,0.4);
  color: var(--maroon) !important;
}

.navbar.scrolled .nav-review-btn:hover {
  background: var(--maroon);
  color: var(--ivory) !important;
  border-color: var(--maroon);
}

/* Footer review link */
.footer-review-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  color: var(--gold) !important;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: color var(--transition-fast);
}

.footer-review-link:hover { color: var(--ivory) !important; }

/* =============================================
   FLOATING REVIEW FAB
   ============================================= */
.review-fab {
  position: fixed;
  bottom: 92px;         /* sits above scroll-top button */
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--maroon);
  border: none;
  border-radius: 50px;
  padding: 13px 20px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 6px 28px rgba(201,162,39,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: all var(--transition-base);
  animation: fabEnter 0.6s cubic-bezier(0.16,1,0.3,1) 2s both;
}

@keyframes fabEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.review-fab:hover {
  background: var(--maroon);
  color: var(--gold);
  box-shadow: 0 8px 36px rgba(107,30,30,0.35);
  transform: translateY(-3px);
}

.review-fab:active { transform: translateY(0); }

@media (max-width: 768px) {
  .review-fab {
    bottom: 20px;
    right: 76px;   /* beside scroll-top */
    padding: 11px 16px;
    font-size: 0.62rem;
  }
}

/* =============================================
   REVIEW MODAL OVERLAY
   ============================================= */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.review-modal-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.review-modal-overlay[hidden] {
  /* Override hidden so we can animate out */
  display: flex !important;
  opacity: 0;
  pointer-events: none;
}

/* =============================================
   REVIEW MODAL PANEL
   ============================================= */
.review-modal {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,162,39,0.2);
  transform: translateY(32px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
}

.review-modal-overlay:not([hidden]) .review-modal {
  transform: translateY(0) scale(1);
}

/* Scrollbar for modal on small screens */
.review-modal::-webkit-scrollbar { width: 4px; }
.review-modal::-webkit-scrollbar-track { background: transparent; }
.review-modal::-webkit-scrollbar-thumb { background: rgba(107,30,30,0.2); border-radius: 2px; }

/* Close button */
.review-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(107,30,30,0.15);
  border-radius: 50%;
  color: var(--charcoal-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.review-modal-close:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--ivory);
  transform: rotate(90deg);
}

/* Header */
.review-modal-header { margin-bottom: 28px; }

.review-modal-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.review-modal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--maroon);
  line-height: 1.2;
  margin-bottom: 10px;
}

.review-modal-sub {
  font-size: 0.88rem;
  color: var(--charcoal-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   STAR RATING WIDGET
   ============================================= */
.review-stars-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(107,30,30,0.1);
  border-bottom: 1px solid rgba(107,30,30,0.1);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.review-stars-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  white-space: nowrap;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #ddd;
  padding: 2px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-btn:hover,
.star-btn.is-hovered,
.star-btn.is-active {
  color: var(--gold);
}

.star-btn:hover { transform: scale(1.2); }
.star-btn.is-active { color: var(--gold); }

.star-rating-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal-muted);
  min-width: 100px;
  transition: color 0.2s ease;
}

.star-rating-text.rated { color: var(--terracotta); }

/* =============================================
   REVIEW FORM STYLES
   ============================================= */
.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-input,
.review-textarea {
  background: var(--ivory-warm) !important;
  border-color: rgba(107,30,30,0.15) !important;
  color: var(--charcoal) !important;
}

.review-input::placeholder,
.review-textarea::placeholder {
  color: var(--charcoal-muted) !important;
  font-weight: 300;
}

.review-input:focus,
.review-textarea:focus {
  border-color: var(--gold) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1) !important;
}

/* Date input calendar icon tint */
input[type="date"].review-input::-webkit-calendar-picker-indicator {
  filter: invert(40%) sepia(60%) saturate(600%) hue-rotate(340deg);
  cursor: pointer;
}

.review-form .form-label {
  color: var(--maroon);
}

.review-form-actions { margin-top: 8px; }

.review-privacy-note {
  font-size: 0.75rem;
  color: var(--charcoal-muted);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  font-family: var(--font-serif);
}

/* =============================================
   REVIEW SUCCESS STATE
   ============================================= */
.review-success {
  text-align: center;
  padding: 32px 0 16px;
}

.review-success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes successPop {
  from { transform: scale(0) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}

.review-success-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--maroon);
  margin-bottom: 14px;
}

.review-success-body {
  font-size: 0.93rem;
  color: var(--charcoal-light);
  font-weight: 300;
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto 28px;
}

.review-close-success {
  color: var(--maroon) !important;
  border-color: var(--maroon) !important;
}

/* =============================================
   RESPONSIVE — REVIEW MODAL
   ============================================= */
@media (max-width: 600px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }

  .review-modal {
    padding: 28px 22px;
  }

  .review-stars-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

