
/* ===== VARIABLES ===== */
:root {
  --bg:        #fafaf8;   /* warm off-white page background   */
  --z950:      #f1f0ed;   /* subtle card / section background */
  --z900:      #e8e6e1;   /* borders, dividers                */
  --z800:      #d5d3ce;   /* stronger borders                 */
  --z700:      #b0ada7;   /* placeholder / disabled           */
  --z600:      #9a9792;   /* muted icons                      */
  --z500:      #67645e;   /* secondary text / accent          */
  --z400:      #525252;   /* body text                        */
  --z300:      #3a3935;   /* primary text                     */
  --z100:      #1a1917;   /* near-black for CTA section       */
  --white:     #ffffff;
  --accent:    #67645e;   /* warm grey-brown — Rhodes primary */
  --accent-dk: #4a4843;   /* hover darken                     */
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { /* scroll-behavior handled by Lenis */ }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--z400);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { background: none; border: none; font-family: inherit; cursor: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease;
}
.loader-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--z600);
}
.loader-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--z300);
  text-transform: uppercase;
}
.loader-bar-wrap {
  width: 260px;
  height: 1px;
  background: var(--z900);
  position: relative;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.06s linear;
}
.loader-pct {
  font-size: 0.75rem;
  color: var(--z600);
  letter-spacing: 0.1em;
}

/* ===== CUSTOM CURSOR ===== */
#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              height 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.2s;
  opacity: 0.7;
}
#cursor.hovered {
  width: 40px; height: 40px;
  opacity: 0.15;
}
@media (hover: none) { #cursor { display: none; } }

/* ===== FILM GRAIN ===== */
#grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
}

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0.6rem; left: 0; right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  z-index: 1000;
  background: rgba(250,250,248,0);
  transition: background 0.4s, border-color 0.4s, transform 0.35s ease;
  border-bottom: 1px solid transparent;
}
#header.hidden {
  transform: translateY(-100%);
}
#header.scrolled {
  top: 0;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--z900);
  transition: background 0.4s, border-color 0.4s, transform 0.35s ease, top 0.35s ease;
}
.header-logo {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--z300);
  text-transform: uppercase;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.header-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--z600);
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--z300); }
.header-cta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: 40px;
  padding: 8px 20px;
  color: var(--accent);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent); color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--z300);
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== MOBILE DRAWER ===== */
#drawer {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#drawer.open { opacity: 1; pointer-events: all; }
.drawer-nav a {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--z700);
  text-align: center;
  transition: color 0.2s;
  line-height: 1.15;
}
.drawer-nav a:hover { color: var(--z300); }
.drawer-bottom {
  position: absolute; bottom: 3rem; left: 0; right: 0;
  text-align: center;
}
.drawer-phone {
  font-size: 1.2rem;
  color: var(--z300);
  display: block;
  margin-bottom: 0.5rem;
}
.drawer-email { font-size: 0.85rem; color: var(--z600); }
.drawer-close {
  position: absolute; top: 1.5rem; right: clamp(1.5rem,5vw,3rem);
  font-size: 1.5rem;
  color: var(--z600);
  cursor: none;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--z300); }

/* ===== SECTION BASE ===== */
section { padding: 7rem clamp(2rem, 5vw, 5rem); }
.section-inner { max-width: 1320px; margin: 0 auto; }
.sub-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z600);
  margin-bottom: 0.55rem;
  display: block;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--z300);
}
h2 em { font-style: italic; font-family: 'Playfair Display', Georgia, serif; text-transform: none; font-weight: 400; color: var(--accent); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  padding: calc(1.5rem + 72px + 3rem) clamp(2rem, 5vw, 5rem) 6rem;
  background: var(--bg);
}
.hero-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z600);
}
.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--z300);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: var(--z500);
  max-width: 440px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 40px;
  padding: 13px 26px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid var(--accent);
  display: inline-block;
}
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--accent);
  border-radius: 40px;
  padding: 13px 26px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-badge {
  font-size: 0.75rem;
  color: var(--z600);
}
.hero-badge::before { content: '✓ '; color: var(--accent); font-weight: 600; }
.hero-visual { position: relative; overflow: hidden; border-radius: 20px; transform: translateZ(0); clip-path: inset(0 round 20px); aspect-ratio: 1/1; }
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
/* hover scale removed — replaced by GSAP 3D tilt */

