/* ============================================================
   FASHION BROKER — SHARED STYLESHEET
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --black:    #0a0a0a;
  --charcoal: #1c1c1e;
  --brown:    #3a2d25;
  --camel:    #b5894b;
  --camel-lt: #c9a06a;
  --ivory:    #f7f5f0;
  --cream:    #ede9e0;
  --gray:     #888;
  --gray-lt:  #ccc;
  --white:    #fff;

  --head-h:   72px;
  --radius:   2px;
  --easing:   cubic-bezier(.4,0,.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, .section-heading, .hero-headline, .featured-headline,
.final-cta-headline, .page-hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
}

em { font-style: italic; }

/* ---- JS-READY REVEAL SAFETY ---- */
/* Opacity/transform only applied when JS has run and added .js-ready.
   Without JS, all content remains fully visible. */
.js-ready .reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--easing), transform .65s var(--easing);
  transition-delay: var(--delay, 0s);
}
.js-ready .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- CUSTOM CURSOR (desktop only) ---- */
@media (hover: hover) {
  .cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
  }
  .cursor {
    width: 7px;
    height: 7px;
    background: var(--camel);
    transform: translate(-50%, -50%);
  }
  .cursor-follower {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(181,137,75,.5);
    transform: translate(-50%, -50%);
    transition: transform .28s var(--easing);
  }
  .cursor.hidden, .cursor-follower.hidden { opacity: 0; }
}
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 1.9rem;
  border-radius: var(--radius);
  transition: background .28s var(--easing), color .28s var(--easing), border-color .28s var(--easing);
}

.btn-primary { background: var(--camel); color: var(--white); }
.btn-primary:hover { background: var(--camel-lt); }

.btn-outline { background: transparent; color: var(--camel); border: 1px solid var(--camel); }
.btn-outline:hover { background: var(--camel); color: var(--white); }

/* .btn-ghost { background: transparent; color: var(--black); border: 1px solid rgba(10,10,10,.22); } */
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.85);
}
.btn-ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.btn-ghost-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.38); }
.btn-ghost-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--camel);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .3s var(--easing), transform .3s var(--easing);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--camel-lt); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--head-h);
  transition: background .35s var(--easing), box-shadow .35s var(--easing);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 1440px;
  margin: 0 auto;
  gap: 1.5rem;
}

.header.scrolled { background: var(--charcoal); box-shadow: 0 1px 16px rgba(0,0,0,.18); }

/* LOGO */
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo-monogram {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(181,137,75,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--camel);
  letter-spacing: .05em;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .02em;
}

/* NAV */
.nav { margin-left: auto; }
.nav-list { display: flex; gap: .2rem; align-items: center; }

.nav-link {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  padding: .5rem .7rem;
  border-radius: var(--radius);
  transition: color .22s var(--easing);
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--camel); }

.header-cta { margin-left: .75rem; padding: .6rem 1.2rem; font-size: .76rem; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--easing), opacity .3s var(--easing);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--easing);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-nav-list { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--ivory);
  letter-spacing: -.01em;
  transition: color .22s;
}
.mobile-nav-link:hover { color: var(--camel); }
.mobile-cta { margin-top: 1rem; }

/* ============================================================
   SECTION INTROS & LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: .9rem;
}
.section-label.light { color: var(--camel-lt); }

.section-intro { text-align: center; max-width: 660px; margin: 0 auto 4rem; }
.section-heading { font-size: clamp(1.85rem, 3.2vw, 2.65rem); color: var(--charcoal); }
.section-heading.light-heading { color: var(--ivory); }
.section-sub { color: var(--gray); margin-top: 1rem; font-size: 1rem; line-height: 1.7; }
.section-sub.muted { color: rgba(255,255,255,.48); }

/* ============================================================
   HERO (index.html)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }

/* Softer, more understated overlay — no heavy bottom crush */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.62) 0%, rgba(10,10,10,.2) 55%, rgba(10,10,10,.04) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  max-width: 860px;
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.label-pill {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.35rem;
}
.hero-headline .reveal-line { display: block; }
.hero-headline .italic { font-style: italic; color: var(--camel-lt); }

