/* ==========================================================================
   Lohabour — base.css
   Shared design tokens, typography, buttons, reveal system, section
   primitives, header, and footer. Every page links this before its own
   page-specific stylesheet.
   ========================================================================== */

:root {
  --bg: #0A0A09;
  --bg-secondary: #121211;
  --text: #F1EFE8;
  --text-secondary: #96948D;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #B08D57;
  /* restrained warm champagne / bronze */
  --accent-soft: rgba(176, 141, 87, 0.14);

  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------- Reset ---------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ---------------- Typography ---------------- */

.mono-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  gap: 12px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
}

h3 {
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 12px 0 22px;
  text-wrap: balance;
}

.display--lg {
  font-size: clamp(44px, 6.2vw, 88px);
}

.display--md {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 300;
}

.lede {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.75;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 58ch;
  letter-spacing: 0.005em;
}

.lede--light {
  color: rgba(241, 239, 232, 0.78);
}

.link-arrow {
  display: inline-block;
  margin-top: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), padding-right 0.3s var(--ease);
}

.link-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
  padding-right: 4px;
}

/* ---------------- Buttons ---------------- */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
}

/* sheen sweep on hover — a single, restrained flourish per button */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease-soft);
  pointer-events: none;
}

.btn:hover::after {
  left: 130%;
}

.btn--brass {
  background: var(--accent);
  color: #0A0A09;
}

.btn--brass:hover {
  transform: translateY(-2px);
  background: #c49f68;
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline {
  border-color: var(--border);
  color: var(--text);
  margin-top: 24px;
}

.btn--outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 12px;
}

/* ---------------- Reveal / motion — futurist wipe ---------------- */
/* A clip-path wipe (element uncovers left-to-right) layered on the same
   fade + rise as before. clip-path doesn't affect layout, so this is a
   drop-in replacement — no HTML changes needed for the base effect. */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: calc(var(--i, 0) * 120ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ---------------- Reveal / motion — scanline sweep ---------------- */
/* Add class="reveal-scan" alongside data-reveal on a card/media wrapper
   for a thin accent-colored line that sweeps across it once, right as
   it uncovers. Needs the element to establish its own stacking context
   (it already does via position:relative on most card/media wrappers —
   add position:relative if the target doesn't have it). */

.reveal-scan {
  position: relative;
  overflow: hidden;
}

.reveal-scan::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(100deg, transparent 40%, rgba(176, 141, 87, 0.45) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}

.reveal-scan.is-visible::after {
  animation: revealScanSweep 0.9s var(--ease-soft) both;
  animation-delay: calc(var(--i, 0) * 70ms + 0.25s);
}

@keyframes revealScanSweep {
  to {
    transform: translateX(120%);
  }
}

/* ---------------- Reveal / motion — HUD corner brackets ---------------- */
/* Add class="hud-frame" alongside data-reveal on a media wrapper for
   corner brackets that draw in on reveal, like a targeting frame. */

.hud-frame {
  position: relative;
}

.hud-frame::before,
.hud-frame::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  opacity: 0;
  z-index: 3;
  transition: opacity 0.4s var(--ease) 0.5s;
}

.hud-frame::before {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}

.hud-frame::after {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.hud-frame.is-visible::before,
.hud-frame.is-visible::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    clip-path: none;
  }

  .reveal-scan::after {
    display: none;
  }
}

/* ==================================================
   Architectural Contours
================================================== */

.hero__contours {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__contours svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contour {
  fill: none;
  stroke: rgba(241, 239, 232, 0.28);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;

  stroke-linecap: round;

  stroke-dasharray: 12 18;

  animation:
    contourFlow 18s linear infinite;
}

.contour--1 {
  opacity: 0.28;
  animation-duration: 22s;
}

.contour--2 {
  opacity: 0.18;
  animation-duration: 27s;
  animation-delay: -8s;
}

.contour--3 {
  opacity: 0.13;
  animation-duration: 32s;
  animation-delay: -15s;
}

.contour--4 {
  opacity: 0.20;
  animation-duration: 25s;
  animation-delay: -4s;
}

@keyframes contourFlow {

  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -600;
  }
}

/* ---------------- Section primitives ---------------- */

.section {
  padding: 120px 0;
  position: relative;
}

.section--dark {
  background: var(--bg-secondary);
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-bottom: 16px;
}

