/*
   home.css — dkcleanedit homepage
   load order: token.css → global.css → home.css

   design direction
   TastyIgniter-influenced professional product aesthetic. clean light
   surfaces, structured service cards, inline social proof, sticky booking
   bar. the dark navy is reserved for the navbar, hero, location strip,
   and footer — it anchors the brand without covering the entire page.

   the homepage sets data-theme="light" on <body>, which activates the
   light token layer in token.css. all other pages remain on the dark system.

   references (ieee format)

   [1] c. coyier, "a complete guide to css animations," css-tricks, 2022.
       [online]. available: https://css-tricks.com/almanac/properties/a/animation/
       [accessed: 27 apr. 2026].

   [2] c. coyier, "a complete guide to flexbox," css-tricks, 2021.
       [online]. available: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
       [accessed: 27 apr. 2026].

   [3] c. coyier, "a complete guide to css grid," css-tricks, 2021.
       [online]. available: https://css-tricks.com/snippets/css/complete-guide-grid/
       [accessed: 27 apr. 2026].

   [4] w3c, "wcag 2.1 success criterion 1.4.3 — contrast (minimum),"
       jun. 2018. [online]. available: https://www.w3.org/TR/WCAG21/#contrast-minimum
       [accessed: 27 apr. 2026].

   [5] a. wathan and s. schoger, refactoring ui. self-published, 2018.

   [6] anthropic, "claude ai assistant," anthropic, 2025. [online].
       available: https://www.anthropic.com [accessed: 27 apr. 2026].
       used as a development aid. all design decisions remain the author's own.
*/


/* ── page entrance ──────────────────────────────────────────────────── */

.page-shell > section,
.page-shell > .grid-2,
.page-shell > hr {
  animation: fade-up 0.55s var(--ease-spring) both;
}

.page-shell > *:nth-child(1) { animation-delay:   0ms; }
.page-shell > *:nth-child(2) { animation-delay:  80ms; }
.page-shell > *:nth-child(3) { animation-delay: 150ms; }
.page-shell > *:nth-child(4) { animation-delay: 210ms; }
.page-shell > *:nth-child(5) { animation-delay: 260ms; }
.page-shell > *:nth-child(6) { animation-delay: 300ms; }
.page-shell > *:nth-child(7) { animation-delay: 330ms; }


/* ── hero — dark navy block ─────────────────────────────────────────── */
/*
   the hero sits outside the light-surface page shell.
   hardcoded navy so it's always dark regardless of the token layer.
   ref [3]: 55fr 45fr grid gives the copy room to breathe.
*/
.hero {
  background:  #0a1120;
  padding:     var(--s-10) 0 var(--s-9);
  position:    relative;
  overflow:    hidden;
}

/* subtle radial glow — depth without visible decoration */
.hero::after {
  content:        "";
  position:       absolute;
  top:            -200px;
  right:          -100px;
  width:          700px;
  height:         700px;
  background:     radial-gradient(circle at center, rgba(37, 99, 235, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index:        0;
}

.hero-inner {
  position:              relative;
  z-index:               1;
  display:               grid;
  grid-template-columns: 55fr 45fr;
  gap:                   var(--s-9);
  align-items:           center;
  width:                 min(var(--max), calc(100% - 48px));
  margin:                0 auto;
}

/* hero copy */
.hero-copy {
  display:        flex;
  flex-direction: column;
  gap:            var(--s-5);
}

.hero-eyebrow {
  display:        inline-flex;
  align-items:    center;
  gap:            7px;
  padding:        4px 12px;
  border-radius:  var(--r-pill);
  border:         1px solid rgba(96, 165, 250, 0.30);
  background:     rgba(37, 99, 235, 0.14);
  color:          #93c5fd;
  font-size:      0.72rem;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width:          fit-content;
}

.hero-eyebrow-dot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  background:    #60a5fa;
  flex-shrink:   0;
}

/* hero heading — large gradient clip text ref [4] */
#heroHeading {
  margin:          0;
  max-width:       14ch;
  font-size:       clamp(3rem, 5.5vw + 0.5rem, 5.5rem);
  line-height:     0.95;
  letter-spacing:  -0.04em;
  background:      linear-gradient(128deg, #ffffff 0%, #bfdbfe 40%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-wrap:       balance;
}

.hero-sub {
  margin:     0;
  max-width:  44ch;
  font-size:  1.05rem;
  line-height: 1.75;
  color:      rgba(255, 255, 255, 0.55);
}

/* hero stat row — inline social proof ref [2] */
.hero-stats {
  display:     flex;
  gap:         0;
  margin-top:  var(--s-2);
}

.hero-stat {
  padding-right: var(--s-6);
}

.hero-stat + .hero-stat {
  padding-left:  var(--s-6);
  border-left:   1px solid rgba(255, 255, 255, 0.10);
}

.hero-stat-num {
  font-size:      22px;
  font-weight:    800;
  color:          #fff;
  letter-spacing: -0.03em;
  line-height:    1;
}

.hero-stat-label {
  font-size:  12px;
  color:      rgba(255, 255, 255, 0.42);
  font-weight: 500;
  margin-top: 3px;
}

/* hero cta row */
.hero-ctas {
  display:    flex;
  gap:        var(--s-3);
  flex-wrap:  wrap;
  margin-top: var(--s-2);
}

.hero-btn-primary {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  min-height:      48px;
  padding:         12px 26px;
  border-radius:   var(--r-sm);
  border:          none;
  background:      #2563eb;
  color:           #fff;
  font-size:       0.95rem;
  font-weight:     700;
  letter-spacing:  0.01em;
  cursor:          pointer;
  box-shadow:      0 4px 14px rgba(37, 99, 235, 0.40);
  transition:      transform var(--ease), box-shadow var(--ease), filter var(--ease);
  text-decoration: none;
}

.hero-btn-primary:hover {
  transform:  translateY(-1px);
  filter:     brightness(1.08);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.50);
}