.hero-sub {
  color: rgba(255,255,255,.62);
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* TICKER (minimal, non-intrusive) */
.ticker-wrap {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,10,.35);
  overflow: hidden;
  padding: .75rem 0;
}
.ticker {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}
.ticker span {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.ticker-sep { color: var(--camel) !important; opacity: .5; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PAGE HERO (inner pages) — softer overlays
   ============================================================ */
.page-hero {
  position: relative;
  height: clamp(420px, 52vw, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--head-h);
}
.page-hero--short { height: clamp(300px, 38vw, 460px); }

.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.65) 0%, rgba(10,10,10,.3) 50%, rgba(10,10,10,.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 5.5rem) clamp(2.5rem, 5vw, 4.5rem);
  max-width: 780px;
}
.page-hero-label {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: .8rem;
}
.page-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: .9rem;
  line-height: 1.12;
}
.page-hero-sub { color: rgba(255,255,255,.62); font-size: 1rem; max-width: 520px; line-height: 1.7; }

/* ============================================================
   ABOUT SECTION (homepage intro)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-text .section-heading { margin-bottom: 1.25rem; }
.about-body { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }

.about-collage { display: flex; gap: .6rem; height: clamp(310px, 44vw, 480px); }
.collage-main { flex: 0 0 56%; overflow: hidden; border-radius: var(--radius); }
.collage-main img { height: 100%; object-fit: cover; transition: transform .7s var(--easing); }
.collage-main:hover img { transform: scale(1.03); }
.collage-side { flex: 1; display: flex; flex-direction: column; gap: .6rem; min-width: 0; }
.collage-sm { flex: 1; overflow: hidden; border-radius: var(--radius); min-height: 0; }
.collage-sm img { height: 100%; object-fit: cover; transition: transform .7s var(--easing); }
.collage-sm:hover img { transform: scale(1.04); }

/* ============================================================
   SERVICES GRID (homepage preview)
   ============================================================ */
.services { background: var(--charcoal); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.service-card {
  padding: 2.5rem 2rem;
  background: var(--charcoal);
  transition: background .3s var(--easing);
}
/* subtle, non-dramatic hover */
.service-card:hover { background: rgba(255,255,255,.04); }
.service-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .82rem;
  color: var(--camel);
  margin-bottom: 1.2rem;
  letter-spacing: .08em;
}
.service-title { font-size: 1.15rem; color: var(--ivory); margin-bottom: .7rem; }
.service-desc { color: rgba(255,255,255,.48); font-size: .9rem; line-height: 1.75; margin-bottom: 1.4rem; }
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--camel);
  transition: gap .25s var(--easing);
}
.service-learn-more:hover { gap: .65rem; }
.services-cta { text-align: center; margin-top: 3.5rem; }

/* ============================================================
   SERVICES PAGE — ALTERNATING SECTIONS
   ============================================================ */
.services-page-wrap { padding-bottom: 4rem; }
.svc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(10,10,10,.07);
}
.svc-section.alt { direction: rtl; }
.svc-section.alt > * { direction: ltr; }

.svc-img { overflow: hidden; border-radius: var(--radius); height: clamp(320px, 38vw, 500px); }
.svc-img img { height: 100%; object-fit: cover; transition: transform .7s var(--easing); }
.svc-img:hover img { transform: scale(1.025); }

.svc-num {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 1rem;
}
.svc-title { font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--charcoal); margin-bottom: 1.2rem; }
.svc-body { color: var(--gray); line-height: 1.8; margin-bottom: 1.65rem; font-size: .98rem; }
.svc-includes { margin-bottom: 1.85rem; display: flex; flex-direction: column; gap: .5rem; }
.svc-includes li {
  font-size: .88rem;
  color: var(--charcoal);
  padding-left: 1.1rem;
  position: relative;
}
.svc-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--camel);
}