/* ===== MARQUEE ===== */
#marquee-section {
  border-top: 1px solid var(--z900);
  border-bottom: 1px solid var(--z900);
  padding: 1rem 0;
  background: var(--z950);
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z600);
  padding: 0 1.5rem;
}
.marquee-track .dot { color: var(--z800); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== STATS ===== */
#stats {
  padding: 0;
  background: var(--z100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 3.5rem clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--z900);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 36px; height: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: transform 0.35s ease;
}
.stat-cell:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-cell:hover { background: rgba(255,255,255,0.04); }
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--z300);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: transform 0.35s ease, color 0.3s ease;
  display: block;
}
.stat-cell:hover .stat-num {
  transform: scale(1.08) translateY(-2px);
  color: var(--white);
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z600);
  transition: color 0.3s;
}
.stat-cell:hover .stat-label { color: rgba(255,255,255,0.55); }

/* ===== SERVICES ===== */
#services { background: var(--bg); position: relative; overflow: hidden; }
/* ===== SCROLL-DRAW STROKE ===== */
.svc-stroke-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
  mix-blend-mode: difference;
}
.svc-stroke-svg path {
  fill: none;
  stroke: #d4d0ca;
  stroke-width: 24;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  visibility: hidden;
}
/* Mobile variant — decorative vertical arc, no mix-blend */
.svc-stroke-svg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}
.svc-stroke-svg-mobile path {
  fill: none;
  stroke: #c8c4bc;
  stroke-width: 28;
  stroke-linecap: round;
  opacity: 0.6;
  visibility: hidden;
}
@media (max-width: 768px) {
  .svc-stroke-svg         { display: none; }
  .svc-stroke-svg-mobile  { display: block; }
}
/* SVG in front of header (for text inversion) but behind cards */
#services .services-header { position: relative; z-index: 1; }
#services .services-grid   { position: relative; z-index: 3; }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}
.services-link {
  font-size: 0.78rem;
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.services-link:hover { color: var(--accent-dk); }
.services-grid {
  max-width: 1320px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--z900);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { border-color: var(--z800); box-shadow: 0 2px 12px rgba(103,100,94,0.08); }
.service-num {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--z700);
  font-family: monospace;
}
.service-icon { width: 22px; height: 22px; color: var(--accent); }
.service-name {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--z300);
}
.service-desc {
  font-size: 0.84rem;
  color: var(--z500);
  line-height: 1.75;
}

/* ===== WHY US ===== */
#why-us { background: var(--z950); }
.why-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transform: translateZ(0);
  clip-path: inset(0 round 20px);
  aspect-ratio: 3/4;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
/* hover scale removed — replaced by GSAP 3D tilt */
.why-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(250,250,248,0.96);
  border: 1px solid var(--z900);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
}
.why-badge-label { font-size: 0.68rem; color: var(--z600); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.why-badge-text { font-size: 0.9rem; font-weight: 600; color: var(--z300); }
.benefit-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 12px;
  position: relative;
  transition: border-color 0.25s, background 0.25s, transform 0.3s ease;
}
.benefit-row::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px; height: 55%;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.benefit-row:hover::before { transform: translateY(-50%) scaleY(1); }
.benefit-row:hover { border-color: var(--z900); background: var(--white); transform: translateX(6px); }
.benefit-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--z900);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--accent);
  transition: transform 0.3s ease, background 0.25s, border-color 0.25s;
}
.benefit-row:hover .benefit-icon {
  transform: scale(1.15) rotate(8deg);
  background: rgba(103,100,94,0.07);
  border-color: var(--accent);
}
.benefit-title { font-size: 0.92rem; font-weight: 600; color: var(--z300); margin-bottom: 0.2rem; }
.benefit-desc { font-size: 0.8rem; color: var(--z500); line-height: 1.65; }

