/* ============================================================
   INTEGRATED CONTROL EXPERTS - icxav.com
   Hand-coded rebuild. Light-glass adaptation of the v144
   glass chrome trio (header nav / footer / mobile menu system).
   Palette: ICX cream + deep maroon + bronze. Type: Manrope.
   ============================================================ */

/* ----------------------------------------------
   TOKENS
---------------------------------------------- */
:root {
  --nav-height: 88px;
  --max-width: 1240px;
  --section-padding-x: 48px;

  /* ICX palette (from the original brand system) */
  --bg: #fdf9f6;
  --bg-alt: #f0ece6;
  --ink-band: #2c1212;

  --text-primary: #2c1212;
  --text-secondary: #55403c;
  --text-tertiary: #7d6a64;
  --text-muted: #98867f;
  --text-faint: #a99a93;

  --accent: #682626;            /* ICX deep maroon - site accent */
  --bronze: #b58c67;            /* ICX bronze - secondary accent */
  --icx-red: #940E12;           /* ICX brand red - top bar (sampled from original site) */
  --accent-red: #CC0001;        /* EGM credit arrow only - locked, do not reuse */

  --border-faint: rgba(44, 18, 18, 0.08);

  --font-sans: 'Manrope', 'Inter', Helvetica, sans-serif;

  /* Glass values - shared vocabulary across nav / footer / sheet.
     blur + saturate are constant per the briefs; surfaces are light. */
  --glass-blur: blur(20px) saturate(1.4);
  --glass-border: 1px solid rgba(0, 0, 0, 0.08);
  --glass-border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------------
   RESET / BASE
---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(12px + var(--nav-height) + 12px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; color: var(--text-primary); }
h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.015em; }
h3 { font-size: 22px; font-weight: 700; }
p { margin: 0 0 1.2em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fdf9f6;
  border: 1px solid var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #4f1c1c;
  box-shadow: 0 8px 24px rgba(104, 38, 38, 0.28);
  outline: none;
}
.btn-ghost {
  background: transparent;
  color: #fdf9f6;
  border: 1px solid rgba(253, 249, 246, 0.5);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: #fdf9f6;
  background: rgba(253, 249, 246, 0.08);
  outline: none;
}

/* ============================================
   NAV - floating liquid-glass tile (light adaptation)
   Inset 12px from top/left/right so the page shows
   through around it. Light glass + heavy blur +
   saturate(1.4). Three-layer shadow: bright inset
   highlight, soft drop shadow, bottom hairline.
============================================ */
.nav {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: var(--glass-border);
  border-top: var(--glass-border-top);
  border-radius: 16px;
  height: var(--nav-height);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(0, 0, 0, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px var(--section-padding-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.nav-logo { display: inline-flex; align-items: center; justify-self: start; }
.nav-logo img {
  height: 52px;
  width: auto;
  transition: filter 0.25s ease;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(104, 38, 38, 0.45));
}

.nav-inquire {
  justify-self: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.nav-inquire:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(104, 38, 38, 0.35);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-self: end;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(104, 38, 38, 0.35);
}
.nav-links a.current { color: var(--accent); }

/* Contact & Socials button inside the hamburger menu (mobile).
   Maroon-tinted with a soft always-on glow to mark the action item. */
.nav-links-contact {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(104, 38, 38, 0.10);
  border: 1px solid rgba(104, 38, 38, 0.5);
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  box-shadow:
    0 0 18px rgba(104, 38, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, text-shadow 0.2s ease;
}
.nav-links-contact:hover,
.nav-links-contact:focus-visible,
.nav-links-contact:active {
  background: rgba(104, 38, 38, 0.18);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow:
    0 0 26px rgba(104, 38, 38, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  outline: none;
}

/* Hamburger toggle - hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle span {
  display: block; width: 20px; height: 1px;
  background: var(--text-primary);
  position: absolute; left: 8px;
  transition: transform 0.3s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 18px; transform: rotate(-45deg); }

/* Mobile - collapse to hamburger, dropdown as separate glass tile */
@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
  .nav-inquire { font-size: 13px; letter-spacing: 0.2em; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(12px + var(--nav-height) + 8px);
    left: 12px;
    right: 12px;
    justify-self: stretch; /* cancel desktop justify-self:end, which shrinks fixed elements to content width */
    flex-direction: column;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: var(--glass-border);
    border-top: var(--glass-border-top);
    border-radius: 14px;
    padding: 24px 32px;
    gap: 18px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 8px 32px rgba(0, 0, 0, 0.12),
      0 1px 0 rgba(0, 0, 0, 0.04);
    z-index: 49;
    align-items: stretch;
  }
  .nav-links.open { display: flex !important; }
  .nav-links.open a {
    display: block;
    font-size: 13px;
    color: var(--text-primary) !important;
    padding: 8px 0;
    text-align: center;
  }
  .nav-toggle { display: block; }
  .nav-links-contact { display: flex; }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 68px;
    --section-padding-x: 22px;
  }
  .nav-inner { padding: 10px var(--section-padding-x); }
  .nav-logo img { height: 40px; }
}

/* Auto-hide state (added by JS on scroll-down mobile) */
.nav.nav-auto-hidden {
  transform: translateY(-120%);
  opacity: 0;
}

/* ============================================
   TOP BAR - brand red "Est. 2002" strip (original site element)
============================================ */
.topbar {
  background: var(--icx-red);
  height: 34px;
}

/* Home page: hero photo runs underneath the floating glass nav */
body.home { padding-top: 0; }

/* ============================================
   HERO - full-bleed home theater photo
============================================ */
.hero-photo {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1c1310;
  background-image: url('/images/hero-theater.webp');
  background-size: cover;
  background-position: center 30%;
  padding: 180px 24px 120px;
}
@media (max-width: 900px) {
  .hero-photo { background-image: url('/images/hero-theater-1200.webp'); min-height: 78vh; padding: 150px 20px 90px; }
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.35) 0%, rgba(20,10,8,0.15) 40%, rgba(20,10,8,0.45) 100%);
}
.hero-photo-inner { position: relative; max-width: 880px; }
.hero-photo .eyebrow {
  color: var(--bronze);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero-photo h1 {
  color: #fdfcfa;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-photo p.lede {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: rgba(253, 250, 247, 0.9);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* ============================================
   SERVICES - white cards, 3-column grid (original layout)
============================================ */
.services { padding: 96px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}
.card {
  background: #ffffff;
  border: 1px solid var(--border-faint);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 8px 28px rgba(44, 18, 18, 0.07);
}
.card-icon-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin-bottom: 22px;
}
.card h2 {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5em;
}
.card p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 0;
}

