/* ============================================================
   sylvara CHARMS — index.css  v1.0
   Homepage-specific styles: Hero, Collections, Sections
   ============================================================ */

/* ── SHARED LAYOUT ── */
.hp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.hp-section-header,
.hp-sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hp-eyebrow-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver-dim);
  font-family: var(--f-body);
  margin-bottom: 10px;
}

.hp-title-center {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--color-heading);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.hp-title-center em {
  font-style: italic;
  color: var(--silver);
}

.hp-title-left {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--color-heading);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.hp-sub-center {
  font-size: 14px;
  color: var(--silver-dim);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
.hp-sub-left {
  font-size: 14px;
  color: var(--silver-dim);
  margin-top: 8px;
}

.hp-view-all {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver-mid);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2px;
  transition:
    color var(--t),
    border-color var(--t);
  white-space: nowrap;
  align-self: flex-end;
}
.hp-view-all:hover {
  color: var(--silver);
  border-color: var(--silver);
}

/* ── HERO ── */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 var(--side-pad);
  overflow: hidden;
  background: #000;
}

.hp-hero-bg-video {
  position: absolute;
  display:none;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
  filter: saturate(0.7) brightness(0.85);
  transform: scale(1.04);
  transition: opacity 1.2s ease;
}

/* Multi-layer cinematic overlay */
.hp-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    /* top vignette */
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 30%),
    /* bottom vignette */
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 40%),
    /* left-right edges */
    linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.35) 100%),
    /* centre dark tone */
    radial-gradient(ellipse at center, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 100%);
  z-index: 1;
}

/* Film-grain noise texture */
.hp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Silver shimmer top line */
.hp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192,192,192,0.5) 40%, rgba(255,255,255,0.8) 50%, rgba(192,192,192,0.5) 60%, transparent 100%);
  z-index: 4;
}

.hp-hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hp-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(192, 192, 192, 0.6);
  font-family: var(--f-body);
  margin-bottom: 24px;
  animation: heroFadeUp 1.1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hp-hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 8.5vw, 100px);
  font-weight: 400;
  color: var(--silver-bright);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  animation: heroFadeUp 1.1s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-h1 em {
  font-style: italic;
  color: var(--shimmer);
  font-weight: 300;
  display: block;
}

.hp-hero-desc {
  font-size: 15px;
  color: rgba(192, 192, 192, 0.55);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
  animation: heroFadeUp 1.1s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeUp 1.1s 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,192,192,0.92);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  backdrop-filter: blur(4px);
}
.hp-hero-cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(192, 192, 192, 0.22);
}

.hp-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(192,192,192,0.7);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  border: 1px solid rgba(192,192,192,0.25);
  transition:
    color var(--t),
    border-color var(--t),
    background var(--t);
  backdrop-filter: blur(4px);
}
.hp-hero-ghost:hover {
  color: var(--silver-bright);
  border-color: rgba(192,192,192,0.55);
  background: rgba(192,192,192,0.06);
}

/* Hero trust badges */
.hp-hero-badges {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeUp 1.1s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hp-hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(192,192,192,0.4);
  font-family: var(--f-body);
  font-weight: 500;
}
.badge-icon {
  color: rgba(192,192,192,0.55);
  font-size: 13px;
}

/* ── COLLECTIONS GRID ── */
.hp-collections {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-collections .hp-section-header {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.hp-coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--r-md);
}

.hp-coll-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
.hp-coll-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--t);
}
.hp-coll-card:hover {
  background: var(--surface-2);
}
.hp-coll-card:hover::before {
  opacity: 1;
}
.hp-coll-card--highlight {
  background: var(--surface-2);
}

