/* ============================================================
   Eurotech Cabinetry - Homepage Concept
   Design language: Soft Luxury (type, spacing, motion only)
   Palette: Eurotech's real brand colors (logo blue #006993,
   theme slate #2c2e3d, their light blue tint family)
   ============================================================ */

:root {
  /* Backgrounds */
  --ink:        #20222e;   /* their theme slate #2c2e3d, deepened */
  --ink-2:      #272a38;
  --porcelain:  #f7fafc;
  --mist:       #e9f1f7;   /* from their #ebf6fd tint family */
  --white:      #ffffff;

  /* Brand */
  --blue:       #006993;   /* their logo + site CSS blue, exact */
  --blue-deep:  #00567a;   /* deepened within family for small text */
  --sky:        #35a6e3;   /* their light blue, glows and accents on dark */
  --sky-muted:  rgba(53, 166, 227, 0.22);
  --blue-muted: rgba(0, 105, 147, 0.12);

  /* Text */
  --text-dark:  #20222e;
  --text-body:  #4c5260;
  --text-muted: #7d8494;
  --text-light: rgba(255, 255, 255, 0.78);
  --text-light-muted: rgba(255, 255, 255, 0.55);

  /* Type */
  --font-display: 'Tenor Sans', sans-serif;
  --font-body: 'Jost', sans-serif;

  /* Layout */
  --container: min(90%, 1100px);
  --radius: 16px;
  --radius-sm: 12px;
  --nav-h: 84px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--porcelain);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container { width: var(--container); margin-inline: auto; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 1.4rem;
}

.on-dark .eyebrow { color: var(--sky); }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  letter-spacing: 0.01em;
}

.on-dark .section-title { color: #fff; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: 999px;
  transition: background 0.6s var(--ease), color 0.6s var(--ease),
              border-color 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: transform;
}

.btn .btn-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 0.6s var(--ease);
}

.btn:hover .btn-dot { transform: scale(1.5); }

.btn--solid {
  background: var(--blue);
  color: #fff;
}
.btn--solid:hover { background: var(--blue-deep); }

.btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn--ghost-dark {
  border: 1px solid rgba(32, 34, 46, 0.35);
  color: var(--text-dark);
}
.btn--ghost-dark:hover { border-color: var(--blue); color: var(--blue-deep); }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 200;
  transition: background 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.nav-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: inline-flex; }

.nav-logo img { width: 128px; height: auto; }

.nav-logo .logo-color { display: none; }
.nav.scrolled .logo-light { display: none; }
.nav.scrolled .logo-color { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.5s var(--ease);
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.62rem 1.5rem !important;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease) !important;
}
.nav-cta:hover { background: rgba(255, 255, 255, 0.14); }

.nav.scrolled {
  background: rgba(247, 250, 252, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(32, 34, 46, 0.08);
}

.nav.scrolled .nav-links a { color: var(--text-dark); }
.nav.scrolled .nav-links a:hover { color: var(--blue-deep); }
.nav.scrolled .nav-cta { border-color: var(--blue); color: var(--blue-deep); }
.nav.scrolled .nav-cta:hover { background: var(--blue-muted); }

/* Hamburger */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 320;
}

.burger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  transition: transform 0.5s var(--ease), opacity 0.4s, background 0.5s;
}

.nav.scrolled .burger span { background: var(--text-dark); }
.burger.open span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--ink) 0%, #1a2531 100%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a.mm-link {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  color: #fff;
  padding-block: 0.55rem;
  opacity: 0.88;
  transition: opacity 0.4s, color 0.4s;
}

.mobile-menu a.mm-link:hover { opacity: 1; color: var(--sky); }

.mobile-menu .mm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1.6rem 0;
}

.mobile-menu .mm-contact {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.mobile-menu .mm-contact a { color: var(--text-light); padding-block: 0.65rem; display: inline-block; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -6%;
  background: url('../images/hero-siesta.jpg') center 42% / cover no-repeat;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 32, 46, 0.58) 0%,
    rgba(26, 32, 46, 0.34) 45%,
    rgba(26, 32, 46, 0.72) 100%);
}

.hero-frame {
  position: absolute;
  inset: clamp(1rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  padding-top: 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.8vw, 5rem);
  color: #fff;
  letter-spacing: 0.015em;
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2.6rem;
}

.hero-ctas {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3.2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 0.7rem auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2.6s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Sections base ---------- */

section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }

