/* =========================================================
   AMBA INTERIORS & ARCHITECTURAL HARDWARES
   Light Theme — Clean, Premium, Kerala-rooted
   ========================================================= */

:root {
  /* Core palette */
  --sage:       #2D4A3E;   /* deep forest green — Kerala's landscape */
  --sage-light: #3D6355;
  --sage-pale:  #EEF3F0;
  --gold:       #B8882A;   /* warm brass — the hardware itself */
  --gold-light: #D4A84B;
  --gold-pale:  #FBF5E8;
  --charcoal:   #1A1A1A;
  --ink:        #2C2C2C;
  --ink-soft:   #6B6B6B;
  --ink-faint:  #A0A0A0;
  --white:      #FFFFFF;
  --bg:         #FAFAF8;    /* very warm white */
  --bg-2:       #F5F3EE;
  --bg-3:       #EEE9DF;
  --border:     #E8E4DC;
  --border-strong: #D5CFC4;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Easing */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);

  /* Sizing */
  --header-h: 80px;
  --max-w: 1280px;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---- 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(--sage); outline-offset: 3px; }
::selection { background: var(--gold-pale); color: var(--ink); }

/* ---- Container ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- Utility ---- */
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.sec-head { margin-bottom: 56px; }
.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, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-top: 12px;
}
.sec-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.72;
  max-width: 560px;
}
.sec-head.center p { margin-inline: auto; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow.light { color: rgba(255,255,255,0.8); }
.eyebrow.light::before { background: var(--gold-light); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-light); border-color: var(--sage-light); transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(45,74,62,0.5); }

.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--sage); background: var(--sage-pale); transform: translateY(-2px); }

.btn-white {
  background: #fff;
  color: var(--sage);
  border-color: #fff;
}
.btn-white:hover { background: var(--gold-pale); border-color: var(--gold-pale); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 15.5px; }
.btn-full { width: 100%; justify-content: center; }

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 64px;
  height: 64px;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }
.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 10px;
  animation: loaderFill 1.8s ease-in-out forwards;
}
@keyframes loaderFill { from{width:0;} to{width:100%;} }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  z-index: 100;
  width: 0%;
  transition: width 0.1s;
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
header.scrolled { box-shadow: 0 4px 24px -12px rgba(0,0,0,0.15); background: rgba(250,250,248,0.97); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--charcoal); }
.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-5deg) scale(1.05); }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s; display: block; }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 40px 28px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  color: var(--ink);
  line-height: 1;
}
.mobile-menu ul { margin-top: 48px; }
.mobile-menu ul li + li { margin-top: 8px; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  padding: 10px 0;
}
.mobile-contact { margin-top: auto; }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  /*height: 100vh;*/
  /*min-height: 680px;*/
  /*max-height: 920px;*/
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.6s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 25, 20, 0.82) 0%,
    rgba(15, 25, 20, 0.55) 50%,
    rgba(15, 25, 20, 0.2) 100%
  );
}

/* Thumbnails */
.hero-thumbnails {
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thumb {
  width: 72px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color 0.3s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold-light); }
.thumb:hover { border-color: rgba(255,255,255,0.7); }

.hero-content {
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
  padding-top: 150px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  letter-spacing: -0.01em;
  /*max-width: 720px;*/
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-desc {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 8px;
}
.hero-stat { text-align: left; padding: 0 32px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-n {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-unit { font-family: var(--font-display); font-size: 28px; color: var(--gold-light); }
.stat-l {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.hero-stat-div { width: 1px; height: 56px; background: rgba(255,255,255,0.2); margin: 0 32px 0 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{transform:scaleY(1);opacity:1;} 50%{transform:scaleY(0.5);opacity:0.5;} }

@media (max-width: 768px) {
  .hero-thumbnails { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-content { padding-bottom: 60px; }
  .hero-stat-div { display: none; }
  .hero-stat { padding: 0; min-width: 30%; }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--sage);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0 20px;
}
.ticker-dot { color: var(--gold-light) !important; font-size: 10px; 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: 72px;
  align-items: start;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.about-img-row img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--sage);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.35);
  text-align: center;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.badge-text {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

.about-content { padding-top: 8px; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 20px;
}
.lead-text { font-size: 17px; color: var(--ink); margin-bottom: 16px; line-height: 1.72; }
.about-content > p { color: var(--ink-soft); line-height: 1.72; margin-bottom: 36px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.ab-feat { display: flex; gap: 14px; align-items: flex-start; }
.ab-feat-ic {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--sage-pale);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-feat-ic svg { width: 18px; height: 18px; }
.ab-feat h4 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.ab-feat p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { left: 16px; bottom: 16px; }
}
@media (max-width: 560px) { .about-features { grid-template-columns: 1fr; } }

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}
.stat-l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  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 var(--border); }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 32px 24px; }
}

