/* ═══════════════════════════════════════════════════════════════
   SHANTHI — Timber & Interior Solutions
   Skin v3.1 — production logo palette + rich motion layer:
   glass surfaces, parallax arches, shimmer, arch clip reveals.
   slate #2B3138 · gold #B18A49 · walnut door wood · stationery cream
   ═══════════════════════════════════════════════════════════════ */

:root {
  --slate: #2B3138;
  --slate-deep: #22272D;
  --slate-soft: #3C444D;
  --gold: #B18A49;
  --gold-light: #C9A96E;
  --wood: #84533A;
  --wood-deep: #6F422C;
  --paper: #FBF8F1;
  --ivory: #F5EFE2;
  --card: #FFFFFF;
  --text: #474E56;
  --text-soft: #6B727A;
  --line: rgba(43, 49, 56, 0.12);
  --gold-line: rgba(177, 138, 73, 0.35);
  --serif: 'Marcellus', 'Georgia', serif;
  --serif-it: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  --shadow: 0 18px 50px -18px rgba(43, 49, 56, 0.22);
  --shadow-soft: 0 10px 30px -14px rgba(43, 49, 56, 0.16);
  --arch: 999px 999px 16px 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* gilded scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-light), var(--gold));
  border-radius: 8px;
  border: 3px solid var(--ivory);
}

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ═══════════ Scroll progress ═══════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 210;
  background: linear-gradient(90deg, var(--wood), var(--gold), var(--gold-light));
  box-shadow: 0 0 10px rgba(177, 138, 73, 0.55);
  transition: width 0.1s linear;
}

