/* =========================================================
   AMBA INTERIORS & ARCHITECTURAL HARDWARES
   Design: Transparent-to-frosted header · Refined luxury
   ========================================================= */

:root {
  --amber: #C96A1A;
  --amber-light: #E08A3A;
  --amber-pale: #FDF3E8;
  --amber-deep: #9E4F0C;
  --sky: #3EB5E5;
  --sky-light: #6DCBF0;
  --sky-pale: #EAF7FD;
  --sky-deep: #1B8EBB;
  --red: #D42B2B;

  --charcoal: #141414;
  --ink: #2A2A2A;
  --ink-mid: #555;
  --ink-soft: #888;
  --ink-faint: #B0B0B0;
  --white: #FFFFFF;
  --bg: #F9F8F6;
  --bg-2: #F3F1ED;
  --bg-3: #EAE7E0;
  --border: #E6E2D8;
  --border-mid: #CCC8BC;

  --grad-logo: linear-gradient(110deg, var(--amber) 0%, var(--sky) 100%);
  --grad-warm: linear-gradient(120deg, var(--amber-deep), var(--amber-light));

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);

  --header-h: 82px;
  --max-w: 1280px;
  --r: 10px;
  --r-lg: 18px;
  --r-xl: 26px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}

::selection {
  background: var(--amber-pale);
  color: var(--ink);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
}

@media (max-width:768px) {
  .container {
    padding: 0 22px;
  }
}

.section {
  padding: 100px 0;
  overflow-x: hidden;
}

@media (max-width:768px) {
  .section {
    padding: 64px 0;
  }
}

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--grad-logo);
  flex-shrink: 0;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .75);
}

.eyebrow.light::before {
  background: rgba(255, 255, 255, .5);
}

/* ---- Section heads ---- */
.sec-head {
  margin-bottom: 52px;
}

.sec-head.center {
  text-align: center;
}

.sec-head.center .eyebrow {
  justify-content: center;
}

.sec-head.center .eyebrow::before {
  display: none;
}

.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--charcoal);
  margin-top: 10px;
  letter-spacing: -0.01em;
}

.sec-head p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--ink-mid);
  line-height: 1.72;
  max-width: 540px;
}

.sec-head.center p {
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: all .28s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-logo);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(201, 106, 26, .5);
  filter: brightness(1.07);
}

.btn-outline-nav {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}

.header-scrolled .btn-outline-nav {
  background: transparent;
  color: var(--amber-deep);
  border-color: var(--border-mid);
}

.btn-outline-nav:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-1px);
}

.header-scrolled .btn-outline-nav:hover {
  background: var(--amber-pale);
  border-color: var(--amber);
  color: var(--amber-deep);
}

.btn-hero-primary {
  background: var(--grad-logo);
  color: #fff;
  border-color: transparent;
  padding: 15px 32px;
  font-size: 15px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(201, 106, 26, .55);
  filter: brightness(1.08);
}

.btn-hero-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  backdrop-filter: blur(10px);
  padding: 15px 32px;
  font-size: 15px;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .8);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--amber-pale);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-emblem {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  animation: loaderSpin 2s linear infinite;
  border-top-color: transparent;
  border-right-color: transparent;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.loader-emblem img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.loader-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .25em;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.loader-bar-wrap {
  width: 120px;
  height: 2px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  background: var(--grad-logo);
  border-radius: 10px;
  animation: loaderFill 1.6s ease-in-out forwards;
}

@keyframes loaderFill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: var(--grad-logo);
  z-index: 200;
  width: 0%;
  transition: width .08s;
}

/* ============ HEADER — transparent then frosted ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* starts fully transparent */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background .45s var(--ease),
    border-color .45s,
    box-shadow .45s;
}

header.header-scrolled {
  background: rgba(249, 248, 246, .94);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 28px -12px rgba(0, 0, 0, .12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
}

.brand-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.brand:hover .brand-logo-wrap {
  transform: scale(1.06);
  box-shadow: 0 4px 14px -4px rgba(212, 43, 43, .28);
}

.brand-logo-wrap img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color .3s;
}

