/* =========================================================
   VARIABLES & GLOBALS
   ========================================================= */
:root {
  --bg: #f7f5f0;
  --cream: #efeadf;
  --tan: #b59673;
  --brown: #49382d;
  --ink: #272522;
  --muted: #746f67;
  --white: #fff;
  --line: rgba(39, 37, 34, 0.12);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 0.8, 0.2, 1);
  --content-edge: clamp(24px, 4.7vw, 70px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Keep all mobile sections inside the viewport.  Horizontal motion uses transforms,
   so this does not interfere with vertical scrolling or reveal animations. */
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input {
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   LAYOUT & UTILITIES
   ========================================================= */
.site-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
  background: var(--bg);
  border-radius: 0;
  min-height: 100vh;
  padding: 42px 46px 54px;
  box-shadow: none;
  position: relative;
}

.content-width {
  width: min(1120px, calc(100% - 80px));
  margin-left: auto;
  margin-right: auto;
}

.rounded-panel {
  border-radius: 24px;
  overflow: hidden;
}

/* Reveal motion must never change layout width.  Using transforms prevents a
   full-width card from expanding the page while it animates into view. */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
}
.reveal-left { transform: translate3d(-28px, 0, 0); }
.reveal-right { transform: translate3d(28px, 0, 0); }
.reveal-up { transform: translate3d(0, 24px, 0); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =========================================================
   LOADER & CURSOR
   ========================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #efe9de;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-size: 56px;
  font-family: Georgia, serif;
  color: var(--brown);
}

.loader-line {
  width: 140px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin-top: 20px;
  overflow: hidden;
}

.loader-line i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--tan);
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.floating-header {
  height: 64px;
  width: min(1010px, calc(100% - 130px));
  position: absolute;
  z-index: 60;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  grid-template-columns: 190px 1fr 130px;
  align-items: center;
  padding: 0 18px 0 25px;
  box-shadow: 0 8px 24px rgba(40, 30, 20, 0.12);
  backdrop-filter: blur(12px);
  transition: 0.4s var(--ease);
}

.floating-header.sticky {
  position: fixed;
  top: 16px;
  width: min(1010px, calc(100% - 50px));
}

.home-page .shared-floating-header { width: min(1010px, calc(100% - 130px)); }
.home-page .shared-floating-header.sticky { width: min(1010px, calc(100% - 50px)); }

.logo-word { font-size: 24px; letter-spacing: -1px; font-weight: 500; }
.logo small { display: block; font-size: 6px; letter-spacing: 0.34em; text-transform: uppercase; color: #9b856d; margin-top: 1px; }
.logo-image-link { display: inline-flex; align-items: center; }
.site-logo-image { display: block; width: auto; height: 40px; max-width: 185px; object-fit: contain; }

.desktop-nav { display: flex; justify-content: center; gap: 34px; }
.desktop-nav a { font-size: 9px; color: #59544d; position: relative; }
.desktop-nav a:after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--tan); transition: 0.3s; }
.desktop-nav a:hover:after, .desktop-nav a.active:after { right: 0; width: 100%; }
.desktop-nav a.active { color: #9d7650; }

.header-cta, .small-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--tan); color: #fff; border-radius: 8px; padding: 13px 18px; font-size: 9px; border: 1px solid transparent; transition: 0.3s; }
.header-cta:hover, .small-btn:hover { background: var(--brown); transform: translateY(-2px); }
.small-btn.light { background: #f4efe8; color: #4a3a2e; }

.menu-toggle { display: none; border: 0; background: none; width: 36px; }
.menu-toggle span { display: block; width: 21px; height: 1px; background: #222; margin: 6px auto; }
.mobile-menu { display: none; }

/* =========================================================
   HERO & SLIDER
   ========================================================= */
.hero { height: 555px; position: relative; }
.hero-image { transform: scale(1.04); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24, 18, 14, 0.35), rgba(24, 18, 14, 0.02) 55%, rgba(24, 18, 14, 0.28)), linear-gradient(to top, rgba(20, 15, 11, 0.5), transparent 48%); }

.hero-title { position: absolute; left: var(--content-edge); bottom: 62px; color: white; max-width: 620px; }
.hero-title span, .hero-title strong { display: block; font-size: 32px; line-height: 1.04; letter-spacing: -1.5px; }
.hero-title strong { font-weight: 400; }