/* ---------------- Tags / chips ---------------- */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.tag--brass {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.tag--outline {
  border-radius: 2px;
  padding: 6px 12px;
}

.tag--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------------- Header ---------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(10, 10, 9, 0.78);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}

.site-header__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 140px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.site-header__logo:hover img {
  transform: scale(1.05);
}

/* ---------------- Desktop Navigation ---------------- */
/* Hidden entirely below 800px. Never toggled/repurposed for mobile —
   see .site-header__mobile-menu, which is a completely separate
   element with its own show/hide logic. */

.site-header__nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header__nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s var(--ease);
  padding-bottom: 4px;
  white-space: nowrap;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}

.site-header__nav a:hover {
  color: #fff;
}

.site-header__nav a:hover::after {
  left: 0;
  right: 0;
}

/* ---------------- Header Actions (desktop) ---------------- */

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.site-header__nav a.is-active {
  color: #fff;
}

.site-header__nav a.is-active::after {
  left: 0;
  right: 0;
}

/* ---------------- Mobile Trigger (hamburger) ---------------- */

.menu-trigger {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 10001;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Icon animates via the parent .site-header's state — one class,
   one toggle point, same pattern used for showing the panel below. */
.site-header.menu-open .menu-trigger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.site-header.menu-open .menu-trigger span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-trigger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------------- Mobile Menu Panel ---------------- */
/* Entirely separate element from .site-header__nav — its own markup,
   its own list of links, its own CTA. Hidden by default (display:none,
   not opacity/visibility tricks), shown only when the header carries
   .menu-open. Solid background color (not the translucent blur used
   on the bar) so text is always legible regardless of what's scrolled
   behind it. */

.site-header__mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 24px 28px;
  background-color: #0A0A09;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.site-header.menu-open .site-header__mobile-menu {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.25s var(--ease);
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-links a {
  position: relative;
}

.mobile-nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

/* ==================================================
   LANGUAGE DROPDOWN
   Furniture Website
   (single source of truth — desktop trigger lives in
   .site-header__actions, mobile trigger lives in
   .site-header__mobile-menu via .lang-dropdown--mobile)
   ================================================== */

.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}


/* ==================================================
   TRIGGER
   ================================================== */

.lang-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  padding: 9px 12px;

  min-width: 72px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;

  color: rgba(255, 255, 255, 0.68);

  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.lang-dropdown__trigger:hover,
.lang-dropdown.is-open .lang-dropdown__trigger {
  color: #fff;

  background: rgba(255, 255, 255, 0.05);

  border-color: rgba(255, 255, 255, 0.22);
}


/* ==================================================
   ARROW
   ================================================== */

.lang-dropdown__arrow {
  flex-shrink: 0;

  transition: transform 0.25s var(--ease);
}

.lang-dropdown.is-open .lang-dropdown__arrow {
  transform: rotate(180deg);
}


/* ==================================================
   DROPDOWN PANEL
   ================================================== */

.lang-dropdown__panel {
  position: absolute;

  top: calc(100% + 10px);
  right: 0;

  min-width: 120px;

  padding: 6px;

  background: rgba(15, 14, 12, 0.97);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 10px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-6px);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;

  z-index: 1000;
}


/* OPEN */

.lang-dropdown.is-open .lang-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}


/* ==================================================
   LANGUAGE ITEMS
   ================================================== */

