/* ================================================================
   KAHULUI CARPET & DRAPERY — REDESIGN STYLESHEET
   Palette: linen · warm sand · deep ocean teal · volcanic black
   Typography: Playfair Display + Lato + Cormorant Garamond
   ================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  /* Core palette */
  --teal:      #1a5c5c;   /* Deep ocean teal — primary brand */
  --teal-dk:   #103d3d;   /* Darker teal — hover / depth */
  --teal-lt:   #e6f0f0;   /* Light teal tint — subtle bg */
  --sand:      #c49a54;   /* Warm sand — accent */
  --sand-lt:   #d9b87a;   /* Lighter sand */
  --sand-pale: #f0e8d5;   /* Pale sand — section dividers */
  --volcanic:  #1e1b19;   /* Volcanic black — primary text */
  --linen:     #f5efe5;   /* Natural linen — page bg */
  --cream:     #fdfaf6;   /* Warm off-white */
  --dune:      #e8dbca;   /* Warm dune — alt section bg */
  --coral:     #be5e38;   /* Earthy coral — CTA primary */
  --coral-dk:  #9a4a29;   /* Darker coral — hover */
  --sage:      #4a7a58;   /* Tropical sage */
  --fog:       #7a7065;   /* Warm gray — muted text */

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Lato', Arial, sans-serif;
  --f-italic:  'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --nav-h:       72px;
  --event-bar-h: 44px;
  --max-w:  1200px;
  --radius: 8px;
  --ease:   0.28s ease;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(26, 92, 92, 0.10);
  --shadow-md:   0 4px 24px rgba(26, 92, 92, 0.14);
  --shadow-lg:   0 8px 40px rgba(26, 92, 92, 0.18);
  --shadow-nav:  0 2px 20px rgba(0, 0, 0, 0.20);
}

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

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

body {
  font-family: var(--f-body);
  color: var(--volcanic);
  background: var(--linen);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--f-body);
  border: none;
  background: none;
}

/* ----------------------------------------------------------------
   UTILITY
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--dune);
}

.section--teal {
  background: var(--teal);
}

.section--cream {
  background: var(--cream);
}

/* ----------------------------------------------------------------
   TYPOGRAPHY SYSTEM
---------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.eyebrow--light { color: var(--sand-lt); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-title--white { color: #fff; }

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--sand);
  border-radius: 2px;
  margin-top: 14px;
}

.section-title--centered::after { margin-left: auto; margin-right: auto; }
.section-title--white::after    { background: var(--sand-lt); }

.section-lead {
  font-size: 1.1rem;
  color: var(--fog);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.section-lead--white { color: rgba(255,255,255,0.82); }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--ease);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

/* Coral — primary CTA */
.btn-coral {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
}
.btn-coral:hover, .btn-coral:focus {
  background: var(--coral-dk);
  border-color: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 94, 56, 0.35);
}

/* Teal — secondary CTA */
.btn-teal {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}
.btn-teal:hover, .btn-teal:focus {
  background: var(--teal-dk);
  border-color: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 92, 92, 0.30);
}

/* Outline on dark backgrounds */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Outline on light backgrounds */
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover, .btn-outline-teal:focus {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Sand/gold */
.btn-sand {
  background: var(--sand);
  color: var(--volcanic);
  border: 2px solid var(--sand);
}
.btn-sand:hover, .btn-sand:focus {
  background: var(--sand-lt);
  border-color: var(--sand-lt);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   FADE-IN ANIMATIONS
---------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: var(--event-bar-h); left: 0; right: 0;
  z-index: 1000;
  background: var(--teal);
  transition: box-shadow var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow-nav);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  pointer-events: auto;
}

/* Desktop nav links */
.nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav__links > li {
  position: relative;
}

.nav__links a {
  color: rgba(255,255,255,0.90);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color var(--ease), background var(--ease);
  display: block;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a:focus,
.nav__links a.active {
  color: var(--sand-lt);
  background: rgba(255,255,255,0.08);
}

/* Dropdown trigger */
.nav__links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.72em;
  opacity: 0.7;
}