/* ============================================================
   PROCESS — HOMEPAGE PREVIEW
   ============================================================ */
.process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--camel);
  opacity: .28;
  line-height: 1;
  margin-bottom: .7rem;
}
.step-line { width: 2rem; height: 1.5px; background: var(--camel); margin-bottom: 1.2rem; }
.step-title { font-size: 1.1rem; color: var(--charcoal); margin-bottom: .55rem; }
.step-desc { color: var(--gray); font-size: .9rem; line-height: 1.75; }
.process-cta { text-align: center; margin-top: 1rem; }

/* ============================================================
   PROCESS FULL (about.html)
   ============================================================ */
.process-full { display: flex; flex-direction: column; }
.process-full-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,.08);
}
.process-full-step:first-child { padding-top: 0; }
.process-full-step:last-child { border-bottom: none; }
.pf-left { display: flex; align-items: flex-start; padding-top: .2rem; }
.pf-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: var(--camel);
  opacity: .25;
  line-height: 1;
  font-weight: 700;
}
.pf-title { font-size: 1.4rem; color: var(--charcoal); margin-bottom: .8rem; }
.pf-body { color: var(--gray); line-height: 1.8; margin-bottom: 1.2rem; font-size: .98rem; }
.pf-list { display: flex; flex-direction: column; gap: .4rem; }
.pf-list li {
  font-size: .88rem;
  color: var(--charcoal);
  padding-left: 1.1rem;
  position: relative;
}
.pf-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--camel);
}

/* ============================================================
   ABOUT STORY GRID (about.html)
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.about-story-body { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-story-img {
  overflow: hidden;
  border-radius: var(--radius);
  height: clamp(360px, 48vw, 560px);
}
.about-story-img img { height: 100%; object-fit: cover; }

/* ============================================================
   PHILOSOPHY (about.html)
   ============================================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.philosophy-card {
  background: var(--ivory);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10,10,10,.07);
  transition: border-color .3s var(--easing);
}
.philosophy-card:hover { border-color: rgba(181,137,75,.45); }
.philosophy-icon { font-size: 1.25rem; color: var(--camel); margin-bottom: 1.1rem; }
.philosophy-name { font-size: 1.05rem; color: var(--charcoal); margin-bottom: .6rem; font-weight: 700; }
.philosophy-desc { color: var(--gray); font-size: .9rem; line-height: 1.75; }

/* ============================================================
   APPROACH QUOTE (about.html)
   ============================================================ */
.approach-quote { position: relative; padding: clamp(5rem, 9vw, 8rem) 0; }
.approach-quote-bg { position: absolute; inset: 0; }
.approach-quote-bg img { height: 100%; object-fit: cover; }
.approach-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.6);
}
.quote-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--camel);
  opacity: .6;
  line-height: .7;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.quote-sub { color: rgba(255,255,255,.55); font-size: .95rem; }

/* ============================================================
   CUSTOM ORDERS PAGE
   ============================================================ */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.custom-image { overflow: hidden; border-radius: var(--radius); height: clamp(340px, 45vw, 540px); }
.custom-image img { height: 100%; object-fit: cover; }
.custom-body { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.category-tile {
  background: var(--white);
  border: 1px solid rgba(10,10,10,.07);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color .3s var(--easing);
}
/* No translateY — calm hover */
.category-tile:hover { border-color: rgba(181,137,75,.45); }
.tile-icon { font-size: 1.25rem; color: var(--camel); margin-bottom: .9rem; }
.tile-title { font-size: 1rem; color: var(--charcoal); margin-bottom: .55rem; font-weight: 700; }
.tile-desc { font-size: .88rem; color: var(--gray); line-height: 1.75; }

/* CO PROCESS */
.co-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.co-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--camel);
  opacity: .22;
  line-height: 1;
  margin-bottom: .9rem;
}
.co-step-title { font-size: 1.2rem; color: var(--ivory); margin-bottom: .7rem; }
.co-step-desc { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.75; }