/* ===== PROCESS ===== */
#process {
  background: var(--z100);
  position: relative;
  overflow: hidden;
}
.process-stroke-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.process-stroke-svg path {
  fill: none;
  stroke: #f0ece4;
  stroke-width: 24;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
  visibility: hidden;
}
#process .process-header,
#process .process-grid { position: relative; z-index: 1; }
/* Hide static line — replaced by animated SVG */
.process-grid::before { display: none; }
.process-header { max-width: 1320px; margin: 0 auto; text-align: center; }
.process-grid {
  max-width: 1320px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--z900);
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  z-index: 0;
}
.process-step { text-align: center; }
.step-circle {
  width: 64px; height: 64px;
  border: 1px solid var(--z900);
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, color 0.3s;
}
.process-step:hover .step-circle { border-color: var(--accent); background: var(--z950); }
.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--z300);
  margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.84rem; color: var(--z500); line-height: 1.75; }

/* ===== TESTIMONIALS ===== */
#reviews { background: var(--z950); }
.reviews-header { max-width: 1320px; margin: 0 auto; }
.reviews-grid {
  max-width: 1320px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--z900);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}
.review-card:hover::after { width: 100%; }
.review-card:hover { border-color: var(--z800); box-shadow: 0 8px 28px rgba(103,100,94,0.12); }
.review-stars { font-size: 0.85rem; color: #c8a86b; letter-spacing: 0.05em; }
.review-quote { font-style: italic; font-family: 'Playfair Display', Georgia, serif; color: var(--z500); font-size: 0.92rem; line-height: 1.8; flex: 1; }
.review-author-name { font-size: 0.875rem; font-weight: 600; color: var(--z300); }
.review-author-meta { font-size: 0.78rem; color: var(--z600); margin-top: 0.2rem; }

/* ===== GALLERY ===== */
#gallery { background: var(--bg); padding: 7rem 0 0; overflow: hidden; }
.gallery-header {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 5rem) 3.5rem;
}
.gallery-track-outer { overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 5rem;
  will-change: transform;
}

.gallery-cell {
  flex-shrink: 0;
  width: clamp(300px, 36vw, 540px);
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 20px;
  transform: translateZ(0);
  position: relative;
}
.gallery-cell img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gallery-cell:hover img { transform: translateY(-13%); }
@media (max-width: 768px) {
  #gallery { padding: 5rem 0 0; }
  .gallery-track {
    flex-direction: column;
    padding: 0 clamp(1.5rem, 5vw, 3rem) 4rem;
    cursor: default;
  }
  .gallery-cell { width: 100%; aspect-ratio: 1/1; }
}

/* ===== FAQ ===== */
#faq {
  background: var(--z100);
}
.faq-header { max-width: 1320px; margin: 0 auto; }
.faq-list {
  max-width: 860px;
  margin: 3rem auto 0;
}
.faq-item { border-bottom: 1px solid var(--z900); }
.faq-question {
  width: 100%;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--z400);
  cursor: none;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--z300); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--z800);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.35s ease, border-color 0.25s, color 0.25s;
  margin-left: 1rem;
  color: var(--z600);
  font-size: 0; /* hide the '+' text — replaced by CSS cross */
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 1px;
  background: currentColor;
  transition: background 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--z500);
}
.faq-item.open .faq-answer { max-height: 250px; padding-bottom: 1.5rem; }

/* ===== ABOUT ===== */
#about { background: var(--z950); }
.about-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 0.9rem;
  color: var(--z500);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 400;
  margin-top: 2rem;
  letter-spacing: -0.01em;
}
.about-img-wrap { position: relative; overflow: hidden; border-radius: 20px; transform: translateZ(0); clip-path: inset(0 round 20px); aspect-ratio: 4/5; }
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
/* hover scale removed — replaced by GSAP 3D tilt */