.hp-coll-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1;
  min-width: 40px;
}
.hp-coll-info {
  flex: 1;
}
.hp-coll-info h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--silver-bright);
  line-height: 1.2;
  margin-bottom: 4px;
}
.hp-coll-info p {
  font-size: 12px;
  color: var(--silver-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hp-coll-arrow {
  font-size: 18px;
  color: var(--silver-dark);
  transition:
    color var(--t),
    transform var(--t);
}
.hp-coll-card:hover .hp-coll-arrow {
  color: var(--silver);
  transform: translate(3px, -3px);
}

/* ── SECTIONS ── */
.hp-sec {
  padding: 80px 0;
}
.hp-sec-dark {
  background: var(--black-mid);
}
.hp-sec-charcoal {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-sec-white {
  background: var(--surface);
}

/* ── PRODUCT GRIDS ── */
.hp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── CAROUSEL ── */
.hp-arrows {
  display: flex;
  gap: 8px;
}
.hp-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--silver-mid);
  font-size: 22px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color var(--t),
    border-color var(--t),
    background var(--t);
}
.hp-arrow:hover {
  color: var(--silver);
  border-color: var(--silver-dark);
  background: var(--surface-2);
}

.hp-carousel-wrap {
  overflow: hidden;
}
.hp-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* FIX: products.js wraps cards in .hp-carousel-item divs, not bare .product-card */
.hp-carousel-track .hp-carousel-item {
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  width: calc(25% - 15px);
}
.hp-carousel-track .hp-carousel-item .product-card {
  width: 100%;
  height: 100%;
}
/* Keep the old rule as fallback in case any direct product-card is injected */
.hp-carousel-track > .product-card {
  min-width: calc(25% - 15px);
  flex-shrink: 0;
}

.hp-scroll-hint {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}
.hp-scroll-hint span {
  width: 20px;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  transition:
    width 0.3s,
    background 0.3s;
}
.hp-scroll-hint span:first-child {
  background: var(--silver);
  width: 28px;
}

/* ── PREMIUM BANNER ── */
.hp-premium {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hp-premium-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}
.hp-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(192, 192, 192, 0.06) 0%,
    transparent 70%
  );
  z-index: 1;
}
.hp-premium-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px var(--side-pad);
}
.hp-premium-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver-dim);
  font-family: var(--f-body);
  margin-bottom: 20px;
}
.hp-premium-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--silver-bright);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hp-premium-title em {
  font-style: italic;
  color: var(--shimmer);
  font-weight: 300;
}
.hp-premium-sub {
  font-size: 15px;
  color: var(--silver-dim);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hp-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--silver);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid var(--silver-dark);
  border-radius: var(--r-sm);
  transition:
    background var(--t),
    color var(--t);
}
.hp-premium-btn:hover {
  background: var(--silver);
  color: var(--black);
}

/* ── BUDGET ── */
.hp-budget {
  padding: 72px 0;
  background: var(--black-mid);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-budget .hp-eyebrow-label,
.hp-budget .hp-title-center,
.hp-budget .hp-sub-center {
  text-align: center;
  width: 100%;
}
.hp-budget .hp-title-center {
  margin-top: 0;
  margin-bottom: 8px;
}
.hp-budget .hp-sub-center {
  margin-bottom: 36px;
}

.hp-budget-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.hp-budget-btn {
  padding: 12px 28px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--silver-mid);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  transition:
    color var(--t),
    border-color var(--t),
    background var(--t);
  font-family: var(--f-body);
}
.hp-budget-btn:hover {
  color: var(--silver);
  border-color: var(--silver-dark);
  background: var(--surface-2);
}
.hp-budget-filled {
  background: var(--surface-2);
  color: var(--silver);
  border-color: var(--silver-dark);
}

/* ── WHY sylvara ── */
.hp-why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hp-why-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  text-align: center;
}
.hp-why-card:hover {
  border-color: var(--silver-dark);
  box-shadow: var(--sh-silver);
}
.hp-why-ico {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--silver);
  transition: border-color var(--t);
}
.hp-why-card:hover .hp-why-ico {
  border-color: var(--silver-dark);
}
.hp-why-ico svg {
  width: 22px;
  height: 22px;
}
.hp-why-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--silver-bright);
  margin-bottom: 10px;
}
.hp-why-card p {
  font-size: 13px;
  color: var(--silver-dim);
  line-height: 1.7;
}

/* ── STATS STRIP ── */
.hp-stats {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hp-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hp-stat {
  text-align: center;
  padding: 0 56px;
}
.hp-stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--silver-bright);
  line-height: 1;
  margin-bottom: 6px;
}
.hp-stat-plus {
  font-size: 28px;
  color: var(--silver);
  vertical-align: super;
}
.hp-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-family: var(--f-body);
  font-weight: 500;
}
.hp-stat-div {
  width: 1px;
  height: 60px;
  background: var(--border-light);
}