/* ============================================================
   FEATURED SECTION (homepage)
   ============================================================ */
.featured { position: relative; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.featured-img-wrap { position: absolute; inset: 0; }
.featured-img-wrap img { height: 100%; object-fit: cover; }
/* Softer, less dramatic directional overlay */
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.72) 40%, rgba(10,10,10,.12) 100%);
}
.featured-content { position: relative; z-index: 2; max-width: 560px; }
.featured-headline {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  color: var(--white);
  margin: 1rem 0 1.4rem;
  line-height: 1.15;
}
.featured-body { color: rgba(255,255,255,.58); font-size: .98rem; line-height: 1.8; margin-bottom: 2rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--charcoal); }
.slider-wrap { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform .5s var(--easing);
}
.slide { flex: 0 0 100%; padding: 0 .25rem; }
.tcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 760px;
  margin: 0 auto;
}
.tcard-quote { font-size: 1.3rem; color: var(--camel); opacity: .7; margin-bottom: 1.2rem; }
.tcard-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  margin-bottom: 2rem;
}
.tcard-author { display: flex; align-items: center; gap: 1rem; }
.author-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(181,137,75,.25);
  color: var(--camel);
  font-weight: 700;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-author strong { display: block; color: var(--ivory); font-size: .9rem; }
.tcard-author span { display: block; color: var(--gray); font-size: .8rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: background .25s var(--easing), border-color .25s var(--easing), color .25s var(--easing);
}
.slider-btn:hover { background: rgba(181,137,75,.2); border-color: var(--camel); color: var(--camel); }
.slider-dots { display: flex; gap: .45rem; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .25s var(--easing), transform .25s var(--easing);
}
.dot.active { background: var(--camel); transform: scale(1.25); }
.testimonials-cta { text-align: center; margin-top: 2.75rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  min-height: 58vh;
  display: flex;
  align-items: center;
}
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { height: 100%; object-fit: cover; }
/* Softer overlay — let the image breathe */
.final-cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,.52); }
.final-cta-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta-headline {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  color: var(--white);
  margin: 1rem 0 1.2rem;
}
.final-cta-sub { color: rgba(255,255,255,.58); font-size: 1rem; margin-bottom: 2.25rem; line-height: 1.7; }
.final-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: clamp(4rem, 7vw, 6rem) 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo .logo-text { color: var(--white); }
.footer-tagline { color: var(--gray); font-size: .88rem; margin: 1rem 0 .4rem; }
.footer-location { color: rgba(255,255,255,.28); font-size: .78rem; }
.footer-socials { display: flex; gap: .65rem; margin-top: 1.5rem; }
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  transition: background .25s var(--easing), border-color .25s var(--easing), color .25s var(--easing);
}
.social-link:hover { background: rgba(181,137,75,.18); border-color: var(--camel); color: var(--camel); }

.footer-col-heading {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .86rem; transition: color .22s; }
.footer-links a:hover { color: var(--camel); }

.footer-bottom { padding-top: 2rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.22); font-size: .76rem; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.75rem;
  align-items: start;
}
.booking-form-inner {
  background: var(--white);
  border: 1px solid rgba(10,10,10,.06);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
}
.form-heading { margin-bottom: 2.25rem; }

/* FORMS */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group label span { color: var(--camel); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem .95rem;
  border: 1px solid rgba(10,10,10,.12);
  border-radius: var(--radius);
  font-size: .93rem;
  color: var(--charcoal);
  background: var(--ivory);
  resize: vertical;
  transition: border-color .22s var(--easing), box-shadow .22s var(--easing);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--camel);
  box-shadow: 0 0 0 3px rgba(181,137,75,.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c0392b; }