/* White brand name when header is transparent */
.header-transparent:not(.header-scrolled) .brand-name {
  background: none;
  -webkit-text-fill-color: #fff;
}

.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
  -webkit-text-fill-color: var(--ink-faint);
  transition: color .3s, -webkit-text-fill-color .3s;
}

.header-transparent:not(.header-scrolled) .brand-sub {
  color: rgba(255, 255, 255, .55);
  -webkit-text-fill-color: rgba(255, 255, 255, .55);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 5px 0;
  position: relative;
  transition: color .25s;
}

.header-transparent:not(.header-scrolled) .nav-links a {
  color: rgba(255, 255, 255, .78);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1.5px;
  background: var(--grad-logo);
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.header-transparent:not(.header-scrolled) .nav-links a:hover,
.header-transparent:not(.header-scrolled) .nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.burger span {
  width: 23px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .3s;
  border-radius: 2px;
}

.header-scrolled .burger span {
  background: var(--ink);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--charcoal);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 52px 32px 40px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 30px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .65);
  line-height: 1;
  transition: color .2s;
}

.mobile-close:hover {
  color: #fff;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}

.mobile-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.mobile-brand span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.mobile-menu ul li+li {
  margin-top: 4px;
}

.mobile-menu ul a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  padding: 10px 0;
  transition: color .2s;
}

.mobile-menu ul a:hover {
  color: #fff;
}

.mm-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--amber);
  line-height: 1;
  transform: translateY(-2px);
}

.mobile-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
}

.mobile-footer .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.mobile-footer p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  text-align: center;
}

@media (max-width:1000px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .55s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 12, .55) 0%, transparent 35%),
    linear-gradient(90deg, rgba(5, 8, 12, .88) 0%, rgba(8, 14, 22, .6) 55%, rgba(8, 14, 22, .18) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Thumbs */
.hero-thumbs {
  position: absolute;
  right: 36px;
  bottom: 96px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumb {
  width: 68px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .2);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color .3s, transform .3s var(--ease);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--amber-light);
  transform: scale(1.06);
}

.thumb:hover {
  border-color: rgba(255, 255, 255, .65);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 160px;
  padding-bottom: 90px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 22px;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-light);
  animation: tagPulse 2.4s infinite;
}

@keyframes tagPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 600;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -.015em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-top: 22px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.74;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  flex-wrap: wrap;
  gap: 8px;
}

.hstat {
  padding-right: 36px;
}

.hstat-n {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.hstat-l {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, .48);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 5px;
}

.hstat-sep {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .18);
  margin-right: 36px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}

.scroll-track {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px;
}

.scroll-thumb {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .6);
  border-radius: 4px;
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px);
    opacity: .4
  }
}

@media (max-width:768px) {
  .hero-thumbs {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hstat-sep {
    display: none;
  }

  .hstat {
    padding: 0;
    min-width: 28%;
  }

  .hero-content {
    padding-bottom: 64px;
  }
}

/* ============ TICKER ============ */
.ticker {
  background: linear-gradient(90deg, var(--amber-deep) 0%, var(--sky-deep) 100%);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  padding: 0 18px;
}

.ticker-track .sep {
  color: rgba(255, 255, 255, .35) !important;
  font-size: 9px;
  padding: 0 4px !important;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-images {
  position: relative;
}

.about-img-stack {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
}

.about-img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 420px;
  grid-row: 1/2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-sm {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 200px;
  align-self: end;
}

.about-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 280px;
  right: -20px;
  background: var(--grad-warm);
  color: #fff;
  padding: 20px 22px;
  border-radius: var(--r);
  box-shadow: 0 20px 50px -16px rgba(201, 106, 26, .45);
  text-align: center;
}

.badge-yr {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.badge-lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .72);
  margin-top: 6px;
}

.about-img-bottom {
  margin-top: 10px;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 200px;
}

.about-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding-top: 4px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.14;
  margin: 10px 0 18px;
}