/* ═══════════ Type ═══════════ */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--slate); line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: 0.01em; }
h2 em, h1 em {
  font-family: var(--serif-it);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section-dark h2, .section-dark h3 { color: #F4F0E7; }

/* living gold shimmer on the hero accent word */
.hero-title em {
  background: linear-gradient(100deg, var(--gold) 20%, #E5CB92 40%, var(--gold) 60%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 5.5s linear infinite;
}
@keyframes shimmer { to { background-position: -220% center; } }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex: none;
  transform-origin: left;
}
/* gold rule draws itself as the section reveals */
[data-reveal] .eyebrow::before, .eyebrow[data-reveal]::before {
  transform: scaleX(0);
  transition: transform 0.9s 0.25s var(--ease);
}
[data-reveal].in .eyebrow::before, .eyebrow[data-reveal].in::before { transform: scaleX(1); }

.section-lede {
  max-width: 560px;
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* ═══════════ Buttons ═══════════ */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-brass {
  background: linear-gradient(135deg, var(--gold) 0%, #9c7538 100%);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(177, 138, 73, 0.55);
}
.btn-brass:hover { box-shadow: 0 16px 34px -10px rgba(177, 138, 73, 0.7); }
/* polished-brass sheen sweep */
.btn-brass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.38) 50%, transparent 68%);
  transform: translateX(-130%);
}
.btn-brass:hover::after { transform: translateX(130%); transition: transform 0.75s ease; }

.btn-ghost {
  border: 1px solid var(--gold-line);
  color: var(--slate);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-light {
  border: 1px solid rgba(244, 240, 231, 0.35);
  color: #F4F0E7;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-nav { padding: 0.62rem 1.4rem; font-size: 0.74rem; }

/* ═══════════ Preloader ═══════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.9s var(--ease), visibility 0.9s;
  border-bottom: 2px solid var(--gold);
}
.preloader-glow {
  position: absolute;
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 138, 73, 0.14), transparent 65%);
  animation: glow-pulse 3s ease-in-out infinite;
}
/* uses the standalone `scale` property so it never fights transform-based parallax */
@keyframes glow-pulse { 0%, 100% { scale: 1; opacity: 0.8; } 50% { scale: 1.15; opacity: 1; } }
.preloader-inner { position: relative; text-align: center; }
.preloader-mark {
  height: 108px;
  margin: 0 auto 1.2rem;
  animation: pre-mark 1.3s var(--ease) both;
}
.preloader-word {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  margin-left: 0.5em; /* optically recentre tracked caps */
  color: var(--slate);
}
.preloader-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: pre-letter 0.65s var(--ease) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.07s);
}
@keyframes pre-letter { to { opacity: 1; transform: none; } }
.preloader-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  margin-left: 0.34em;
  animation: pre-fade 0.9s 0.9s var(--ease) both;
}
.preloader-line {
  width: 150px;
  height: 1px;
  background: var(--line);
  margin: 1.4rem auto 0;
  overflow: hidden;
}
.preloader-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: translateX(-100%);
  animation: pre-line 1.5s 0.2s var(--ease) forwards;
}
@keyframes pre-mark { from { opacity: 0; transform: translateY(18px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes pre-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pre-line { to { transform: translateX(0); } }
/* exit: the whole loader lifts away like a curtain */
.preloader.done { transform: translateY(-101%); visibility: hidden; }
.preloader.skip { display: none; }

/* ═══════════ Navigation ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.45s, box-shadow 0.45s, backdrop-filter 0.45s;
}
.nav.scrolled {
  background: rgba(251, 248, 241, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), var(--shadow-soft);
}
.nav-inner {
  width: min(1280px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  transition: padding 0.4s;
}
.nav.scrolled .nav-inner { padding: 0.55rem 0; }

.nav-brand { display: flex; align-items: center; gap: 0.85rem; }
.nav-mark { height: 46px; width: auto; transition: height 0.4s, transform 0.4s var(--ease); }
.nav-brand:hover .nav-mark { transform: translateY(-2px); }
.nav.scrolled .nav-mark { height: 38px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-name {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.06rem;
  letter-spacing: 0.34em;
  color: var(--slate);
}
.nav-sub {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links { display: flex; gap: 1.9rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--slate);
  transition: color 0.3s;
}
.nav-call svg { width: 15px; height: 15px; color: var(--gold); }
.nav-call:hover { color: var(--gold); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.6px;
  background: var(--slate);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(3.8px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.8px) rotate(-45deg); }

/* ── Mobile menu — frosted slate glass ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(34, 39, 45, 0.88);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8% 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu-links a {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  color: #F4F0E7;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(244, 240, 231, 0.1);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s, color 0.3s, padding-left 0.35s var(--ease);
}
.mobile-menu.open .mobile-menu-links a { transform: none; opacity: 1; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { transition-delay: 0.07s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { transition-delay: 0.21s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-links a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu-links a:nth-child(7) { transition-delay: 0.42s; }
.mobile-menu-links a:hover { color: var(--gold-light); padding-left: 0.6rem; }
.mobile-menu-links em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mobile-menu-foot {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-menu-foot a { color: var(--gold-light); font-size: 1.05rem; letter-spacing: 0.06em; }
.mobile-menu-foot span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244, 240, 231, 0.45); }

/* ═══════════ Hero ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 0 3.5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -14% 0 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  top: -20%;
  right: -12%;
  width: 62vw;
  height: 62vw;
  background: radial-gradient(circle, rgba(177, 138, 73, 0.15) 0%, transparent 65%);
  animation: glow-pulse 9s ease-in-out infinite;
}
/* concentric arch outlines, echoing the logo frame — each drifts at its
   own parallax speed (JS sets --plx-y) and slowly breathes */
.hero-arch {
  position: absolute;
  border: 1px solid var(--gold-line);
  border-radius: 999px 999px 0 0;
  border-bottom: none;
  transform: translate3d(0, var(--plx-y, 0), 0);
  animation: arch-breathe 8s ease-in-out infinite;
}
.hero-arch-1 { width: 620px; height: 820px; right: 3%; top: 10%; opacity: 0.55; }
.hero-arch-2 { width: 780px; height: 1020px; right: calc(3% - 80px); top: 7%; opacity: 0.34; animation-delay: 1.3s; }
.hero-arch-3 { width: 940px; height: 1220px; right: calc(3% - 160px); top: 4%; opacity: 0.2; animation-delay: 2.6s; }
@keyframes arch-breathe { 0%, 100% { border-color: var(--gold-line); } 50% { border-color: rgba(177, 138, 73, 0.6); } }
.hero-glow[data-plx], .hero-arch[data-plx] { will-change: transform; }
.hero-glow { transform: translate3d(0, var(--plx-y, 0), 0); }
/* fine vertical slats, echoing the logo's grain lines */
.hero-grain {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(43, 49, 56, 0.028) 0 1px, transparent 1px 46px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-inner {
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
}
.hero-title { font-size: clamp(2.5rem, 5.6vw, 4.3rem); margin: 0.4rem 0 1.4rem; }
.line-mask { display: block; overflow: hidden; padding-bottom: 0.12em; }
.line { display: block; }
.hero-sub { max-width: 490px; font-size: 1.05rem; color: var(--text-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* entrance choreography — plays once body.loaded lands */
.hero-item { opacity: 0; transform: translateY(26px); }
body.loaded .hero-item {
  animation: hero-in 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes hero-in { to { opacity: 1; transform: none; } }
body.loaded .line-mask .line.hero-item { transform: translateY(105%); animation-name: hero-line; }
@keyframes hero-line { to { opacity: 1; transform: none; } }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.hero-ring {
  position: absolute;
  width: 330px;
  height: 460px;
  border: 1px solid var(--gold-line);
  border-radius: var(--arch);
  animation: ring-pulse 5s var(--ease) infinite;
}
.hero-ring-2 { width: 400px; height: 545px; opacity: 0.5; animation-delay: 1.2s; }
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(177, 138, 73, 0.18); }
  50% { box-shadow: 0 0 0 16px rgba(177, 138, 73, 0); }
}
.hero-mark {
  height: 350px;
  width: auto;
  filter: drop-shadow(0 24px 40px rgba(43, 49, 56, 0.18));
  animation: mark-float 7s 1.6s ease-in-out infinite;
}
@keyframes mark-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.hero-stats {
  position: relative;
  width: min(1180px, 92%);
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.3rem 1.5rem;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.glass {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(43, 49, 56, 0.08);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: var(--shadow-soft);
}
.section-dark .glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 240, 231, 0.12);
  box-shadow: none;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--slate);
  line-height: 1.1;
}
.stat-num::after { content: ""; display: block; width: 26px; height: 1px; background: var(--gold); margin: 0.45rem 0 0.5rem; transition: width 0.45s var(--ease); }
.stat:hover .stat-num::after { width: 48px; }
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 52px;
  background: var(--line);
  overflow: hidden;
}
.hero-scroll span {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--gold);
  animation: scroll-drip 2.1s var(--ease) infinite;
}
@keyframes scroll-drip {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(240%); }
}

