/* ========================================
   THE RAWOOD SHED - Bespoke Design System
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'AbadiMT Pro';
  src: url('../fonts/AbadiMTPro-1.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AbadiMT Pro';
  src: url('../fonts/AbadiMT-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'AbadiMT Pro';
  src: url('../fonts/AbadiMTPro-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'CSBliska';
  src: url('../fonts/CSBliska-Regular_demo-BF698413a28c21d.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  /* Palette: Matching therawoodshed.com/rwlp theme */
  --cream: #F5F0E8;         /* Cream */
  --warm-white: #FDFBF7;    /* Background */
  --gold: #D4A843;          /* Gold */
  --gold-light: #E8C84A;    /* Gold light */
  --gold-dark: #C49A30;     /* Gold dark */
  --charcoal: #1C1C1C;      /* Keep black */
  --dark: #0D0D0D;          /* Keep black */
  --mahogany: #584738;       /* Mahogany */
  --dark-green: #2D2D2D;    /* Dark accent */
  --mountain: #AAA396;       /* Mountain */
  --sand: #CEC1A8;          /* Sand */
  --tobacco: #B8956A;       /* Brown light */
  --text: #2D2D2D;          /* Text */
  --text-mid: #666666;      /* Text light */
  --text-muted: #999999;    /* Text muted */
  --border: #CEC1A8;        /* Sand border */
  --gold-gradient: linear-gradient(105deg, #C49A30 0%, #D4A843 30%, #E8C84A 55%, #FFF1A0 80%, #FFFBE0 100%);
  --gold-text-gradient: linear-gradient(105deg, #C8A020 0%, #E8C84A 25%, #F5D44A 45%, #FFF1A0 60%, #FFFBE0 70%, #FFF1A0 75%, #F5D44A 85%, #E8C84A 100%);

  --serif: 'CSBliska', 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Poppins', 'AbadiMT Pro', sans-serif;
  --body: 'Poppins', 'AbadiMT Pro', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; -webkit-overflow-scrolling: touch; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.8;
  overflow-x: hidden;
}
::selection { background: var(--mahogany); color: var(--cream); }
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.4s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; border: none; outline: none; }

/* ========================================
   PAGE LOADER
   ======================================== */
.loader {
  position: fixed; inset: 0; background: var(--dark); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease 0.2s, visibility 0.8s ease 0.2s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-bar {
  width: 120px; height: 2px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden; border-radius: 1px;
}
.loader-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--tobacco);
  animation: loadSlide 1s ease infinite;
}
@keyframes loadSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--tobacco); z-index: 9999; transition: width 0.05s linear;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-wrap {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav-wrap.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}
.nav-wrap.scrolled .nav-link { color: var(--gold); font-weight: 600; }
.nav-wrap.scrolled .logo-w { display: block; }
.nav-wrap.scrolled .logo-b { display: none; }
.nav-wrap.scrolled .menu-btn span { background: var(--gold); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1440px; margin: 0 auto; padding: 0 48px;
}
.logo-w, .logo-b { height: 32px; flex-shrink: 0; transition: opacity 0.3s ease; }
.logo-b { display: none; }

/* For inner pages with light bg */
.nav-dark .logo-b { display: block; }
.nav-dark .logo-w { display: none; }
.nav-dark .nav-link { color: var(--charcoal); }
.nav-dark .menu-btn span { background: var(--charcoal); }

.nav-menu { display: flex; align-items: center; gap: 36px; }

.nav-link {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold-light); }
.nav-wrap.scrolled .nav-link:hover { color: var(--gold); }

.menu-btn {
  display: none; flex-direction: column; gap: 7px;
  cursor: pointer; z-index: 10001; padding: 8px; position: relative;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.menu-btn span {
  width: 28px; height: 1px; background: #fff;
  transition: all 0.4s var(--ease); transform-origin: center;
}
.menu-btn.on span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
.menu-btn.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.on span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* ========================================
   HERO - CINEMATIC FULLSCREEN
   ======================================== */
.hero-cin {
  position: relative; height: auto;
  overflow: hidden; background: var(--dark);
  display: flex; flex-direction: column;
}

/* Background */
.hero-bg { position: relative; width: 100%; }
.hero-bg img {
  width: 100%; height: auto; display: block;
}
@keyframes cinZoom { from { transform: scale(1); } to { transform: scale(1); } }

.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.04;
  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");
  background-size: 128px;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.1) 75%, transparent 100%);
}

/* Split layout */
.hero-split {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1440px;
  margin: 0 auto; padding: 0 48px;
  color: #fff; gap: 50px;
}

/* Left text */
.hero-left {
  flex: 1; max-width: 650px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; opacity: 0;
}
.hero-ey-text {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
}
.hero-ey-line {
  width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
}

.hero-heading {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 4.5vw, 72px); line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-word-wrap {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding: 0 0.1em; margin: 0 -0.03em;
}
.hero-word {
  display: inline-block; transform: translateY(110%);
}
.hero-word-italic {
  font-style: italic; font-weight: 500; color: var(--gold);
}

.hero-sub { margin-bottom: 36px; opacity: 0; }
.hero-sub-text {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,0.75); line-height: 1.8;
  max-width: 460px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px; opacity: 0;
}
.btn-ghost {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #fff; padding: 16px 42px; border-radius: 8px;
  border: 2px solid var(--gold);
  transition: all 0.4s var(--ease); position: relative;
}
.btn-ghost::after {
  content: ''; position: absolute; bottom: 12px; left: 32px; right: 32px;
  height: 1px; background: rgba(255,255,255,0.2);
  transition: background 0.4s ease;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost:hover::after { background: var(--gold); }

/* Right: Enquiry Box */
.hero-enquiry {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  width: 440px;
  flex-shrink: 0;
  opacity: 0; transform: translateY(30px);
  animation: heroEnqIn 0.8s ease 1.6s forwards;
}
@keyframes heroEnqIn { to { opacity: 1; transform: translateY(0); } }

.hero-enquiry-title {
  font-family: var(--serif);
  font-size: 24px; font-weight: 700;
  color: var(--gold); margin-bottom: 4px;
}
.hero-enquiry-sub {
  font-family: var(--sans);
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero-enquiry-form {
  display: flex; flex-direction: column; gap: 12px;
}
.hero-enquiry-form input,
.hero-enquiry-form select,
.hero-enquiry-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: #fff;
  transition: border-color 0.3s ease;
}
.hero-enquiry-form input::placeholder,
.hero-enquiry-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.hero-enquiry-form select {
  color: rgba(255,255,255,0.4);
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.hero-enquiry-form select option {
  background: #1a1a1a; color: #fff;
}
.hero-enquiry-form input:focus,
.hero-enquiry-form select:focus,
.hero-enquiry-form textarea:focus {
  border-color: var(--gold);
}
.hero-enquiry-form textarea {
  resize: none;
}
.btn-gold-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold-gradient);
  color: #0D0D0D; font-family: var(--sans);
  font-weight: 600; font-size: 14px;
  padding: 14px 24px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.3);
}

