/* White Cube Artistry — v2 (pure B&W) */
:root {
  --white: #FFFFFF;
  --black: #000000;
  --ink: #000000;
  --muted: rgba(0,0,0,0.58);
  --line: rgba(0,0,0,0.10);
  --line-dark: rgba(255,255,255,0.16);
  --muted-dark: rgba(255,255,255,0.62);
  --gut: clamp(20px, 4vw, 56px);
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--white); color: var(--black); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: 0; cursor: pointer; font: inherit; color: inherit; }
.wrap { max-width: 1480px; margin: 0 auto; padding: 0 var(--gut); }
.display { font-family: var(--font-display); font-weight: 300; line-height: 0.96; letter-spacing: -0.02em; font-size: clamp(40px, 6vw, 96px); }
.display em { font-style: italic; font-weight: 300; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
.lead { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(20px, 1.7vw, 28px); line-height: 1.45; color: var(--ink); }
.body { font-size: 15.5px; line-height: 1.75; color: rgba(0,0,0,0.78); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== NAV ===== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 80; padding: 0; transition: background .35s, border-color .35s, color .35s; mix-blend-mode: normal; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 18px; padding-bottom: 18px; }
.nav-inner--full { width: 100%; padding-left: var(--gut); padding-right: var(--gut); }
.nav.on-hero { color: var(--white); }
.nav.is-scrolled { background: rgba(255,255,255,0.95); border-bottom: 1px solid var(--line); color: var(--black); backdrop-filter: blur(10px); }
.nav-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.08em; font-weight: 400; display: flex; align-items: center; }
.nav-logo-img { width: 120px; height: auto; display: block; }
.nav-logo em { font-style: italic; font-weight: 300; }
.nav-houses { display: flex; gap: 28px; align-items: center; }
.nav-house { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.78; transition: opacity .25s, color .25s; position: relative; padding: 6px 0; }
.nav-house:hover { opacity: 1; }
.nav-house.is-active { opacity: 1; }
.nav-house.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; }
.nav-cta { padding: 10px 18px; border: 1px solid currentColor; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; transition: background .25s, color .25s; }
.nav-cta:hover { background: currentColor; }
.nav-cta:hover span { color: var(--white); mix-blend-mode: difference; }
.nav-end { display: flex; align-items: center; gap: 14px; }
/* Burger button */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; flex-shrink: 0; }
.nav-burger span { display: block; width: 100%; height: 1.5px; background: currentColor; transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 1000px) { .nav-houses { display: none; } .nav-burger { display: flex; } }

/* Mobile full-screen menu */
.nav-mobile { position: fixed; inset: 0; z-index: 78; background: var(--black); color: var(--white); transform: translateY(-100%); transition: transform .45s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; padding-top: 80px; pointer-events: none; }
.nav-mobile.is-open { transform: translateY(0); pointer-events: auto; }
.nav-mobile-inner { padding: 40px var(--gut); display: flex; flex-direction: column; gap: 0; overflow-y: auto; }
.nav-mobile-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.nav-mobile-house { font-family: var(--font-display); font-size: clamp(28px, 8vw, 44px); font-weight: 300; letter-spacing: -0.01em; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.88); transition: color .25s, padding-left .25s; display: block; }
.nav-mobile-house:hover { color: var(--white); padding-left: 8px; }
.nav-mobile-cta { margin-top: 40px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 28px; border: 1px solid rgba(255,255,255,0.4); align-self: flex-start; color: var(--white); background: transparent; cursor: pointer; transition: background .25s; }
.nav-mobile-cta:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 1001px) { .nav-mobile { display: none; } }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 720px; overflow: hidden; color: var(--white); }
.hero-media { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.is-on { opacity: 1; }
.hero-vignette { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 30%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.85) 100%), radial-gradient(ellipse at 30% 80%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%); }
.hero-content { position: absolute; inset: 0; z-index: 3; padding: 0 var(--gut) clamp(64px, 8vw, 120px); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,0.9); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; }
.hero-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(44px, 7.2vw, 120px); line-height: 0.95; letter-spacing: -0.022em; max-width: 14ch; text-shadow: 0 4px 32px rgba(0,0,0,0.55); }
.hero-title em { font-style: italic; font-weight: 300; }
.hero-sub { margin-top: 26px; max-width: 50ch; font-size: clamp(15px, 1vw, 17px); line-height: 1.6; color: rgba(255,255,255,0.92); text-shadow: 0 2px 18px rgba(0,0,0,0.45); }
.hero-cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; padding: 15px 24px; border: 1px solid var(--white); color: var(--white); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; transition: background .3s, color .3s; background: transparent; cursor: pointer; font-family: inherit; }
.hero-cta:hover { background: var(--white); color: var(--black); }
.hero-cta--ghost { border-color: rgba(255,255,255,0.5); background: rgba(0,0,0,0.18); backdrop-filter: blur(6px); }