.field-error { font-size: .76rem; color: #c0392b; min-height: 1.1em; }

.form-disclaimer { font-size: .78rem; color: var(--gray); margin-bottom: 1.4rem; font-style: italic; line-height: 1.6; }

/* SUCCESS */
.form-success { text-align: center; padding: 3rem 2rem; }
.form-success[hidden] { display: none; }
.success-icon {
  width: 52px;
  height: 52px;
  background: var(--camel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 auto 1.4rem;
}
.success-title { font-size: 1.45rem; color: var(--charcoal); margin-bottom: .9rem; }
.success-body { color: var(--gray); font-size: .93rem; line-height: 1.75; margin-bottom: .5rem; }

/* BOOKING SIDEBAR */
.booking-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.deposit-card { background: var(--charcoal); border-radius: var(--radius); }
.deposit-card-inner { padding: 2rem 1.75rem; }
.deposit-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.deposit-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--camel); }
.deposit-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(181,137,75,.14);
  color: var(--camel);
  padding: .2rem .6rem;
  border-radius: 20px;
  border: 1px solid rgba(181,137,75,.25);
}
.deposit-price { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--ivory); margin-bottom: .9rem; }
.deposit-price strong { color: var(--camel); }
.deposit-desc { color: rgba(255,255,255,.45); font-size: .86rem; line-height: 1.7; margin-bottom: 1.4rem; }
.deposit-features { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.4rem; }
.deposit-features li { display: flex; align-items: center; gap: .65rem; font-size: .84rem; color: rgba(255,255,255,.58); }
.deposit-features li i { color: var(--camel); font-size: .72rem; }
.deposit-note { font-size: .73rem; color: rgba(255,255,255,.25); font-style: italic; }

.booking-contact-quick {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid rgba(10,10,10,.06);
}
.booking-contact-quick h4 { font-size: .95rem; color: var(--charcoal); margin-bottom: .5rem; font-weight: 700; }
.booking-contact-quick p { font-size: .86rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(10,10,10,.08); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  padding: 1.4rem 0;
  font-size: .97rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color .22s var(--easing);
}
.faq-q:hover { color: var(--camel); }
.faq-q[aria-expanded="true"] { color: var(--camel); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(10,10,10,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--camel);
  transition: transform .3s var(--easing), border-color .22s var(--easing);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(181,137,75,.5);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--easing);
}
.faq-a p {
  padding-bottom: 1.4rem;
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.info-card {
  background: var(--white);
  border: 1px solid rgba(10,10,10,.07);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: border-color .3s var(--easing);
}
.info-card:hover { border-color: rgba(181,137,75,.4); }
.info-card-icon { font-size: 1.25rem; color: var(--camel); margin-bottom: 1rem; }
.info-card-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .45rem; }
.info-card-body { font-size: .86rem; color: var(--gray); line-height: 1.7; margin-bottom: .8rem; }
.info-card-link { font-size: .84rem; font-weight: 600; color: var(--camel); }
a.info-card-link:hover { text-decoration: underline; }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.75rem;
  align-items: start;
}
.contact-form-left {
  background: var(--white);
  border: 1px solid rgba(10,10,10,.06);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
}
.contact-form-right { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-book-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.contact-book-card .section-label { color: var(--camel-lt); }
.contact-book-card h3 {
  font-size: 1.2rem;
  color: var(--ivory);
  margin: .7rem 0 .8rem;
  font-family: 'Playfair Display', serif;
}
.contact-book-card p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.65; }