.lang-dropdown__panel a {
  display: block;

  padding: 9px 11px;

  border-radius: 6px;

  color: rgba(255, 255, 255, 0.62);

  font-family: var(--font-mono);
  font-size: 10px;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.lang-dropdown__panel a:hover {
  color: #fff;

  background: rgba(255, 255, 255, 0.06);
}

.lang-dropdown__panel a.is-active {
  color: var(--accent);

  background: rgba(255, 255, 255, 0.045);
}


/* ==================================================
   MOBILE — flat pill-row switcher
   Same pattern as the Technology site's .lang-switch:
   every language shown inline, no open/close state,
   just tap the one you want. Bronze/champagne themed
   to match the furniture site.
   ================================================== */

@media (max-width: 880px) {

  /*
     * The desktop dropdown lives inside
     * .site-header__actions, which is already hidden
     * at this breakpoint — nothing extra to do for it.
     */

  .lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;

    padding: 4px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
  }

  .lang-switch a {
    padding: 8px 14px;

    border-radius: 20px;

    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--text-secondary);

    transition:
      color 0.25s var(--ease),
      background 0.25s var(--ease);
  }

  .lang-switch a:hover {
    color: var(--text);
  }

  .lang-switch a.is-active {
    background: var(--accent);
    color: #0A0A09;
    font-weight: 600;
  }

  /* ==================================================
   MOBILE — COMPACT LANGUAGE SWITCHER
   ================================================== */

  @media (max-width: 880px) {

    .mobile-lang-switch {
      /* Do NOT stretch across the mobile menu */
      width: fit-content;
      align-self: center;

      /* Remove the large full-width appearance */
      margin: 20px auto 0;
      padding: 4px;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;

      border-top: none;

      border: 1px solid var(--border);
      border-radius: 30px;

      background: rgba(255, 255, 255, 0.03);
    }

    .mobile-lang-switch a {
      display: flex;
      align-items: center;
      justify-content: center;

      padding: 7px 12px;

      min-width: 42px;

      border-radius: 20px;

      font-family: var(--font-mono);
      font-size: 10px;
      line-height: 1;

      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;

      color: var(--text-secondary);

      white-space: nowrap;

      transition:
        color 0.25s var(--ease),
        background 0.25s var(--ease);
    }

    .mobile-lang-switch a:hover {
      color: var(--text);
    }

    .mobile-lang-switch a.is-active {
      background: var(--accent);
      color: #0A0A09;
      font-weight: 600;
    }
  }


  /* ==================================================
   MOBILE CTA
   ================================================== */

  @media (max-width: 880px) {

    .mobile-cta {
      display: flex;

      width: 100%;
      margin-top: 20px;

      justify-content: center;
      align-items: center;
    }
  }

}

.mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ==================================================
   BREAKPOINTS
   ================================================== */

@media (max-width: 1050px) {
  .site-header__bar {
    padding: 14px var(--gutter);
    gap: 20px;
  }

  .site-header__nav {
    gap: 20px;
    font-size: 12px;
  }

  .site-header__actions {
    gap: 14px;
  }
}

@media (max-width: 880px) {

  .site-header__bar {
    width: 100%;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  /* Hide desktop navigation */
  .site-header__nav {
    display: none;
  }

  /* Hide desktop language switch */
  .site-header__actions .lang-switch {
    display: none;
  }

  /* Hide desktop Request Quote button */
  .site-header__actions .btn {
    display: none;
  }

  /* Keep the actions container from taking any space */
  .site-header__actions {
    display: none;
  }

  /* Hamburger on the RIGHT */
  .menu-trigger {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 90px 0 28px;
}


/* ---------------- Main footer ---------------- */

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);

  display: grid;
  grid-template-columns:
    minmax(190px, 1.15fr) minmax(300px, 2fr) minmax(120px, 0.8fr) minmax(180px, 1fr);

  gap: clamp(35px, 5vw, 80px);

  align-items: start;
}


/* ---------------- Brand ---------------- */

.site-footer__brand {
  max-width: 280px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.site-footer__brand p {
  margin: 22px 0 0;

  color: var(--text-secondary);

  font-size: 13px;
  line-height: 1.7;

  max-width: 32ch;
}


/* ---------------- Headings ---------------- */

.site-footer__heading {
  margin-bottom: 22px;

  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: var(--accent);
}


/* ---------------- Products ---------------- */

.site-footer__products {
  min-width: 0;
}


/* ---------------- Product list ---------------- */

.site-footer__product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  column-gap: 42px;
  row-gap: 0;
}


/* ---------------- Product item ---------------- */

.site-footer__product {
  position: relative;

  display: grid;
  grid-template-columns: 26px 1fr 18px;
  align-items: center;

  min-height: 43px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  color: var(--text);

  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}


/* subtle top line only for first row */

.site-footer__product:nth-child(-n + 2) {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}


/* ---------------- Number ---------------- */

.site-footer__product-number {
  font-family: var(--font-mono);

  font-size: 8px;
  letter-spacing: 0.04em;

  color: rgba(241, 239, 232, 0.32);

  transition: color 0.3s var(--ease);
}


/* ---------------- Name ---------------- */