.on-dark { background: var(--ink); color: var(--text-light); }
.on-dark p { color: var(--text-light); }

/* ---------- Intro ---------- */

.intro { background: var(--ink); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.intro-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: #fff;
}

.intro-title em {
  font-style: normal;
  color: var(--sky);
}

.intro-body p { margin-bottom: 1.3rem; font-size: 1.02rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: #fff;
  line-height: 1.1;
}

.stat-num span.suffix { color: var(--sky); }

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 0.5rem;
}

.recognition {
  margin-top: clamp(2.6rem, 5vw, 3.8rem);
  padding-top: clamp(1.8rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.6rem;
  align-items: center;
}

.recognition-label {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
}

.recognition li {
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-light-muted);
  letter-spacing: 0.04em;
}

/* ---------- Rooms ---------- */

.rooms { background: var(--porcelain); }

.rooms-head { max-width: 640px; margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.rooms-head p { margin-top: 1.2rem; font-size: 1.05rem; }

.room-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.room-split.reverse .room-media { order: 2; }

.room-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(32, 34, 46, 0.14);
}

.room-media img {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.room-split:hover .room-media img { transform: scale(1.04); }

.room-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 1.1rem;
}

.room-copy p { margin-bottom: 1rem; }

.room-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.room-index {
  border-top: 1px solid rgba(32, 34, 46, 0.12);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.room-index-label {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 1.6rem;
}

.room-index ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem 2rem;
}

.room-index li {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--text-dark);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(32, 34, 46, 0.1);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.room-index li .idx {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--blue);
  letter-spacing: 0.1em;
}

/* ---------- Portfolio deck (signature) ---------- */

.portfolio { background: var(--ink); padding-bottom: clamp(4.5rem, 9vw, 7.5rem); }

.portfolio-head {
  width: var(--container);
  margin-inline: auto;
  max-width: 720px;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.portfolio-head p { margin-top: 1.2rem; }

.deck { position: relative; width: var(--container); margin-inline: auto; }

.deck-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 30px 70px rgba(10, 12, 20, 0.45);
  will-change: transform;
}

.deck-media { position: relative; min-height: 380px; }

.deck-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deck-copy {
  padding: clamp(1.8rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deck-tag {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}

.deck-copy h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  color: #fff;
  margin-bottom: 1rem;
}

.deck-copy p { font-size: 0.98rem; margin-bottom: 1.4rem; }

.deck-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.deck-specs li {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
}

/* Signature: sticky stacking deck on desktop */
@media (min-width: 901px) {
  .deck-card {
    position: sticky;
    top: calc(var(--nav-h) + 3vh);
    transform-origin: center top;
  }
  .deck-card:nth-child(2) { top: calc(var(--nav-h) + 5vh); }
  .deck-card:nth-child(3) { top: calc(var(--nav-h) + 7vh); }
  .deck-card:nth-child(4) { top: calc(var(--nav-h) + 9vh); }
}

/* ---------- Collections ---------- */

.collections { background: var(--mist); }

.collections-head { max-width: 640px; margin-bottom: clamp(2.8rem, 5vw, 4rem); }
.collections-head p { margin-top: 1.2rem; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.collection-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: 0 14px 40px rgba(32, 34, 46, 0.07);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(32, 34, 46, 0.12);
}

.collection-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.collection-card .line {
  width: 44px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.collection-card p { font-size: 0.98rem; }

/* ---------- Full-bleed band ---------- */

.band {
  position: relative;
  height: clamp(340px, 55vh, 520px);
  overflow: hidden;
  padding: 0;
}

.band-img {
  position: absolute;
  inset: -12% 0;
  background: url('../images/mitchell-kitchen.jpg') center / cover no-repeat;
  will-change: transform;
}

.band-veil {
  position: absolute;
  inset: 0;
  background: rgba(26, 32, 46, 0.28);
}

/* ---------- Process ---------- */

.process { background: var(--porcelain); }

.process-head { max-width: 640px; margin-bottom: clamp(2.8rem, 5vw, 4rem); }
.process-head p { margin-top: 1.2rem; }

.step {
  display: grid;
  grid-template-columns: 90px 1fr 1.5fr;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  padding: clamp(1.6rem, 3vw, 2.2rem) 0;
  border-top: 1px solid rgba(32, 34, 46, 0.12);
  align-items: baseline;
}

.step:last-of-type { border-bottom: 1px solid rgba(32, 34, 46, 0.12); }

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue);
}