/* Dropdown menu */
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-dk);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.has-dropdown:hover .nav__dropdown,
.has-dropdown:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 0;
  display: block;
  color: rgba(255,255,255,0.85);
  transition: background var(--ease), color var(--ease);
}

.nav__dropdown a:hover {
  background: rgba(255,255,255,0.10);
  color: var(--sand-lt);
}

/* Right side: phone + CTA */
.nav__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__phone {
  color: var(--sand-lt);
  font-weight: 900;
  font-size: 0.88rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav__phone:hover { color: #fff; }

.nav__cta {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* Mobile call button (right of logo, left of hamburger) */
.nav__mobile-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  transition: background var(--ease);
}
.nav__mobile-call:hover { background: var(--coral-dk); }
.nav__mobile-call svg   { display: block; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  background: var(--teal-dk);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav__mobile.open {
  max-height: 500px;
}

.nav__mobile ul {
  padding: 12px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__mobile a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--ease);
}

.nav__mobile a:hover { color: var(--sand-lt); }
.nav__mobile .mobile-cta {
  margin-top: 12px;
  display: inline-block;
  background: var(--coral);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem;
  border-bottom: none !important;
}

/* ================================================================
   PAGE HERO (shared across inner pages)
================================================================ */
.page-hero {
  padding: calc(var(--event-bar-h) + var(--nav-h) + 60px) 0 72px;
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 60%, #1a4040 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-lt);
  margin-bottom: 14px;
}

.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.page-hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ================================================================
   HOME HERO — full viewport
================================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 40, 40, 0.60) 0%,
    rgba(16, 40, 40, 0.75) 100%
  );
  z-index: 1;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: calc(var(--nav-h) + 32px) 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.home-hero__logo {
  animation: float 4s ease-in-out infinite;
}