/* ===== CTA BANNER ===== */
#contact {
  background: var(--z100);
  border-top: none;
  text-align: center;
  padding: 7rem clamp(2rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
/* Watermark mosaic */
.contact-wm {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  overflow: hidden;
  padding: 0.5rem 0;
}
.contact-wm-row {
  display: flex;
  flex-wrap: nowrap;
  overflow: visible;
  flex-shrink: 0;
}
.contact-wm-word {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #2c2a27;
  background-image: radial-gradient(circle 380px at var(--cx, 50vw) var(--cy, 50vh), #3e3b37 0%, #28261f 35%, #1a1917 65%);
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  line-height: 0.9;
  padding: 0 0.3em;
  pointer-events: none;
  opacity: 0;
  flex-shrink: 0;
  will-change: opacity;
  transition: opacity 0.5s ease;
}
#contact .section-inner { position: relative; z-index: 1; }
/* Cursor glow trail */
.contact-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,76,68,0.18) 0%, rgba(80,76,68,0) 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
#contact .section-inner { max-width: 800px; }
.contact-h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.contact-phone {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  margin: 1.5rem 0 2.5rem;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--white); text-decoration: underline; }
.contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* Override btn styles inside dark CTA */
#contact .btn-primary { background: var(--white); color: var(--z100); border-color: var(--white); }
#contact .btn-primary:hover { background: rgba(255,255,255,0.9); }
#contact .btn-ghost { border-color: rgba(255,255,255,0.4); color: var(--white); }
#contact .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
footer {
  background: var(--z950);
  border-top: 1px solid var(--z900);
  padding: 5rem clamp(1.5rem, 5vw, 5rem) 2rem;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--z900);
  margin-bottom: 2rem;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--z300);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.8rem; color: var(--z500); line-height: 1.65; margin-bottom: 1rem; }
.footer-addr { font-size: 0.8rem; color: var(--z600); }
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z700);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.84rem;
  color: var(--z500);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--z300); }
.footer-contact-item {
  font-size: 0.84rem;
  color: var(--z500);
  margin-bottom: 0.6rem;
  display: block;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--z300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--z700);
}
.footer-bottom a { color: var(--z600); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--z300); }