/* Scroll CTA */
.hero-scroll-cta {
  position: absolute; bottom: 48px; left: 60px; z-index: 6;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  opacity: 0;
}
.hero-scroll-bar {
  width: 48px; height: 2px; background: rgba(255,255,255,0.1);
  position: relative; overflow: hidden; border-radius: 1px;
}
.hero-scroll-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 100%;
  background: var(--gold-light);
  animation: scrollFill 3s ease infinite;
}
@keyframes scrollFill {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Hero mobile actions - hidden on desktop */
.hero-mobile-actions { display: none; }
.hero-mobile-actions .btn-dark {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
}
.hero-mobile-actions .btn-gold {
  padding: 8px 20px;
  font-size: 10px;
  letter-spacing: 0.2em;
  border-radius: 6px;
}

/* ========================================
   MARQUEE STRIP
   ======================================== */
.marquee {
  background: var(--mahogany); padding: 16px 0; overflow: hidden;
  white-space: nowrap; position: relative;
  border-top: 1px solid rgba(181,158,125,0.15);
  border-bottom: 1px solid rgba(181,158,125,0.15);
}
.marquee-track {
  display: inline-flex; animation: marqueeScroll 40s linear infinite;
}
.marquee-item {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); padding: 0 44px;
  flex-shrink: 0;
}
.marquee-item .dot {
  display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  margin: 0 24px; vertical-align: middle;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ========================================
   ILLUSTRATION STRIP
   ======================================== */
.illus-strip {
  background: var(--cream); padding: 0 48px 80px;
  overflow: hidden;
}
.illus-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0;
}
.illus-item {
  flex: 0 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  width: 200px;
}
.illus-svg {
  width: 144px; height: 144px;
  color: var(--mahogany);
  margin-bottom: 20px;
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
}
.illus-item:hover .illus-svg {
  color: var(--text);
  transform: translateY(-4px);
}
.illus-label {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.illus-sub {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-mid); font-style: italic;
}
.illus-line {
  flex: 1; min-width: 40px; max-width: 80px;
  height: 1px; background: var(--gold);
  margin-top: 72px;
  position: relative;
}
.illus-line::before {
  content: ''; position: absolute; right: -3px; top: -3px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}
.illus-line::after {
  content: ''; position: absolute; left: -3px; top: -3px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.pad { padding: 0 48px; }
.sec { padding: 120px 0; }
.sec-sm { padding: 80px 0; }
.mx { max-width: 1200px; margin: 0 auto; }
.mx-wide { max-width: 1440px; margin: 0 auto; }
.center { text-align: center; }

.tag {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--mahogany); margin-bottom: 20px; display: block;
}
.heading {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(32px, 3.8vw, 56px); line-height: 1.2;
  color: var(--dark); margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.heading em { font-style: italic; font-weight: 400; color: var(--gold-dark); }
.heading-sm {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.2;
  color: var(--text); margin-bottom: 20px;
}
.desc {
  font-size: 16px; font-weight: 400; line-height: 1.9;
  color: var(--text-mid); max-width: 560px;
  letter-spacing: 0.01em;
}
.center .desc { margin: 0 auto; }
.desc-list {
  list-style: none; padding: 0; max-width: 580px;
  font-size: 18px; line-height: 1.85; color: var(--text-mid);
}
.desc-list li {
  padding-left: 20px; position: relative; margin-bottom: 8px;
}
.desc-list li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.gold-line {
  width: 48px; height: 1px; margin: 24px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-line-l {
  width: 48px; height: 1px; margin: 24px 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 16px 42px; border-radius: 8px;
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.btn .arrow {
  display: inline-block; transition: transform 0.4s var(--ease);
  font-size: 16px;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  transition: left 0.5s var(--ease); z-index: -1;
}
.btn:hover::before { left: 0; }

.btn-dark {
  border: 1px solid var(--charcoal); color: var(--charcoal);
}
.btn-dark::before { background: var(--charcoal); }
.btn-dark:hover { color: #fff; }

.btn-light {
  background: var(--gold-gradient); color: var(--charcoal); border: none;
  box-shadow: 0 4px 16px rgba(212,168,67,0.35); font-weight: 600;
}
.btn-light::before { background: rgba(255,255,255,0.15); }
.btn-light:hover { box-shadow: 0 6px 24px rgba(212,168,67,0.5); }

.btn-gold {
  background: var(--gold-gradient); color: var(--charcoal); border: none;
  box-shadow: 0 4px 16px rgba(212,168,67,0.35); font-weight: 600;
}
.btn-gold::before { background: rgba(255,255,255,0.15); }
.btn-gold:hover { color: var(--charcoal); box-shadow: 0 6px 24px rgba(212,168,67,0.5); }

/* ========================================
   ASYMMETRIC STORY BLOCK
   ======================================== */
.story-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.story-block::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
}
.story-block.story-craftsmanship { grid-template-columns: 1.4fr 1fr; }
.story-block.story-craftsmanship .story-visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: 40px;
}
.story-block.story-craftsmanship .story-visual img {
  width: 100%; height: auto; object-fit: contain;
}
.story-block.flip { grid-template-columns: 1fr 1.2fr; }
.story-block.flip .story-visual { order: 2; }
.story-block.flip .story-text { order: 1; }

.story-visual {
  position: relative; overflow: hidden;
}
.story-visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.story-visual:hover img { transform: scale(1.04); }
.story-visual-accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-gradient);
}
.story-block.flip .story-visual-accent {
  bottom: auto; top: 0;
}