.home-hero__logo img {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

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

.home-hero__welcome {
  font-family: var(--f-italic);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  color: var(--sand-lt);
  letter-spacing: 0.06em;
}

.home-hero__name-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.home-hero__guide {
  height: 240px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.home-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--sand-lt);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.home-hero__tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: rgba(255,255,255,0.90);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.home-hero__sub {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  font-style: italic;
  font-family: var(--f-italic);
}

.home-hero__badge {
  background: var(--coral);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(190,94,56,0.45);
}

.home-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.home-hero__phone {
  color: var(--sand-lt);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.home-hero__phone:hover { color: #fff; }

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  background: var(--teal-dk);
  padding: 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 32px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__icon {
  font-size: 1.9rem;
  flex-shrink: 0;
}

.trust-bar__label {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.trust-bar__label span {
  display: block;
  color: var(--sand-lt);
  font-size: 1.4rem;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2px;
}

/* ================================================================
   SERVICES GRID (home page)
================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: block;
  color: var(--volcanic);
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--sand);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-card__body {
  padding: 24px;
}

.service-card__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.service-card__title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--fog);
  line-height: 1.65;
}

.service-card__arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.04em;
  transition: gap var(--ease);
}

.service-card:hover .service-card__arrow { letter-spacing: 0.08em; }

/* ================================================================
   GUIDE CHARACTER (shared pattern)
================================================================ */
.guide-block {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.guide-block__img {
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  user-select: none;
  pointer-events: none;
}

.guide-block__bubble {
  background: var(--cream);
  border: 2px solid var(--sand);
  border-radius: var(--radius);
  border-bottom-left-radius: 2px;
  padding: 16px 20px;
  max-width: 280px;
  font-size: 0.95rem;
  color: var(--volcanic);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.guide-block__bubble::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: -12px;
  border: 6px solid transparent;
  border-right-color: var(--sand);
}

.guide-block__bubble::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: -8px;
  border: 5px solid transparent;
  border-right-color: var(--cream);
}

.guide-block__bubble cite {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  font-style: normal;
}

/* Guide as page section companion (right-float pattern) */
.guide-companion {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  text-align: center;
}

.guide-companion img {
  max-height: 420px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}

.guide-companion__caption {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--fog);
  font-size: 0.9rem;
  margin-top: 10px;
  line-height: 1.5;
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials {
  background: var(--sand-pale);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sand);
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0.4;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.82;
  color: #3a3228;
  font-style: italic;
  padding-top: 20px;
  margin-bottom: 18px;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--teal);
  font-style: normal;
}

.testimonial-card__stars {
  color: var(--sand);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ================================================================
   WHY US SECTION
================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--fog);
  line-height: 1.65;
}

/* ================================================================
   CTA BAND
================================================================ */
.cta-band {
  background: var(--teal);
  padding: 64px 0;
  text-align: center;
}

.cta-band__title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band__phone {
  display: block;
  margin-top: 18px;
  color: var(--sand-lt);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta-band__phone:hover { color: #fff; }

/* ================================================================
   BRANDS STRIP
================================================================ */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.brand-tag {
  background: var(--teal);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag--local {
  background: var(--sage);
}

/* ================================================================
   PRODUCT FEATURE SECTION (2-col with image + text)
================================================================ */
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-layout--reverse .feature-layout__img { order: 2; }
.feature-layout--reverse .feature-layout__body { order: 1; }

.feature-layout__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-layout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-layout__body .section-title { margin-top: 0; }

.feature-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--volcanic);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

/* ================================================================
   PRODUCT CARD GRID (for flooring hub page)
================================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: block;
  color: var(--volcanic);
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.product-card__body {
  padding: 28px;
}

.product-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-card__text {
  font-size: 0.9rem;
  color: var(--fog);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.04em;
}

/* ================================================================
   WHO WE SERVE (services/commercial page)
================================================================ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.serve-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: background var(--ease), transform var(--ease);
}

.serve-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}

.serve-card__icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
}

.serve-card h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--sand-lt);
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ================================================================
   COMMERCIAL — COMPLIANCE BOX
================================================================ */
.compliance-box {
  background: var(--teal-dk);
  border: 1px solid rgba(196, 154, 84, 0.30);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
  margin-top: 40px;
}

.compliance-box h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--sand-lt);
  margin-bottom: 12px;
}

.compliance-box p {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 16px;
}

.compliance-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.compliance-badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ================================================================
   ABOUT PAGE — STORY LAYOUT
================================================================ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: start;
}

.story-text p {
  font-size: 1.05rem;
  color: #3a3228;
  line-height: 1.88;
  margin-bottom: 22px;
}

.license-block {
  background: var(--teal-lt);
  border-left: 4px solid var(--teal);
  border-radius: 4px;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 0.92rem;
  color: var(--teal-dk);
}

.license-block p { margin-bottom: 4px; }

.license-block .certified-badge {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 8px;
}

/* History blocks */
.history-section {
  background: #f9f0e3;
}

.history-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 48px;
}

.history-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(196,154,84,0.25);
}

.history-item:last-child { border-bottom: none; padding-bottom: 0; }
.history-item--reverse .history-item__img { order: 2; }
.history-item--reverse .history-item__text { order: 1; }

.history-item__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.history-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(60%) contrast(0.9) brightness(1.05);
}

.history-item__text h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 14px;
}

.history-item__text p {
  color: #4a3a28;
  line-height: 1.85;
  font-size: 0.97rem;
}

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.97rem;
  color: var(--volcanic);
  line-height: 1.6;
}

.contact-info__value a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-info__value a:hover { color: var(--coral); }

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background var(--ease), transform var(--ease);
  pointer-events: auto;
}

.social-link svg { flex-shrink: 0; }

.social-link:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--volcanic);
  letter-spacing: 0.03em;
}

.form-group label .req { color: var(--coral); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--f-body);
  font-size: 0.97rem;
  padding: 12px 16px;
  border: 2px solid #d8cebd;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--volcanic);
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 92, 92, 0.14);
}

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

.form-success {
  background: var(--sage);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  display: none;
}