/* ============ PRODUCTS ============ */
.products { background: var(--bg-2); }
.tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--border-strong);
  background: var(--bg);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.25s;
}
.tab:hover { border-color: var(--sage); color: var(--sage); }
.tab.active { background: var(--sage); color: #fff; border-color: var(--sage); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.prod-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.2); }
.prod-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-3);
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.prod-card:hover .prod-img img { transform: scale(1.07); }
.prod-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 40px;
}
.prod-body { padding: 20px 20px 24px; }
.prod-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  display: block;
  margin-bottom: 6px;
}
.prod-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.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; } }

/* ============ VIDEO SECTION ============ */
.video-section { position: relative; }
.video-wrap {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-fallback {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1631889993959-41b4e9c6e3c5?w=1800&q=80&fit=crop');
  background-size: cover;
  background-position: center;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,40,30,0.88) 0%, rgba(20,40,30,0.6) 60%, rgba(20,40,30,0.3) 100%);
}
.video-content {
  position: relative;
  z-index: 2;
  
  /*max-width: 600px;*/
}
.video-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin: 16px 0;
}
.video-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 480px;
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 24px;
  backdrop-filter: blur(8px);
}
.play-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }

/* Video Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
}
.video-modal.open { display: flex; }
.vm-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); cursor: pointer; }
.vm-inner { position: relative; z-index: 1; width: min(900px, 95vw); }
.vm-close {
  position: absolute;
  top: -48px; right: 0;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
}
.vm-frame { aspect-ratio: 16/9; }
.vm-frame iframe { width: 100%; height: 100%; border-radius: var(--radius); }

@media (max-width: 768px) { .video-wrap { height: 400px; } }

/* ============ BRANDS ============ */
.brands-section { background: var(--bg); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.brand-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2); }
.brand-card img { height: 180px; width: 100%; object-fit: cover; }
.brand-card-body { padding: 18px 20px 22px; }
.brand-card-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.brand-card-body p { font-size: 13px; color: var(--ink-soft); }
.brand-note {
  text-align: center;
  padding: 24px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-soft);
}
.brand-note a { color: var(--sage); 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 CHOOSE US ============ */
.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, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.why-left > p { font-size: 16px; color: var(--ink-soft); line-height: 1.72; margin-bottom: 32px; }
.why-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--sage); }
.why-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sage-pale);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-ic svg { width: 18px; height: 18px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img { height: 240px; }
}
@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);
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item.g-tall img { height: 540px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,30,22,0.82) 0%, transparent 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-cap { opacity: 1; }
.gallery-cap span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.gallery-cap h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-top: 6px;
}

/* Smart grid layout: make col 1 rows 1-2, and col 3 rows 1-2 tall */
.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 20px; }
  .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(--sage-pale); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--sage));
  opacity: 0.3;
}
.process-step {
  padding: 0 28px;
  position: relative;
}
.process-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}
.process-icon svg { width: 28px; height: 28px; }
.process-step:hover .process-icon { background: var(--sage); color: #fff; border-color: var(--sage); transform: scale(1.08); }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { 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: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.testi-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 10px;
}
.testi-nav { display: flex; gap: 10px; }
.testi-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.testi-btn:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  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(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-card > p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.68;
  margin-bottom: 24px;
}
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.testi-role {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-top: 3px;
}
@media (max-width: 768px) { .testi-card { min-width: 86%; } }

/* ============ FAQ ============ */
.faq { background: var(--bg-2); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--charcoal);
  margin: 12px 0 16px;
}
.faq-left > p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.faq-left a { color: var(--sage); font-weight: 600; }
.faq-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--sage); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--sage);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--sage); border-color: var(--sage); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }

@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-img { height: 240px; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 96px 0;
}
.cta-banner-img {
  position: absolute;
  inset: 0;
}
.cta-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,30,20,0.9) 0%, rgba(10,30,20,0.7) 60%, rgba(10,30,20,0.5) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  /*max-width: 640px;*/
}
.cta-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-banner-content p { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.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(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.contact-info > p { color: var(--ink-soft); line-height: 1.72; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: background 0.25s;
  color: inherit;
}
.contact-item:hover { background: var(--bg-2); }
.contact-ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ic svg { width: 18px; height: 18px; }
.contact-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.contact-val { font-size: 15px; font-weight: 500; color: var(--charcoal); line-height: 1.45; }

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* Contact Form */
.contact-form-wrap { }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 24px 48px -32px rgba(0,0,0,0.18);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-sub { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.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(--sage);
  box-shadow: 0 0 0 4px rgba(45,74,62,0.1);
}

@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; } }

/* ============ FOOTER ============ */
footer { background: var(--charcoal); color: rgba(255,255,255,0.6); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand-mark { background: var(--gold); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.4); }
.footer-brand > p { font-size: 14px; line-height: 1.72; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}

@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: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 8px 24px -8px rgba(45,74,62,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.25s;
  z-index: 90;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}