/* Floating stat badge */
.story-badge {
  position: absolute; bottom: 40px; right: 40px;
  background: rgba(13,13,13,0.85); color: var(--cream);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 28px 36px; z-index: 2; border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(212,168,67,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.story-badge .num {
  font-family: var(--serif); font-size: 38px; font-weight: 500;
  line-height: 1; display: block; color: var(--gold-light);
}
.story-badge .label {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-top: 8px; display: block; color: var(--gold);
}

.story-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 8vw;
}

/* ========================================
   HORIZONTAL SCROLL GALLERY
   ======================================== */
.hgallery { overflow: hidden; background: var(--cream); }
.hgallery-inner { padding: 30px 0 20px; max-width: 100%; margin: 0 auto; }
.hgallery-header { padding: 0 48px; margin-bottom: 8px; text-align: center; }
.hgallery-header .heading { font-size: clamp(32px, 4vw, 52px); }

/* 4-in-a-row Slab Grid — full viewport height */
.slab-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 0 5%;
  width: 100%; max-width: 1100px; margin: 0 auto;
}
.slab-grid-item {
  overflow: hidden; border-radius: 14px;
  aspect-ratio: 0.56 / 1;
  background: var(--cream);
  border: 1px solid rgba(201,162,100,0.2);
}
.slab-grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: opacity 0.6s ease, transform 0.5s var(--ease);
}
.slab-grid-item img.fade-out {
  opacity: 0;
}
.slab-grid-item:hover img {
  transform: scale(1.03);
}
.slab-grid-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.slab-grid-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid var(--gold);
  cursor: pointer; transition: background 0.3s ease;
}
.slab-grid-dots .dot.active {
  background: var(--gold);
}

.hgallery-controls {
  display: flex; gap: 16px; padding: 0 48px; margin-top: 24px;
}
.hgallery-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: all 0.4s var(--ease);
}
.hgallery-btn:hover { background: var(--gold); color: #fff; }

/* Horizontal Gallery Track & Cards */
.hgallery-track {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 16px 48px;
  cursor: grab;
}
.hgallery-track::-webkit-scrollbar { display: none; }
.hgallery-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.hgallery-card {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 12px; overflow: hidden;
  position: relative;
  background: #f5f0eb;
  transition: transform 0.4s var(--ease);
}
.hgallery-card:hover { transform: translateY(-6px); }
.hgallery-card img {
  width: 100%; height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hgallery-card-label {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.hgallery-card:hover .hgallery-card-label { transform: translateY(0); }
.hgallery-card-label span:first-child {
  font-family: var(--sans); font-size: 14px;
  font-weight: 600; letter-spacing: 0.5px;
  color: var(--dark);
}
.hgallery-card-label .line {
  width: 32px; height: 1px; background: var(--gold);
}

/* Action Grid (static image gallery) */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.action-grid-item {
  border-radius: 12px; overflow: hidden;
  position: relative;
}
.action-grid-item img {
  width: 100%; height: 300px;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.action-grid-item:hover img { transform: scale(1.04); }
.action-grid-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-family: var(--sans); font-size: 14px;
  font-weight: 600; letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .action-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .action-grid-item img { height: 220px; }
}
@media (max-width: 480px) {
  .action-grid { grid-template-columns: 1fr; gap: 12px; }
  .action-grid-item img { height: 250px; }
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.stat {
  padding: 56px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s ease;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(212,168,67,0.08); }
.stat-num {
  font-family: var(--serif); font-size: 48px; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 12px;
  display: block; text-shadow: 0 2px 8px rgba(212,168,67,0.3);
}
.stat-label {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   FEATURE COLUMNS
   ======================================== */
.feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.feat-col {
  padding: 56px 36px; text-align: center;
  border-right: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  position: relative;
}
.feat-col:last-child { border-right: none; }
.feat-col::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--mahogany);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.feat-col:hover::after { transform: scaleX(1); }
.feat-col:hover { background: #fff; }

.feat-icon {
  width: 80px; height: 80px; margin: 0 auto 28px;
  background: var(--charcoal); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.4s var(--ease);
}
.feat-icon svg { width: 40px; height: 40px; stroke-width: 1.5; }
.feat-col:hover .feat-icon {
  background: linear-gradient(135deg, #C49A30 0%, #D4A843 50%, #E8C84A 100%);
  color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(212,168,67,0.25);
  transform: scale(1.1);
}
.feat-name {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); margin-bottom: 14px;
}
.feat-desc {
  font-size: 15px; color: var(--text-mid); line-height: 1.8;
}

/* ========================================
   FULL-BLEED CTA
   ======================================== */
.cta-full {
  position: relative; padding: 160px 0; overflow: hidden;
}
.cta-full-bg {
  position: absolute; inset: 0;
}
.cta-full-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-full-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
}
.cta-full-inner {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 700px; margin: 0 auto; padding: 0 24px;
}
.cta-full-inner .tag { color: var(--gold); font-weight: 500; }
.cta-full-inner .heading { color: #fff; }
.cta-full-inner .desc { color: rgba(255,255,255,0.85); margin: 0 auto 40px; }

/* ========================================
   TESTIMONIALS - LARGE QUOTE
   ======================================== */
.testi {
  background: var(--dark); color: #fff;
  position: relative; overflow: hidden;
}
.testi::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(181,158,125,0.1) 0%, transparent 50%);
}
.testi-inner {
  max-width: 920px; margin: 0 auto; padding: 0 24px;
  text-align: center; position: relative;
}
.testi-slider { position: relative; min-height: 360px; }
.testi-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
  transform: translateY(12px);
  display: flex; flex-direction: column;
}
.testi-slide.on {
  opacity: 1; position: relative; transform: translateY(0);
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.2);
  padding: 56px 64px 48px;
  position: relative;
  text-align: left;
  backdrop-filter: blur(8px);
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: -44px; left: 48px;
  width: 72px; height: 72px;
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif); font-size: 72px;
  color: var(--gold);
  line-height: 88px; text-align: center;
}
.testi-stars {
  display: inline-flex; gap: 4px;
  color: var(--gold); font-size: 15px;
  margin-bottom: 20px;
  margin-left: 100px;
  letter-spacing: 2px;
}
.testi-quote {
  font-family: var(--body); font-size: 17px; font-weight: 400;
  font-style: normal; line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}