/* ============================================
   SHOWROOM - HiFi Life logo + copy (original layout)
============================================ */
.showroom {
  padding: 48px 0 120px;
}
.showroom-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.showroom-logo img { width: 300px; height: auto; }
.showroom-copy { text-align: center; max-width: 460px; }
.showroom-copy .eyebrow { color: var(--text-primary); margin-bottom: 4px; }
.showroom-copy h2 { margin-bottom: 0.4em; }
.showroom-copy p { color: var(--text-secondary); margin-bottom: 32px; }

/* ============================================
   CTA BAND - dark maroon pre-footer (original element)
============================================ */
.cta-band {
  background: var(--ink-band);
  color: #fdf9f6;
  padding: 120px 0;
}
.cta-band h2 {
  color: #fdf9f6;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 700px;
}
.cta-band-links { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.cta-band-links a {
  color: rgba(253, 249, 246, 0.92);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s ease;
}
.cta-band-links a:hover { color: var(--bronze); }
.cta-band .btn { margin-top: 12px; }
.cta-band .btn-primary {
  background: #7d3434;
  border-color: #7d3434;
}
.cta-band .btn-primary:hover { background: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

/* ============================================
   ABOUT PAGE
============================================ */
.about-hero {
  padding: 48px 0 0;
}
.about-hero img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(44, 18, 18, 0.15);
}
.about-body {
  padding: 72px 0;
  max-width: 760px;
  margin: 0 auto;
}
.about-body p { color: var(--text-secondary); }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 96px;
}
.about-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-faint);
  border-radius: 16px;
  padding: 40px;
}
.about-card h3 { color: var(--accent); }
.about-card p { color: var(--text-secondary); margin-bottom: 0; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-intro { padding: 48px 0 24px; text-align: center; }
.contact-intro p { color: var(--text-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 24px 0 64px;
}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-faint);
  border-radius: 16px;
  padding: 36px;
}
.contact-card h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}
.contact-card p { color: var(--text-secondary); margin-bottom: 8px; }
.contact-card a { font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card address { font-style: normal; color: var(--text-secondary); }
.service-areas {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-secondary);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.service-areas li { padding: 4px 0; }

/* Consult form */
.consult-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 96px;
}
.consult-form {
  background: #fff;
  border: 1px solid var(--border-faint);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(44, 18, 18, 0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid rgba(44, 18, 18, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(104, 38, 38, 0.12);
}
.form-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}
.form-check input {
  width: 18px; height: 18px;
  accent-color: var(--accent);
}
.consult-form .btn { grid-column: 1 / -1; width: 100%; border: 0; }

/* ============================================
   FOOTER - floating liquid-glass tile (light adaptation)
============================================ */
.footer {
  margin: 0 12px 12px;
  border: var(--glass-border);
  border-top: var(--glass-border-top);
  border-radius: 16px;
  background: rgba(250, 248, 244, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 64px var(--section-padding-x) 24px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 1px 0 rgba(0, 0, 0, 0.04);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
  align-items: flex-start;
}
.footer-logo-link { display: inline-flex; align-self: flex-start; }
.footer-logo {
  height: 64px;
  width: auto;
  align-self: flex-start;
  transition: filter 0.25s ease;
}
.footer-logo-link:hover .footer-logo {
  filter: drop-shadow(0 0 14px rgba(104, 38, 38, 0.45));
}
.footer-tagline {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
  line-height: 1.5;
}
.footer-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-col ul li a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(104, 38, 38, 0.3);
}
.footer-muted { color: var(--text-tertiary); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer .footer-bottom a:not(.egm-credit) {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-bottom a:not(.egm-credit):hover { color: var(--accent); }

/* =============================================
   MADE BY END GOAL MEDIA - FOOTER CREDIT
   Canonical EGM credit package CSS. Do not modify
   sizing, typography, or the #CC0001 arrow.
   ============================================= */
.egm-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-faint, rgba(237, 234, 228, 0.45));
  transition: color 0.25s ease;
  line-height: 1;
}
.egm-credit-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.egm-credit-text {
  font-family: 'Oswald', 'Inter', Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint, rgba(237, 234, 228, 0.45));
  transition: color 0.25s ease;
}
.egm-credit-arrow {
  font-family: var(--font-sans, 'Inter', Helvetica, sans-serif);
  font-size: 12px;
  color: var(--accent-red, #CC0001);
  margin-left: 2px;
  transition: transform 0.25s ease, color 0.25s ease;
  display: inline-block;
}
.egm-credit:hover .egm-credit-text {
  color: var(--text-secondary, rgba(237, 234, 228, 0.82));
}
.egm-credit:hover .egm-credit-icon { opacity: 1; }
.egm-credit:hover .egm-credit-arrow { transform: translateX(4px); }

/* ============================================
   CONTACT SHEET - bottom-sheet popup (light glass)
============================================ */
.contact-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 10, 10, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.contact-sheet-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.contact-sheet {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 91;
  max-width: 560px;
  margin: 0 auto;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: rgba(253, 251, 248, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: var(--glass-border);
  border-top: var(--glass-border-top);
  border-radius: 16px;
  padding: 28px 28px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 -16px 48px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(0, 0, 0, 0.04);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s ease;
}
.contact-sheet.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.contact-sheet-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(44, 18, 18, 0.2);
  margin: 0 auto 18px;
}
.contact-sheet-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(44, 18, 18, 0.18);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.contact-sheet-close:hover {
  background: rgba(104, 38, 38, 0.06);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(104, 38, 38, 0.3);
}
.contact-sheet-close svg { width: 14px; height: 14px; display: block; }
.contact-sheet-title {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 22px;
}
.contact-sheet-vcard {
  display: block;
  width: 100%;
  padding: 16px;
  margin-bottom: 22px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(104, 38, 38, 0.10);
  border: 1px solid rgba(104, 38, 38, 0.5);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.contact-sheet-vcard:hover,
.contact-sheet-vcard:focus-visible {
  background: rgba(104, 38, 38, 0.18);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(104, 38, 38, 0.3);
  outline: none;
}
.contact-sheet-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-sheet-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 18, 18, 0.08);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.contact-sheet-links a:last-child { border-bottom: 0; }
.contact-sheet-links a:hover,
.contact-sheet-links a:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(104, 38, 38, 0.3);
  outline: none;
}
.contact-sheet-icon {
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: color 0.2s ease, filter 0.2s ease;
}
.contact-sheet-links a:hover .contact-sheet-icon,
.contact-sheet-links a:focus-visible .contact-sheet-icon {
  filter: drop-shadow(0 0 8px rgba(104, 38, 38, 0.4));
}
@media (max-width: 640px) {
  .contact-sheet-icon { display: block; }
}

/* ============================================
   SCROLL REVEAL (JS adds .revealed)
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .nav, .contact-sheet, .contact-sheet-backdrop { transition: none; }
}

/* ============================================
   404 / THANKS
============================================ */
.center-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px var(--section-padding-x);
}
.center-page p { color: var(--text-secondary); max-width: 480px; }

/* ============================================
   RESPONSIVE - CONTENT
============================================ */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; gap: 28px; }
  .services { padding: 64px 0; }
  .showroom-flex { flex-direction: column; gap: 32px; }
  .showroom { padding: 24px 0 88px; }
  .cta-band { padding: 88px 0; }
  .about-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .hero-photo { min-height: 72vh; padding: 130px 20px 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .consult-form { padding: 32px 24px; }
  .footer { padding: 48px 22px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-logo { height: 52px; }
  .footer-tagline { font-size: 16px; }
}