.step h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.step p { font-size: 0.98rem; }

/* ---------- Testimonials ---------- */

.reviews { background: var(--ink); }

.reviews-head { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: clamp(2.8rem, 5vw, 4rem); }
.reviews-head p { margin-top: 1.2rem; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2rem);
}

.review-card {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 3vw, 2.3rem);
  display: flex;
  flex-direction: column;
}

.review-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--sky);
  margin-bottom: 0.9rem;
}

.review-card blockquote {
  font-size: 0.99rem;
  color: var(--text-light);
  flex: 1;
}

.review-meta { margin-top: 1.6rem; }

.review-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.review-src {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 0.25rem;
}

/* ---------- Team ---------- */

.team { background: var(--porcelain); }

.team-head { max-width: 640px; margin-bottom: clamp(2.8rem, 5vw, 4rem); }
.team-head p { margin-top: 1.2rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: 0 14px 40px rgba(32, 34, 46, 0.07);
}

.team-card .line {
  width: 44px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.team-card h3 { font-size: 1.3rem; }

.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0.4rem 0 1rem;
}

.team-card p { font-size: 0.95rem; }

/* ---------- Showroom ---------- */

.showroom { background: var(--mist); }

.showroom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.showroom-copy h2 { margin-bottom: 1.2rem; }
.showroom-copy p { margin-bottom: 1.6rem; }

.showroom-facts {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  box-shadow: 0 14px 40px rgba(32, 34, 46, 0.07);
}

.fact-line {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(32, 34, 46, 0.09);
  font-size: 0.97rem;
}

.fact-line:last-child { border-bottom: none; }

.fact-key {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  padding-top: 0.25rem;
}

.fact-line a { color: var(--text-dark); transition: color 0.4s; }
.fact-line a:hover { color: var(--blue-deep); }
.fact-line a, .fact-line span, .footer-contact a { overflow-wrap: anywhere; }
.showroom-grid > * { min-width: 0; }
.footer-grid > * { min-width: 0; }

/* ---------- CTA ---------- */

.cta {
  background:
    radial-gradient(90rem 40rem at 85% -20%, rgba(53, 166, 227, 0.16), transparent 60%),
    linear-gradient(150deg, var(--ink) 0%, #17222e 60%, #122735 100%);
  text-align: center;
}

.cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 1.3rem;
}

.cta p {
  color: var(--text-light);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}

.cta-actions {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.footer {
  background: #191b25;
  color: var(--text-light-muted);
  padding-block: clamp(3.2rem, 6vw, 4.5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  width: 138px;
  opacity: 0.92;
  margin-bottom: 1.2rem;
}

.footer p { font-size: 0.92rem; }

.footer h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer ul { list-style: none; }

.footer ul a {
  display: inline-block;
  font-size: 0.94rem;
  color: var(--text-light-muted);
  padding-block: 0.3rem;
  transition: color 0.4s;
}

.footer ul a:hover { color: var(--sky); }

.footer-contact p { margin-bottom: 0.6rem; }
.footer-contact a { color: var(--text-light); transition: color 0.4s; }
.footer-contact a:hover { color: var(--sky); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  font-size: 0.84rem;
}

.footer-social {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}

.footer-social a {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  padding-block: 0.3rem;
  display: inline-block;
}

/* ---------- Reveal animation base ---------- */

.reveal { opacity: 0; transform: translateY(36px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-scroll::after { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .room-index ul { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .intro-grid { grid-template-columns: 1fr; }
  .room-split,
  .room-split.reverse { grid-template-columns: 1fr; }
  .room-split.reverse .room-media { order: 0; }
  .deck-card { grid-template-columns: 1fr; }
  .deck-media { min-height: 260px; }
  .collection-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .showroom-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .step p { grid-column: 2; }
}

@media (max-width: 768px) {
  .hero:not([style]) {
    height: auto;
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }
  .room-media img { height: 300px; }
}

@media (max-width: 480px) {
  .hero:not([style]) { padding-top: 6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .room-index ul { grid-template-columns: 1fr; }
  .footer ul a { padding-block: 0.65rem; }
  .footer-social a { padding-block: 0.65rem; }
  .mobile-menu .mm-contact a { padding-block: 0.65rem; }
  .footer-contact a { display: inline-block; padding-block: 0.65rem; }
  .fact-line a { display: inline-block; padding-block: 0.65rem; margin-block: -0.25rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