.testi-footer {
  display: flex; align-items: center; gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(212,168,67,0.15);
}
.testi-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
  display: block;
}
.testi-identity {
  display: flex; flex-direction: column;
  gap: 4px;
}
.testi-name {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.testi-who {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.testi-mark { display: none; }
.testi-dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 38px;
}
.testi-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testi-dot.active { background: var(--gold); width: 44px; }
.testi-nav {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 40px;
}
.testi-nav-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease);
}
.testi-nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.05);
}
.testi-nav-btn svg { width: 18px; height: 18px; pointer-events: none; }
.testi-nav-btn * { pointer-events: none; }

/* ========================================
   PRODUCT GALLERY GRID (products page)
   ======================================== */
.pgrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pgrid-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 1/1;
  background: #1a1a1a;
}
.pgrid-card img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 1s var(--ease), filter 0.5s ease;
  filter: brightness(0.92);
}
.pgrid-card:hover img { transform: scale(1.07); filter: brightness(1); }
.pgrid-card-info {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: #fff;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.pgrid-card:hover .pgrid-card-info { opacity: 1; }
.pgrid-card-info h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  transform: translateY(8px);
  transition: transform 0.5s var(--ease);
}
.pgrid-card:hover .pgrid-card-info h3 { transform: translateY(0); }
.pgrid-card-info .line {
  width: 30px; height: 1px; background: var(--gold-light);
  margin-top: 10px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease) 0.1s;
}
.pgrid-card:hover .pgrid-card-info .line { transform: scaleX(1); }

/* ========================================
   PROCESS STEPS (process page)
   ======================================== */
.steps {}
.step {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 70vh; position: relative;
}
.step:nth-child(even) .step-img { order: 2; }
.step:nth-child(even) .step-body { order: 1; }

.step-img {
  position: relative; overflow: hidden;
}
.step-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.step:hover .step-img img { transform: scale(1.03); }

/* Step number floating */
.step-num {
  position: absolute; top: 40px; left: 40px; z-index: 2;
  font-family: var(--serif); font-size: 90px; font-weight: 600;
  color: rgba(255,255,255,0.15); line-height: 1;
  transition: color 0.5s ease;
}
.step:hover .step-num { color: rgba(181,158,125,0.3); }

.step-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 8vw;
  border-bottom: 1px solid var(--border);
}
.step-title {
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ── Instagram Grid ── */
.insta-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; max-width: 1400px; margin-left: auto; margin-right: auto;
  padding: 0 48px;
}
.insta-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; border-radius: 4px;
  display: block;
  transition: box-shadow 0.4s var(--ease);
}
.insta-item:hover {
  box-shadow: 0 8px 30px rgba(212,168,67,0.25);
}
.insta-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,23,20,0.5);
  opacity: 0; transition: opacity 0.4s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ========================================
   CONTACT
   ======================================== */
/* ── Contact Showcase ── */
.ct-showcase {
  position: relative; overflow: hidden;
  background: var(--dark);
}
.ct-showcase-bg { position: absolute; inset: 0; }
.ct-showcase-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15;
}
.ct-showcase-ov {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.85) 50%, rgba(88,71,56,0.6) 100%);
}
.ct-showcase-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

/* Left — Info */
.ct-left {
  padding: 100px 6vw 100px 7vw;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ct-display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.2; color: #fff;
  margin: 20px 0 24px; letter-spacing: 0.01em;
}
.ct-display em {
  font-style: italic; font-weight: 400;
  color: var(--gold-light);
}
.ct-intro {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,0.45);
  max-width: 460px; margin-bottom: 48px;
  letter-spacing: 0.01em;
}

/* Contact detail items */
.ct-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 48px;
}
.ct-detail {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ct-detail:nth-child(odd) { padding-right: 32px; }
.ct-detail:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.06); }
.ct-label {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.ct-val {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; display: block;
}
.ct-val a { color: rgba(255,255,255,0.65); transition: color 0.3s ease; }
.ct-val a:hover { color: var(--gold-light); }

/* Quick links row */
.ct-quick-links { display: flex; gap: 24px; flex-wrap: wrap; }
.ct-qlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  transition: color 0.4s var(--ease);
  text-decoration: none;
}
.ct-qlink svg { flex-shrink: 0; }
.ct-qlink:hover { color: var(--gold-light); }

/* Right — Form */
.ct-right {
  padding: 100px 7vw 100px 6vw;
  display: flex; align-items: center; justify-content: center;
}
.ct-form-wrap { width: 100%; max-width: 520px; }
.ct-form-title {
  font-family: var(--serif); font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500; color: #fff; margin-bottom: 16px;
  line-height: 1.3; letter-spacing: 0.01em;
}
.ct-form-title em { font-weight: 400; font-style: italic; color: var(--gold-light); }

.form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-dark .field label {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.form-dark .field input, .form-dark .field textarea {
  width: 100%; padding: 16px 0;
  font-size: 16px; font-weight: 400; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12); background: transparent;
  transition: border-color 0.4s var(--ease);
}
.form-dark .field input:focus, .form-dark .field textarea:focus { border-color: var(--gold); }
.form-dark .field input::placeholder, .form-dark .field textarea::placeholder {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.15em;
  font-weight: 400; color: rgba(255,255,255,0.25); text-transform: uppercase;
}
.form-dark .field textarea { resize: vertical; min-height: 100px; }
.form-dark .btn-gold { margin-top: 12px; }