.contact-map {
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe { display: block; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--volcanic);
  color: rgba(255,255,255,0.80);
  padding: 56px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  gap: 48px;
  align-items: start;
}

.footer__logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)) brightness(1.1);
}

.footer__brand-name {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--sand-lt);
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.3;
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  font-style: italic;
  margin-top: 4px;
}

.footer__center-title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--sand-lt);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__info p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer__info strong { color: rgba(255,255,255,0.90); }

.footer__license {
  font-size: 0.78rem;
  color: var(--sand);
  margin-top: 10px;
  line-height: 1.5;
}

.footer__social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.footer__social-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}

.footer__social-link:hover { color: var(--sand-lt); }

.footer__review {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.footer__review:hover { color: var(--sand-lt); }

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 14px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.60);
  transition: color var(--ease);
  white-space: nowrap;
}

.footer__nav a:hover { color: var(--sand-lt); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ================================================================
   SCROLL-TO-TOP
================================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--ease), transform var(--ease);
  z-index: 900;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { background: var(--teal-dk); }

/* ================================================================
   INNER PAGE BODY CLASS
================================================================ */
body.inner-page {
  padding-top: calc(var(--event-bar-h) + var(--nav-h));
}

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
================================================================ */
@media (max-width: 1024px) {

  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid  { grid-template-columns: repeat(2, 1fr); }
  .story-layout        { grid-template-columns: 1fr 280px; gap: 48px; }
  .footer__grid        { grid-template-columns: 140px 1fr 160px; gap: 32px; }
  .feature-layout      { gap: 40px; }
  .product-grid        { gap: 20px; }
  .history-item        { gap: 36px; }

  .nav__phone          { display: none; }
  .nav__links a        { font-size: 0.82rem; padding: 6px 10px; }

}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
================================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav__links          { display: none; }
  .nav__cta            { display: none; }
  .nav__hamburger      { display: flex; }
  .nav__mobile-call    { display: flex; }
  .nav__inner          { justify-content: space-between; }

  /* Home hero */
  .home-hero__guide        { display: none; }
  .home-hero__logo img     { height: 120px; }
  .home-hero__title        { font-size: clamp(2rem, 9vw, 3.2rem); }
  .home-hero__ctas         { flex-direction: column; align-items: center; }
  .home-hero__ctas .btn    { width: 100%; max-width: 300px; }

  /* Trust bar */
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 20px 24px; }
  .trust-bar__item:last-child { border-bottom: none; }

  /* Services grid */
  .services-grid      { grid-template-columns: 1fr; }
  .serve-grid         { grid-template-columns: 1fr; }
  .product-grid       { grid-template-columns: 1fr; }
  .why-grid           { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Feature layout */
  .feature-layout     { grid-template-columns: 1fr; gap: 32px; }
  .feature-layout--reverse .feature-layout__img,
  .feature-layout--reverse .feature-layout__body { order: unset; }

  /* Story */
  .story-layout { grid-template-columns: 1fr; }
  .guide-companion { display: none; }

  /* History */
  .history-item { grid-template-columns: 1fr; gap: 24px; }
  .history-item--reverse .history-item__img,
  .history-item--reverse .history-item__text { order: unset; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .footer__logo { text-align: center; }
  .footer__logo img { margin: 0 auto; }
  .footer__nav  { align-items: center; }
  .footer__social-row { justify-content: center; }

  /* Compliance box */
  .compliance-box { padding: 28px 20px; }

}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
================================================================ */
@media (max-width: 480px) {

  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .btn { padding: 12px 24px; }
  .section-title { font-size: 1.75rem; }

  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .cta-band { padding: 48px 0; }

  .compliance-box      { padding: 20px 16px; }
  .compliance-box h3   { font-size: 1.3rem; }

}

/* ================================================================
   FREE PRINTED CARPET DAY — EVENT PROMOTION
   June 6th, 2026 — One Day Only
================================================================ */

/* ---- Sitewide announcement bar ---- */
.event-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--event-bar-h);
  background: linear-gradient(90deg, #7a1200 0%, #a01a00 50%, #7a1200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.event-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max-w);
  width: 100%;
}