/* ═══════════ Ribbon ═══════════ */
.ribbon {
  background: var(--slate);
  overflow: hidden;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(177, 138, 73, 0.4);
  border-bottom: 1px solid rgba(177, 138, 73, 0.4);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ribbon-track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: ribbon-slide 30s linear infinite;
}
.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon-track span {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EDE7D9;
  white-space: nowrap;
}
.ribbon-track i { font-style: normal; font-size: 0.55rem; color: var(--gold); animation: diamond-spin 6s linear infinite; }
@keyframes diamond-spin { to { transform: rotate(360deg); } }
@keyframes ribbon-slide { to { transform: translateX(-33.333%); } }

/* ═══════════ Sections ═══════════ */
.section { padding: 6.5rem 0; }
.section-ivory { background: var(--paper); }
.section-cream { background: var(--ivory); }
.section-dark { background: linear-gradient(180deg, var(--slate) 0%, var(--slate-deep) 100%); color: rgba(244, 240, 231, 0.78); }
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

/* ═══════════ Products ═══════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.4rem;
  perspective: 1100px;
}
.product-card {
  display: block;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--arch);
  padding: 0.85rem 0.85rem 1.4rem;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}
.product-card:not(.tilting):hover { transform: translateY(-6px); }
.product-img {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--ivory);
  margin-bottom: 1.1rem;
}
.arch { border-radius: var(--arch); }
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s;
}
.product-card:hover .product-img img { transform: scale(1.08) rotate(0.6deg); }
/* hover veil + frosted "Enquire" chip rise from the base of the arch */
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(34, 39, 45, 0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.45s;
}
.product-img::before {
  content: "Enquire ↗";
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  transform: translate(-50%, 16px);
  padding: 0.4rem 1rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s, transform 0.45s var(--ease);
  white-space: nowrap;
}
.product-card:hover .product-img::after { opacity: 1; }
.product-card:hover .product-img::before { opacity: 1; transform: translate(-50%, 0); }
.product-img-tex {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(90deg, rgba(111, 66, 44, 0.08) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #E8DCC8 0%, #D9C8AC 100%);
}
.product-img-tex span {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0.3em;
  margin-left: 0.3em;
  color: var(--wood-deep);
}
.product-card h3 { font-size: 1.06rem; letter-spacing: 0.04em; transition: color 0.3s; }
.product-card:hover h3 { color: var(--gold); }
.product-card p { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.25rem; }

.product-note { margin-top: 2.8rem; text-align: center; font-size: 0.95rem; color: var(--text-soft); }
.product-note a { color: var(--gold); font-weight: 400; border-bottom: 1px solid var(--gold-line); transition: border-color 0.3s; }
.product-note a:hover { border-color: var(--gold); }

/* ═══════════ Legacy ═══════════ */
.legacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.legacy-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--arch);
  border: 1px solid rgba(177, 138, 73, 0.3);
  padding: 0.7rem;
}
.legacy-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--arch);
  /* JS drives a gentle inner drift as you scroll past */
  transform: scale(1.12) translateY(var(--iplx, 0));
  will-change: transform;
  transition: transform 0.15s linear;
}
.legacy-photo figcaption {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #F4F0E7;
  background: rgba(34, 39, 45, 0.55);
  border: 1px solid rgba(244, 240, 231, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.legacy-copy p { margin-bottom: 1.1rem; max-width: 540px; }
.legacy-copy h2 { margin-bottom: 1.4rem; }
.legacy-copy strong { color: #F4F0E7; font-weight: 500; }
.legacy-timeline { margin: 2rem 0 2.4rem; display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 0.85rem 0.6rem;
  border-bottom: 1px solid rgba(244, 240, 231, 0.1);
  transition: background 0.35s, padding-left 0.35s var(--ease);
  border-radius: 6px;
}
.tl-item:hover { background: rgba(255, 255, 255, 0.045); padding-left: 1.1rem; }
.tl-item:first-child { border-top: 1px solid rgba(244, 240, 231, 0.1); }
.tl-year {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  min-width: 72px;
  letter-spacing: 0.06em;
}
.tl-text { font-size: 0.92rem; }

/* ═══════════ Wood Care / Tips ═══════════ */
.tips-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.tip-group { display: flex; flex-direction: column; }
.tip-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.tip-eyebrow svg { width: 17px; height: 17px; flex: none; color: var(--gold); }
.tip-item {
  border-bottom: 1px solid rgba(244, 240, 231, 0.1);
}
.tip-group .tip-item:first-of-type { border-top: 1px solid rgba(244, 240, 231, 0.1); }
.tip-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: #F4F0E7;
  letter-spacing: 0.01em;
  transition: color 0.3s, padding-left 0.35s var(--ease);
}
.tip-head:hover { color: var(--gold-light); padding-left: 0.9rem; }
.tip-head:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
/* +/− indicator */
.tip-ind { position: relative; width: 15px; height: 15px; flex: none; }
.tip-ind::before, .tip-ind::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.tip-ind::after { transform: translate(-50%, -50%) rotate(90deg); }
.tip-item.open .tip-ind::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.tip-item.open .tip-head { color: var(--gold-light); }
.tip-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.tip-body p {
  padding: 0 2rem 1.2rem 0.4rem;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(244, 240, 231, 0.72);
}
/* light-theme variant (FAQ on cream/ivory sections) */
.tips-wrap.is-light .tip-item { border-bottom-color: var(--line); }
.tips-wrap.is-light .tip-group .tip-item:first-of-type { border-top-color: var(--line); }
.tips-wrap.is-light .tip-head { color: var(--slate); }
.tips-wrap.is-light .tip-head:hover,
.tips-wrap.is-light .tip-item.open .tip-head { color: var(--gold); }
.tips-wrap.is-light .tip-body p { color: var(--text); }

/* Wood Care as a pop-up panel (opened from the menu) */
.care-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4.5rem 0 3.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.care-modal.open { opacity: 1; visibility: visible; }
.care-modal .container { max-width: 860px; }
.care-close {
  position: fixed;
  top: 1rem;
  right: 1.4rem;
  z-index: 5;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(244, 240, 231, 0.75);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s, transform 0.4s var(--ease);
}
.care-close:hover { color: #fff; transform: rotate(90deg); }

/* ═══════════ Gallery (albums) ═══════════ */
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.album-card {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--arch);
  padding: 0.6rem 0.6rem 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-line); }
.album-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.album-cover {
  position: relative;
  overflow: hidden;
  border-radius: var(--arch);
}
.album-cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--arch);
  display: block;
  transition: transform 0.8s var(--ease);
}
.album-card:hover .album-cover img { transform: scale(1.05); }
.album-count {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(43, 49, 56, 0.72);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.6rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.album-card h3 {
  padding: 0.8rem 0.4rem 1rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.album-card:hover h3 { color: var(--gold); }

/* ═══════════ Brands ═══════════ */
.brand-marquee {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.9rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brand-track {
  display: flex;
  align-items: center;
  gap: 4.2rem;
  width: max-content;
  animation: brand-slide 38s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes brand-slide { to { transform: translateX(-50%); } }
.brand-logo { flex: none; display: flex; align-items: center; }
.brand-logo img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.35s, transform 0.35s var(--ease);
}
.brand-logo img:hover { filter: none; transform: translateY(-3px) scale(1.05); }
.brands-more {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--serif-it);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* ═══════════ Testimonials ═══════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testi {
  position: relative;
  padding: 2.4rem 1.8rem 1.9rem;
  border-radius: 16px;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.testi:hover { transform: translateY(-5px); border-color: rgba(177, 138, 73, 0.45); background: rgba(255, 255, 255, 0.08); }
/* once revealed, the cards drift on a slow, staggered bob */
.testi-grid.in .testi { animation: card-bob 8s 1.2s ease-in-out infinite; }
.testi-grid.in .testi:nth-child(2) { animation-delay: 2.4s; }
.testi-grid.in .testi:nth-child(3) { animation-delay: 4.2s; }
@keyframes card-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
.testi-quote {
  position: absolute;
  top: 0.6rem;
  left: 1.4rem;
  font-family: var(--serif-it);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
}
.testi p { font-size: 0.95rem; margin-bottom: 1.4rem; }
.testi footer { display: flex; flex-direction: column; gap: 0.1rem; }
.testi footer strong { color: #F4F0E7; font-weight: 500; letter-spacing: 0.04em; }
.testi footer span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); }

/* Reviews call-to-action (honest Google prompt) */
.reviews-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 2.6rem 2rem;
  border-radius: 20px;
}
.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.reviews-stars svg { width: 22px; height: 22px; }
.reviews-lead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.6;
  color: #F4F0E7;
  margin-bottom: 1.8rem;
}
.reviews-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════ Visit ═══════════ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
.visit-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.visit-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.visit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold-line); }
.visit-card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.7rem;
}
.visit-card h3 svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.visit-card p { font-size: 0.92rem; color: var(--text-soft); }
.visit-card a { color: var(--gold); transition: color 0.3s; }
.visit-card a:hover { color: var(--wood); }
.visit-card-brass {
  grid-column: 1 / -1;
  background: linear-gradient(150deg, var(--slate) 0%, var(--slate-deep) 100%);
  border-color: rgba(177, 138, 73, 0.4);
}
.visit-card-brass h3 { color: var(--gold-light); }
.visit-card-brass p { color: rgba(244, 240, 231, 0.75); }
.visit-map {
  overflow: hidden;
  border-radius: var(--arch);
  border: 1px solid var(--gold-line);
  min-height: 420px;
  background: var(--ivory);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ═══════════ Footer ═══════════ */
.footer {
  background: var(--slate-deep);
  color: rgba(244, 240, 231, 0.7);
  padding: 4.5rem 0 0;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3.2rem;
}
.footer-lockup { width: 210px; height: auto; transition: transform 0.5s var(--ease); }
.footer-lockup:hover { transform: translateY(-3px); }
.footer-tag {
  margin-top: 1.3rem;
  font-family: var(--serif-it);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--gold-light);
}
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(244, 240, 231, 0.1);
  padding: 1.3rem 0;
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(244, 240, 231, 0.45);
}