/* Non-dark form fallback */
.field label {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.field input, .field textarea {
  width: 100%; padding: 16px 0;
  font-size: 16px; font-weight: 400; color: var(--text);
  border-bottom: 1px solid var(--border); background: transparent;
  transition: border-color 0.4s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.15em;
  font-weight: 400; color: var(--text-muted); text-transform: uppercase;
}
.field textarea { resize: vertical; min-height: 120px; }

/* ── Map Strip ── */
.ct-map-strip {
  position: relative; height: 420px;
}
.ct-map-strip iframe {
  width: 100%; height: 100%; display: block;
}
.ct-map-tag {
  position: absolute; bottom: 40px; left: 40px; z-index: 2;
  background: var(--mahogany); color: #fff;
  padding: 28px 36px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}
.ct-map-tag span:first-child {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
}
.ct-map-addr {
  font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 400 !important;
  font-family: var(--body) !important;
}
.ct-map-link {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
  transition: letter-spacing 0.4s var(--ease);
  text-decoration: none;
}
.ct-map-link:hover { letter-spacing: 0.3em; }

/* Social CTA links */
.ct-social-links {
  display: flex; gap: 24px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  position: relative; height: 55vh; min-height: 350px; max-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: contain; display: block; filter: brightness(0.5); background: var(--dark); }
.page-hero-ov {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 1;
}
.page-hero-txt {
  position: absolute; inset: 0; z-index: 2; text-align: center; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.page-hero-txt h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 1.05; letter-spacing: 0.01em;
}
.page-hero-txt h1 em { font-weight: 500; font-style: italic; color: var(--gold); }
.page-hero-txt .gold-line { margin: 20px auto; }
.page-hero-txt .crumb {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.page-hero-txt .crumb a { color: var(--gold-light); }
.page-hero-txt .crumb a:hover { color: #fff; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--dark); color: #fff; padding: 100px 0 0; position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tobacco), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { height: 30px; margin-bottom: 20px; opacity: 0.9; }
.footer-about {
  font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 300px;
}
.footer h4 {
  font-family: var(--serif); font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 24px; font-weight: 400; color: var(--gold);
}
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  font-size: 16px; color: rgba(255,255,255,0.45); transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact p {
  font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 16px;
}
.footer-contact strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer-contact a { color: rgba(255,255,255,0.45); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 15px;
  transition: all 0.4s var(--ease);
}
.footer-social a:hover {
  border-color: var(--tobacco); color: var(--tobacco); transform: translateY(-3px);
}
.footer-bottom {
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.3); letter-spacing: 0.06em;
}

/* ========================================
   WHATSAPP
   ======================================== */
/* Floating Social Buttons */
.float-socials {
  position: fixed; bottom: 32px; right: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 999;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease);
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); }
.float-btn svg { width: 24px; height: 24px; fill: #fff; }

.float-wa {
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.float-wa:hover { box-shadow: 0 10px 36px rgba(37,211,102,0.45); }

.float-ig {
  background: none;
  box-shadow: none;
  padding: 0; border-radius: 0; overflow: visible;
  width: auto; height: auto;
}
.float-ig img {
  width: 67px; height: 67px;
  object-fit: contain;
  display: block;
}
.float-ig:hover { box-shadow: none; }

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.rv { opacity: 0; transform: translateY(40px); transition: all 1s var(--ease); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-l { opacity: 0; transform: translateX(-50px); transition: all 1s var(--ease); }
.rv-l.vis { opacity: 1; transform: translateX(0); }
.rv-r { opacity: 0; transform: translateX(50px); transition: all 1s var(--ease); }
.rv-r.vis { opacity: 1; transform: translateX(0); }
.rv-s { opacity: 0; transform: scale(0.95); transition: all 1s var(--ease); }
.rv-s.vis { opacity: 1; transform: scale(1); }

/* Stagger */
.stagger .rv:nth-child(2) { transition-delay: 0.08s; }
.stagger .rv:nth-child(3) { transition-delay: 0.16s; }
.stagger .rv:nth-child(4) { transition-delay: 0.24s; }
.stagger .rv:nth-child(5) { transition-delay: 0.32s; }
.stagger .rv:nth-child(6) { transition-delay: 0.40s; }
.stagger .rv:nth-child(7) { transition-delay: 0.48s; }
.stagger .rv:nth-child(8) { transition-delay: 0.56s; }
.stagger .rv:nth-child(9) { transition-delay: 0.64s; }

/* ========================================
   RESPONSIVE
   ======================================== */
/* ========================================
   TABLET LANDSCAPE (~1024px)
   ======================================== */
@media (max-width: 1024px) {
  .story-block { grid-template-columns: 1fr; min-height: auto; }
  .story-block.story-craftsmanship { grid-template-columns: 1fr; }
  .story-block.story-craftsmanship .story-visual { padding: 24px 16px; }
  .story-block.flip .story-visual { order: 1; }
  .story-block.flip .story-text { order: 2; }
  .story-visual { min-height: auto; }

  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-col { border-bottom: 1px solid var(--border); }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); }

  .step { grid-template-columns: 1fr; min-height: auto; }
  .step:nth-child(even) .step-img { order: 1; }
  .step:nth-child(even) .step-body { order: 2; }
  .step-img { min-height: 50vw; }

  .ct-showcase-inner { grid-template-columns: 1fr; }
  .ct-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 80px 32px; text-align: center; align-items: center; }
  .ct-right { padding: 80px 32px; }
  .ct-intro { margin-left: auto; margin-right: auto; }
  .ct-quick-links { justify-content: center; }
  .ct-form-wrap { margin: 0 auto; }
  .ct-form-title { text-align: center; }
  .gold-line-l { margin-left: auto; margin-right: auto; }
  .ct-map-strip { height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .slab-grid { gap: 8px; padding: 0; height: 75vh; }
  .pad, .nav-inner { padding: 0 32px; }

  .hero-scroll-cta { bottom: 32px; left: 32px; }
  .hero-split { padding: 0 32px; gap: 36px; }
  .hero-enquiry { width: 340px; padding: 28px 22px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); padding: 0 32px; }

  /* Page hero */
  .page-hero { height: 45vh; min-height: 280px; max-height: 420px; }

  /* CTA */
  .cta-full { padding: 120px 0; }

  /* Illustration strip */
  .illus-strip { padding: 0 32px 60px; }
  .illus-item { width: 130px; }
  .illus-svg { width: 120px; height: 120px; }
  .illus-line { min-width: 24px; max-width: 50px; }
  .illus-label { font-size: 20px; }

  /* Gallery labels always visible on touch */
  .hgallery-card-label { transform: translateY(0); }

  /* Product card info always visible on touch */
  .pgrid-card-info { opacity: 1; }
}

/* ========================================
   MOBILE — disable hover/transform effects + fix overflow
   ======================================== */