.event-bar__badge {
  background: #fff;
  color: #7a1200;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.event-bar__text {
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.3;
  text-align: center;
}

.event-bar__cta {
  color: var(--sand-lt);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.event-bar__cta:hover { opacity: 0.75; }

/* ---- Glow animation keyframes ---- */
@keyframes event-glow {
  0%, 100% {
    box-shadow:
      0 0 16px  rgba(220, 70, 20, 0.50),
      0 0 36px  rgba(220, 70, 20, 0.30),
      0 0 64px  rgba(220, 70, 20, 0.15),
      inset 0 0 20px rgba(255,255,255,0.04);
  }
  50% {
    box-shadow:
      0 0 28px  rgba(220, 70, 20, 0.80),
      0 0 60px  rgba(220, 70, 20, 0.55),
      0 0 100px rgba(220, 70, 20, 0.30),
      0 0 140px rgba(220, 70, 20, 0.12),
      inset 0 0 24px rgba(255,255,255,0.07);
  }
}

/* ---- Hero event strip (home page, above logo) ---- */
.home-hero__event {
  margin-bottom: 8px;
  background: rgba(100, 14, 0, 0.82);
  border: 1px solid rgba(255, 120, 60, 0.45);
  border-radius: var(--radius);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  animation: event-glow 2.8s ease-in-out infinite;
}

.home-hero__event-left {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  text-align: left;
}

.home-hero__event-badge {
  background: #fff;
  color: #7a1200;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-hero__event-text {
  color: #fff;
}
.home-hero__event-text strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 3px;
}
.home-hero__event-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
}

/* ---- Full event feature section (home page) ---- */
.event-feature {
  background: linear-gradient(135deg, #5c0d00 0%, #8b1a00 55%, #5c0d00 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.event-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='2' fill='%23ffffff'/%3E%3C/svg%3E");
}

.event-feature__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.event-feature__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.event-feature__badges span {
  background: #fff;
  color: #7a1200;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
}

.event-feature__eyebrow {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-feature__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
}

.event-feature__date {
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--sand-lt);
  letter-spacing: 0.03em;
}

.event-feature__desc {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 580px;
}

.event-feature__priority {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 24px 36px;
  width: 100%;
}

.event-feature__priority-label {
  display: block;
  color: var(--sand-lt);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.event-feature__priority-list {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.75;
}

.event-feature__priority-open {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: 8px;
}

.event-feature__location {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.7;
}

.event-feature__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Contact page event callout ---- */
.event-callout {
  background: linear-gradient(135deg, #5c0d00, #8b1a00);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-callout__badge {
  display: inline-block;
  background: #fff;
  color: #7a1200;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.event-callout__title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.event-callout__detail {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.75;
}

.event-callout__detail a { color: var(--sand-lt); font-weight: 700; }

.event-callout__cta { align-self: flex-start; margin-top: 4px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .event-bar        { height: auto; min-height: var(--event-bar-h); padding: 8px 14px; }
  .event-bar__text  { font-size: 0.75rem; }
  .event-feature    { padding: 56px 0; }
  .event-feature__priority { padding: 18px 20px; }
  .home-hero__event { padding: 14px 18px; gap: 12px; }
  .event-callout    { padding: 24px 20px; }

  /* Home hero: switch from centered to top-aligned so content
     isn't hidden behind the fixed event bar + nav on mobile */
  .home-hero {
    align-items: flex-start;
    padding-top: calc(var(--event-bar-h) + var(--nav-h) + 24px);
  }
}

@media (max-width: 480px) {
  /* Hide verbose event bar text on very small screens;
     keep the brand name and the details link */
  .event-bar__badge       { display: none; }
  .event-bar__text br     { display: none; }
  .home-hero__event-badge { display: none; }
  .event-feature__badges span:last-child { display: none; }

  /* Truncate the event bar text to one line on tiny screens */
  .event-bar__inner       { flex-wrap: nowrap; }
  .event-bar__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
}