@media (max-width: 700px) {
  .hero { min-height: 600px; }
  .hero-content { padding: 0 var(--gut) clamp(96px, 18vw, 130px); }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.24em; margin-bottom: 20px; }
  .hero-title { font-size: clamp(38px, 11vw, 62px); line-height: 0.98; }
  .hero-sub { font-size: 14px; line-height: 1.55; margin-top: 18px; max-width: 38ch; }
  .hero-cta-row { margin-top: 28px; gap: 10px; }
  .hero-cta { padding: 13px 18px; font-size: 10px; letter-spacing: 0.18em; }
  .hero-meta { bottom: 18px; right: 16px; }
  .hero-clip-label { font-size: 9px; letter-spacing: 0.18em; }
  .hero-scroll { display: none; }
}
.hero-meta { position: absolute; bottom: 32px; right: var(--gut); z-index: 3; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.hero-clip-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.hero-clip-label .dot { width: 5px; height: 5px; background: var(--white); border-radius: 50%; }
.hero-progress { display: flex; gap: 6px; }
.pdot { width: 28px; height: 2px; background: rgba(255,255,255,0.3); transition: background .3s; }
.pdot.is-active { background: var(--white); }
.hero-scroll { position: absolute; bottom: 32px; left: var(--gut); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; }
.hero-scroll .reel { width: 1px; height: 36px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6), transparent); animation: reel 2.5s ease infinite; }
@keyframes reel { 0%, 100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ===== SECTIONS ===== */
.section { padding: clamp(72px, 10vw, 160px) 0; border-top: 1px solid var(--line); }
.section--dark { background: var(--black); color: var(--white); border-color: var(--line-dark); }
.section--dark .body { color: rgba(255,255,255,0.78); }
.section--dark .eyebrow { color: rgba(255,255,255,0.62); }
.section-tag { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 44px; }
.section-tag .ln { width: 28px; height: 1px; background: currentColor; opacity: 0.6; }
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  .display, h2.display { font-size: clamp(32px, 8.5vw, 48px) !important; line-height: 1 !important; }
  .eyebrow { font-size: 9px !important; letter-spacing: 0.24em !important; margin-bottom: 18px !important; }
  .lead { font-size: 16px !important; line-height: 1.5 !important; }
  .body { font-size: 14px !important; line-height: 1.6 !important; }
  .section-tag { margin-bottom: 24px; font-size: 9px; letter-spacing: 0.22em; }
  .houses-intro { padding: 56px 0 24px; }
  .house { padding: 56px 0; }
  .h-lead { font-size: 17px !important; line-height: 1.4 !important; }
  .h-mats { gap: 6px; }
  .h-mat { font-size: 9px; padding: 7px 10px; letter-spacing: 0.14em; }
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 7vw, 120px); align-items: start; }
.about-grid h2 { max-width: 12ch; }
.about-copy { display: flex; flex-direction: column; gap: 22px; max-width: 56ch; }
.about-stats { margin-top: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 32px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--font-display); font-size: clamp(48px, 5vw, 72px); font-weight: 300; line-height: 1; letter-spacing: -0.02em; }
.stat .n em { font-style: italic; }
.stat .lab { margin-top: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ===== HOUSES INDEX ===== */
.houses-intro { padding: clamp(96px, 12vw, 180px) 0 clamp(40px, 5vw, 60px); border-top: 1px solid var(--line); }
.houses-intro h2 { max-width: 22ch; margin-top: 14px; }
.houses-intro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.houses-intro-row .right { max-width: 44ch; }
@media (max-width: 900px) { .houses-intro-row { grid-template-columns: 1fr; gap: 32px; } }

/* House panel */
.house { padding: clamp(80px, 10vw, 140px) 0; border-top: 1px solid var(--line); position: relative; }
.house--dark { background: var(--black); color: var(--white); border-color: var(--line-dark); }
.house--dark .body { color: rgba(255,255,255,0.76); }
.house--dark .h-mat { border-color: var(--line-dark); color: rgba(255,255,255,0.78); }
.house--dark .h-mat:hover { background: var(--white); color: var(--black); }
.house--dark .h-link { color: var(--white); border-color: rgba(255,255,255,0.4); }
.house--dark .h-link:hover { background: var(--white); color: var(--black); }
.h-head { display: grid; grid-template-columns: 1fr auto; gap: clamp(20px, 3vw, 48px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.h-name em { font-style: italic; }
.h-cat { padding-bottom: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; text-align: right; max-width: 22ch; opacity: 0.78; }
@media (max-width: 900px) {
  .h-head { grid-template-columns: 1fr; gap: 10px; margin-bottom: 32px; }
  .h-cat { text-align: left; padding-bottom: 0; }
}

.h-body { display: grid; grid-template-columns: 1.05fr 1.5fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.house--flip .h-body { grid-template-columns: 1.5fr 1.05fr; }
.house--flip .h-body > .h-copy { order: 2; }
.house--flip .h-body > .h-gallery { order: 1; }
@media (max-width: 1000px) {
  .h-body, .house--flip .h-body { grid-template-columns: 1fr; }
  .house--flip .h-body > .h-copy { order: 1; }
  .house--flip .h-body > .h-gallery { order: 2; }
}
.h-copy { display: flex; flex-direction: column; gap: 22px; max-width: 48ch; position: sticky; top: 90px; }
@media (max-width: 1000px) { .h-copy { position: static; } }
.h-lead { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(22px, 1.8vw, 30px); line-height: 1.35; }
.h-mats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.h-mat { padding: 9px 14px; border: 1px solid var(--line); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; transition: background .25s, color .25s; cursor: default; }
.h-link { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; border: 1px solid var(--black); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 14px; align-self: flex-start; transition: background .25s, color .25s; }
.h-links { display: flex; flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 16px; margin-top: 14px; }
.h-links .h-link { margin-top: 0; }
.h-link:hover { background: var(--black); color: var(--white); }
.h-link .arr { font-family: var(--font-display); font-size: 14px; }
/* Logo-style brand link card (designer furniture) */
.h-link-logo { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 24px; border: 1px solid rgba(255,255,255,0.22); background: transparent; text-decoration: none; transition: background .25s; min-width: 140px; }
.h-link-logo:hover { background: rgba(255,255,255,0.08); }
.h-link-img { max-width: 120px; max-height: 50px; width: auto; height: auto; object-fit: contain; }
.h-link-visit { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
/* Logo instead of text in h-head */
.h-name-logo { width: 120px; height: auto; max-height: 64px; object-fit: contain; display: block; margin-bottom: 4px; }
/* Text heading for non-logo houses (Casa Lithic, Designer Furniture) */
.h-name { font-family: var(--font-display); font-weight: 300; font-size: 42px; line-height: 0.95; letter-spacing: -0.025em; }

.h-gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(120px, auto); gap: 12px; }
.h-gallery .tile { position: relative; overflow: hidden; }
.h-gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.h-gallery .tile:hover img { transform: scale(1.04); }
.h-gallery .tile.t1 { grid-column: span 6; grid-row: span 2; }
.h-gallery .tile.t2 { grid-column: span 3; grid-row: span 1; }
.h-gallery .tile.t3 { grid-column: span 3; grid-row: span 1; }
.h-gallery .tile.t4 { grid-column: span 6; grid-row: span 1; }
@media (max-width: 700px) {
  .h-gallery { grid-template-columns: repeat(2, 1fr); }
  .h-gallery .tile.t1, .h-gallery .tile.t4 { grid-column: span 2; }
  .h-gallery .tile.t2, .h-gallery .tile.t3 { grid-column: span 1; }
}

/* ===== EXCELLENCE ===== */
.exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(56px, 7vw, 120px); align-items: start; }
.exc-grid h2 { max-width: 14ch; }
.exc-bullets { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
.exc-b { padding: 36px 28px 36px 0; border-right: 1px solid var(--line-dark); }
.exc-b:last-child { border-right: 0; }
.exc-b .n { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; opacity: 0.6; margin-bottom: 14px; }
.exc-b .t { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 22px; line-height: 1.3; margin-bottom: 12px; }
.exc-b .d { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.66); }
@media (max-width: 900px) {
  .exc-grid { grid-template-columns: 1fr; }
  .exc-bullets { grid-template-columns: 1fr; }
  .exc-b { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .exc-b:last-child { border-bottom: 0; }
}

/* ===== CTA ===== */
.cta { padding: clamp(80px, 13vw, 200px) 0; text-align: center; }
.cta h2 { max-width: none; margin: 0 auto; }
.cta-sub { margin: 28px auto 44px; max-width: 50ch; font-size: clamp(15px, 1.05vw, 17px); color: var(--muted); }
.cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px; border: 1px solid var(--black); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; transition: background .3s, color .3s; background: transparent; cursor: pointer; color: inherit; }
.cta-btn:hover { background: var(--black); color: var(--white); }
.cta-btn--ghost { border-color: var(--line); }
@media (max-width: 700px) {
  .cta-btn { padding: 14px 22px; font-size: 10px; }
}

/* ===== CONTACT MODAL ===== */
.cm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .4s ease; z-index: 90; }
.cm-overlay.is-open { opacity: 1; pointer-events: auto; }
.cm { position: fixed; top: 0; right: 0; height: 100vh; width: min(560px, 100vw); background: var(--white); transform: translateX(100%); transition: transform .55s cubic-bezier(.4,0,.2,1); z-index: 100; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,0.2); }
.cm.is-open { transform: translateX(0); }
.cm-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 26px; line-height: 1; background: transparent; border: 1px solid var(--line); cursor: pointer; transition: background .25s, color .25s; }
.cm-close:hover { background: var(--black); color: var(--white); }
.cm-inner { padding: clamp(40px, 6vw, 64px) clamp(28px, 4vw, 48px); overflow-y: auto; flex: 1; }
.cm-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.cm-eyebrow .ln { width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.cm-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; max-width: 18ch; }
.cm-title em { font-style: italic; }
.cm-lead { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 32px; max-width: 42ch; }
.cm-form { display: flex; flex-direction: column; gap: 18px; }
.cm-row { display: flex; flex-direction: column; gap: 8px; }
.cm-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cm-row label { display: flex; flex-direction: column; gap: 8px; }
.cm-row span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.cm-row input, .cm-row select, .cm-row textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); background: transparent; font-family: inherit; font-size: 14px; color: var(--black); transition: border-color .25s; resize: vertical; }
.cm-row input:focus, .cm-row select:focus, .cm-row textarea:focus { outline: none; border-color: var(--black); }
.cm-actions { margin-top: 12px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cm-error { width: 100%; font-size: 13px; color: #c0392b; margin: 0; padding: 10px 14px; background: rgba(192,57,43,0.08); border-left: 3px solid #c0392b; }
.cm-submit { display: inline-flex; align-items: center; gap: 12px; padding: 14px 26px; border: 1px solid var(--black); background: var(--black); color: var(--white); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background .25s, color .25s; }
.cm-submit:hover { background: transparent; color: var(--black); }
.cm-alt { font-size: 12px; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
.cm-sent { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px 0; }
.cm-check { width: 56px; height: 56px; border: 1px solid var(--black); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 12px; }
@media (max-width: 700px) {
  .cm-row.two { grid-template-columns: 1fr; }
  .cm-inner { padding: 64px 22px 32px; }
}

/* ===== FOOTER ===== */
.foot { padding: 80px 0 36px; background: var(--black); color: var(--white); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.foot h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 18px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot ul li a { font-size: 14px; color: rgba(255,255,255,0.82); transition: color .25s; }
.foot ul li a:hover { color: var(--white); }
.foot-logo { max-width: 300px; height: auto; display: block; opacity: 0.9; }
@media (max-width: 900px) { .foot-logo { max-width: 160px; } }
.foot-brand { font-family: var(--font-display); font-size: 32px; font-weight: 300; letter-spacing: 0.04em; }
.foot-brand em { font-style: italic; }
.foot-brand-col { display: flex; flex-direction: column; justify-content: center; }
.foot-contact-col { display: flex; flex-direction: column; justify-content: space-between; }
.foot-tag { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.6); max-width: 36ch; line-height: 1.65; }
.foot-locations { gap: 14px !important; }
.foot-locations li { display: flex; flex-direction: column; gap: 2px; }
.foot-locations li strong { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88); }
.foot-locations li span { font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); }
.foot-bot { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .foot-top { grid-template-columns: 1fr; gap: 36px; }
  .foot ul li a { word-break: break-all; overflow-wrap: anywhere; }
  .foot-brand { font-size: 26px; }
  .foot-bot { flex-direction: column; align-items: flex-start; gap: 6px; }
}