@media (max-width: 768px) {
  body { overflow-x: hidden; width: 100%; }
  .nav-inner, .stats, .story-block, .sec, .sec-sm, .footer,
  .cta-full, .testi, .hgallery, .page-hero { max-width: 100vw; overflow-x: hidden; }
  .story-visual:hover img { transform: none; }
  .story-visual img { transform: none !important; }
  .hgallery-card:hover { transform: none; }
  .pgrid-card:hover img { transform: none; }
  .feat-icon:hover { transform: none; }
  .insta-item:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* ========================================
   TABLET PORTRAIT / MOBILE (~768px)
   ======================================== */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100dvh;
    background: var(--dark); flex-direction: column; justify-content: center;
    align-items: center;
    gap: 20px; transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10000;
    opacity: 0; visibility: hidden;
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-menu .nav-link {
    color: #fff; font-size: 18px; letter-spacing: 0.2em;
    padding: 10px 0;
  }
  .nav-menu .nav-link:hover { color: var(--gold); }
  .nav-menu .nav-link.active { color: var(--gold); }
  .menu-btn { display: flex; }
  .menu-btn.on span { background: #fff !important; }

  /* Sections */
  .sec { padding: 72px 0; }
  .sec-sm { padding: 56px 0; }

  /* Hero */
  .hero-cin { height: auto; padding: 0; flex-direction: column; }
  .hero-bg { position: relative; width: 100%; }
  .hero-bg img { width: 100%; height: auto; display: block; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.2) 100%); z-index: 3; }
  .hero-grain { position: absolute; inset: 0; }
  .hero-split { position: absolute; inset: 0; flex-direction: column; padding: 70px 24px 24px; gap: 0; text-align: center; align-items: center; justify-content: center; }
  .hero-left { max-width: 100%; }
  .hero-eyebrow { justify-content: center; margin-bottom: 12px; }
  .hero-ey-line { display: none; }
  .hero-ey-text { font-size: 10px; letter-spacing: 0.3em; }
  .hero-heading { font-size: clamp(26px, 8vw, 42px); margin-bottom: 12px; line-height: 1.1; white-space: normal; }
  .hero-heading br { display: none; }
  .hero-sub { margin-bottom: 0; }
  .hero-sub-text { font-size: 10px; line-height: 1.5; max-width: 85%; margin: 0 auto; color: rgba(255,255,255,0.7); }
  .hero-actions { display: none; }
  .hero-scroll-cta { display: none; }
  .hero-enquiry { width: 100%; max-width: 100%; padding: 24px 20px; }
  .hero-enquiry-title { font-size: 20px; }
  .hero-enquiry-sub { font-size: 12px; margin-bottom: 16px; }
  .hero-enquiry-form input,
  .hero-enquiry-form select,
  .hero-enquiry-form textarea { padding: 10px 12px; font-size: 13px; }
  .hero-enquiry-form { gap: 10px; }
  .btn-gold-solid { padding: 12px 20px; font-size: 13px; }

  /* Hero mobile buttons below image */
  .hero-mobile-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 24px 0;
    background: var(--cream);
    width: 100%;
  }
  .hero-mobile-actions .btn {
    padding: 8px 20px;
    font-size: 10px;
    letter-spacing: 0.2em;
    border-radius: 6px;
  }

  /* Illustration strip */
  .illus-strip { padding: 0 24px 48px; }
  .illus-strip-inner { flex-wrap: wrap; gap: 24px 0; justify-content: center; }
  .illus-line { display: none; }
  .illus-item { width: 33.33%; }
  .illus-svg { width: 100px; height: 100px; margin-bottom: 12px; }
  .illus-label { font-size: 20px; }
  .illus-sub { font-size: 13px; }

  /* Products grid — instagram style */
  .pgrid { grid-template-columns: 1fr 1fr; gap: 4px; margin: 0 16px; }
  .pgrid-card { aspect-ratio: 1/1; border-radius: 0; }
  .pgrid-card-info { opacity: 1; padding: 16px; }
  .pgrid-card-info h3 { font-size: 18px; transform: none; }
  .pgrid-card-info .line { transform: scaleX(1); }

  /* Features */
  .feat-grid { grid-template-columns: 1fr; }
  .feat-col { border-right: none; padding: 40px 24px; }

  /* Stats */
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 12px 10px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }

  /* Footer — redesigned compact mobile layout */
  .footer { padding: 40px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    text-align: left;
    padding-bottom: 32px;
  }
  /* Logo + about spans full width */
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-logo { height: 24px; margin-bottom: 14px; }
  .footer-about { max-width: 100%; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.35); }
  .footer-social { margin-top: 14px; gap: 10px; }
  .footer-social a { width: 34px; height: 34px; font-size: 12px; }
  /* Link columns sit side by side */
  .footer h4 { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 12px; color: var(--gold); }
  .footer-links li { margin-bottom: 6px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); }
  /* Contact spans full width */
  .footer-contact { grid-column: 1 / -1; }
  .footer-contact p { font-size: 13px; line-height: 1.6; margin-bottom: 8px; color: rgba(255,255,255,0.35); }
  .footer-contact strong { font-size: 12px; }
  .footer-contact a { font-size: 13px; }
  /* Bottom bar */
  .footer-bottom {
    flex-direction: column; gap: 4px;
    text-align: left; align-items: flex-start;
    font-size: 10px; padding: 16px 0;
    color: rgba(255,255,255,0.2);
  }

  /* Sections — reduce spacing */
  .sec { padding: 56px 0; }
  .sec-sm { padding: 40px 0; }

  /* Story blocks — tighter on mobile */
  .story-text { padding: 40px 24px; }
  .story-visual { min-height: 55vw; }
  .story-visual img { transform: none !important; }
  .story-text .desc { font-size: 16px; line-height: 1.75; }
  .story-text .heading { margin-bottom: 12px; font-size: clamp(28px, 7vw, 36px); }
  .story-text .btn { margin-top: 28px !important; }
  .story-block.flip { grid-template-columns: 1fr; }
  .story-block.flip .story-visual { min-height: 60vw; }
  .story-block.flip .story-text { padding: 36px 24px; }

  /* Social CTA buttons — stack vertically */
  .ct-social-links { flex-direction: column !important; gap: 12px !important; align-items: center; }
  .ct-social-links .btn { width: 220px; text-align: center; }

  /* Map — prevent overlap */
  .ct-map-strip { height: auto; min-height: 320px; display: flex; flex-direction: column; }
  .ct-map-tag { position: relative; bottom: auto; left: auto; padding: 20px 24px; }
  .ct-map-tag span:first-child { font-size: 18px; }
  .ct-map-strip iframe { min-height: 260px; flex: 1; }

  /* Gallery */
  .hgallery-inner { padding: 72px 0 32px; }
  .slab-grid { gap: 6px; padding: 0; height: 70vh; grid-template-columns: repeat(4, 1fr); }
  .slab-grid-item { aspect-ratio: 0.56 / 1; }
  .hgallery-header, .hgallery-track, .hgallery-controls { padding: 0 24px; }
  .hgallery-header { text-align: center; }
  .hgallery-header .gold-line-l { margin: 16px auto 0; }
  .hgallery-inner { padding: 14px 0 20px; }

  /* Marquee */
  .marquee { padding: 5px 0; }
  .marquee-item { padding: 0 18px; font-size: 9px; letter-spacing: 0.15em; }
  .marquee-item .dot { margin: 0 10px; width: 3px; height: 3px; }

  /* Padding */
  .pad, .nav-inner { padding: 0 24px; }

  /* Story text */
  .story-text { padding: 48px 24px; }
  .story-visual { min-height: 60vw; }

  /* Steps */
  .step-body { padding: 48px 24px; }
  .step-img { min-height: 60vw; }
  .step-num { font-size: 64px; top: 24px; left: 24px; }

  /* Contact */
  .ct-left { padding: 56px 24px; text-align: center; align-items: center; }
  .ct-right { padding: 56px 24px; }
  .ct-display { font-size: clamp(28px, 6vw, 40px); }
  .ct-intro { max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 36px; font-size: 15px; }
  .ct-details { grid-template-columns: 1fr 1fr; text-align: center; gap: 0; margin-bottom: 36px; }
  .ct-detail { padding: 20px 12px; }
  .ct-detail:nth-child(even) { padding-left: 12px; border-left: 1px solid rgba(255,255,255,0.06); }
  .ct-detail:nth-child(odd) { padding-right: 12px; }
  .ct-val { font-size: 14px; line-height: 1.6; }
  .ct-label { font-size: 10px; margin-bottom: 8px; }
  .ct-quick-links { justify-content: center; }
  .ct-form-wrap { max-width: 100%; }
  .ct-form-title { text-align: center; }
  .gold-line-l { margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .form { gap: 20px; }
  .ct-map-strip { height: auto; display: flex; flex-direction: column; }
  .ct-map-tag { position: relative; bottom: auto; left: auto; padding: 20px 24px; }
  .ct-map-tag span:first-child { font-size: 18px; }
  .ct-map-strip iframe { min-height: 280px; }

  /* CTA */
  .cta-full { padding: 100px 0; }
  .cta-full-inner { padding: 0 24px; }

  /* Page hero */
  .page-hero { height: 45vh; min-height: 280px; max-height: 420px; }
  .page-hero-txt h1 { font-size: clamp(30px, 5vw, 52px); }
  .page-hero-txt .crumb { font-size: 11px; }

  /* Headings */
  .heading { font-size: clamp(30px, 7vw, 42px); }
  .heading-sm { font-size: clamp(24px, 5vw, 32px); }
  .tag { font-size: 12px; letter-spacing: 0.25em; }
  .desc { font-size: 16px; line-height: 1.75; }

  /* Buttons */
  .btn { padding: 14px 32px; font-size: 13px; }
  .btn-ghost { padding: 14px 24px; font-size: 13px; }

  /* WhatsApp */
  .float-socials { bottom: 16px; right: 16px; gap: 8px; }
  .float-wa { width: 50px; height: 50px; }
  .float-wa svg { width: 20px; height: 20px; }
  .float-ig img { width: 58px; height: 58px; }

  /* Testimonials */
  .testi-quote { font-size: 18px; }
  .testi-card { padding: 50px 32px 40px; }
  .testi-stars { margin-left: 88px; }

}

