/* ══════════════════════════════════════
   Design Tokens
   ══════════════════════════════════════ */

:root {
  --bg:          #0A0A0A;
  --bg-card:     #111111;
  --bg-subtle:   #141414;
  --bg-alt:      #0D0D0D;
  --text:        #F5F0EB;
  --text-body:   rgb(188, 181, 171);
  --text-dim:    rgb(110, 106, 98);
  --accent:      rgb(205, 163, 88);
  --accent-light: rgb(235, 188, 108);
  --border:      rgba(255, 255, 255, 0.06);
  --border-accent: rgba(205, 163, 88, 0.18);
  --img-bg:      #e8e3dd;
  --img-bg-alt:  #f0ece6;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', 'Helvetica Neue', sans-serif;
  --mono:  'IBM Plex Mono', monospace;
}


/* ══════════════════════════════════════
   Reset
   ══════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }


/* ══════════════════════════════════════
   Typography
   ══════════════════════════════════════ */

.heading-display {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
}

.heading-section {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.heading-section--sm { font-size: 36px; }

.heading-featured {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
}

.heading-card {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.text-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
}

.accent-italic {
  font-style: italic;
  color: var(--accent);
}

.accent-italic-light {
  font-style: italic;
  color: var(--accent-light);
}

.section-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-tag-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.label-mono {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.label-accent {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}


/* ══════════════════════════════════════
   Buttons
   ══════════════════════════════════════ */

.cta-outline {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.cta-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.cta-subtle {
  display: inline-block;
  padding: 14px 20px;
  color: var(--text-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.cta-subtle:hover { color: var(--accent); }

.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.3s ease;
}

.cta-secondary:hover { border-color: var(--text-body); }

.cta-pair {
  display: flex;
  gap: 20px;
  align-items: center;
}


/* ══════════════════════════════════════
   Navigation
   ══════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 72px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav-brand-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-body);
  text-transform: uppercase;
  transition: color 0.25s ease;
  cursor: pointer;
}

.nav-link:hover { color: var(--accent); }

.nav-lang { letter-spacing: 0.1em; }

.nav-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.nav-cta {
  padding: 8px 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.nav-toggle { display: none; }


/* ══════════════════════════════════════
   Mobile nav
   ══════════════════════════════════════ */

.mobile-menu { display: none; }

@media (max-width: 1023px) {
  .site-nav {
    position: sticky;
    padding: 0 24px;
    height: 56px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
  }

  .nav-brand-name { font-size: 17px; }
  .nav-brand-badge { font-size: 8px; letter-spacing: 0.2em; }
  .nav-brand { gap: 8px; }
  .nav-links { display: none; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }

  .nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
  }

  .nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(2px, 2px); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(2px, -2px); }

  .mobile-menu.is-open {
    position: sticky;
    top: 56px;
    z-index: 99;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-link {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-body);
    text-transform: uppercase;
  }

  .mobile-menu-cta {
    padding: 12px 0;
    text-align: center;
  }
}


/* ══════════════════════════════════════
   Hero
   ══════════════════════════════════════ */

.hero {
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-glow {
  position: absolute;
  top: -300px;
  right: 0;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(205, 163, 88, 0.03) 0%, transparent 65%);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 80px;
  position: relative;
  z-index: 2;
}

.hero-copy .section-tag { margin-bottom: 28px; }
.hero-copy .text-body { max-width: 420px; margin-bottom: 44px; }

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.gradient-blend {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gradient-blend--left { background: linear-gradient(to right, var(--bg) 0%, transparent 15%); }
.gradient-blend--top  { background: linear-gradient(to bottom, var(--bg) 0%, transparent 15%); }


/* ── Price tag ── */

.price-tag {
  position: absolute;
  bottom: 80px;
  right: 48px;
  padding: 10px 18px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(205, 163, 88, 0.18);
}

.price-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.price-value {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
}


/* ── Brand strip ── */

.brand-strip {
  grid-column: 1 / -1;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
}

.brand-strip-names {
  display: flex;
  gap: 40px;
}

.brand-strip-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.brand-strip-name.is-primary { color: var(--text-body); }

.brand-strip-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}


/* ── Hero mobile ── */

@media (max-width: 1023px) {
  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 32px 24px 40px;
    order: 2;
  }

  .hero-copy .heading-display { font-size: 42px; margin-bottom: 20px; }
  .hero-copy .section-tag { margin-bottom: 16px; }
  .hero-copy .text-body { margin-bottom: 28px; font-size: 14px; line-height: 1.75; }
  .hero-copy .cta-pair { gap: 12px; }
  .hero-copy .cta-outline { padding: 12px 24px; font-size: 10px; letter-spacing: 0.15em; }
  .hero-copy .cta-subtle { padding: 12px 20px; font-size: 10px; letter-spacing: 0.12em; }

  .hero-media { order: 1; }
  .hero-media > img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gradient-blend { display: none; }

  .price-tag {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
  }
  .price-label { font-size: 8px; letter-spacing: 0.15em; margin-bottom: 2px; }
  .price-value { font-size: 11px; letter-spacing: 0.06em; }

  .brand-strip {
    order: 3;
    padding: 14px 24px;
    gap: 16px;
    overflow-x: auto;
  }
  .brand-strip-names { gap: 16px; }
  .brand-strip-name {
    font-size: 9px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .brand-strip-hint { display: none; }
}


/* ══════════════════════════════════════
   Sections
   ══════════════════════════════════════ */

.section {
  padding: 120px 80px;
  position: relative;
  background: var(--bg);
}

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

.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.section-header .text-body { margin-top: 0; }

.section-divider {
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(205, 163, 88, 0.12), transparent);
}

@media (max-width: 1023px) {
  .section { padding: 56px 24px; }
  .section-header { margin-bottom: 28px; }
  .section-divider { left: 24px; right: 24px; }

  .heading-section { font-size: 32px; }
  .heading-section--sm { font-size: 28px; }
  .text-body { font-size: 13px; line-height: 1.7; }
  .section-tag {
    font-size: 9px;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    gap: 12px;
  }
  .section-tag-line { width: 20px; }
}


/* ══════════════════════════════════════
   Section header with sidebar
   ══════════════════════════════════════ */

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.section-header-row .section-header { margin-bottom: 0; }

.section-sidebar { text-align: right; }
.section-sidebar .label-mono { margin-bottom: 8px; }

.section-sidebar-list {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }
  .section-sidebar {
    text-align: left;
    margin-top: 16px;
  }
  .section-sidebar-list { font-size: 14px; }
}