.site-footer__product-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.005em;

  transition:
    transform 0.35s var(--ease),
    color 0.3s var(--ease);
}


/* ---------------- Arrow ---------------- */

.site-footer__product-arrow {
  font-size: 13px;

  color: var(--accent);

  opacity: 0;
  transform: translate(-5px, 5px);

  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease);
}


/* ---------------- Hover ---------------- */

.site-footer__product:hover {
  color: var(--accent);
  border-color: rgba(176, 141, 87, 0.35);
}

.site-footer__product:hover .site-footer__product-number {
  color: var(--accent);
}

.site-footer__product:hover .site-footer__product-name {
  transform: translateX(4px);
}

.site-footer__product:hover .site-footer__product-arrow {
  opacity: 1;
  transform: translate(0, 0);
}


/* ==================================================
   VIEW ALL
================================================== */

.site-footer__view-all {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  margin-top: 22px;

  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: rgba(241, 239, 232, 0.55);

  transition:
    color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.site-footer__view-all i {
  display: block;

  width: 24px;
  height: 1px;

  background: rgba(176, 141, 87, 0.55);

  position: relative;

  transition:
    width 0.35s var(--ease),
    background 0.3s var(--ease);
}

.site-footer__view-all i::after {
  content: '';

  position: absolute;
  right: 0;
  top: -2px;

  width: 5px;
  height: 5px;

  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;

  transform: rotate(45deg);
}

.site-footer__view-all:hover {
  color: var(--accent);
  gap: 15px;
}

.site-footer__view-all:hover i {
  width: 30px;
  background: var(--accent);
}


/* ---------------- View all ---------------- */

.site-footer__view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 25px;

  color: var(--text-secondary);

  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;

  transition:
    color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.site-footer__view-all span {
  font-size: 15px;
  transition: transform 0.3s var(--ease);
}

.site-footer__view-all:hover {
  color: var(--accent);
  gap: 13px;
}

.site-footer__view-all:hover span {
  transform: translate(2px, -2px);
}


/* ---------------- Explore / Blog ---------------- */

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.site-footer__links a {
  color: var(--text-secondary);

  font-size: 14px;
  font-weight: 400;

  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.site-footer__links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}


/* ---------------- Contact ---------------- */

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__contact>a:not(.site-footer__quote) {
  color: var(--text-secondary);
  font-size: 14px;

  transition: color 0.3s var(--ease);
}

.site-footer__contact>a:not(.site-footer__quote):hover {
  color: var(--accent);
}

.site-footer__contact>span {
  color: var(--text-secondary);

  font-size: 12px;
  line-height: 1.6;

  max-width: 22ch;
}


/* ---------------- Quote CTA ---------------- */

.site-footer__quote {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 13px;

  color: var(--text) !important;

  font-size: 13px !important;
  font-weight: 500 !important;

  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;

  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    gap 0.3s var(--ease);
}

.site-footer__quote span {
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}

.site-footer__quote:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
  gap: 13px;
}

.site-footer__quote:hover span {
  transform: translateX(3px);
}


/* ---------------- Bottom ---------------- */

.site-footer__bottom {
  max-width: var(--container);
  margin: 70px auto 0;

  padding: 20px var(--gutter) 0;

  border-top: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;

  color: var(--text-secondary);
}

.site-footer__bottom-mark {
  opacity: 0.55;
  letter-spacing: 0.12em;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1000px) {

  .site-footer__inner {
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .site-footer__brand {
    grid-row: span 2;
  }

  .site-footer__contact {
    grid-column: 2 / -1;
    margin-top: 20px;
  }

}


@media (max-width: 700px) {

  .site-footer {
    padding: 70px 0 25px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 380px;
  }

  .site-footer__products {
    grid-column: 1 / -1;
  }

  .site-footer__product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 25px;
  }

  .site-footer__contact {
    grid-column: auto;
    margin-top: 0;
  }

  .site-footer__bottom {
    margin-top: 55px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer__product-list {
    column-gap: 25px;
  }

}


@media (max-width: 480px) {

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__brand,
  .site-footer__products,
  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__product-list {
    grid-template-columns: 1fr;
  }

  .site-footer__product:nth-child(2) {
    border-top: none;
  }

}

/* ---------------- Reduced motion ---------------- */

/* @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .hero__contours .contour-flow {
        animation: none !important;
    }
} */