/* ========================================
   SMALL MOBILE (~480px)
   ======================================== */
@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr 1fr; gap: 3px; margin: 0 12px; }
  .pgrid-card { aspect-ratio: 1/1; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 12px; }
  .insta-item:nth-child(5) { display: none; }

  .hero-cin { padding: 0; }
  .hero-heading { font-size: clamp(22px, 7vw, 32px); margin-bottom: 8px; }
  .hero-sub-text { font-size: 9px; line-height: 1.4; max-width: 90%; }
  .hero-split { padding: 50px 16px 16px; }
  .hero-enquiry { padding: 20px 16px; }
  .hero-enquiry-title { font-size: 18px; }
  .hero-mobile-actions { padding: 12px 16px; }
  .hero-mobile-actions .btn { padding: 7px 16px; font-size: 9px; }

  .illus-item { width: 50%; }
  .illus-svg { width: 80px; height: 80px; }

  .slab-grid { gap: 8px; padding: 0 12px; height: auto; grid-template-columns: repeat(2, 1fr); }
  .slab-grid-item { aspect-ratio: 0.56 / 1; border-radius: 10px; }
  .slab-grid-item img { border-radius: 10px; }
  .hgallery-controls { margin-top: 28px; }
  .hgallery-btn { width: 44px; height: 44px; font-size: 16px; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; padding: 10px 8px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 9px; }

  .story-badge { bottom: 12px; right: 12px; padding: 8px 12px; }
  .story-badge .num { font-size: 18px; }
  .story-badge .label { font-size: 7px; }

  /* Story / sustainability section — compact */
  .story-text { padding: 32px 20px; }
  .story-text .heading { font-size: clamp(26px, 7vw, 34px); }
  .story-text .desc { font-size: 15px; line-height: 1.7; }
  .story-visual { min-height: 50vw; }

  .step-body { padding: 32px 20px; }
  .ct-showcase { overflow-x: hidden; }
  .ct-showcase-inner { min-height: auto; }
  .ct-showcase-bg img { object-position: center; }
  .ct-left {
    padding: 40px 24px 32px;
    text-align: left;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .ct-right { padding: 32px 24px 40px; }
  .ct-display { font-size: clamp(24px, 7vw, 32px); margin: 8px 0 12px; line-height: 1.15; }
  .ct-display br { display: none; }
  .ct-intro { font-size: 13px; margin-bottom: 20px; text-align: left; margin-left: 0; }
  .ct-details {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
    gap: 0;
  }
  .ct-detail { padding: 14px 0; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ct-detail:nth-child(even) { padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.05); }
  .ct-detail:nth-child(odd) { padding-right: 16px; }
  .ct-label { font-size: 9px; margin-bottom: 6px; }
  .ct-val { font-size: 12px; line-height: 1.5; }
  .ct-quick-links { gap: 10px; flex-direction: row; justify-content: flex-start; }
  .ct-qlink { font-size: 11px; padding: 8px 14px; }
  .ct-form-wrap { max-width: 100%; }
  .ct-form-title { font-size: 20px; text-align: left; }
  .ct-form-title br { display: none; }
  .form { gap: 16px; }
  .form-row { gap: 16px; }
  .field label { font-size: 10px; }
  .field input, .field textarea { font-size: 13px; padding: 12px 14px; }

  /* Map — stacked, no overlap */
  .ct-map-strip { height: auto; display: flex; flex-direction: column; }
  .ct-map-tag { position: relative; bottom: auto; left: auto; padding: 16px 20px; }
  .ct-map-tag span:first-child { font-size: 16px; }
  .ct-map-strip iframe { min-height: 220px; }

  .heading { font-size: clamp(26px, 7vw, 34px); }
  .desc { font-size: 15px; line-height: 1.7; }

  .pad, .nav-inner { padding: 0 20px; }
  .hgallery-header, .hgallery-track, .hgallery-controls { padding: 0 20px; }
  .hgallery-header { text-align: center; }
  .hgallery-header .gold-line-l { margin: 16px auto 0; }

  /* Sections — less spacing */
  .sec { padding: 44px 0; }
  .sec-sm { padding: 32px 0; }

  /* Footer — extra compact */
  .footer { padding: 32px 0 0; }
  .footer-grid { gap: 24px 16px; padding-bottom: 24px; }
  .footer-logo { height: 20px; margin-bottom: 10px; }
  .footer-about { font-size: 12px; line-height: 1.6; }
  .footer-social a { width: 30px; height: 30px; font-size: 10px; }
  .footer h4 { font-size: 9px; margin-bottom: 10px; }
  .footer-links a { font-size: 12px; }
  .footer-links li { margin-bottom: 5px; }
  .footer-contact p { font-size: 12px; line-height: 1.55; margin-bottom: 6px; }
  .footer-contact strong { font-size: 11px; }
  .footer-bottom { font-size: 9px; padding: 12px 0; }

  .btn { padding: 13px 28px; font-size: 12px; letter-spacing: 0.2em; }

  /* Social buttons — stack */
  .ct-social-links .btn { width: 200px; padding: 12px 20px; font-size: 10px; }

  .nav-wrap { padding: 18px 0; }
  .nav-wrap.scrolled { padding: 12px 0; }
  .logo-w, .logo-b { height: 26px; }

  .testi-quote { font-size: 17px; }
  .testi-inner { padding: 0 16px; }
  .testi-card { padding: 44px 22px 32px; }
  .testi-card::before { left: 24px; width: 56px; height: 56px; font-size: 56px; line-height: 68px; top: -32px; }
  .testi-stars { margin-left: 0; justify-content: center; display: flex; }
  .testi-slide { text-align: center; }
  .testi-card { text-align: center; }
  .testi-footer { justify-content: center; flex-direction: column; gap: 12px; }

  .page-hero { height: 45vh; min-height: 280px; max-height: 420px; }
  .page-hero-bg img { object-position: center center; }
  .page-hero-txt h1 { font-size: clamp(28px, 7vw, 42px); }
  .page-hero-txt .crumb { font-size: 11px; letter-spacing: 0.2em; }

  .field input, .field textarea { font-size: 14px; }

  .cta-full { padding: 80px 0; }
}