/* ══════════════════════════════════════
   Featured card
   ══════════════════════════════════════ */

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  margin-bottom: 24px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 162, 101, 0.25);
}

.featured-card--reversed { grid-template-columns: 1fr 1.2fr; }
.featured-card--reversed .featured-body { order: -1; }

.featured-media {
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  max-height: 520px;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 440px;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-media img { transform: scale(1.03); }

.featured-media--alt { background: var(--img-bg-alt); }

.featured-media--dark {
  background: #1a1a1a;
}

.featured-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body .text-body { margin-bottom: 32px; }

.featured-price {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
}

@media (max-width: 1023px) {
  .featured-card {
    display: block;
    margin-bottom: 16px;
  }
  .featured-card--reversed .featured-body { order: 0; }
  .featured-media { padding: 20px; max-height: 280px; }
  .featured-media img { max-height: 220px; }
  .featured-body { padding: 24px 20px 28px; }
  .heading-featured { font-size: 32px; margin-bottom: 12px; }
  .featured-body .text-body { margin-bottom: 24px; }
  .label-accent { margin-bottom: 16px; }
  .featured-price { font-size: 20px; }
}


/* ══════════════════════════════════════
   Spec list
   ══════════════════════════════════════ */

.spec-list {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.spec-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spec-value {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 400;
}

@media (max-width: 1023px) {
  .spec-list { gap: 24px; margin-bottom: 24px; }
  .spec-label { font-size: 8px; letter-spacing: 0.15em; margin-bottom: 4px; }
  .spec-value { font-size: 12px; }
}


/* ══════════════════════════════════════
   Card grid
   ══════════════════════════════════════ */

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1023px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-grid--4 { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════
   Product card
   ══════════════════════════════════════ */

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 162, 101, 0.25);
}

.card-media {
  background: var(--img-bg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.product-card:hover .card-media img { transform: scale(1.03); }

.card-media--alt { background: var(--img-bg-alt); }
.card-media--tall { height: 300px; }

.card-grid--4 { grid-template-columns: 1fr 1fr; }

.card-body { padding: 28px 28px 32px; }
.card-body .label-mono { margin-bottom: 8px; }

.card-body .text-body {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.card-specs {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

@media (max-width: 1023px) {
  .card-media { padding: 20px; height: 180px; }
  .card-media--tall { height: 200px; }
  .card-body { padding: 20px 20px 24px; }
  .card-body .text-body { font-size: 12px; line-height: 1.65; margin-bottom: 12px; }
  .heading-card { font-size: 22px; margin-bottom: 8px; }
  .card-specs { font-size: 8px; letter-spacing: 0.08em; }
}


/* ══════════════════════════════════════
   Range bar
   ══════════════════════════════════════ */

.range-bar {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-bar-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.range-bar-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-body);
}

@media (max-width: 1023px) {
  .range-bar { margin-top: 24px; padding: 14px 0; }
  .range-bar-note { font-size: 9px; letter-spacing: 0.1em; }
  .range-bar-price { font-size: 10px; }
}


/* ══════════════════════════════════════
   Brand card
   ══════════════════════════════════════ */

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 162, 101, 0.25);
}

.brand-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.brand-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(205, 163, 88, 0.18);
}

.brand-card .heading-card {
  font-size: 28px;
  margin-bottom: 14px;
}

.brand-card .text-body { margin-bottom: 20px; }

.brand-territory {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .brand-card { padding: 24px 20px; }
  .brand-card-top { margin-bottom: 10px; }
  .brand-card .heading-card { font-size: 22px; }
  .brand-badge { font-size: 8px; letter-spacing: 0.12em; padding: 2px 8px; }
  .brand-card .text-body { font-size: 12px; line-height: 1.65; margin-bottom: 16px; }
  .brand-territory { font-size: 8px; letter-spacing: 0.12em; }
}


/* ══════════════════════════════════════
   Contact
   ══════════════════════════════════════ */

.contact { overflow: hidden; }

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(205, 163, 88, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-cta .section-tag { margin-bottom: 24px; }
.contact-cta .heading-section { margin-bottom: 24px; }
.contact-cta .text-body { max-width: 420px; margin-bottom: 40px; }

.contact-cta .cta-outline { padding: 16px 40px; }
.contact-cta .cta-secondary { padding: 16px 32px; }
.contact-cta .cta-pair { gap: 16px; }

.contact-details {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0 20px;
  align-items: baseline;
}

.detail-row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  align-items: baseline;
}

.detail-row:last-child { margin-bottom: 0; }

.detail-row--wide {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
}

.detail-row--wide .detail-value {
  grid-column: 2 / -1;
}


.detail-name {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
}

.detail-phone {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-body);
  transition: color 0.25s ease;
}