.hero-btn-ghost {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  min-height:      48px;
  padding:         12px 26px;
  border-radius:   var(--r-sm);
  border:          1px solid rgba(255, 255, 255, 0.18);
  background:      rgba(255, 255, 255, 0.07);
  color:           rgba(255, 255, 255, 0.85);
  font-size:       0.95rem;
  font-weight:     600;
  cursor:          pointer;
  transition:      background var(--ease), border-color var(--ease);
  text-decoration: none;
}

.hero-btn-ghost:hover {
  background:   rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

/* quick booking card — right column of hero ref [5] */
.hero-booking-card {
  background:    #fff;
  border-radius: var(--r-xl);
  padding:       var(--s-6);
  box-shadow:    0 8px 32px rgba(0, 0, 0, 0.28);
  border:        1px solid rgba(255, 255, 255, 0.10);
}

.hero-booking-title {
  font-size:     15px;
  font-weight:   700;
  color:         #0f172a;
  margin:        0 0 var(--s-5);
  letter-spacing: -0.01em;
}

.booking-field {
  margin-bottom: var(--s-3);
}

.booking-field label {
  display:        block;
  font-size:      11px;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color:          #64748b;
  margin-bottom:  5px;
}

.booking-field select {
  width:         100%;
  min-height:    42px;
  padding:       9px 12px;
  border:        1px solid #e2e8f0;
  border-radius: var(--r-sm);
  background:    #f8fafc;
  color:         #0f172a;
  font-size:     14px;
  font-family:   inherit;
  appearance:    none;
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: right 10px center;
  transition:    border-color var(--ease), box-shadow var(--ease);
}

.booking-field select:focus {
  outline:      none;
  border-color: #2563eb;
  box-shadow:   0 0 0 3px rgba(37, 99, 235, 0.12);
  background:   #fff;
}

.booking-submit {
  width:         100%;
  min-height:    46px;
  margin-top:    var(--s-2);
  background:    #2563eb;
  color:         #fff;
  font-size:     14px;
  font-weight:   700;
  border:        none;
  border-radius: var(--r-sm);
  cursor:        pointer;
  transition:    filter var(--ease), box-shadow var(--ease);
  box-shadow:    0 4px 12px rgba(37, 99, 235, 0.30);
}

.booking-submit:hover {
  filter:     brightness(1.07);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.40);
}

.booking-note {
  text-align: center;
  font-size:  12px;
  color:      #94a3b8;
  margin:     10px 0 0;
}


/* ── trust bar ──────────────────────────────────────────────────────── */

.trust-bar {
  background:    #fff;
  border-bottom: 1px solid #e2e8f0;
  padding:       14px 24px;
}

.trust-bar-inner {
  max-width:       min(var(--max), calc(100% - 48px));
  margin:          0 auto;
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             var(--s-7);
  flex-wrap:       wrap;
}

.trust-item {
  display:     flex;
  align-items: center;
  gap:         7px;
  font-size:   13px;
  font-weight: 500;
  color:       #64748b;
  white-space: nowrap;
}

.trust-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  flex-shrink:   0;
}