/* ========================================
   VERY SMALL (~360px and below)
   ======================================== */
@media (max-width: 360px) {
  .hero-heading { font-size: 28px; margin-bottom: 12px; }
  .hero-heading br { display: none; }
  .hero-sub-text { font-size: 13px; }
  .hero-sub { margin-bottom: 20px; }
  .hero-ey-text { font-size: 10px; }
  .hero-ey-line { width: 20px; }
  .hero-scroll-cta { display: none; }

  .heading { font-size: 24px; }
  .heading-sm { font-size: 20px; }
  .desc { font-size: 14px; line-height: 1.7; }
  .tag { font-size: 11px; }

  .btn { padding: 12px 24px; font-size: 11px; }
  .slab-grid { gap: 6px; padding: 0 10px; height: auto; }
  .slab-grid-item { aspect-ratio: 0.56 / 1; }

  .pgrid-card { aspect-ratio: 1/1; }
  .pgrid-card-info h3 { font-size: 16px; }

  .stat-num { font-size: 18px; }
  .feat-col { padding: 28px 16px; }
  .feat-name { font-size: 11px; }
  .feat-desc { font-size: 12px; }

  .story-badge { display: none; }
  .story-text { padding: 28px 16px; }
  .story-text .heading { font-size: 24px; }

  /* Footer ultra-compact */
  .footer { padding: 28px 0 0; }
  .footer-grid { gap: 20px 12px; padding-bottom: 20px; }
  .footer-about { font-size: 12px; }
  .footer-links a { font-size: 12px; }
  .footer-contact p { font-size: 12px; }
  .footer-bottom { font-size: 9px; padding: 10px 0; }
  .pad, .nav-inner { padding: 0 16px; }

  /* Map */
  .ct-map-strip iframe { min-height: 200px; }
  .ct-map-tag { padding: 14px 16px; }
}

/* ========================================
   LANDSCAPE PHONES
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-cin { height: auto; padding: 0; }
  .hero-split { position: absolute; inset: 0; padding: 16px 20px; flex-direction: row; gap: 24px; }
  .hero-enquiry { width: 320px; padding: 18px 16px; }
  .hero-heading { font-size: clamp(20px, 4vh, 32px); margin-bottom: 10px; }
  .hero-eyebrow { margin-bottom: 10px; }
  .hero-sub { margin-bottom: 14px; }
  .hero-sub-text { font-size: 12px; }
  .hero-scroll-cta { display: none; }
  .page-hero { height: 45vh; min-height: 280px; max-height: 420px; }
}

/* ========================================
   LARGE SCREENS (>1440px)
   ======================================== */
@media (min-width: 1440px) {
  .hero-heading { font-size: 100px; }
  .hero-enquiry { width: 480px; }
  .heading { font-size: 62px; }
  .slab-grid { max-width: 100%; gap: 14px; height: 85vh; }
  .slab-grid-item { aspect-ratio: 0.56 / 1; }
  .stat-num { font-size: 60px; }
  .pgrid { gap: 24px; }
}