.about-content .lead {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.74;
}

.about-content>p {
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 34px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 34px;
}

.ab-feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.ab-ic {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--amber-pale);
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-ic svg {
  width: 16px;
  height: 16px;
}

.ab-feat h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}

.ab-feat p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width:960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 16px;
    top: auto;
    bottom: 220px;
  }
}

@media (max-width:560px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--charcoal);
  padding: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 52px 36px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--amber-light);
  -webkit-text-fill-color: var(--amber-light);
}

.stat-l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255, 255, 255, .38);
  margin-top: 8px;
}

@media (max-width:768px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .08);
  }
}

@media (max-width:480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 32px 24px;
  }
}

/* ============ PRODUCTS ============ */
.products {
  background: var(--bg-2);
}

.tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.tab {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 9px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border-mid);
  background: var(--bg);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .22s;
}

.tab:hover {
  border-color: var(--amber);
  color: var(--amber-deep);
}

.tab.active {
  background: var(--grad-logo);
  color: #fff;
  border-color: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.prod-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 52px -22px rgba(0, 0, 0, .2);
}

.prod-img {
  position: relative;
  height: 196px;
  overflow: hidden;
  background: var(--bg-3);
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.prod-card:hover .prod-img img {
  transform: scale(1.08);
}

.prod-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--grad-logo);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 10px;
  border-radius: 30px;
}

.prod-pill--sky {
  background: linear-gradient(110deg, var(--sky-deep), var(--sky-light));
}

.prod-body {
  padding: 18px 18px 22px;
}

.prod-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--sky-deep);
  display: block;
  margin-bottom: 5px;
}

.prod-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}

.prod-body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width:960px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ STORY / VIDEO SECTION ============ */
.story-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
}

.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(8, 12, 18, .96) 0%,
      rgba(8, 14, 22, .88) 45%,
      rgba(8, 14, 22, .72) 70%,
      rgba(8, 14, 22, .55) 100%);
}

.story-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-left h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 14px 0 18px;
}

.story-left>p {
  font-size: 16px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 460px;
}

.story-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sstep {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.sstep svg {
  width: 16px;
  height: 16px;
  color: var(--amber-light);
  flex-shrink: 0;
}

/* Video card */
.story-video-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0, 0, 0, .65);
  border: 1px solid rgba(255, 255, 255, .1);
  background: #000;
}

.story-video-inner {
  position: relative;
}

.story-video-inner video {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.story-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.vid-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: tagPulse 2s infinite;
}

@media (max-width:900px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .story-left>p {
    max-width: 100%;
  }
}

/* ============ BRANDS ============ */
.brands-section {
  background: var(--bg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.brand-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -18px rgba(0, 0, 0, .16);
}

.brand-img-wrap {
  height: 178px;
  overflow: hidden;
  background: var(--bg-2);
}

.brand-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.brand-card:hover .brand-img-wrap img {
  transform: scale(1.06);
}

.brand-body {
  padding: 18px 20px 22px;
}

.brand-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.brand-body p {
  font-size: 13px;
  color: var(--ink-soft);
}

.brand-note {
  text-align: center;
  padding: 22px 24px;
  background: var(--bg-2);
  border-radius: var(--r);
  border: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--ink-mid);
}

.brand-note a {
  color: var(--amber-deep);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width:768px) {
  .brands-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:480px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ WHY ============ */
.why {
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.14;
  margin: 10px 0 14px;
}

.why-left>p {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 30px;
}

.why-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-light);
  box-shadow: 0 14px 36px -14px rgba(201, 106, 26, .18);
}

.why-ic {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--amber-pale);
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.why-ic svg {
  width: 17px;
  height: 17px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}

.why-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (max-width:960px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}

/* ============ GALLERY ============ */
.gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 44px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease);
}

.gallery-item.g-tall img {
  height: 534px;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 22, .88) 0%, transparent 55%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .4s;
}

.gallery-item:hover .gallery-cap {
  opacity: 1;
}