/* ── ABOUT STRIP ── */
.hp-about-strip {
  padding: 80px 0;
  background: var(--black-mid);
}
.hp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hp-about-h2 {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--silver-bright);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hp-about-h2 em {
  font-style: italic;
  color: var(--shimmer);
  font-weight: 300;
}
.hp-about-p {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hp-about-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver-mid);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2px;
  transition:
    color var(--t),
    border-color var(--t);
}
.hp-about-link:hover {
  color: var(--silver);
  border-color: var(--silver);
}

.hp-about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-about-quote {
  position: relative;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  text-align: center;
  max-width: 380px;
}
.hp-about-qmark {
  font-family: var(--f-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--silver-dark);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 32px;
}
.hp-about-quote p {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--silver-bright);
  line-height: 1.4;
  margin-bottom: 16px;
}
.hp-about-quote cite {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
  font-style: normal;
  font-family: var(--f-body);
  font-weight: 500;
}

/* ── TESTIMONIALS ── */
.hp-testi {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.hp-testi .hp-eyebrow-label {
  text-align: center;
}
.hp-testi .hp-title-center {
  margin-bottom: 48px;
}
.hp-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-tcard {
  padding: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: left;
  transition: border-color var(--t);
}
.hp-tcard:hover {
  border-color: var(--silver-dark);
}
.hp-tcard-stars {
  color: var(--shimmer);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hp-tcard-body {
  font-size: 14px;
  color: var(--silver-dim);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--f-display);
  font-size: 16px;
}
.hp-tcard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-tcard-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver-mid);
  flex-shrink: 0;
}
.hp-tcard-footer strong {
  display: block;
  font-size: 13px;
  color: var(--silver-bright);
  font-weight: 600;
}
.hp-tcard-footer span {
  font-size: 11px;
  color: var(--silver-dim);
}

/* ── NEWSLETTER ── */
.hp-nl {
  position: relative;
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.hp-nl-shimmer {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(192, 192, 192, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hp-nl .hp-container {
  position: relative;
  z-index: 1;
}
.hp-nl .hp-eyebrow-label {
  text-align: center;
}
.hp-nl-h2 {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--silver-bright);
  line-height: 1.3;
  margin-bottom: 32px;
  margin-top: 8px;
}
.hp-nl-row {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.hp-nl-input {
  flex: 1;
  background: var(--surface-2);
  border: none;
  outline: none;
  padding: 14px 20px;
  color: var(--silver-bright);
  font-size: 14px;
}
.hp-nl-input::placeholder {
  color: var(--silver-dim);
}
.hp-nl-btn {
  background: var(--silver);
  color: var(--black);
  border: none;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t);
  font-family: var(--f-body);
}
.hp-nl-btn:hover {
  background: var(--silver-bright);
}
.hp-nl-note {
  font-size: 12px;
  margin-top: 12px;
  min-height: 20px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — index.css additions
   (Supplemental to mobile.css & mobile-fixes.css)
   ══════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hp-about-grid { gap: 48px; }
  .hp-coll-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /* Section header — stack on tablet */
  .hp-section-header,
  .hp-sec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hp-view-all { align-self: flex-start; }

  /* Collections — 2 col */
  .hp-coll-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .hp-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hp-about-visual { display: none; }

  /* Testimonials */
  .hp-testi-row { grid-template-columns: 1fr; gap: 16px; }

  /* Budget row */
  .hp-budget-row { gap: 10px; }

  /* Carousel arrows — hide on mobile (native scroll takes over) */
  .hp-arrows { display: none; }
}

@media (max-width: 600px) {
  /* Titles */
  .hp-title-center { font-size: 26px; }
  .hp-title-left { font-size: 24px; }
  .hp-nl-h2 { font-size: 22px; }

  /* About */
  .hp-about-h2 { font-size: 26px; }

  /* Section headers centred on mobile */
  .hp-section-header { align-items: center; text-align: center; }
  .hp-eyebrow-label { text-align: center; }
}