/* ===== FLOATING CALL BUTTON ===== */
#float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 40px;
  padding: 13px 22px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(103,100,94,0.3);
  transition: transform 0.2s, background 0.2s;
  text-decoration: none;
  animation: float-pulse 2.5s ease-in-out infinite;
}
#float-call:hover { transform: translateY(-2px); background: var(--accent-dk); }
#float-call svg { flex-shrink: 0; }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(103,100,94,0.3); }
  50% { box-shadow: 0 8px 32px rgba(103,100,94,0.5); }
}
@media (max-width: 480px) {
  #float-call .float-text { display: none; }
  #float-call { padding: 14px 16px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.21,0.47,0.32,0.98), transform 0.85s cubic-bezier(0.21,0.47,0.32,0.98);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
/* sub-label only fades — no vertical shift that would overlap h2 */
.sub-label.reveal { transform: none; }
.sub-label.reveal.visible { transform: none; }

/* ===== HERO WORD SPLIT ===== */
.hero-word {
  display: inline-block;
  vertical-align: baseline;
}
.hero-word > span { display: inline-block; }

/* ===== PARALLAX IMAGES ===== */
.hero-visual { overflow: hidden; border-radius: 20px; transform: translateZ(0); }
.hero-visual img,
.why-img-wrap img,
.about-img-wrap img {
  height: 115% !important;
  width: 100%;
  object-fit: cover;
  will-change: transform;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  #hero { padding: calc(76px + 2rem) clamp(1.5rem, 5vw, 3rem) 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  /* Reset parallax height on mobile — container has no fixed height so 115% = 0 */
  .hero-visual img,
  .why-img-wrap img,
  .about-img-wrap img { height: 100% !important; }
  .hero-visual img { aspect-ratio: 16/9; width: 100%; object-fit: cover; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--z800); border-top: 1px solid var(--z800); }
  .stat-cell:nth-child(4) { border-right: none; border-top: 1px solid var(--z800); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { order: -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  /* Disable gallery hover pan on touch */
  .gallery-cell img { height: 100%; transform: none !important; transition: none; }
  /* Disable tilt on mobile */
  .service-card { transform: none !important; }
  section { padding: 4.5rem clamp(1.5rem, 5vw, 3rem); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stat-cell { padding: 2.5rem 1.5rem; }
}

/* ===== DARK SECTIONS (stats / process / faq) ===== */
/* Stats */
#stats .stat-num   { color: var(--white); }
#stats .stat-label { color: rgba(255,255,255,0.4); }
#stats .stat-cell  { border-right-color: rgba(255,255,255,0.08); }

/* Process */
#process h2                    { color: var(--white); }
#process h2 em                 { color: rgba(255,255,255,0.45); }
#process .sub-label            { color: rgba(255,255,255,0.35); }
#process .process-grid::before { background: rgba(255,255,255,0.08); }
#process .step-circle {
  border-color: rgba(240,236,228,0.25);
  border-width: 2px;
  background: #f0ece4;
  color: var(--z100);
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
#process .process-step:hover .step-circle {
  background: #fafaf8;
  border-color: rgba(240,236,228,0.5);
  box-shadow: 0 6px 28px rgba(0,0,0,0.5);
}
#process .step-title { color: var(--white); }
#process .step-desc  { color: rgba(255,255,255,0.45); }

/* FAQ */
#faq h2                        { color: var(--white); }
#faq .sub-label                { color: rgba(255,255,255,0.35); }
#faq .faq-item                 { border-bottom-color: rgba(255,255,255,0.08); }
#faq .faq-question             { color: rgba(255,255,255,0.7); }
#faq .faq-question:hover       { color: var(--white); }
#faq .faq-icon                 { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.4); }
#faq .faq-item.open .faq-icon  { border-color: rgba(255,255,255,0.4); color: var(--white); }
#faq .faq-answer               { color: rgba(255,255,255,0.45); }

/* Mobile stat borders on dark bg */
@media (max-width: 768px) {
  #stats .stat-cell:nth-child(3),
  #stats .stat-cell:nth-child(4) { border-top-color: rgba(255,255,255,0.08); }
  #stats .stat-cell:nth-child(3) { border-right-color: rgba(255,255,255,0.08); }
}

/* ===== CARD LAYOUT (rhodeskin-style floating sections) ===== */
section,
#marquee-section,
footer {
  margin-left: clamp(0.75rem, 1.5vw, 1.5rem);
  margin-right: clamp(0.75rem, 1.5vw, 1.5rem);
  border-radius: 28px;
  margin-bottom: 0;
}
#hero       { margin-top: 0.75rem; }
#marquee-section,
#stats, #services, #why-us, #process,
#reviews, #gallery, #faq, #about,
#contact, footer {
  margin-top: 1rem;
}
footer { margin-bottom: 1rem; }
/* Remove top-borders made redundant by card gap */
#stats   { border-top: none; border-bottom: none; }
#process { border-top: none; }
#faq     { border-top: none; }
@media (max-width: 768px) {
  section, #marquee-section, footer {
    border-radius: 20px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  /* Stats hover: no transform on touch */
  .stat-cell:hover .stat-num { transform: none; }
  /* Benefit row: no horizontal slide on mobile */
  .benefit-row:hover { transform: none; }
  /* Disable tilt on review cards too */
  .review-card { transform: none !important; }
  /* Process: hide desktop path (wrong layout), show mobile path */
  .process-stroke-svg { display: none; }
  .process-stroke-svg-mobile { display: block; }
}
/* Mobile process SVG — hidden on desktop */
.process-stroke-svg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.process-stroke-svg-mobile path {
  fill: none;
  stroke: #f0ece4;
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
  visibility: hidden;
}
/* ===== IMAGE 3D TILT SHINE ===== */
.tilt-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 68%);
}

/* ===== GALLERY CAPTION OVERLAY ===== */
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(26,25,23,0.6));
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-cell:hover .gallery-caption { opacity: 1; }
.gallery-caption:empty { display: none; }

/* ===== SPLIT TEXT WORD REVEAL ===== */