/* ═══════════ Floating actions ═══════════ */
.fab-wa {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  animation: wa-halo 3s ease-out infinite;
}
@keyframes wa-halo {
  0% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  70%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55), 0 0 0 16px rgba(37, 211, 102, 0); }
}
.fab-wa svg { width: 27px; height: 27px; }
.fab-wa:hover { transform: translateY(-3px) scale(1.05); }

/* arch-shaped back-to-top, frosted */
.to-top {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 46px;
  height: 58px;
  border-radius: 999px 999px 12px 12px;
  background: rgba(251, 248, 241, 0.6);
  border: 1px solid var(--gold-line);
  color: var(--slate);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.to-top svg { width: 18px; height: 18px; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ═══════════ Lightbox ═══════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(34, 39, 45, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 1.2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(960px, 94vw);
  max-height: 80vh;
}
.lightbox-stage img {
  max-width: min(960px, 94vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
}
.lightbox.open .lightbox-stage img { transform: none; opacity: 1; }
.lightbox-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(244, 240, 231, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lightbox-cap { color: rgba(244, 240, 231, 0.72); }
.lightbox-count { color: var(--gold-light); font-variant-numeric: tabular-nums; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 231, 0.28);
  background: rgba(34, 39, 45, 0.5);
  color: rgba(244, 240, 231, 0.9);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.lightbox-prev { left: max(1rem, 3vw); }
.lightbox-next { right: max(1rem, 3vw); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(244, 240, 231, 0.75);
  z-index: 2;
  transition: color 0.3s, transform 0.4s var(--ease);
}
.lightbox-close:hover { color: #fff; transform: rotate(90deg); }
@media (max-width: 640px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ═══════════ Scroll reveals ═══════════ */
/* default: rise + focus in from a soft blur */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; filter: none; }

/* fade only — for full-width bands (marquee, gallery) */
[data-reveal="fade"] { transform: none; filter: none; }

/* zoom — photos & map unveil inside their arch frame */
[data-reveal="zoom"] {
  transform: scale(0.94) translateY(20px);
  filter: none;
  clip-path: inset(6% 4% 6% 4% round 999px 999px 16px 16px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), clip-path 1s var(--ease);
}
[data-reveal="zoom"].in { transform: none; clip-path: inset(0 0 0 0 round 999px 999px 16px 16px); }

[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(4px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}
[data-reveal-group].in > * { opacity: 1; transform: none; filter: none; }
[data-reveal-group].in > *:nth-child(2) { transition-delay: 0.07s; }
[data-reveal-group].in > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal-group].in > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal-group].in > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal-group].in > *:nth-child(6) { transition-delay: 0.35s; }
[data-reveal-group].in > *:nth-child(7) { transition-delay: 0.42s; }
[data-reveal-group].in > *:nth-child(8) { transition-delay: 0.49s; }
[data-reveal-group].in > *:nth-child(9) { transition-delay: 0.56s; }
[data-reveal-group].in > *:nth-child(10) { transition-delay: 0.63s; }
[data-reveal-group].in > *:nth-child(11) { transition-delay: 0.7s; }
[data-reveal-group].in > *:nth-child(12) { transition-delay: 0.77s; }

/* while the JS tilt drives the card, transform must respond quickly —
   overrides the slow reveal/hover transitions above */
.product-grid .product-card.tilting {
  transition: transform 0.12s ease-out, box-shadow 0.5s var(--ease), border-color 0.5s;
  transition-delay: 0s;
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .album-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-mark { height: 290px; }
  .hero-ring { width: 275px; height: 385px; }
  .hero-ring-2 { width: 335px; height: 460px; }
}

@media (max-width: 920px) {
  .nav-links, .nav-call span { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: 7rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 1rem; }
  .hero-visual { min-height: 0; order: -1; margin-bottom: 0.5rem; }
  .hero-mark { height: 170px; }
  .hero-ring { width: 165px; height: 225px; }
  .hero-ring-2 { width: 205px; height: 275px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 2.6rem; }
  .hero-scroll { display: none; }
  /* centred "Trusted Since 1989" under the stacked logo */
  .hero-copy .eyebrow { justify-content: center; text-align: center; }
  .hero-copy .eyebrow::before { display: none; }
  .legacy-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .legacy-photo img { min-height: 380px; }
  .testi-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .section { padding: 3.5rem 0; }
  .section-head-split { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  /* ── Mobile density pass: tighter spacing + shorter cards, no content removed ── */
  .section { padding: 2.9rem 0; }
  .section-head { margin-bottom: 1.9rem; }

  /* Products & Gallery: shorter images, tighter grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem 0.7rem; }
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem 0.7rem; }
  .product-card { padding: 0.5rem 0.5rem 0.85rem; }
  .product-img { aspect-ratio: 4 / 3.3; }
  .product-card h3 { font-size: 0.9rem; }
  .product-card p { font-size: 0.7rem; }
  .album-cover img { aspect-ratio: 4 / 3.6; }
  .album-card h3 { font-size: 0.9rem; padding: 0.6rem 0.3rem 0.75rem; }

  /* Hero: don't force full-screen; trim title + padding */
  .hero { min-height: auto; padding-top: 6rem; padding-bottom: 2.2rem; }
  .hero-title { font-size: 2.05rem; margin: 0.3rem 0 1.1rem; }
  .hero-sub { font-size: 0.98rem; }
  .hero-stats { gap: 0.7rem; margin-top: 1.8rem; }
  .stat { padding: 0.85rem 1rem; }
  .stat-num { font-size: 1.6rem; }

  /* Accordions (Wood Care + FAQ): denser rows */
  .tip-head { padding: 0.8rem 0.3rem; font-size: 0.98rem; }
  .tips-wrap { gap: 1.5rem; }

  /* Legacy photo + Visit map: shorter frames */
  .legacy-photo img { min-height: 265px; }
  .visit-map, .visit-map iframe { min-height: 300px; }
  .visit-info { grid-template-columns: 1fr; gap: 0.9rem; }
  .visit-card { padding: 1.15rem 1.2rem; }

  /* Footer: two link columns + smaller lockup to cut height */
  .footer { padding-top: 3rem; padding-bottom: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.2rem; }
  .footer-lockup { width: 168px; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .fab-wa { width: 52px; height: 52px; right: 1.1rem; bottom: 1.1rem; }
  .to-top { left: 1.1rem; bottom: 1.1rem; width: 42px; height: 52px; }
  .nav-brand-text { display: none; }
  .nav-mark { height: 42px; }

  /* slimmer Enquire button in the header */
  .btn-nav { padding: 0.45rem 0.95rem; font-size: 0.66rem; letter-spacing: 0.12em; }
  .nav-actions { gap: 0.7rem; }

  /* Wood Care pop-up breathing room on small screens */
  .care-modal { padding: 3.6rem 0 2.6rem; }
  .care-close { top: 0.7rem; right: 1rem; }
}

/* ═══════════ Reduced motion ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-item, [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .ribbon-track, .brand-track, .hero-mark, .hero-ring, .testi-grid.in .testi, .fab-wa { animation: none !important; }
  .legacy-photo img { transform: none !important; }
}