.gallery-cap span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--amber-light);
}

.gallery-cap h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-top: 5px;
}

.gallery-item:nth-child(1) {
  grid-row: 1/3;
}

.gallery-item:nth-child(5) {
  grid-row: 1/3;
  grid-column: 3;
}

@media (max-width:768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 22px;
  }

  .gallery-item:nth-child(1) {
    grid-row: auto;
    grid-column: 1/3;
  }

  .gallery-item:nth-child(5) {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-item.g-tall img {
    height: 280px;
  }

  .gallery-item img {
    height: 220px;
  }
}

@media (max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: auto;
  }
}

/* ============ PROCESS ============ */
.process {
  background: var(--bg-2);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 20px;
}

.process-connector {
  flex: 0 0 40px;
  display: flex;
  align-items: flex-start;
  padding-top: 37px;
  justify-content: center;
}

.process-connector::after {
  content: '→';
  color: var(--border-mid);
  font-size: 20px;
  line-height: 1;
}

.process-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--amber);
  margin-bottom: 10px;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-deep);
  margin-bottom: 22px;
  transition: all .3s var(--ease);
}

.process-icon svg {
  width: 26px;
  height: 26px;
}

.process-step:hover .process-icon {
  background: var(--grad-logo);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 24px -8px rgba(62, 181, 229, .42);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 9px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width:768px) {
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    padding: 0;
  }
}

/* ============ TESTIMONIALS ============ */
.testi {
  background: var(--bg);
}

.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.testi-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 10px;
}

.testi-nav {
  display: flex;
  gap: 10px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.testi-btn:hover {
  background: var(--grad-logo);
  color: #fff;
  border-color: transparent;
}

.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  min-width: 360px;
  flex: 1;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .14);
}

.testi-stars {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testi-card>p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 22px;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-logo);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
}

.testi-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-faint);
  margin-top: 2px;
}

@media (max-width:768px) {
  .testi-card {
    min-width: 86%;
  }
}

/* ============ FAQ ============ */
.faq {
  background: var(--bg-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 10px 0 14px;
}

.faq-left>p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.faq-left a {
  color: var(--amber-deep);
  font-weight: 600;
}

.faq-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: var(--amber);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q h4 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  flex-shrink: 0;
  position: relative;
  transition: all .3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
  background: var(--amber-deep);
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
  background: var(--amber-deep);
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  background: var(--grad-logo);
  border-color: transparent;
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: #fff;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-a p {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-mid);
}

@media (max-width:960px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-img {
    height: 230px;
  }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 100px 0;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 12, 16, .94) 0%, rgba(8, 14, 22, .8) 55%, rgba(8, 14, 22, .52) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}

.cta-banner-content p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 34px;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.14;
  margin: 10px 0 14px;
}

.contact-info>p {
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: var(--r);
  transition: background .22s;
  color: inherit;
}

.contact-item:hover {
  background: var(--bg-2);
}

.ci-ic {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--grad-logo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-ic svg {
  width: 17px;
  height: 17px;
}

.ci-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink-faint);
  margin-bottom: 3px;
}

.ci-val {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.45;
}

.map-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: 0 28px 60px -30px rgba(0, 0, 0, .14);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.form-header p {
  font-size: 13px;
  color: var(--ink-faint);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink-soft);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  padding: 12px 15px;
  border-radius: 7px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(62, 181, 229, .12);
}

@media (max-width:960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width:560px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

/* ============ FOOTER ============ */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .5);
}

.footer-top {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.footer-logo-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logo-ring img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-top: 2px;
  -webkit-text-fill-color: rgba(255, 255, 255, .3);
}

.footer-brand>p {
  font-size: 13.5px;
  line-height: 1.72;
  max-width: 270px;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: all .25s;
}

.footer-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}

.footer-socials svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
}

.footer-col ul a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width:960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-logo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 24px -8px rgba(201, 106, 26, .5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 90;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-top:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-hero {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal-hero.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion:reduce) {

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}