.hero-copy { position: absolute; right: 68px; bottom: 67px; color: white; width: 350px; }
.hero-copy p { font-size: 12px; line-height: 1.5; margin-bottom: 15px; }
.hero-copy .small-btn { background: #f6f2eb; color: #4c4037; }

.hero-scroll { position: absolute; right: 20px; top: 50%; color: #fff; font-size: 8px; text-transform: uppercase; letter-spacing: 0.2em; writing-mode: vertical-rl; }
.hero-scroll i { display: inline-block; width: 1px; height: 38px; background: #fff; margin-bottom: 10px; }

.hero-slider { position: relative; width: 100vw !important; max-width: none !important; margin-left: calc(50% - 50vw) !important; border-radius: 0 !important; overflow: hidden; }
.hero-slider .hero-slide, .hero-slider .hero-image, .hero-slider .hero-shade { border-radius: 0 !important; }

.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; z-index: 0; pointer-events: none; overflow: hidden; clip-path: inset(0 0 0 0); transition: opacity .78s ease, clip-path 1.05s cubic-bezier(.7,0,.2,1), visibility 0s linear 1.06s; }
.hero-slide.active, .hero-slide.is-preparing, .hero-slide.is-leaving { visibility: visible; transition-delay: 0s; }
.hero-slide.active { opacity: 1; z-index: 3; pointer-events: auto; }
.hero-slide.is-leaving { opacity: 1; z-index: 2; pointer-events: none; }
.hero-slide.is-preparing { opacity: 1; z-index: 4; pointer-events: none; }
.hero-slide.is-preparing.from-next { clip-path: inset(0 100% 0 0); }
.hero-slide.is-preparing.from-prev { clip-path: inset(0 0 0 100%); }
.hero-slide .hero-image { position: absolute; inset: 0; transform: scale(1.12); will-change: transform; transition: transform 9.2s cubic-bezier(.18,.7,.18,1); }
.hero-slide.active .hero-image { transform: scale(1.035); }
.hero-slide .hero-title, .hero-slide .hero-copy { opacity: 0; transition: opacity .7s ease, transform .85s cubic-bezier(.22,.8,.2,1); }
.hero-slide .hero-title { transform: translate3d(-44px,28px,0); }
.hero-slide .hero-copy { transform: translate3d(38px,24px,0); }
.hero-slide.active .hero-title, .hero-slide.active .hero-copy { opacity: 1; transform: translate3d(0,0,0); }
.hero-slide.active .hero-title { transition-delay: .26s; }
.hero-slide.active .hero-copy { transition-delay: .43s; }
.hero-slider:focus { outline: none; }
.hero-slider:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: -7px; }

.slider-controls { position: absolute; z-index: 8; left: var(--content-edge); bottom: 22px; display: flex; align-items: center; gap: 14px; color: #fff; }
.slider-controls > button { width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, 0.58); border-radius: 50%; color: #fff; background: rgba(0, 0, 0, 0.16); cursor: pointer; transition: transform .28s ease, background .28s ease, border-color .28s ease; }
.slider-controls > button:hover { transform: translateY(-2px) scale(1.05); background: rgba(255,255,255,.95); color: #151417; border-color: #fff; }

.slider-dots { display: flex; gap: 7px; }
.slider-dots button { width: 23px; height: 2px; background: rgba(255, 255, 255, 0.42); border: none; cursor: pointer; transition: width .35s ease, background .35s ease; }
.slider-dots button.active { width: 36px; background: #fff; }

.slider-progress { position: absolute; z-index: 7; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, 0.18); }
.slider-progress i { display: block; width: 0; height: 100%; background: #fff; transform-origin: left center; }
.slider-progress i.is-running { animation: heroProgress 7.6s linear forwards; }
.hero-slider.is-paused .slider-progress i { animation-play-state: paused; }
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }

/* =========================================================
   WHO SECTION
   ========================================================= */
.who-section { display: grid; grid-template-columns: 285px 1fr; gap: 18px; margin-top: 42px; position: relative; z-index: 1; }

.stats-card { height: 230px; border-radius: 18px; background: linear-gradient(145deg, #cbb08f, #a9825d); color: #fff; padding: 24px; position: relative; overflow: hidden; }
.stats-label { font-size: 8px; text-transform: uppercase; letter-spacing: 0.09em; }

.fingerprint { position: absolute; right: 25px; top: 18px; width: 80px; height: 80px; transform: rotate(-20deg); }
.fingerprint i { position: absolute; inset: 8px; border: 4px solid rgba(255, 255, 255, 0.6); border-left-color: transparent; border-radius: 48% 52% 45% 55%; }
.fingerprint i:nth-child(2) { inset: 18px; }
.fingerprint i:nth-child(3) { inset: 28px; }
.fingerprint i:nth-child(4) { inset: 38px; }

.stats-row { position: absolute; left: 24px; right: 24px; bottom: 25px; display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 20px; }
.stats-row strong { font-size: 37px; font-weight: 400; }
.stats-row b { font-size: 24px; font-weight: 400; }
.stats-row span { display: block; font-size: 9px; line-height: 1.25; }

.who-card { height: 230px; border-radius: 18px; background: #eee9df; display: grid; grid-template-columns: 1.1fr 0.9fr; overflow: hidden; }
.who-copy { padding: 28px 28px 22px 34px; }

.section-kicker { font-size: 8px; text-transform: uppercase; letter-spacing: 0.15em; color: #9a8267; }
.who-copy h2 { font-size: 27px; margin: 7px 0 12px; }
.who-copy h2 em, .section-heading em { font-style: normal; color: #a38360; font-weight: 400; }
.who-copy p { font-size: 9px; line-height: 1.55; margin-bottom: 8px; color: #5e5a54; }

.who-image { clip-path: ellipse(68% 89% at 70% 50%); overflow: hidden; }

.text-link { display: inline-flex; gap: 8px; font-size: 8px; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.text-link span { transition: 0.3s; }
.text-link:hover span { transform: translate(3px, -3px); }

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.process-section { padding: 95px 0 150px !important; min-height: 2800px !important; position: relative; overflow: clip; z-index: 1; }

.process-section .section-heading { position: relative !important; top: auto !important; z-index: 3; background: linear-gradient(var(--bg) 78%, rgba(247, 245, 240, 0)); padding: 10px 0 28px; padding-bottom: 24px; }

.section-heading { margin-bottom: 40px; }
.section-heading h2 { font-size: 34px; line-height: 1.08; font-weight: 500; letter-spacing: -1px; }
.section-heading > p { font-size: 10px; color: var(--muted); margin-top: 12px; }

.process-stack { position: sticky !important; top: 115px !important; z-index: 2; border-radius: 18px; overflow: hidden; border: 1px solid #e1ddd5; background: #fff; box-shadow: 0 10px 25px rgba(49, 39, 28, 0.06); width: 100%; transition: opacity 0.35s ease, transform 0.35s ease; }

/* The five process tabs use CSS-driven height, fade and image transitions.
   This keeps the expanded area as a grid instead of turning it into a block. */
.process-item { background: #fff; border-bottom: 1px solid #e7e3db; transition: background 0.48s ease; }
.process-item:last-child { border-bottom: 0; }
.process-item.active { background: #fcfaf6; }

.process-tab { width: 100%; height: 43px; border: 0; background: transparent; display: grid; grid-template-columns: 50px 1fr 30px; align-items: center; text-align: left; padding: 0 18px; color: #767068; cursor: pointer; transition: background 0.35s ease, color 0.35s ease; }
.process-tab:hover, .process-tab:focus-visible, .process-item.active .process-tab { background: #f7f3ec; color: #3d3228; }
.process-tab:focus-visible { outline: 2px solid #a78362; outline-offset: -3px; }
.process-tab span { font-size: 9px; transition: color 0.35s ease, transform 0.45s var(--ease); }
.process-tab strong { font-size: 10px; font-weight: 500; transition: letter-spacing 0.35s ease, transform 0.45s var(--ease); }
.process-tab i { font-style: normal; font-size: 18px; text-align: center; transition: transform 0.45s var(--ease), color 0.35s ease; }
.process-item.active .process-tab span { color: #a38360; transform: translateX(2px); }
.process-item.active .process-tab strong { letter-spacing: 0.025em; transform: translateX(2px); }
.process-item.active .process-tab i { color: #a38360; transform: rotate(45deg); }

.process-body { display: grid; height: 445px; max-height: 0; grid-template-columns: 1fr 1fr; overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: max-height 0.72s var(--ease), opacity 0.36s ease, transform 0.62s var(--ease); }
.process-item.active .process-body { max-height: 445px; opacity: 1; pointer-events: auto; transform: translateY(0); transition: max-height 0.72s var(--ease), opacity 0.46s ease 0.1s, transform 0.62s var(--ease); }

.process-copy { padding: 75px 46px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.process-copy > b, .process-copy h3, .process-copy p, .process-copy .text-link { opacity: 0; transform: translateY(19px); transition: opacity 0.36s ease, transform 0.58s var(--ease); }
.process-item.active .process-copy > b, .process-item.active .process-copy h3, .process-item.active .process-copy p, .process-item.active .process-copy .text-link { opacity: 1; transform: translateY(0); }
.process-item.active .process-copy > b { transition-delay: 0.11s; }
.process-item.active .process-copy h3 { transition-delay: 0.18s; }
.process-item.active .process-copy p { transition-delay: 0.25s; }
.process-item.active .process-copy .text-link { transition-delay: 0.32s; }
.process-copy > b { font-size: 53px; color: #eee8dd; font-weight: 400; margin-bottom: 45px; }
.process-copy h3 { font-size: 24px; line-height: 1.1; font-weight: 500; max-width: 320px; }
.process-copy p { font-size: 10px; line-height: 1.6; color: #6e6962; margin: 16px 0; max-width: 410px; }

.process-image { overflow: hidden; border-radius: 18px 0 0 18px; background: #e9e3da; }
.process-image img { transform: scale(1.11); filter: saturate(0.88) brightness(0.9); transition: transform 0.94s var(--ease), filter 0.7s ease; }
.process-item.active .process-image img { transform: scale(1.03); filter: saturate(1) brightness(1); }
.process-no-motion .process-body, .process-no-motion .process-copy > *, .process-no-motion .process-image img { transition-duration: 0s !important; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { padding-bottom: 95px; position: relative; z-index: 1; }
.why-heading { margin-bottom: 30px; }
.why-heading .section-kicker { margin-bottom: 12px; }

/* Five equal cards form one clean horizontal desktop grid. */
.why-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.why-card {
  min-height: 248px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 23px 21px 22px;
  overflow: hidden;
  border: 1px solid rgba(102, 82, 62, 0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, #f2eee7 0%, #e6ddd0 100%);
  box-shadow: 0 10px 22px rgba(64, 46, 31, 0.045);
  transition: opacity 0.7s ease, transform 0.38s var(--ease), box-shadow 0.38s ease, background 0.38s ease;
}
.why-card:nth-child(2) { background: linear-gradient(145deg, #eee6dc 0%, #dfd0c0 100%); }
.why-card:nth-child(3) { background: linear-gradient(145deg, #f3f0e9 0%, #e7ded1 100%); }
.why-card:nth-child(4) { background: linear-gradient(145deg, #ede8df 0%, #d9cdbc 100%); }
.why-card:nth-child(5) { background: linear-gradient(145deg, #f5f1e9 0%, #e6d9c9 100%); }
.why-card::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  right: -43px;
  bottom: -51px;
  border: 1px solid rgba(141, 109, 79, 0.17);
  border-radius: 50%;
  transition: transform 0.42s var(--ease), border-color 0.42s ease;
}
.why-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; position: relative; z-index: 1; }
.why-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 48px;
  border: 1px solid rgba(132, 99, 70, 0.22);
  border-radius: 15px;
  color: #8a684c;
  background: rgba(255, 255, 255, 0.42);
}
.why-icon img, .why-icon svg { display: block; width: 27px; height: 27px; object-fit: contain; transition: filter .28s ease; }
.why-card h3 { margin: auto 0 9px; position: relative; z-index: 1; font-size: 15px; line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; }
.why-card p { position: relative; z-index: 1; max-width: 180px; color: #6c6259; font-size: 10px; line-height: 1.55; }
@media (hover: hover) and (pointer: fine) {
  .why-card:hover { z-index: 3; transform: translateY(-8px) scale(1.045); background: linear-gradient(145deg, #fbf9f4 0%, #e8dccd 100%); box-shadow: 0 24px 42px rgba(64, 46, 31, 0.16); }
  .why-card:hover::before { transform: scale(1.18); border-color: rgba(141, 109, 79, 0.32); }
  .why-card:hover .why-icon { color: #fff; background: #9b785a; border-color: #9b785a; }
  .why-card:hover .why-icon img { filter: brightness(0) invert(1); }
}

/* =========================================================
   ARCHITECT / CLIENT FEEDBACK SLIDER
   ========================================================= */
.client-feedback { position: relative; z-index: 1; padding: 5px 0 125px; overflow: hidden; }
.feedback-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.feedback-heading .section-kicker { margin-bottom: 12px; }
.feedback-heading h2 { margin: 0; font: 400 clamp(39px, 4.35vw, 66px)/0.95 var(--serif); letter-spacing: -0.055em; }
.feedback-heading h2 em { color: #9e7b5c; font-style: italic; }
.feedback-controls { display: flex; flex: 0 0 auto; gap: 9px; }
.feedback-control {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 69, 50, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #5e4734;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.feedback-control:focus-visible, .feedback-pagination button:focus-visible { outline: 2px solid #9d7958; outline-offset: 3px; }
.feedback-viewport { overflow: hidden; border-radius: 27px; }
.feedback-track { display: flex; width: 100%; will-change: transform; transition: transform 0.72s var(--ease); }
.feedback-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(20px, 2.2vw, 31px) clamp(28px, 5vw, 75px) clamp(20px, 2.2vw, 31px) clamp(20px, 2.2vw, 31px);
  border: 1px solid rgba(99, 73, 50, 0.1);
  border-radius: 27px;
  background: linear-gradient(125deg, #2c2119 0%, #503827 50%, #806047 100%);
  color: #fff;
}
.feedback-slide::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -165px;
  bottom: -280px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 86px rgba(255,255,255,.025);
}
.feedback-slide:nth-child(2) { background: linear-gradient(125deg, #372b21 0%, #68503c 55%, #a88362 100%); }
.feedback-slide:nth-child(3) { background: linear-gradient(125deg, #27221d 0%, #54493d 55%, #907861 100%); }
.feedback-slide:nth-child(4) { background: linear-gradient(125deg, #30231c 0%, #634734 55%, #a57955 100%); }
.feedback-photo {
  position: relative;
  z-index: 1;
  min-height: 368px;
  overflow: hidden;
  border-radius: 19px;
  background: #30271f;
}
.feedback-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(19, 13, 9, .64) 100%); pointer-events: none; }
.feedback-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); transition: transform .7s var(--ease); }
.feedback-slide:hover .feedback-photo img { transform: scale(1.055); }
.feedback-photo-tag { position: absolute; z-index: 1; left: 18px; bottom: 18px; color: rgba(255,255,255,.92); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.feedback-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-width: 0; padding: 22px 22px 22px 0; }
.feedback-stars { margin-bottom: 24px; color: #e6c694; font-size: 13px; letter-spacing: .27em; }
.feedback-stars span { color: rgba(230, 198, 148, .32); }
.feedback-content blockquote { max-width: 670px; margin: 0; font: 400 clamp(23px, 2.46vw, 37px)/1.14 var(--serif); letter-spacing: -0.035em; }
.feedback-author { display: flex; align-items: center; gap: 13px; margin-top: 31px; }
.feedback-author-line { width: 34px; height: 1px; flex: 0 0 34px; background: rgba(255,255,255,.52); }
.feedback-author strong, .feedback-author small { display: block; }
.feedback-author strong { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .015em; }
.feedback-author small { margin-top: 4px; color: rgba(255,255,255,.67); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.feedback-pagination { display: flex; justify-content: center; gap: 8px; padding-top: 18px; }
.feedback-pagination button { width: 29px; height: 3px; padding: 0; border: 0; border-radius: 10px; background: #d7c9ba; cursor: pointer; transition: width .35s var(--ease), background .35s ease; }
.feedback-pagination button.active { width: 49px; background: #9c795a; }
@media (hover: hover) and (pointer: fine) {
  .feedback-control:hover { transform: translateY(-3px); border-color: #8f6c4f; background: #8f6c4f; color: #fff; }
}
@media (prefers-reduced-motion: reduce) { .feedback-track { transition: none; } .feedback-photo img { transition: none; } }

/* =========================================================
   COLLECTIONS (GRID / GALLERY)
   ========================================================= */
.collections-section { padding: 100px 0 150px !important; min-height: 2800px !important; padding-top: 100px; overflow: clip; position: relative; z-index: 1; }
.collections-shell { padding-top: 28px; }
.collections-page-section { padding: 80px 0 30px; }

.collections-hero { padding: 170px 0 95px; background: #eee8dd; border-radius: 22px; }
.collections-hero .display { font-size: clamp(58px, 8vw, 125px); font-family: Georgia, serif; font-weight: 400; }
.collections-hero p { max-width: 620px; margin-top: 25px; color: #69625b; line-height: 1.8; }

.split-heading { display: flex; justify-content: space-between; align-items: end; }
.split-heading p { max-width: 350px; line-height: 1.6; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-card { height: 230px; border-radius: 17px; overflow: hidden; position: relative; color: #fff; }
.category-card:nth-child(1), .category-card:nth-child(8), .category-card:nth-child(14) { grid-column: span 2; height: 300px; }
.category-card img { transition: transform 0.8s var(--ease); }
.category-card:hover img { transform: scale(1.07); }
.category-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17, 13, 10, 0.78), transparent 64%); }
.category-card span { position: absolute; left: 20px; top: 18px; font-size: 8px; opacity: 0.7; }
.category-card h3 { position: absolute; left: 20px; bottom: 20px; font-size: 19px; font-weight: 500; max-width: 70%; }
.category-card i { position: absolute; right: 17px; bottom: 16px; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 50%; display: grid; place-items: center; font-style: normal; transition: 0.3s; }
.category-card:hover i { background: #fff; color: #222; }

.all-collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px 22px; }
.all-collection-card figure { height: 500px; overflow: hidden; border-radius: 18px; }
.all-collection-card:nth-child(3n+1) figure { height: 650px; }
.all-collection-card img { transition: transform 0.8s; }
.all-collection-card:hover img { transform: scale(1.04); }
.all-collection-info { display: grid; grid-template-columns: 1fr 40px; align-items: center; padding: 18px 4px; border-bottom: 1px solid #d7d0c6; }
.all-collection-info span { font-size: 10px; color: #9a8c7e; }
.all-collection-info h2 { font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.all-collection-info i { font-style: normal; text-align: right; }

.collections-more { text-align: center; margin-top: 36px; position: relative !important; top: auto !important; opacity: 1 !important; transform: none !important; pointer-events: auto !important; z-index: 10; }

.outline-btn { display: inline-flex; align-items: center; gap: 16px; border: 1px solid #b8aa99; border-radius: 8px; padding: 15px 22px; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; transition: 0.3s; }
.outline-btn:hover { background: #2e2822; color: #fff; border-color: #2e2822; }

/* =========================================================
   EXPLORE COLLECTIONS (RR-SNAP SLIDER)
   ========================================================= */
.rr-collections-section { position: relative; width: 100vw; margin-left: calc(50% - 50vw); min-height: calc((var(--rr-count, 8) * 620px) + 760px) !important; padding: 95px 0 150px !important; overflow: clip; z-index: 1; }
.rr-collections-heading { margin-bottom: 38px; }
.rr-collections-heading.rr-collections-heading {
  width: calc(100% - var(--content-edge) - var(--content-edge)) !important;
  max-width: none !important;
  margin-left: var(--content-edge) !important;
  margin-right: var(--content-edge) !important;
}
.rr-snap-slider { position: relative; min-height: calc((var(--rr-count, 8) * 620px) + 620px); }

.rr-snap-stage { position: sticky; top: 0; height: 100vh; min-height: 680px; display: grid; place-items: center; overflow: hidden; background: #eee8dd; }
.rr-snap-background { position: absolute; inset: 0; overflow: hidden; }

.rr-bg-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity 0.85s ease, transform 1.15s ease; }
.rr-bg-slide.active { opacity: 1; transform: scale(1); }
.rr-bg-slide:after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(238, 232, 221, 0.72)); }
.rr-bg-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86) contrast(0.96); }

.rr-snap-card-area { position: relative; z-index: 2; width: min(92vw, 520px); height: 510px; display: grid; place-items: center; }

.rr-snap-slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 40px 38px 36px; background: #fff; box-shadow: 0 28px 70px rgba(42, 34, 26, 0.18); opacity: 0; transform: translateY(72px) scale(0.95); pointer-events: none; transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1); }
.rr-snap-slide.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; z-index: 3; }
.rr-snap-slide.past { opacity: 0; transform: translateY(-72px) scale(0.95); }

.rr-card-image-mask { width: 100%; height: 265px; overflow: hidden; background: #e8e2d8; }
.rr-card-image { width: 100%; height: 100%; transform: scale(1.06); transition: transform 0.9s ease; }
.rr-snap-slide.active .rr-card-image { transform: scale(1); }
.rr-card-image img { width: 100%; height: 100%; object-fit: cover; }

.rr-card-text { text-align: center; padding-top: 28px; color: #151417; }
.rr-card-text span { display: none; }
.rr-card-text h3 { margin: 0 0 18px; font-size: clamp(26px, 3vw, 38px); line-height: 1.05; font-weight: 500; letter-spacing: -0.04em; text-transform: none; }
.rr-card-text a { display: inline-flex; color: #151417; font-size: 13px; font-weight: 600; border-bottom: 2px solid currentColor; padding-bottom: 4px; }
.rr-card-text a:hover { color: #ae8957; }
.rr-card-text .rr-catalogue-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 39px; margin: 14px auto 0; padding: 0 17px; border: 1px solid #171715; border-radius: 999px; color: #171715; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.rr-card-text .rr-catalogue-btn:hover { border-color: #ae8957; background: #ae8957; color: #fff; }

.rr-snap-dots { position: absolute; z-index: 4; right: clamp(18px, 4vw, 58px); top: 50%; transform: translateY(-50%); display: grid; gap: 12px; }
.rr-snap-dots button { width: 8px; height: 8px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.42); cursor: pointer; transition: 0.3s; }
.rr-snap-dots button.active { height: 28px; background: #fff; }

.rr-snap-stage.story-ending { opacity: 0; transform: translateY(-26px) scale(0.985); pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease; }

/* =========================================================
   VISIT ROOM (FORM SECTION)
   ========================================================= */
.visit-room { padding: 95px 0 15px; border-top: 1px solid #e1dbd1; max-width: 920px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.visit-intro { max-width: 620px; }
.tiny-line { display: block; width: 32px; height: 1px; background: #d78534; margin: 17px 0 32px; }
.visit-intro h2 { font-family: Georgia, serif; font-size: 58px; line-height: 0.98; font-weight: 400; letter-spacing: -2px; }
.visit-intro h2 em { font-weight: 400; color: #aeaaa4; }
.visit-intro > p:last-child { max-width: 560px; margin-top: 30px; font-size: 14px; line-height: 1.75; color: #9a9590; }

.visit-tabs { display: flex; gap: 35px; margin-top: 62px; border-bottom: 1px solid #e1dbd1; }
.visit-tab { padding: 0 0 18px; color: #a29d97; position: relative; cursor: pointer; }
.visit-tab:after { content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: #dc7b24; transition: 0.35s; }
.visit-tab.active { color: #171513; }
.visit-tab.active:after { right: 0; }

.visit-panels { padding-top: 48px; }
.visit-panel { display: none; }
.visit-panel.active { display: block; }
.visit-help { max-width: 620px; color: #99938d; font-size: 14px; line-height: 1.7; margin-bottom: 38px; }

.visit-form { max-width: 920px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 45px; }
.visit-form label > span { display: block; margin-bottom: 18px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #9d9690; }
.visit-form input, .visit-form textarea { width: 100%; border: 0; border-bottom: 1px solid #aaa39b; background: transparent; padding: 0 0 15px; outline: none; color: #1b1917; }
.visit-form textarea { height: 100px; resize: vertical; }
.full-field { display: block; margin-top: 36px; }

.drop-zone { display: flex !important; min-height: 190px; margin-bottom: 45px; border: 1px dashed #aaa39b; align-items: center; justify-content: center; flex-direction: column; text-align: center; cursor: pointer; padding: 25px; position: relative; overflow: hidden; transition: 0.35s; }
.drop-zone input { display: none; }
.upload-icon { font-size: 30px; color: #a9a49e; margin-bottom: 16px; }
.drop-zone strong { font-size: 14px; color: #aaa39d; font-weight: 400; }
.drop-zone small { font-size: 11px; color: #c0bbb5; margin-top: 9px; }
.photo-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 12px; font-size: 10px; color: #7d756e; }

.visit-submit { margin-top: 42px; border: 0; background: none; color: #db771d; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; padding: 10px 0; cursor: pointer; }
.visit-submit b { margin-left: 14px; font-size: 18px; }
.visit-message { min-height: 20px; margin-top: 12px; font-size: 12px; color: #7b6b59; }

.photo-only-panel { padding-top: 52px; }
.photo-only-panel .visit-panel { display: block !important; }

@keyframes uploadPulse { 0% { transform: scale(0.55); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }

/* =========================================================
   CTA & INSTAGRAM REELS
   ========================================================= */
.cta-panel { height: 320px; position: relative; color: #fff; }
.cta-panel > img { position: absolute; inset: 0; }
.cta-shade { position: absolute; inset: 0; background: rgba(50, 32, 23, 0.48); backdrop-filter: blur(1px); }

.cta-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 35px; }
.cta-content > p { font-size: 8px; text-transform: uppercase; letter-spacing: 0.18em; }
.cta-content h2 { font-size: 31px; font-weight: 500; margin: 13px; }
.cta-content > span { display: block; max-width: 580px; font-size: 10px; line-height: 1.6; color: rgba(255, 255, 255, 0.82); margin-bottom: 19px; }

.instagram-section { padding: 92px 0 100px; background: #f2eee7; overflow: hidden; width: 100vw; margin-left: calc(50% - 50vw); position: relative; z-index: 1; }
.instagram-heading, .instagram-heading.content-width { width: min(920px, calc(100% - 80px)) !important; max-width: 920px !important; margin-left: auto !important; margin-right: auto !important; display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 38px; }
.instagram-heading h2 { font-size: 58px !important; line-height: 0.98 !important; font-weight: 400 !important; letter-spacing: -2px !important; font-family: Georgia, serif; }
.instagram-heading h2 em { font-style: normal; color: #ae8957; font-weight: 400; }
.instagram-heading .section-kicker { margin-bottom: 17px; font-size: 8px; text-transform: uppercase; letter-spacing: 0.15em; color: #9a8267; }
/* Same left edge as the "Bringing Distinction" hero headline. */
.instagram-section .instagram-heading.content-width {
  width: calc(100% - var(--content-edge) - var(--content-edge)) !important;
  max-width: none !important;
  margin-left: var(--content-edge) !important;
  margin-right: var(--content-edge) !important;
}

.instagram-profile-link { display: inline-flex; align-items: center; gap: 15px; color: #2a2724; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid #ae8957; padding-bottom: 8px; margin-bottom: 8px; }

.reels-window { width: 100%; overflow: hidden; overflow-x: auto; scrollbar-width: none; cursor: grab; }
.reels-track { display: flex; gap: 14px; width: max-content; padding-left: max(22px, calc((100vw - 1120px) / 2)); padding-right: 22px; }

.reel-card { position: relative; display: block; flex: 0 0 245px; height: 420px; overflow: hidden; background: #d9d1c7; }
.reel-card img { transition: transform 0.7s ease; }
.reel-card:hover img { transform: scale(1.06); }
.reel-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 13, 12, 0.74), transparent 52%); }
.reel-icon { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, 0.62); border-radius: 50%; color: #fff; font-size: 11px; padding-left: 2px; }
.reel-caption { position: absolute; left: 18px; right: 18px; bottom: 20px; color: #fff; font-size: 12px; line-height: 1.35; }

/* =========================================================
   FLOATING WIDGETS
   ========================================================= */
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 1400; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 17px 0 14px; border-radius: 999px; background: #25d366; color: #fff !important; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 17px 38px rgba(0, 0, 0, 0.27); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { margin-top: 25px; background: #eee9df; border-radius: 18px; padding: 48px 50px 28px; }
.footer-main { display: grid; grid-template-columns: 1.5fr 0.65fr 0.65fr 1fr; gap: 45px; }
.footer-brand p { font-size: 10px; margin: 24px 0 10px; }
.footer-brand > small { display: block; font-size: 7px; color: #8d877f; margin-top: 10px; }

.newsletter { display: flex; gap: 8px; }
.newsletter input { border: 0; background: #fff; border-radius: 7px; padding: 12px; width: 190px; font-size: 9px; outline: none; }
.newsletter button { border: 0; background: #ae8d69; color: #fff; border-radius: 7px; padding: 0 18px; font-size: 9px; cursor: pointer; }

.footer-col h4 { font-size: 10px; margin-bottom: 19px; }
.footer-col a, .footer-col p { display: block; font-size: 8px; line-height: 1.7; margin-bottom: 9px; color: #625e58; }

.socials { display: flex; gap: 7px; margin-top: 14px; }
.socials a { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #b8ad9f; display: grid; place-items: center; }

.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid #d9d2c7; margin-top: 35px; padding-top: 22px; font-size: 7px; color: #8d877f; }
.footer-logo-link { display: inline-flex; align-items: center; }
.footer-logo-image { display: block; width: auto; height: 58px; max-width: 230px; object-fit: contain; }

.site-footer { width: 100vw; margin-left: calc(50% - 50vw); margin-top: 0; background: #151417; color: #fff; border-radius: 0; padding: 72px 0 28px; }
.site-footer-inner { width: min(1320px, calc(100% - 64px)); margin: 0 auto; }
.site-footer .footer-main { display: grid; grid-template-columns: 1.35fr 0.65fr 0.8fr 1fr; gap: 65px; padding: 0; border: 0; }
.site-footer .footer-brand p { max-width: 360px; margin-top: 25px; color: #fff; font-size: 11px; line-height: 1.8; }
.site-footer .footer-col h4 { margin-bottom: 22px; color: #ae8957; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }
.site-footer .footer-col a, .site-footer .footer-col p { display: block; margin-bottom: 11px; color: #fff; font-size: 10px; line-height: 1.7; }
.site-footer .footer-col a:hover { color: #ae8957; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 23px; border-top: 1px solid rgba(255, 255, 255, 0.15); color: #ae8957; font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; }

/* =========================================================
   MEDIA QUERIES (DESKTOP / TABLET)
   ========================================================= */
@media (min-width: 1000px) {
}

@media (max-width: 1050px) {
  :root { --content-edge: 38px; }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-shell { width: 100%; margin: 0 auto; padding: 28px 22px; }
  .floating-header { width: calc(100% - 80px); }
  .desktop-nav { gap: 18px; }
  .content-width { width: calc(100% - 30px); }
  .hero-title { left: var(--content-edge); }
  .hero-copy { right: 35px; }
  .who-section { grid-template-columns: 250px 1fr; }
  .site-footer .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .home-page .shared-floating-header { width: calc(100% - 24px); max-width: none; }
}

/* =========================================================
   MOBILE RESPONSIVE RULES (CONSOLIDATED & FIXED)
   ========================================================= */
@media (max-width: 760px) {
  :root { --content-edge: 24px; }
  body { background: var(--bg); }
  .site-shell { width: 100%; margin: 0; border-radius: 0; padding: 16px 12px 28px; box-shadow: none; }
  
  /* FIXED: Uses container math instead of 100vw to ensure perfect full-bleed without horizontal scrolling */
  .hero-slider, .instagram-section, .site-footer {
    width: calc(100% + 24px) !important;
    max-width: none !important;
    margin-left: -12px !important;
  }
  
  .floating-header { position: fixed; top: 10px; left: 12px; right: 12px; width: auto; max-width: none; height: 58px; grid-template-columns: minmax(0, 1fr) auto 42px; column-gap: 8px; padding: 0 10px 0 14px; overflow: hidden; transform: none; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; justify-self: end; }
  .content-width { width: 100%; }
  
  .hero { height: 700px; border-radius: 20px; }
  .hero-slider { height: 700px !important; border-radius: 0 !important; }
  .hero-image { object-position: 61% center; }
  .hero-title { left: var(--content-edge); right: var(--content-edge); bottom: 170px; }
  .hero-title span, .hero-title strong { font-size: 29px; }
  .hero-copy { left: 24px; right: 24px; bottom: 34px; width: auto; }
  .slider-controls { left: var(--content-edge); bottom: 12px; }
  
  /* Full-width About cards: no horizontal margins or animated layout offsets. */
  .who-section {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 12px;
    margin-top: 18px;
  }
  .stats-card, .who-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 240px;
    margin-inline: 0;
  }
  .who-card { grid-template-columns: minmax(0, 1fr); }
  .who-copy, .who-image { min-width: 0; }
  .who-image { height: 230px; clip-path: none; }

  /* On phones the reveal comes from below, so cards always stay perfectly aligned. */
  .reveal-left, .reveal-right { transform: translate3d(0, 18px, 0); }
  .reveal-up { transform: translate3d(0, 18px, 0); }
  .reveal-up.visible, .reveal-left.visible, .reveal-right.visible { transform: translate3d(0, 0, 0); }
  
  /* Retained critical min-heights here so JS animations don't collapse */
  .process-section { padding: 70px 0; min-height: 2200px !important; padding-bottom: 120px !important; }
  .process-section .section-heading { top: 78px; padding-top: 8px; }
  .process-stack { top: 92px !important; }
  .section-heading h2 { font-size: 29px; }
  .process-body { height: 640px; max-height: 0; grid-template-columns: 1fr; }
  .process-item.active .process-body { max-height: 640px; }
  .process-copy { padding: 40px 25px; }
  .process-copy > b { margin-bottom: 22px; }
  .process-image { height: 300px; border-radius: 0; }
  
  /* Phone: one spacious stacked list, designed for easy thumb scanning. */
  .why-section { padding-bottom: 72px; }
  .why-heading { margin-bottom: 21px; }
  .why-grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .why-card {
    min-height: 108px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    padding: 17px 18px;
    border-radius: 18px;
  }
  .why-card-top { display: contents; }
  .why-icon { grid-column: 1; grid-row: 1 / span 2; width: 46px; height: 46px; border-radius: 14px; }
    .why-card h3 { grid-column: 2; grid-row: 1; align-self: end; margin: 0 0 4px; font-size: 15px; }
  .why-card p { grid-column: 2; grid-row: 2; max-width: none; font-size: 9.5px; }
  .why-card:active { transform: scale(0.985); }
  
  .client-feedback { padding: 0 0 88px; }
  .feedback-heading { align-items: flex-end; gap: 16px; margin-bottom: 22px; }
  .feedback-heading h2 { font-size: 31px; }
  .feedback-controls { gap: 7px; }
  .feedback-control { width: 39px; height: 39px; font-size: 16px; }
  .feedback-viewport, .feedback-slide { border-radius: 21px; }
  .feedback-slide { min-height: 0; grid-template-columns: minmax(0, 1fr); gap: 0; padding: 15px; }
  .feedback-photo { min-height: 0; height: auto; aspect-ratio: 4 / 5; border-radius: 15px; }
  .feedback-photo img { object-position: center top; }
  .feedback-photo-tag { left: 14px; bottom: 14px; font-size: 8px; }
  .feedback-content { padding: 28px 14px 48px; }
  .feedback-stars { margin-bottom: 18px; font-size: 11px; }
  .feedback-content blockquote { font-size: 24px; line-height: 1.15; }
  .feedback-author { margin-top: 25px; }
  .feedback-author small { max-width: 220px; line-height: 1.45; }
    .feedback-pagination { padding-top: 14px; }
  
  .split-heading { display: block; }
  .split-heading p { margin-top: 14px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card, .category-card:nth-child(1), .category-card:nth-child(8), .category-card:nth-child(14) { grid-column: auto; height: 220px; }
  .category-card h3 { font-size: 14px; }
  
  .cta-panel { height: 430px; }
  .cta-content h2 { font-size: 28px; }
  
  .mobile-menu { display: block; position: fixed; inset: 0; z-index: 100; background: #efe9df; padding: 90px 28px 30px; transform: translateX(100%); transition: 0.45s var(--ease); }
  .mobile-menu.open { transform: none; }
  .mobile-close { position: absolute; right: 24px; top: 22px; border: 0; background: none; font-size: 34px; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { font-size: 34px; padding: 11px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .mobile-menu p { position: absolute; bottom: 35px; font-size: 12px; line-height: 1.6; color: #796e62; }
  
  /* Fixed Visit Room paddings/constraints directly to solve your screenshot bug */
  .visit-room { padding: 70px 0 0; max-width: 100%; box-sizing: border-box; }
  .visit-intro h2 { font-size: 46px; }
  .visit-tabs { gap: 20px; overflow-x: auto; }
  .visit-tab { white-space: nowrap; font-size: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  
  .all-collections-grid { grid-template-columns: 1fr; }
  .all-collection-card figure, .all-collection-card:nth-child(3n+1) figure { height: 420px; }
  
  .collections-shell { padding-top: 16px; }
  .collections-hero { padding: 125px 22px 70px; border-radius: 16px; }
  .collections-page-section { padding-top: 55px; }
  
  .site-logo-image { height: 34px; max-width: 145px; }
  .footer-logo-image { height: 48px; max-width: 190px; }
  
  
  .cart-float { 
    position: fixed !important;
    right: 26px !important; /* Increased to pull away from the edge */
    bottom: 84px !important; 
    height: 44px !important; 
    padding: 0 16px !important; 
    z-index: 9999 !important; 
  }
  
  .whatsapp-float { 
    position: fixed !important;
    right: 26px !important; /* Increased to pull away from the edge */
    bottom: 22px !important; 
    width: 52px !important; 
    height: 52px !important; 
    padding: 0 !important; 
    justify-content: center !important; 
    z-index: 9999 !important; 
  }
  .whatsapp-float span { display: none; }
  
  .instagram-section { padding: 70px 0 75px; }
  .instagram-heading { display: block !important; padding: 0 var(--content-edge); margin-bottom: 30px; width: 100% !important; max-width: none !important; }
  .instagram-heading h2 { font-size: 46px !important; line-height: 1 !important; }
  .instagram-profile-link { margin-top: 22px; margin-bottom: 0; }
  .reel-card { flex-basis: 205px; height: 350px; }
  
  .footer { padding: 35px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  
  .site-footer { padding-top: 55px; }
  .site-footer-inner { width: calc(100% - 36px); }
  .site-footer .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .site-footer .footer-bottom, .footer-bottom { display: block; line-height: 2; }
  
  /* --- CONSOLIDATED RR-COLLECTIONS SLIDER (Mobile) --- */
  .rr-collections-section { position: relative !important; width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 96px 0 0 !important; background: #f8f5ef !important; overflow: visible !important; }
  .rr-collections-heading { position: relative !important; z-index: 5 !important; width: 100% !important; max-width: 100% !important; padding: 0 var(--content-edge) !important; margin: 0 0 22px !important; }
  .rr-collections-heading h2 { font-size: 30px !important; line-height: 1.04 !important; letter-spacing: -0.055em !important; margin: 0 0 14px !important; }
  .rr-collections-heading p { font-size: 11px !important; line-height: 1.65 !important; margin: 0 !important; }
  
  .rr-snap-slider { position: relative !important; width: 100% !important; height: auto; min-height: 0 !important; overflow: visible !important; }
  
  .rr-snap-stage { position: sticky !important; top: 86px !important; width: 100% !important; height: calc(100vh - 86px) !important; min-height: 560px !important; overflow: hidden !important; display: flex !important; align-items: center !important; justify-content: center !important; padding: 14px 14px 72px !important; background: #eee8dd !important; }
  .rr-snap-background { position: absolute !important; inset: 0 !important; z-index: 0 !important; display: block !important; }
  .rr-bg-slide { position: absolute !important; inset: 0 !important; opacity: 0 !important; transform: scale(1.04) !important; transition: opacity 0.55s ease, transform 0.9s ease !important; }
  .rr-bg-slide.active { opacity: 0.42 !important; transform: scale(1) !important; }
  .rr-bg-slide img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .rr-bg-slide::after { content: ""; position: absolute; inset: 0; background: rgba(248, 245, 239, 0.55); }
  
  .rr-snap-card-area { position: relative !important; z-index: 2 !important; width: 100% !important; max-width: 350px !important; height: 100% !important; margin: 0 auto !important; padding: 0 !important; overflow: visible !important; }
  
  .rr-snap-slide { position: absolute !important; left: 50% !important; top: 50% !important; width: min(86vw, 340px) !important; max-width: 340px !important; min-height: 410px !important; padding: 18px 18px 26px !important; background: #ffffff !important; border-radius: 0 !important; display: flex !important; flex-direction: column !important; justify-content: flex-start !important; opacity: 0 !important; pointer-events: none !important; transform: translate(-50%, -34%) scale(0.92) !important; transition: opacity 0.48s ease, transform 0.62s cubic-bezier(.22,.61,.36,1) !important; }
  .rr-snap-slide.active { opacity: 1 !important; pointer-events: auto !important; transform: translate(-50%, -50%) scale(1) !important; z-index: 3 !important; }
  .rr-snap-slide.past { opacity: 0 !important; transform: translate(-50%, -66%) scale(0.96) !important; z-index: 1 !important; }
  
  .rr-card-image-mask { width: 100% !important; aspect-ratio: 1.32 / 1 !important; height: auto !important; margin: 0 0 22px !important; overflow: hidden !important; background: #eee8dd !important; }
  .rr-card-image-mask img, .rr-card-image img { width: 100% !important; height: 100% !important; display: block !important; object-fit: cover !important; }
  
  .rr-card-text { width: 100% !important; padding: 0 !important; text-align: center !important; }
  .rr-card-text h3 { font-size: 27px !important; line-height: 1.04 !important; letter-spacing: -0.055em !important; margin: 0 0 15px !important; white-space: normal !important; overflow-wrap: break-word !important; }
  .rr-card-text a { display: inline-block !important; font-size: 12px !important; font-weight: 700 !important; }
  .rr-card-text .rr-catalogue-btn { display: flex !important; width: fit-content; margin: 13px auto 0 !important; padding: 0 14px !important; font-size: 9px !important; border-bottom: 1px solid #171715 !important; }
  .rr-card-number, .rr-card-text span { display: none !important; }
  
  .rr-snap-dots { position: absolute !important; right: 8px !important; top: 50% !important; transform: translateY(-50%) !important; z-index: 8 !important; display: flex !important; flex-direction: column !important; gap: 9px !important; }
  .rr-snap-dots button { width: 7px !important; height: 7px !important; border-radius: 999px !important; border: 1px solid rgba(255,255,255,.95) !important; background: transparent !important; padding: 0 !important; }
  .rr-snap-dots button.active { height: 28px !important; background: #ffffff !important; }
  .rr-snap-stage.story-ending { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
}

@media (max-width: 460px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card:nth-child(1), .category-card:nth-child(8), .category-card:nth-child(14) { height: 280px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .newsletter input { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; margin: 0 !important; }
  .hero-image, .reels-track { transform: none !important; }
  .page-loader { display: none !important; }
}

/* =========================================================
   HOME ABOUT SECTION — DESKTOP CONTENT-SAFE HEIGHT
   ========================================================= */
@media (min-width: 761px) {
  .who-section {
    align-items: stretch;
  }

  .stats-card,
  .who-card {
    height: auto;
    min-height: 360px;
  }

  .who-card {
    grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  }

  .who-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 32px 38px 30px 38px;
  }

  .who-copy h2 {
    margin: 8px 0 14px;
  }

  .who-copy p {
    margin-bottom: 10px;
  }

  .who-image {
    min-width: 0;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .stats-card,
  .who-card { min-height: 380px; }
  .who-card { grid-template-columns: minmax(0, 1.14fr) minmax(220px, 0.86fr); }
  .who-copy { padding: 28px 30px 26px; }
}

/* Editable footer social profiles */
.site-footer .footer-follow{margin-top:24px}.site-footer .footer-follow>span{display:block;margin-bottom:10px;color:#ae8957;font-size:10px;font-weight:600;letter-spacing:.14em;text-transform:uppercase}.site-footer .footer-socials{display:flex;flex-wrap:wrap;gap:9px}.site-footer .footer-socials a{width:34px!important;height:34px!important;display:grid!important;place-items:center;margin:0!important;border:1px solid rgba(255,255,255,.28);border-radius:50%;color:#fff;transition:transform .22s ease,border-color .22s ease,color .22s ease}.site-footer .footer-socials a:hover{color:#ae8957;border-color:#ae8957;transform:translateY(-2px)}.site-footer .footer-socials svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.site-footer .footer-socials svg .fill{fill:currentColor;stroke:none}.site-footer .footer-social-initial{font-size:12px;font-weight:700;line-height:1}


/* Visit-room image previews, limits and upload feedback */
.drop-zone-limit{display:block!important;margin-top:4px!important;color:#8c7c6e!important;font-weight:600;letter-spacing:.03em}.drop-zone.is-dragging{border-color:#a9845d;background:rgba(169,132,93,.07);transform:translateY(-2px)}.drop-zone.has-photo-previews{align-items:stretch;padding:24px}.drop-zone.has-photo-previews>.upload-pulse,.drop-zone.has-photo-previews>.upload-icon{display:none}.photo-list{display:grid;width:100%;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:18px}.photo-preview-card{position:relative;display:block;min-width:0;overflow:hidden;border:1px solid rgba(91,75,60,.18);border-radius:13px;background:#fff;box-shadow:0 8px 22px rgba(50,38,28,.08);opacity:0;transform:translateY(10px) scale(.97);animation:visitPhotoIn .38s var(--photo-delay,0ms) cubic-bezier(.2,.75,.2,1) forwards}.photo-preview-card img{display:block;width:100%;height:132px;object-fit:cover;background:#e8e0d7;transition:transform .35s ease}.photo-preview-card:hover img{transform:scale(1.035)}.photo-preview-meta{display:flex!important;align-items:center;justify-content:space-between;gap:8px;padding:9px 10px;background:#fff}.photo-preview-card small{display:block!important;min-width:0;margin:0!important;padding:0!important;overflow:hidden;color:#62574e!important;font-size:9px!important;text-align:left;text-overflow:ellipsis;white-space:nowrap}.photo-preview-card b{flex:0 0 auto;color:#a9845d;font-size:8px;font-weight:700}.photo-preview-card button{position:absolute;z-index:2;top:7px;right:7px;display:grid;width:27px;height:27px;place-items:center;border:1px solid rgba(255,255,255,.28);border-radius:50%;background:rgba(28,23,19,.84);color:#fff;font-size:18px;line-height:1;cursor:pointer;backdrop-filter:blur(8px);transition:transform .2s ease,background .2s ease}.photo-preview-card button:hover{transform:scale(1.09);background:#a34e43}.photo-preview-fallback{display:grid;height:132px;place-items:center;background:#e8e0d7;color:#75695f;font-size:10px;font-weight:700;letter-spacing:.12em}.visit-message.is-success{color:#417348}.visit-message.is-error{color:#a54840}.visit-submit.is-uploading{opacity:.48;pointer-events:none}
.visit-upload-popup{position:fixed;z-index:2147483000;right:26px;bottom:26px;display:grid;width:min(470px,calc(100% - 32px));grid-template-columns:48px minmax(0,1fr) 30px;align-items:center;gap:14px;padding:17px 18px 20px;border:1px solid rgba(255,255,255,.13);border-radius:16px;background:rgba(31,27,23,.97);color:#fff;box-shadow:0 28px 80px rgba(20,15,12,.34);opacity:0;transform:translateY(34px) scale(.95);transform-origin:right bottom;pointer-events:none;overflow:hidden;transition:opacity .32s ease,transform .42s cubic-bezier(.16,1,.3,1)}.visit-upload-popup.is-visible{opacity:1;transform:none;pointer-events:auto}.visit-upload-popup.is-leaving{opacity:0;transform:translateY(18px) scale(.98)}.visit-popup-icon{display:grid;width:46px;height:46px;place-items:center;border-radius:50%;font-size:22px;font-weight:700}.visit-upload-popup.is-success .visit-popup-icon{background:#e1f0e3;color:#397046}.visit-upload-popup.is-error .visit-popup-icon{background:#f6dfdc;color:#a7443c}.visit-popup-copy{min-width:0}.visit-popup-copy strong{display:block;margin-bottom:4px;font-family:Georgia,serif;font-size:17px;font-weight:500}.visit-popup-copy span{display:block;color:rgba(255,255,255,.76);font-size:12px;line-height:1.55}.visit-upload-popup>button{display:grid;width:28px;height:28px;place-items:center;border:0;border-radius:50%;background:rgba(255,255,255,.08);color:#fff;font-size:18px;cursor:pointer}.visit-popup-progress{position:absolute;right:0;bottom:0;left:0;height:4px;transform-origin:left;background:#6d9a70;animation:visitPopupProgress 6.2s linear forwards}.visit-upload-popup.is-error .visit-popup-progress{background:#c15b50;animation-duration:7.6s}@keyframes visitPhotoIn{to{opacity:1;transform:none}}@keyframes visitPopupProgress{from{transform:scaleX(1)}to{transform:scaleX(0)}}
@media(max-width:760px){.photo-list{grid-template-columns:repeat(3,minmax(0,1fr))}.photo-preview-card img,.photo-preview-fallback{height:110px}.visit-upload-popup{right:16px;bottom:16px}}@media(max-width:520px){.photo-list{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.photo-preview-card img,.photo-preview-fallback{height:104px}.visit-upload-popup{grid-template-columns:40px minmax(0,1fr) 26px;padding:14px 14px 18px}.visit-popup-icon{width:40px;height:40px}.visit-popup-copy strong{font-size:15px}.visit-popup-copy span{font-size:11px}}
@media(prefers-reduced-motion:reduce){.photo-preview-card,.visit-upload-popup,.visit-popup-progress{animation:none!important;transition:none!important}.photo-preview-card{opacity:1;transform:none}}