.social-links-block {
  background: var(--ivory);
  border: 1px solid rgba(10,10,10,.07);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.social-links-title { font-size: .95rem; font-weight: 700; color: var(--charcoal); margin-bottom: .35rem; }
.social-links-sub { font-size: .84rem; color: var(--gray); margin-bottom: 1.1rem; }
.social-links-row { display: flex; gap: .65rem; }
.social-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .9rem .5rem;
  border: 1px solid rgba(10,10,10,.09);
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s var(--easing), border-color .25s var(--easing), color .25s var(--easing);
}
.social-card i { font-size: 1.2rem; }
.social-card:hover { background: var(--camel); border-color: var(--camel); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-info-row     { grid-template-columns: repeat(2, 1fr); }
  .booking-layout       { grid-template-columns: 1fr; }
  .booking-sidebar      { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-form-wrap    { grid-template-columns: 1fr; }
  .svc-section          { grid-template-columns: 1fr; }
  .svc-section.alt      { direction: ltr; }
  .svc-img              { height: clamp(240px, 48vw, 380px); }
}

@media (max-width: 900px) {
  .about-grid           { grid-template-columns: 1fr; }
  .about-story-grid     { grid-template-columns: 1fr; }
  .custom-grid          { grid-template-columns: 1fr; }
  .process-steps        { grid-template-columns: repeat(2, 1fr); }
  .co-process           { grid-template-columns: 1fr; gap: 2rem; }
  .category-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .footer-brand         { grid-column: 1 / -1; }
  .process-full-step    { grid-template-columns: 55px 1fr; }
  .pf-num               { font-size: 2rem; }
}

@media (max-width: 768px) {
  .nav, .header-cta     { display: none; }
  .hamburger            { display: flex; }
  .services-grid        { grid-template-columns: 1fr; }
  .philosophy-grid      { grid-template-columns: 1fr; }
  .contact-info-row     { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .booking-sidebar      { grid-template-columns: 1fr; }
  .category-grid        { grid-template-columns: 1fr; }
  .process-steps        { grid-template-columns: 1fr; }
  .hero-headline        { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-actions         { flex-direction: column; align-items: flex-start; }
  .about-collage        { height: clamp(220px, 58vw, 340px); }
}

@media (max-width: 560px) {
  .footer-grid          { grid-template-columns: 1fr; }
  .social-links-row     { flex-direction: column; }
  .final-cta-actions    { flex-direction: column; align-items: center; }
  .tcard                { padding: 1.75rem 1.25rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
  .js-ready .reveal-up { transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
/* HERO IMAGE + READABILITY FIX */
.hero {
  position: relative;
  min-height: 820px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.hero-img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.68) saturate(0.78) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(12, 10, 8, 0.88) 0%,
      rgba(12, 10, 8, 0.72) 34%,
      rgba(12, 10, 8, 0.42) 58%,
      rgba(12, 10, 8, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 8, 6, 0.50) 0%,
      rgba(10, 8, 6, 0.04) 50%,
      rgba(10, 8, 6, 0.20) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content .eyebrow,
.hero-content .hero-kicker {
  color: #f5e4c4;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.hero-content h1 {
  color: #fffaf2;
  text-shadow:
    0 4px 22px rgba(0, 0, 0, 0.78),
    0 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-content h1 em,
.hero-content h1 .accent {
  color: #d6a958;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.78);
}

.hero-content p {
  color: rgba(255, 250, 242, 0.94);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82);
  max-width: 620px;
}

/* Header readability on bright hero */
.site-header,
.header,
header.site-header {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.90) 0%,
    rgba(8, 8, 8, 0.72) 72%,
    rgba(8, 8, 8, 0.35) 100%
  ) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 185, 122, 0.18);
}

.site-header a,
.header a,
header.site-header a,
.nav-link {
  color: #fffaf2 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}

.site-header a:hover,
.header a:hover,
header.site-header a:hover,
.nav-link:hover {
  color: #d8ad61 !important;
}

.logo,
.logo-text,
.brand-name {
  color: #fffaf2 !important;
}

.hero .btn-secondary {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.8);
  background: rgba(12, 10, 8, 0.32);
  backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
  background: #fffaf2;
  color: #15120f;
}

@media (max-width: 768px) {
  .hero {
    min-height: 720px;
  }

  .hero-img {
    object-position: 60% center;
    filter: brightness(0.55) saturate(0.72) contrast(1.08);
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(150, 147, 144, 0.83) 0%,
        rgba(120, 120, 120, 0.62) 72%,
        rgba(179, 179, 179, 0.42) 100%
      ),
      linear-gradient(
        0deg,
        rgba(117, 117, 117, 0.65) 0%,
        rgba(135, 135, 135, 0.15) 65%
      );
  }
}