.trust-dot--blue  { background: #2563eb; }
.trust-dot--green { background: #16a34a; }
.trust-dot--gold  { background: #d97706; }


/* ── main content area ──────────────────────────────────────────────── */

.home-main {
  width:          min(var(--max), calc(100% - 48px));
  margin:         0 auto;
  padding:        var(--s-9) 0 var(--s-10);
  display:        grid;
  gap:            var(--s-10);
}


/* ── shared section header ──────────────────────────────────────────── */

.sec-eyebrow {
  font-size:      11px;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color:          var(--primary);
  margin-bottom:  var(--s-2);
}

.sec-title {
  font-size:      clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight:    800;
  letter-spacing: -0.025em;
  color:          #0f172a;
  margin:         0 0 var(--s-2);
  text-wrap:      balance;
}

.sec-sub {
  font-size:  15px;
  color:      #64748b;
  margin:     0;
  max-width:  52ch;
  line-height: 1.65;
}


/* ── how it works ───────────────────────────────────────────────────── */

.how-row {
  display:               grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:                   0;
  position:              relative;
  margin-top:            var(--s-7);
}

/* connecting line between step circles ref [3] */
.how-row::before {
  content:    "";
  position:   absolute;
  top:        20px;
  left:       calc(12.5% + 8px);
  right:      calc(12.5% + 8px);
  height:     1px;
  background: #e2e8f0;
  z-index:    0;
}

.how-step {
  position:   relative;
  z-index:    1;
  padding:    0 var(--s-5) 0 0;
}

.how-step-num {
  width:           40px;
  height:          40px;
  border-radius:   50%;
  background:      #2563eb;
  color:           #fff;
  font-size:       13px;
  font-weight:     800;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   var(--s-4);
  border:          3px solid #f8fafc; /* matches page bg, creates gap in the line */
  transition:      transform var(--ease), box-shadow var(--ease);
}

.how-step:hover .how-step-num {
  transform:  scale(1.10);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.how-step-title {
  font-size:     14px;
  font-weight:   700;
  color:         #0f172a;
  margin:        0 0 5px;
  line-height:   1.3;
}

.how-step-desc {
  font-size:  13px;
  color:      #64748b;
  line-height: 1.6;
  margin:     0;
}


/* ── service cards ──────────────────────────────────────────────────── */
/*
   flat, scannable cards replacing the 3D flip. show all info upfront.
   hover is lift + border, not a complete content reveal.
   ref [5] (refactoring ui): "reveal information progressively, not all at
   once — but never hide price on a pricing card."
*/
.service-grid {
  display:               grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:                   var(--s-4);
  margin-top:            var(--s-7);
}

.service-card {
  display:        flex;
  flex-direction: column;
  background:     #fff;
  border:         1px solid #e2e8f0;
  border-radius:  var(--r-lg);
  overflow:       hidden;
  transition:     box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.service-card:hover {
  box-shadow:   var(--shadow-2);
  border-color: var(--primary-border);
  transform:    translateY(-3px);
}

.service-card-head {
  padding:       var(--s-5) var(--s-5) var(--s-4);
  border-bottom: 1px solid #f1f5f9;
}

.service-badge {
  display:        inline-flex;
  align-items:    center;
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding:        3px 9px;
  border-radius:  var(--r-pill);
  margin-bottom:  var(--s-3);
}

.service-badge--standard { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.service-badge--express  { background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; }
.service-badge--nextday  { background: #fdf2f8; color: #9d174d; border: 1px solid #fbcfe8; }

.service-name {
  font-size:      17px;
  font-weight:    800;
  letter-spacing: -0.02em;
  color:          #0f172a;
  margin:         0 0 4px;
}

.service-desc {
  font-size:  13px;
  color:      #64748b;
  margin:     0;
  line-height: 1.5;
}

.service-card-body {
  padding:     var(--s-4) var(--s-5);
  flex:        1;
}

.service-price-from {
  display:     block;
  font-size:   11px;
  font-weight: 600;
  color:       #94a3b8;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-price {
  font-size:      30px;
  font-weight:    900;
  letter-spacing: -0.04em;
  color:          #0f172a;
  line-height:    1;
  margin-bottom:  var(--s-4);
}

.service-features {
  display:        flex;
  flex-direction: column;
  gap:            6px;
}

.service-feature {
  display:     flex;
  align-items: center;
  gap:         8px;
  font-size:   13px;
  color:       #334155;
}

.service-feature-dot {
  width:         5px;
  height:        5px;
  border-radius: 50%;
  background:    #2563eb;
  flex-shrink:   0;
}

.service-card-footer {
  padding:       var(--s-3) var(--s-5) var(--s-5);
  border-top:    1px solid #f1f5f9;
  background:    #f8fafc;
}

.service-card-cta {
  width:         100%;
  min-height:    42px;
  background:    #2563eb;
  color:         #fff;
  font-size:     13px;
  font-weight:   700;
  border:        none;
  border-radius: var(--r-sm);
  cursor:        pointer;
  transition:    filter var(--ease), box-shadow var(--ease);
}

.service-card-cta:hover {
  filter:     brightness(1.07);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
}


/* ── location strip — dark navy band ────────────────────────────────── */

.location-strip {
  background:    #0a1120;
  border-radius: var(--r-xl);
  padding:       var(--s-7) var(--s-7);
  display:       flex;
  align-items:   center;
  gap:           var(--s-7);
  justify-content: space-between;
  flex-wrap:     wrap;
}

.location-strip-copy { flex: 1; min-width: 200px; }

.location-strip-title {
  font-size:      20px;
  font-weight:    800;
  color:          #fff;
  letter-spacing: -0.02em;
  margin:         0 0 4px;
}

.location-strip-sub {
  font-size: 14px;
  color:     rgba(255, 255, 255, 0.45);
  margin:    0;
}

.location-chips {
  display: flex;
  gap:     var(--s-3);
  flex-wrap: wrap;
}

.location-chip {
  display:       flex;
  align-items:   center;
  gap:           10px;
  background:    rgba(255, 255, 255, 0.07);
  border:        1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--r-md);
  padding:       10px 16px;
  transition:    background var(--ease), border-color var(--ease);
}

.location-chip:hover {
  background:   rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}

.location-chip-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    #4ade80;
  flex-shrink:   0;
}

.location-chip-name {
  font-size:   14px;
  font-weight: 600;
  color:       #fff;
}

.location-chip-city {
  font-size: 12px;
  color:     rgba(255, 255, 255, 0.42);
  margin-top: 1px;
}

.location-strip-btn {
  display:         inline-flex;
  align-items:     center;
  min-height:      44px;
  padding:         10px 22px;
  border-radius:   var(--r-sm);
  border:          none;
  background:      #2563eb;
  color:           #fff;
  font-size:       14px;
  font-weight:     700;
  cursor:          pointer;
  white-space:     nowrap;
  flex-shrink:     0;
  transition:      filter var(--ease), box-shadow var(--ease);
  text-decoration: none;
}

.location-strip-btn:hover {
  filter:     brightness(1.08);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.40);
}


/* ── loyalty tiers ──────────────────────────────────────────────────── */

.tier-grid {
  display:               grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:                   var(--s-4);
  align-items:           end;
  margin-top:            var(--s-7);
}

.tier-card {
  display:        flex;
  flex-direction: column;
  background:     #fff;
  border:         1px solid #e2e8f0;
  border-radius:  var(--r-lg);
  overflow:       hidden;
  transition:     box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.tier-card:hover {
  box-shadow:   var(--shadow-2);
  border-color: #bfdbfe;
  transform:    translateY(-3px);
}

/* featured stone card lifts above ref [5] */
.tier-card--featured {
  border-color: #2563eb;
  box-shadow:   0 0 0 2px #2563eb, var(--shadow-2);
  transform:    translateY(-10px);
}

.tier-card--featured:hover {
  transform: translateY(-14px);
}

.tier-head {
  padding:       var(--s-5) var(--s-5) var(--s-4);
  border-bottom: 1px solid #f1f5f9;
}

.tier-featured-pill {
  display:        inline-block;
  background:     #2563eb;
  color:          #fff;
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding:        3px 9px;
  border-radius:  var(--r-pill);
  margin-bottom:  var(--s-2);
}

.tier-name {
  font-size:      17px;
  font-weight:    800;
  color:          #0f172a;
  margin:         0 0 2px;
  letter-spacing: -0.01em;
}

.tier-range {
  font-size: 13px;
  color:     #64748b;
  margin:    0;
}

.tier-body {
  flex:    1;
  padding: var(--s-4) var(--s-5) var(--s-3);
}

.tier-perk {
  font-size:      20px;
  font-weight:    800;
  color:          #0f172a;
  letter-spacing: -0.02em;
  margin:         0 0 4px;
}

.tier-perk--gold { color: #d97706; }

.tier-detail {
  font-size: 13px;
  color:     #64748b;
  margin:    0;
}

.tier-progress-wrap {
  margin-top:    var(--s-4);
  height:        4px;
  background:    #e2e8f0;
  border-radius: var(--r-pill);
  overflow:      hidden;
}

.tier-progress-bar {
  height:        100%;
  border-radius: var(--r-pill);
  background:    #2563eb;
  transition:    width 0.6s var(--ease-spring);
}

.tier-progress-bar--gold { background: #d97706; }
.tier-progress-bar--grey { background: #94a3b8; }

.tier-cta {
  padding:    var(--s-3) var(--s-5) var(--s-5);
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}

.tier-cta-btn {
  width:         100%;
  min-height:    40px;
  background:    #2563eb;
  color:         #fff;
  font-size:     13px;
  font-weight:   700;
  border:        none;
  border-radius: var(--r-sm);
  cursor:        pointer;
  transition:    filter var(--ease);
  text-decoration: none;
  display:       flex;
  align-items:   center;
  justify-content: center;
}

.tier-cta-btn:hover { filter: brightness(1.08); }


/* ── testimonials ───────────────────────────────────────────────────── */

.testi-grid {
  display:               grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:                   var(--s-4);
  margin-top:            var(--s-7);
}

.testi-card {
  background:     #fff;
  border:         1px solid #e2e8f0;
  border-radius:  var(--r-lg);
  padding:        var(--s-5);
  display:        flex;
  flex-direction: column;
  gap:            var(--s-4);
  transition:     box-shadow var(--ease), transform var(--ease);
}

.testi-card:hover {
  box-shadow: var(--shadow-1);
  transform:  translateY(-2px);
}

.testi-stars {
  display: flex;
  gap:     3px;
  color:   #d97706;
  font-size: 14px;
}

.testi-quote {
  font-size:   14px;
  color:       #334155;
  line-height: 1.72;
  font-style:  italic;
  flex:        1;
  margin:      0;
}

.testi-attribution {
  display:       flex;
  align-items:   center;
  gap:           10px;
  padding-top:   var(--s-4);
  border-top:    1px solid #f1f5f9;
}

.testi-avatar {
  width:           34px;
  height:          34px;
  border-radius:   50%;
  background:      #eff6ff;
  color:           #2563eb;
  font-size:       13px;
  font-weight:     700;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.testi-name {
  font-size:      13px;
  font-weight:    700;
  color:          #0f172a;
  margin:         0;
  letter-spacing: 0.01em;
}

.testi-meta {
  font-size: 12px;
  color:     #94a3b8;
  margin:    0;
}


/* ── carousel — restoration examples ───────────────────────────────── */
/*
   carousel keeps its dark inner track (photos need max contrast)
   but the card chrome moves to the light surface system.
*/

.carousel {
  position:       relative;
  display:        flex;
  flex-direction: column;
  background:     #fff;
  border:         1px solid #e2e8f0;
  border-radius:  var(--r-lg);
  box-shadow:     var(--shadow-1);
  overflow:       hidden;
  transition:     box-shadow var(--ease), border-color var(--ease);
}

.carousel:hover {
  box-shadow:   var(--shadow-2);
  border-color: #cbd5e1;
}

.carousel .card-header {
  flex-shrink:  0;
  padding:      var(--s-3) var(--s-5);
  border-bottom: 1px solid #f1f5f9;
  background:   #f8fafc;
  display:      flex;
  align-items:  center;
  justify-content: space-between;
}

.carousel .card-title {
  margin:         0;
  font-size:      0.68rem;
  font-weight:    700;
  color:          #64748b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.carousel-viewport {
  flex:       1;
  overflow:   hidden;
  background: #040c18;
  position:   relative;
}

.carousel-track {
  display:          grid;
  grid-auto-flow:   column;
  grid-auto-columns: 100%;
  transition:       transform 420ms var(--ease-spring);
  will-change:      transform;
}

.carousel-track img {
  display:    block;
  width:      100%;
  height:     300px;
  object-fit: cover;
  transition: filter 400ms var(--ease);
}

.carousel-track img:hover { filter: brightness(1.06); }

.carousel-btn {
  position:                absolute;
  top:                     50%;
  z-index:                 2;
  display:                 grid;
  place-items:             center;
  width:                   36px;
  height:                  36px;
  border:                  1px solid rgba(255, 255, 255, 0.18);
  border-radius:           50%;
  background:              rgba(10, 17, 32, 0.80);
  backdrop-filter:         blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color:                   rgba(255, 255, 255, 0.80);
  font-size:               1.2rem;
  line-height:             1;
  transform:               translateY(-50%);
  transition:              background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.carousel-btn:hover {
  background:   #2563eb;
  border-color: #1d4ed8;
  color:        #fff;
  transform:    translateY(-50%) scale(1.10);
}

.carousel-btn:active { transform: translateY(-50%) scale(0.94); }
.carousel-btn.prev   { left: 10px; }
.carousel-btn.next   { right: 10px; }

.carousel-dots {
  display:         flex;
  justify-content: center;
  gap:             6px;
  padding:         10px 0;
  flex-shrink:     0;
  background:      #f8fafc;
  border-top:      1px solid #f1f5f9;
}

.carousel-dots button {
  width:         5px;
  height:        5px;
  padding:       0;
  border:        none;
  border-radius: 50%;
  background:    #cbd5e1;
  cursor:        pointer;
  transition:    background var(--ease), width var(--ease), border-radius var(--ease);
}

.carousel-dots button.active {
  width:         20px;
  border-radius: var(--r-pill);
  background:    #2563eb;
}


/* ── about card ─────────────────────────────────────────────────────── */

.home-about {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  gap:             var(--s-5);
  padding:         var(--s-7) var(--s-6);
  background:      #fff;
  border:          1px solid #e2e8f0;
  border-left:     3px solid #2563eb;
  border-radius:   var(--r-lg);
  box-shadow:      var(--shadow-1);
  transition:      border-left-color var(--ease), box-shadow var(--ease);
}

.home-about:hover {
  border-left-color: #60a5fa;
  box-shadow:        var(--shadow-2);
}

.home-about h2 { margin: 0; color: #0f172a; }

.home-about p {
  margin:      0;
  font-size:   1rem;
  line-height: 1.82;
  color:       #64748b;
}


/* ── home-overview grid ─────────────────────────────────────────────── */

.home-overview {
  align-items: stretch;
  gap:         var(--s-6);
}


/* ── tutorial grid ──────────────────────────────────────────────────── */

.tutorial-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:                   var(--s-4);
}

.tutorial-card {
  display:        flex;
  flex-direction: column;
  overflow:       hidden;
  background:     #fff;
  border:         1px solid #e2e8f0;
  border-radius:  var(--r-lg);
  box-shadow:     var(--shadow-1);
  cursor:         pointer;
  position:       relative;
  transition:     transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.tutorial-card:hover {
  transform:    translateY(-4px);
  box-shadow:   var(--shadow-2);
  border-color: #bfdbfe;
}

.tutorial-thumb {
  position:    relative;
  overflow:    hidden;
  background:  #040c18;
  aspect-ratio: 16 / 10;
}

.tutorial-card img {
  display:    block;
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-spring), filter 400ms var(--ease);
}

.tutorial-card:hover img {
  transform: scale(1.05);
  filter:    brightness(0.82);
}

.tutorial-thumb video {
  display:    block;
  width:      100%;
  height:     100%;
  object-fit: cover;
  background: #040c18;
}

.tutorial-card:has(img) .tutorial-thumb::after {
  content:             "";
  position:            absolute;
  inset:               0;
  display:             grid;
  place-items:         center;
  background-image:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='rgba(10,17,32,0.70)'/%3E%3Cpolygon points='10,8 18,12 10,16' fill='rgba(255,255,255,0.90)'/%3E%3C/svg%3E");
  background-repeat:   no-repeat;
  background-position: center;
  background-size:     52px;
  background-color:    rgba(0, 0, 0, 0);
  opacity:             0;
  transition:          opacity var(--ease), background-color var(--ease);
  pointer-events:      none;
}

.tutorial-card:has(img):hover .tutorial-thumb::after {
  opacity:          1;
  background-color: rgba(0, 0, 0, 0.28);
}

.tutorial-play-overlay {
  position:        absolute;
  inset:           0;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             var(--s-2);
  background:      rgba(0, 0, 0, 0);
  opacity:         0;
  transition:      background var(--ease), opacity var(--ease);
}

.tutorial-card--image:hover .tutorial-play-overlay {
  background: rgba(0, 0, 0, 0.50);
  opacity:    1;
}

.tutorial-play-icon {
  display:         flex;
  align-items:     center;
  justify-content: center;
  width:           48px;
  height:          48px;
  border-radius:   50%;
  background:      #2563eb;
  border:          2px solid rgba(255, 255, 255, 0.25);
  position:        relative;
}

.tutorial-play-icon::after {
  content:      "";
  display:      block;
  width:        0;
  height:       0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left:  3px;
}

.tutorial-play-label {
  font-size:      0.70rem;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color:          rgba(255, 255, 255, 0.88);
}

.tutorial-card--image .tutorial-thumb {
  display:         block;
  text-decoration: none;
}

.tutorial-thumb--video {
  background: #040c18;
  display:    flex;
  align-items: stretch;
}

.tutorial-video {
  display:      block;
  width:        100%;
  aspect-ratio: 16 / 10;
  background:   #040c18;
  object-fit:   cover;
}

.tutorial-card--video .tutorial-thumb::after { display: none; }
.tutorial-card--video:hover { cursor: default; }

.tutorial-info {
  flex:        1;
  padding:     var(--s-4) var(--s-5) var(--s-5);
  border-top:  1px solid #f1f5f9;
  display:     flex;
  flex-direction: column;
  gap:         var(--s-2);
}

.tutorial-tag {
  display:        inline-flex;
  align-items:    center;
  height:         20px;
  padding:        0 8px;
  border-radius:  var(--r-pill);
  border:         1px solid #e2e8f0;
  background:     #f8fafc;
  color:          #64748b;
  font-size:      0.60rem;
  font-weight:    700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width:          fit-content;
}

.tutorial-info h3 {
  margin:         0;
  font-size:      1rem;
  font-weight:    700;
  color:          #0f172a;
  line-height:    1.35;
  letter-spacing: -0.01em;
}

.tutorial-card:hover .tutorial-info h3 { color: #2563eb; }

.tutorial-info .sub {
  margin:      0;
  font-size:   0.80rem;
  color:       #64748b;
  line-height: 1.65;
}


/* ── testimonials section — section-level wrapper ───────────────────── */

.testimonials-section { }
.tutorials-section    { }


/* ── section dividers ───────────────────────────────────────────────── */

.home-divider {
  height:     1px;
  background: #e2e8f0;
  border:     none;
  margin:     0;
}


/* ── site footer — dark ─────────────────────────────────────────────── */

.site-footer {
  background:    #0a1120;
  border-top:    1px solid rgba(255, 255, 255, 0.07);
  padding:       var(--s-9) 0 var(--s-6);
  /* footer is always dark, override light token bg */
  color:         rgba(255, 255, 255, 0.55);
}

.footer-inner-grid {
  width:                 min(var(--max), calc(100% - 48px));
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:                   var(--s-9);
  align-items:           start;
  padding-bottom:        var(--s-7);
  border-bottom:         1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-name {
  font-size:     16px;
  font-weight:   700;
  color:         #fff;
  margin:        0 0 var(--s-3);
  letter-spacing: -0.01em;
}

.footer-brand-name em {
  font-style: normal;
  color:      #60a5fa;
}

.footer-tagline {
  font-size:   13px;
  color:       rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width:   26ch;
  margin:      0;
}

.footer-col-title {
  font-size:      11px;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:          rgba(255, 255, 255, 0.32);
  margin:         0 0 var(--s-4);
}

.footer-links {
  display:        flex;
  flex-direction: column;
  gap:            var(--s-3);
  list-style:     none;
  margin:         0;
  padding:        0;
}

.footer-links a {
  font-size:   13px;
  color:       rgba(255, 255, 255, 0.48);
  transition:  color var(--ease), padding-left var(--ease);
  display:     inline-block;
}

.footer-links a:hover {
  color:        rgba(255, 255, 255, 0.82);
  padding-left: 4px;
}

.footer-bottom-bar {
  width:           min(var(--max), calc(100% - 48px));
  margin:          var(--s-5) auto 0;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--s-3);
  flex-wrap:       wrap;
  font-size:       12px;
  color:           rgba(255, 255, 255, 0.22);
}


/* ── sticky booking bar ─────────────────────────────────────────────── */
/*
   always-visible CTA on mobile — the signature TastyIgniter-influenced
   element. hidden when the quick booking card is visible (≥1060px).
   JS adds .sticky-bar--visible after scrolling past the hero.
*/

.sticky-booking-bar {
  position:        fixed;
  bottom:          0;
  left:            0;
  right:           0;
  background:      #0a1120;
  border-top:      1px solid rgba(255, 255, 255, 0.10);
  padding:         12px 20px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--s-4);
  z-index:         200;
  transform:       translateY(100%);
  transition:      transform 280ms var(--ease-decelerate);
}

.sticky-booking-bar.sticky-bar--visible {
  transform: translateY(0);
}

.sticky-bar-text { flex: 1; min-width: 0; }

.sticky-bar-title {
  font-size:   14px;
  font-weight: 700;
  color:       #fff;
  margin:      0;
  white-space: nowrap;
  overflow:    hidden;
  text-overflow: ellipsis;
}

.sticky-bar-sub {
  font-size: 12px;
  color:     rgba(255, 255, 255, 0.45);
  margin:    0;
}

.sticky-bar-actions {
  display:     flex;
  align-items: center;
  gap:         var(--s-3);
  flex-shrink: 0;
}

.sticky-bar-price {
  font-size:   14px;
  font-weight: 700;
  color:       #60a5fa;
  white-space: nowrap;
}

.sticky-bar-btn {
  display:         inline-flex;
  align-items:     center;
  min-height:      42px;
  padding:         10px 20px;
  background:      #2563eb;
  color:           #fff;
  font-size:       14px;
  font-weight:     700;
  border:          none;
  border-radius:   var(--r-sm);
  cursor:          pointer;
  white-space:     nowrap;
  transition:      filter var(--ease);
  text-decoration: none;
}

.sticky-bar-btn:hover { filter: brightness(1.08); }

/* hide sticky bar when booking card is in view */
@media (min-width: 1060px) {
  .sticky-booking-bar { display: none; }
}


/* ── mobile hamburger (home.css is authoritative) ───────────────────── */

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

@media (max-width: 768px) {

  .nav-hamburger { display: flex; }

  .nav-links,
  .nav-inner {
    flex-wrap:       nowrap;
    flex-direction:  row;
    align-items:     center;
    justify-content: space-between;
    padding:         0 16px;
    min-height:      56px;
    gap:             0;
    overflow:        visible;
  }

  .nav-logo {
    display:     flex;
    align-items: center;
    margin-right: auto;
    order:       -1;
    width:       auto;
  }

  .nav-links li:not(.nav-logo),
  .nav-inner li:not(.nav-logo) {
    display: none;
  }

  .nav-mobile-open .nav-links,
  .nav-mobile-open .nav-inner {
    flex-direction:          column;
    align-items:             flex-start;
    justify-content:         flex-start;
    position:                fixed;
    top:                     56px;
    left:                    0;
    right:                   0;
    bottom:                  0;
    background:              rgba(8, 14, 26, 0.98);
    backdrop-filter:         blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding:                 24px 20px;
    gap:                     4px;
    overflow-y:              auto;
    border-top:              1px solid rgba(255, 255, 255, 0.08);
    z-index:                 119;
    animation:               menu-slide-in 0.26s var(--ease-decelerate) both;
  }

  @keyframes menu-slide-in {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-mobile-open .nav-links li,
  .nav-mobile-open .nav-inner li {
    display: block;
    width:   100%;
  }

  .nav-mobile-open .nav-links .nav-logo,
  .nav-mobile-open .nav-inner .nav-logo {
    display: none;
  }

  .nav-mobile-open .nav-links a,
  .nav-mobile-open .nav-inner a {
    display:       flex;
    align-items:   center;
    width:         100%;
    min-height:    52px;
    padding:       14px 16px;
    font-size:     1rem;
    font-weight:   600;
    border-radius: var(--r-sm);
    border:        1px solid transparent;
  }

  .nav-mobile-open .nav-links a:hover,
  .nav-mobile-open .nav-inner a:hover {
    background:   rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .nav-mobile-open #navLogout {
    margin-top:  8px;
    padding-top: 8px;
    border-top:  1px solid rgba(255, 255, 255, 0.08);
  }

  .logo { width: 80px; height: auto; }
}


/* ── responsive breakpoints ─────────────────────────────────────────── */

@media (max-width: 1060px) {
  /* hero: single column, booking card hidden (sticky bar handles CTA) */
  .hero { padding: var(--s-9) 0 var(--s-8); }

  .hero-inner {
    grid-template-columns: 1fr;
    gap:                   var(--s-7);
    text-align:            center;
  }

  .hero-copy { align-items: center; }

  #heroHeading {
    max-width:  100%;
    font-size:  clamp(2.8rem, 7vw, 4.5rem);
  }

  .hero-sub { text-align: center; max-width: 50ch; }

  .hero-stats { justify-content: center; }

  .hero-ctas { justify-content: center; }

  .hero-booking-card { display: none; }

  .testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .tier-grid {
    grid-template-columns: 1fr;
    align-items:           start;
    gap:                   var(--s-3);
  }

  .tier-card--featured {
    transform: none;
    order:     -1;
  }

  .tier-card--featured:hover { transform: translateY(-3px); }

  .how-row { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .how-row::before { display: none; }

  .footer-inner-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}

@media (max-width: 700px) {
  .home-overview { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-inner-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .location-strip { flex-direction: column; gap: var(--s-5); }
}

@media (max-width: 560px) {
  .hero { padding: var(--s-7) 0 var(--s-6); }

  #heroHeading {
    font-size:   clamp(2.4rem, 9vw, 3.2rem);
    line-height: 1.0;
  }

  .hero-sub { font-size: 0.95rem; }

  .hero-stats {
    flex-direction: column;
    align-items:    center;
    gap:            var(--s-3);
  }

  .hero-stat + .hero-stat {
    border-left: none;
    padding-left: 0;
  }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-btn-primary,
  .hero-btn-ghost { width: 100%; }

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

  .trust-bar-inner { gap: var(--s-4); }
}

/* ── reduced motion ─────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  #heroHeading { animation: none; }
  .page-shell > section,
  .page-shell > .grid-2,
  .page-shell > hr { animation: none; }
  .sticky-booking-bar { transition: none; }
}