.detail-phone:hover { color: var(--accent); }

.detail-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-email {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  transition: color 0.25s ease;
}

.detail-email:hover { color: var(--accent); }

.detail-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-top: 3px;
}

.detail-value {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
}

.detail-value {}

.detail-value a {
  color: var(--text-body);
  transition: color 0.25s ease;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.detail-value a:hover { color: var(--accent); }

@media (max-width: 1023px) {
  .contact-grid {
    display: block;
  }

  .contact-cta { margin-bottom: 36px; }
  .contact-cta .heading-section { margin-bottom: 16px; }
  .contact-cta .text-body { margin-bottom: 32px; }

  .contact-cta .cta-pair {
    gap: 12px;
  }

  .contact-cta .cta-outline,
  .contact-cta .cta-secondary {
    flex: 1;
    text-align: center;
    padding: 14px 0;
  }

  .contact-details {
    grid-template-columns: auto auto 1fr;
    gap: 0 12px;
  }

  .detail-row {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .detail-label {
    font-size: 8px;
    letter-spacing: 0.18em;
    width: 80px;
    flex-shrink: 0;
    padding-top: 0;
  }

  .detail-value { font-size: 13px; line-height: 1.6; }
}


/* ══════════════════════════════════════
   Footer
   ══════════════════════════════════════ */

.site-footer {
  padding: 32px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
}

.footer-brand-badge {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.footer-domain {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

@media (max-width: 1023px) {
  .site-footer { padding: 20px 24px; }
  .footer-brand-name { font-size: 13px; }
  .footer-brand-badge { font-size: 7px; letter-spacing: 0.15em; }
  .footer-brand { gap: 6px; }
  .footer-domain { display: none; }
  .footer-copy { font-size: 8px; }
}


/* ══════════════════════════════════════
   Animations
   ══════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up    { animation: fadeInUp 0.8s ease both; }
.anim-fade-up-d1 { animation: fadeInUp 0.8s ease 0.15s both; }
.anim-fade-up-d2 { animation: fadeInUp 0.8s ease 0.3s both; }
.anim-fade-up-d3 { animation: fadeInUp 0.8s ease 0.45s both; }
.anim-fade       { animation: fadeIn 1s ease 0.3s both; }
