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

/* =========================================================
   Arrow Tex — shared design system
   Original design: dark industrial hero sections, warm
   gold/rust accent duo on charcoal + linen-cream, rounded
   friendly type, glass stat cards, custom cursor, scroll
   reveals. Every page includes this file + script.js and
   reuses the same header/footer/section component classes.
   ========================================================= */

:root {
  --ink: #1c1712;
  --charcoal: #1a1712;
  --charcoal-2: #24201a;
  --cream: #f6f5ed;
  --cream-dim: #ece2cd;
  --gold: #c99a34;
  --gold-bright: #e0b954;
  --rust: #b8502f;
  --white: #ffffff;
  --rust-bright: #d3663f;
  --line: rgba(28, 23, 18, 0.12);
  --line-light: rgba(246, 241, 230, 0.16);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cal Sans", ui-rounded, "SF Pro Rounded", Quicksand, Comfortaa, "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
h1, h2, h3, h4, .display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1400px, 92%); margin-inline: auto; }
.container-wide { width: min(1440px, 94%); margin-inline: auto; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 10px; height: 10px; background: var(--gold-bright); }
/* .cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid var(--gold);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
} */
.cursor-ring.is-active { width: 54px; height: 54px; background: rgba(201, 154, 52, 0.12); border-color: var(--rust); }
.cursor-ring.is-huge {
  width: 80px; height: 80px;
  border-radius: 50px;
  background: var(--cream); border-color: var(--cream);
  mix-blend-mode: difference;
}
.cursor-ring-label {
  opacity: 0; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  color: #fff; white-space: nowrap;
  transition: opacity 0.35s var(--ease);
}
.cursor-ring.is-view {
  width: 12px; height: 12px;
  background: var(--charcoal); border-color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s var(--ease);
}
.cursor-ring.is-view.is-view-visible { width: 70px; height: 70px; }
.cursor-ring.is-view.is-view-visible .cursor-ring-label { opacity: 1; }
.cursor-dot.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }

/* ---------- Buttons ---------- */
.btn-row { display: flex; align-items: center; gap: 0px; flex-wrap: wrap; }

/* ---------- Load-in mask reveal (bottom-to-top) ---------- */
.mask { display: block; overflow: hidden; }
.mask-inner {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  animation: maskUp 2s var(--ease) forwards;
}
@keyframes maskUp { to { transform: translateY(0); opacity: 1; } }

/* ---------- Word-by-word slide reveal (right to left, with overshoot) ---------- */
/* plays only once the .reveal-slide wrapper enters the viewport (see script.js) */
.mask-word { display: inline-block; overflow: hidden; vertical-align: top; }
.mask-word span {
  display: inline-block;
  transform: translateX(130%);
  opacity: 0;
  animation: maskLeft 0.9s var(--ease) forwards;
  animation-play-state: paused;
}
.reveal-slide.in-view .mask-word span { animation-play-state: running; }
@keyframes maskLeft {
  0% { transform: translateX(130%); opacity: 0; }
  60% { transform: translateX(-6%); opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
.btn-row {
  opacity: 0; transform: translateY(24px);
  animation: fadeUpLoad 0.7s var(--ease) forwards;
}
@keyframes fadeUpLoad { to { opacity: 1; transform: translateY(0); } }
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  background: var(--rust); color: var(--cream);
  font-weight: 700; font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
}
.btn-pill:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(184, 80, 47, 0.55); background: var(--white); color: var(--rust-bright); }
.btn-pill.alt { background: var(--charcoal); }
.btn-pill.alt:hover { background: #000; }
.btn-circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.btn-circle:hover { transform: translateY(-3px) rotate(45deg); background: var(--gold-bright); }
.btn-row:has(.btn-pill:hover) .btn-circle { transform: translateY(-3px) rotate(45deg); background: var(--gold-bright); }
.btn-row:has(.btn-circle:hover) .btn-pill { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(184, 80, 47, 0.55); background: var(--white); color: var(--rust-bright); }
.btn-play {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid rgba(246,241,230,0.5);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream); flex-shrink: 0;
  transition: background 0.3s, transform 0.4s var(--ease);
}
.btn-play:hover { background: rgba(246,241,230,0.12); transform: scale(1.06); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; }
.text-link svg { transition: transform 0.35s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: absolute; top: 20px; left: 20px; right: 20px; z-index: 200;
  padding: 22px 0;
  border-radius: 20px;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.3s, top 0.4s var(--ease);
}
.nav.scrolled { padding: 14px 0; }
@media (max-width: 620px) { .nav { left: 10px; right: 10px; top: 10px; } }
.nav-quote-icon { display: none; }
@media (max-width: 480px) {
  .nav .container { gap: 10px; }
  .brand { font-size: 0.95rem; gap: 8px; }
  .brand .mark { width: 32px; height: 32px; }
  .nav-right { gap: 10px; }
  .nav .btn-pill { padding: 10px 16px; font-size: 0.8rem; }
  .nav-toggle { width: 38px; height: 38px; }
}
@media (max-width: 380px) {
  .nav .btn-pill.nav-quote {
    padding: 0 !important;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .nav-quote-text { display: none; }
  .nav-quote-icon { display: block; }
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--cream); white-space: nowrap; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--gold);
  background: var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--cream); font-size: 0.9rem; font-weight: 600; opacity: 0.82; transition: opacity 0.25s; position: relative; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--gold); transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border-radius: 50%; background: rgba(246,241,230,0.1); align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 2px; background: var(--cream); }

.mobile-panel {
  position: fixed; inset: 0; z-index: 300;
  background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { color: var(--cream); font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.mobile-panel .close-btn { position: absolute; top: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: rgba(246,241,230,0.1); display: flex; align-items: center; justify-content: center; color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 20px);
  /*margin: 20px 20px 0 20px;*/
  /*border-radius: 28px;*/
  background: linear-gradient(90deg, #14120e 0%, #1f1b15 65%, #26201a 100%);
  color: var(--cream);
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 620px) {
  /*.hero { margin: 10px 10px 0 10px; border-radius: 20px; min-height: calc(100vh - 10px); }*/
}
.hero-loom { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: 0.5;
  display: none;
}
.hero-video.is-active { display: block; }
.hero-video.is-active ~ .hero-loom { opacity: 0.22; mix-blend-mode: screen; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 80%);
}
.hero-ghost {
  position: absolute; top: 12%; left: 52%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 13vw, 10rem);
  max-width: 96vw;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35));
  white-space: nowrap; z-index: 0; letter-spacing: 0.02em;
  overflow: hidden;
  pointer-events: none;
}
.hero-ghost .mask-inner {
  background: linear-gradient(180deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0.275) 50%, rgba(255,255,255,0.03) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 620px) {
  .hero-ghost { font-size: clamp(1rem, 12vw, 3.3rem); margin-top: -10px; }
}
.hero .container { position: relative; z-index: 2;}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: clamp(0px, 16vw, 240px); }
@media (min-width: 1100px) {
  /*.hero-grid { grid-template-columns: 1.05fr 0.9fr; gap: 60px; }*/
  .hero-card { margin-top: 0; }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
}
.hero-tag .avatars { display: flex; }
.hero-tag .avatars img {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--charcoal);
  margin-left: -10px;
}
.hero-tag .avatars img:first-child { margin-left: 0; }
.hero-tag p { font-size: 0.95rem; font-weight: 600; color: rgba(246,241,230,0.85); }

.hero h1 {
  font-size: clamp(2.0rem, 5.0vw, 3.8rem);
  line-height: 1.08;
  max-width: 18ch;
}
.hero h1 .accent { color: var(--gold-bright); }
.hero p.lede { margin-top: 22px; max-width: 50ch; font-size: 1.08rem; color: rgba(246,241,230,0.78); }
.hero .btn-row { margin-top: 36px; }

.hero-card {
  margin-top: 4px;
  background: rgba(246,241,230,0.08);
  border: 1px solid rgba(246,241,230,0.14);
  backdrop-filter: blur(66px);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(24px);
  animation: cardBlurIn 1s var(--ease) forwards;
  animation-delay: .5s;
}
@keyframes cardBlurIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(24px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-card-top { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-card-top h3 { font-size: 1.15rem; }
.hero-card-rating { display: flex; align-items: center; gap: 10px; }
.hero-card-rating .avatars { display: flex; }
.hero-card-rating .avatars img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--charcoal-2); margin-left: -10px;
}
.hero-card-rating .avatars img:first-child { margin-left: 0; }
.hero-card-rating .star { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--charcoal); }
.hero-card p.sub { margin-top: 14px; color: rgba(246,241,230,0.7); max-width: 60ch; }
.hero-stat-row { margin-top: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hero-stat {
  background: rgba(0,0,0,0.18); border-radius: var(--radius-md); padding: 18px 20px;
}
.hero-stat .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--gold-bright); }
.hero-stat .label { margin-top: 4px; font-size: 0.78rem; color: rgba(246,241,230,0.65); }

/* ---------- Sections shared ---------- */
section { padding: 110px 0; }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-video {
  position: relative; overflow: hidden;
  margin: 0 20px; border-radius: 28px;
  background: var(--white);
}
.section-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 1; z-index: 0;
}
.section-video .container { position: relative; z-index: 2; }
@media (max-width: 620px) { .section-video { margin: 0 10px; border-radius: 20px; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 20px;
}
.section-dark .eyebrow { border-color: var(--line-light); color: var(--gold-bright); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--ink); }
.section-dark .section-head h2 { color: var(--cream); }
.section-head p { margin-top: 16px; font-size: 1.05rem; color: #55483a; }
.section-dark .section-head p { color: rgba(246,241,230,0.72); }

/* ---------- Reveal utility ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .10s; } .reveal-stagger.in-view > *:nth-child(2) { transition-delay: .30s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .29s; } .reveal-stagger.in-view > *:nth-child(4) { transition-delay: .56s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .43s; } .reveal-stagger.in-view > *:nth-child(6) { transition-delay: .6s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: .57s; } .reveal-stagger.in-view > *:nth-child(8) { transition-delay: .74s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: .71s; } .reveal-stagger.in-view > *:nth-child(10) { transition-delay: .88s; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -28px rgba(28,23,18,0.28); border-color: transparent; }
.card .icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--rust), var(--gold));
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: transform 0.4s var(--ease);
}
.card:hover .icon { transform: rotate(-8deg) scale(1.08); }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.card p { font-size: 0.94rem; color: #61503f; }
.card .num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; color: var(--rust); margin-bottom: 16px; }

.card-dark {
  background: var(--charcoal-2); border: 1px solid var(--line-light); border-radius: var(--radius-md); padding: 32px 28px;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.card-dark:hover { transform: translateY(-8px); background: #2c261e; }
.card-dark h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 10px; }
.card-dark p { color: rgba(246,241,230,0.68); font-size: 0.94rem; }

.card-light {
  background: var(--cream); border-radius: var(--radius-lg); padding: 32px 26px 26px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.card-light:hover { transform: translateY(-6px); }
.card-light h3 { font-size: 1.2rem; margin-bottom: 14px; }
.card-light hr { border: none; border-top: 1px solid var(--line); margin-bottom: 16px; }
.card-light p { color: #6b6b6b; font-size: 0.95rem; margin-bottom: 24px; }
.card-light-media { position: relative; display: block; }
.card-light-media-inner { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.card-light-media-inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card-light-media:hover .card-light-media-inner img { transform: scale(1.08); }
.card-light-pattern {
  display: block; width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(201,154,52,0.18) 0 2px, transparent 2px 18px),
    linear-gradient(155deg, var(--charcoal), var(--charcoal-2));
}
.card-light-icon {
  position: absolute; top: -22px; left: 18px; z-index: 2;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--cream-dim);
  box-shadow: 0 8px 18px -8px rgba(28,23,18,0.35);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card-light-media:hover .card-light-icon { background: var(--charcoal); color: var(--cream); }

.services-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 50px; }
.services-cta-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px; border-radius: 999px;
  background: var(--rust); color: var(--cream); font-weight: 700; font-size: 0.85rem;
}
.services-cta p { font-size: 1.02rem; color: #55483a; }
.section-dark .services-cta p { color: rgba(246,241,230,0.75); }
.services-cta-link { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 620px) { .services-cta { flex-direction: column; text-align: center; } }

/* ---------- What We Do (dual-photo + trust card) ---------- */
.wwd-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.wwd-visual { position: relative; }
.wwd-photo { border-radius: var(--radius-lg); overflow: hidden; }
.wwd-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wwd-photo-1 { width: 65%; height: 80%; }
.wwd-photo-2 {
  position: absolute; right: 0; bottom: -90px; width: 70%; height: 80%;
  box-shadow: 0 24px 50px -20px rgba(28,23,18,0.35);
}
.wwd-visual .spin-badge { position: absolute; top: 6%; right: 8%; z-index: 2; margin-right: -50px; }
.wwd-copy h2 {
  font-size: clamp(2.0rem, 5.0vw, 3.2rem);
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 18px;
}
.wwd-copy > p { color: #6b6b6b; }
.wwd-copy hr.wwd-divider { border: none; border-top: 1px solid var(--line); margin: 26px 0; }
.wwd-copy .check-list li { color: #6b6b6b; font-weight: 400; }
.wwd-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.wwd-features { display: flex; flex-direction: column; gap: 16px; }
.wwd-feature {
  background: var(--cream-dim); border-radius: var(--radius-md); padding: 22px;
  display: flex; align-items: flex-start; gap: 16px;
}
.wwd-feature-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.wwd-feature:hover .wwd-feature-icon { background: var(--charcoal); color: var(--cream); }
.wwd-feature h3 { font-size: 1.02rem; margin-bottom: 4px; }
.wwd-feature p { font-size: 0.88rem; color: #6b6b6b; }
.wwd-trust-card { background: var(--white); border-radius: var(--radius-md); padding: 26px; }
.wwd-trust-avatars { display: flex; align-items: center; gap: 0; margin-bottom: 18px; }
.wwd-trust-avatars .avatars { display: flex; }
.wwd-trust-avatars .avatars img {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white); margin-left: -10px;
}
.wwd-trust-avatars .avatars img:first-child { margin-left: 0; }
.wwd-trust-more {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  background: var(--rust); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  border: 2px solid var(--white);
}
.wwd-trust-rating { display: flex; align-items: baseline; gap: 8px; color: var(--gold); margin-bottom: 8px; }
.wwd-trust-rating strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.wwd-trust-rating span { font-size: 0.85rem; color: #6b6b6b; }
.wwd-trust-card > p { font-size: 0.9rem; color: #6b6b6b; }
.wwd-trust-card hr { border: none; border-top: 1px solid var(--line); margin: 18px 0; }
@media (max-width: 860px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-visual { margin-bottom: 60px; }
  .wwd-bottom { grid-template-columns: 1fr; }
}

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--white); color: var(--ink); padding: 60px 0; margin-top: 20px; }
.stats-strip .grid { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-block .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--gold); }
.stat-block .label { margin-top: 6px; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: #6b6b6b; }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.section-dark .marquee-wrap { border-color: var(--line-light); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; white-space: nowrap; display: flex; align-items: center; gap: 40px; opacity: 0.75; }
.marquee-track span::after { content: "✺"; color: var(--rust); font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About / split layout ---------- */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.split-visual {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--charcoal), var(--charcoal-2));
}
.split-visual .loom-lines {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(224,185,84,0.35) 0 2px, transparent 2px 26px),
    repeating-linear-gradient(0deg, rgba(184,80,47,0.4) 0 2px, transparent 2px 26px);
}
.split-visual .badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(20,18,14,0.72); backdrop-filter: blur(10px);
  border-radius: var(--radius-md); padding: 18px 20px; color: var(--cream);
}
.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.check-list li .tick {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--charcoal); flex-shrink: 0;
}

/* ---------- About block (pill eyebrow + spin badge + image/card grid) ---------- */
.about-top { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.spin-badge {
  position: relative; width: 164px; height: 164px; flex-shrink: 0;
  animation: preloader-spin 16s linear infinite;
  animation-play-state: running;
  cursor: pointer;
}
.spin-badge:hover { animation-play-state: paused; }
.spin-badge svg { width: 100%; height: 100%; overflow: visible; }
.spin-badge-bg { fill: var(--gold); }
.spin-badge text { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: normal; fill: var(--cream); text-transform: uppercase; }
.spin-badge-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg);
  width: 60px; height: 60px; border-radius: 50%; background: var(--white);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center; color: var(--charcoal);
  animation: spin-counter 16s linear infinite;
  animation-play-state: running;
}
.spin-badge:hover .spin-badge-icon { animation-play-state: paused; }
@keyframes spin-counter { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.spin-badge-icon img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { max-width: 760px; }
.about-copy h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.15; margin-bottom: 18px; }
/* ---------- Scroll-scrubbed text fill (gray -> ink, letter-by-letter in reading order) ---------- */
.scroll-fill { letter-spacing: 2px; }
.scroll-fill-word { display: inline-block; white-space: nowrap; }
.scroll-fill-char { color: #b6b6b0; transition: color 0.12s linear; }
.scroll-fill-char.is-filled { color: var(--ink); }
.about-copy p { font-size: 0.92rem; color: #6b6b6b; }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: stretch; margin-top: 48px; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.about-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px;
  display: flex; flex-direction: column;
}
.about-card hr { border: none; border-top: 1px solid var(--line); margin: 22px 0; }
.about-card-stat .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.about-card-stat h3 { font-size: 1.05rem; margin-top: 6px; }
.about-card .check-list { margin-top: 0; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { min-height: 260px; }
  .about-top { flex-wrap: wrap; }
}

/* ---------- About Our Industries (feature / media / trust triple) ---------- */
.about-industries-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 22ch; margin-inline: auto; }
.about-triple { display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr; gap: 24px; align-items: stretch; }
.about-feature, .about-trust-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column;
}
.about-feature-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 60px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.about-feature:hover .about-feature-icon { background: var(--charcoal); color: var(--cream); }
.about-feature h3 { font-size: 1.2rem; margin-bottom: 16px; }
.about-feature hr { border: none; border-top: 1px solid var(--line); margin-bottom: 16px; }
.about-feature p { font-size: 0.95rem; color: #6b6b6b; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-trust-card .check-list { margin-top: 0; }
.about-industries-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.about-industries-copy p { color: #55483a; font-size: 1.02rem; }
@media (max-width: 960px) {
  .about-triple { grid-template-columns: 1fr; }
  .about-industries-copy { grid-template-columns: 1fr; }
}

/* ---------- Our Approach (dark, mission/vision cards + media) ---------- */
.approach-block { position: relative; overflow: hidden; margin: 0 20px; border-radius: 28px; }
.approach-pattern {
  position: absolute; inset: 0; z-index: 0; opacity: 1;
  background: url("assets/dark-section-bg-image.png"); background-size: cover; background-position: center;
}
.approach-block .container { position: relative; z-index: 1; }
@media (max-width: 620px) { .approach-block { margin: 0 10px; border-radius: 20px; } }
.approach-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.approach-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.approach-copy p { color: rgba(246,241,230,0.72); font-size: 1.02rem; margin-bottom: 30px; max-width: 46ch; }
.approach-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.approach-card {
  background: var(--charcoal-2); border-radius: var(--radius-lg); padding: 28px;
  transition: background 0.3s var(--ease);
}
.approach-card:hover { background: var(--gold); }
.approach-card-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 40px;
  transition: background 0.3s var(--ease);
}
.approach-card:hover .approach-card-icon { background: var(--white); }
.approach-card hr { border: none; border-top: 1px solid var(--line-light); margin-bottom: 18px; }
.approach-card h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 10px; }
.approach-card p { color: rgba(246,241,230,0.65); font-size: 0.92rem; }
.approach-media { border-radius: var(--radius-lg); overflow: hidden; }
.approach-media img { width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 860px) {
  .approach-top { grid-template-columns: 1fr; }
  .approach-cards { grid-template-columns: 1fr; }
  .approach-media img { height: 280px; }
}

/* ---------- Process (How It Work) ---------- */
.process-title { color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.process-card {
  background: var(--charcoal-2); border-radius: var(--radius-lg); padding: 40px 30px;
  text-align: center;
}
.process-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 26px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.process-card:hover .process-num { background: var(--cream); color: var(--charcoal); }
.process-card h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 14px; }
.process-card p { color: rgba(246,241,230,0.65); font-size: 0.95rem; margin-bottom: 26px; }
.process-card hr { border: none; border-top: 1px solid var(--line-light); margin-bottom: 26px; }
.process-tags { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.process-tag {
  padding: 8px 16px; border-radius: 999px; background: rgba(246,241,230,0.08);
  color: var(--cream); font-size: 0.82rem; font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.process-tag:hover { background: var(--gold); color: var(--charcoal); }

/* ---------- Our Industries ---------- */
.industries-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 48px; align-items: center; }
.industries-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 18px; max-width: 16ch; }
.industries-copy > p { color: #6b6b6b; font-size: 1.02rem; margin-bottom: 32px; max-width: 46ch; }
.industries-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 34px; }
.industries-item { display: flex; align-items: center; gap: 14px; font-weight: 700; }
.industries-item-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.industries-item-icon img { width: 18px; height: 18px; }
.industries-item:hover .industries-item-icon { background: var(--charcoal); }
.industries-copy hr { border: none; border-top: 1px solid var(--line); margin-bottom: 30px; }
.industries-bottom { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.industries-help { display: flex; align-items: center; gap: 14px; }
.industries-help-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--rust); color: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.industries-help:hover .industries-help-icon { background: var(--charcoal); }
.industries-help strong { display: block; font-size: 0.85rem; color: #6b6b6b; font-weight: 600; }
.industries-help em { display: block; font-style: normal; font-weight: 800; font-size: 1.05rem; }
.industries-visual { position: relative; }
.industries-photo { border-radius: var(--radius-lg); overflow: hidden; }
.industries-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.industries-photo-1 { aspect-ratio: 4/3; }
.industries-photo-2 {
  position: absolute; right: -6%; bottom: -14%; width: 58%; aspect-ratio: 4/3;
  border: 6px solid var(--cream);
  box-shadow: 0 24px 50px -20px rgba(28,23,18,0.35);
}
@media (max-width: 960px) {
  .industries-grid { grid-template-columns: 1fr; }
  .industries-list { grid-template-columns: 1fr; }
  .industries-visual { margin-top: 60px; }
}

/* ---------- Our Core Values ---------- */
.values-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); max-width: 22ch; margin-inline: auto; }
.values-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 44px 34px;
  text-align: center;
}
.values-card-icon {
  width: 66px; height: 66px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  transition: background 0.3s var(--ease);
}
.values-card-icon img { width: 26px; height: 26px; }
.values-card:hover .values-card-icon { background: var(--charcoal); }
.values-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.values-card p { font-size: 0.95rem; color: #6b6b6b; }

.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 56px; text-align: center;
}
.trust-row p { font-size: 1.05rem; color: #6b6b6b; }
.trust-link { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.trust-avatar { position: relative; width: 48px; height: 48px; flex-shrink: 0; }
.trust-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.trust-avatar-icon {
  position: absolute; bottom: -2px; right: -2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--rust); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
}
.trust-rating {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 4px;
}
.trust-rating-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.trust-rating-stars { display: flex; gap: 3px; color: var(--gold); }
.trust-rating-label { font-weight: 700; color: var(--ink); }
@media (max-width: 620px) {
  .trust-row { flex-direction: column; gap: 10px; }
}

/* ---------- Facility gallery ---------- */
.gallery-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.gallery-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; display: block; }
.gallery-card h3 { color: var(--ink); }
.gallery-photo { aspect-ratio: 4/3; overflow: hidden; }
.gallery-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-card:hover .gallery-photo img { transform: scale(1.06); }
.gallery-card h3 { padding: 22px; text-align: center; font-size: 1.1rem; }

/* ---------- Service details (single-page, tab-switched) ---------- */
.details-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: start; }
.details-sidebar { display: flex; flex-direction: column; gap: 24px; }
.details-sidebar-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.details-sidebar-head {
  background: var(--rust); color: var(--cream); font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem; padding: 24px 28px;
}
.details-nav { display: flex; flex-direction: column; }
.details-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--line);
  font-size: 1rem; font-weight: 600; color: var(--ink); text-align: left;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.details-nav-item svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.details-nav-item:hover { background: var(--cream-dim); }
.details-nav-item.is-active { background: var(--ink); color: var(--cream); }
.details-nav-item.is-active svg { transform: rotate(45deg); }
.details-contact-card {
  background: var(--charcoal); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-bottom: 30px;
}
.details-contact-photo { width: 100%; height: 10%; }
.details-contact-photo img { width: 100%; height: 20%; object-fit: cover; }
.details-contact-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--rust); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: -30px; margin-bottom: 18px;
}
.details-contact-icon img { width: 26px; height: 26px; }
.details-contact-item strong { display: block; color: rgba(246,241,230,0.5); font-size: 0.78rem; font-weight: 600; margin-bottom: 4px; }
.details-contact-item a { color: var(--cream); font-weight: 700; font-size: 0.95rem; }
.details-contact-card hr { width: calc(100% - 52px); border: none; border-top: 1px solid var(--line-light); margin: 16px 0; }
.details-media { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; }
.details-photo { position: relative; }
.details-image { display: none; width: 100%; height: 340px; object-fit: contain; background: var(--charcoal); }
.details-image.is-active { display: block; }
.details-panel { display: none; }
.details-panel.is-active { display: block; }
.details-panel > p { color: #55483a; font-size: 1.05rem; margin-bottom: 24px; }
.details-title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.details-features { margin: 30px 0; }
.details-feature { background: var(--cream-dim); border-radius: var(--radius-lg); padding: 26px; }
.details-feature-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: background 0.3s var(--ease);
}
.details-feature:hover .details-feature-icon { background: var(--charcoal); color: var(--cream); }
.details-feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.details-feature p { font-size: 0.92rem; color: #6b6b6b; }
.details-quote { background: var(--white); border-radius: var(--radius-lg); padding: 30px 34px; }
.details-quote .quote-mark { font-family: var(--font-display); font-size: 2.6rem; color: var(--rust); opacity: 0.4; line-height: 1; }
.details-quote p.quote { margin-top: 10px; font-size: 1.05rem; color: #3d3225; }

/* ---------- Fabric item cards (light approach-card layout, numbered) ---------- */
.fabric-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.fabric-item {
  background: var(--white); border-radius: var(--radius-lg); padding: 26px;
  transition: background 0.3s var(--ease);
}
.fabric-item:hover { background: var(--gold); }
.fabric-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.fabric-item:hover .fabric-num { background: var(--white); color: var(--charcoal); }
.fabric-item hr { border: none; border-top: 1px solid rgba(61,50,37,0.14); margin-bottom: 16px; }
.fabric-item h3 { font-size: 1rem; margin: 0 0 8px; }
.fabric-item p { font-size: 0.85rem; color: #6b6b6b; margin: 0; }
@media (max-width: 960px) { .fabric-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .fabric-list { grid-template-columns: 1fr; } }
.faq-heading { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 44px 0 26px; }
.faq-list { display: grid; gap: 16px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); padding: 4px 26px; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-weight: 700; font-size: 1rem; text-align: left; color: var(--ink);
}
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.faq-item.is-open .faq-icon { background: var(--rust); color: var(--cream); transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-panel { max-height: 240px; }
.faq-panel p { padding: 0 0 22px; border-top: 1px solid var(--line); padding-top: 16px; color: #6b6b6b; font-size: 0.94rem; }
@media (max-width: 860px) {
  .details-grid { grid-template-columns: 1fr; }
  .details-features { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testi-title { font-size: clamp(2.0rem, 5.0vw, 3.8rem); line-height: 1.08; }
.testi-card {
  background: var(--cream-dim); border-radius: var(--radius-lg); padding: 34px;
  display: flex; flex-direction: column;
}
.testi-stars { display: flex; gap: 8px; margin-bottom: 22px; }
.testi-stars span {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(201,154,52,0.16); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.testi-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.testi-card hr { border: none; border-top: 1px solid var(--line); margin-bottom: 22px; }
.testi-card p.quote { margin-bottom: 26px; font-size: 1rem; color: #6b6b6b; }
.testi-person {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--radius-md); padding: 16px 18px;
  margin-top: auto;
}
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-person .name { font-weight: 800; font-size: 0.95rem; }
.testi-person .role { font-size: 0.8rem; color: #7a6a57; }

/* ---------- Why Choose Us ---------- */
.why-title { font-size: clamp(2.0rem, 5.0vw, 3.8rem); line-height: 1.08; }
.why-top {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 32px; align-items: start;
  margin-bottom: 40px;
}
.why-top .eyebrow { margin-bottom: 0; justify-self: start; }
.why-grid { display: grid; grid-template-columns: 1.0fr 1fr; gap: 32px; align-items: stretch; }
.why-visual { background: var(--cream-dim); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.why-photo { flex: 1; min-height: 0; }
.why-copy { display: flex; }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-highlight { padding: 26px; }
.why-highlight-top { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.why-highlight-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-highlight-icon img { width: 26px; height: 26px; }
.why-highlight h3 { font-size: 1.3rem; }
.why-highlight hr { border: none; border-top: 1px solid var(--line); margin: 18px 0; }
.why-highlight p { font-size: 0.98rem; color: #6b6b6b; }
.why-highlight .text-link { font-weight: 800; }
.why-highlight-arrow {
  width: 26px; height: 26px; border-radius: 50%; background: var(--rust); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { background: var(--cream-dim); border-radius: var(--radius-lg); padding: 26px; }
.why-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.why-card-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.why-card-icon img { width: 22px; height: 22px; }
.why-card-icon { color: var(--charcoal); font-size: 1.15rem; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.why-card-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--ink); }
.why-card hr { border: none; border-top: 1px solid var(--line); margin-bottom: 18px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: #6b6b6b; }
.why-card:hover .why-card-icon { background: var(--charcoal); color: var(--cream); }
@media (max-width: 860px) {
  .why-top { grid-template-columns: 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--charcoal) 0%, #2b2216 100%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: 64px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.cta-banner p { margin: 16px auto 30px; max-width: 50ch; color: rgba(246,241,230,0.75); }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--cream); font-family: inherit; font-size: 0.95rem; color: var(--ink);
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rust); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.contact-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.contact-photo-info {
  position: relative; z-index: 1; margin-top: auto; align-self: flex-end;
  width: 100%; padding: 24px 26px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,17,13,0.85) 45%);
}
.contact-photo { display: flex; flex-direction: column; justify-content: flex-end; }
.contact-photo-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; color: var(--cream); font-size: 0.95rem; }
.contact-photo-row strong { font-weight: 800; margin-right: 4px; }
.contact-photo-row a { color: var(--cream); }
.contact-photo-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-photo-info hr { border: none; border-top: 1px solid rgba(246,241,230,0.25); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; }
.contact-form-card .btn-row { margin-top: 8px; }
.contact-form-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.contact-map-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

.contact-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 460px; }
.contact-map-card {
  position: absolute; top: 20px; left: 20px; z-index: 1;
  background: var(--white); border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; flex-direction: column; box-shadow: 0 16px 32px -18px rgba(28,23,18,0.4);
}
.contact-map-card strong { font-size: 1rem; margin-bottom: 2px; }
.contact-map-card span { font-size: 0.85rem; color: #6b6b6b; }

.location-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 44px; }
.location-card h2 { font-size: 1.6rem; }
.location-card hr { border: none; border-top: 1px solid var(--line); margin: 26px 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.location-item { display: flex; align-items: flex-start; gap: 22px; }
.location-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--cream-dim); color: var(--rust);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.location-item p { font-size: 0.95rem; color: #6b6b6b; line-height: 1.7; }
@media (max-width: 700px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Accordion (FAQ) ---------- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.accordion-trigger .plus { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.4s var(--ease), background 0.3s; }
.accordion-item.open .accordion-trigger .plus { transform: rotate(45deg); background: var(--rust); color: var(--cream); border-color: var(--rust); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion-item.open .accordion-panel { max-height: 300px; }
.accordion-panel p { padding: 0 4px 24px; color: #61503f; font-size: 0.96rem; max-width: 70ch; }

/* ---------- Footer ---------- */
footer { background: #100e0a; color: rgba(246,241,230,0.7); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { max-width: 32ch; font-size: 0.9rem; }
.footer-col h4 { color: var(--cream); font-size: 0.92rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--gold-bright); }
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%; background: var(--charcoal-2); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }

/* ---------- Breadcrumb (inner pages) ---------- */
.page-hero {
  min-height: calc(66vh - 20px); padding-top: 150px; padding-bottom: 70px; align-items: center;
  background-image: linear-gradient(90deg, rgba(26,23,18,0.55) 100%, rgba(26,23,18,0.75) 0%), url("assets/page-header-bg.jpg");
  background-size: cover; background-position: center;
}
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(246,241,230,0.65); margin-top: 20px; }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-stat-row { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  section { padding: 80px 0; }
  .cta-banner { padding: 48px 28px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-card-top { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-rings { position: relative; width: 130px; height: 130px; display: flex; align-items: center; justify-content: center; }
.preloader-rings .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid transparent;
}
.preloader-rings .ring-a { border-top-color: rgba(246,241,230,0.55); border-right-color: rgba(246,241,230,0.55); animation: preloader-spin 1.4s linear infinite; }
.preloader-rings .ring-b { inset: 14px; border-bottom-color: rgba(201,154,52,0.6); animation: preloader-spin 1.8s linear infinite reverse; }
.preloader-logo {
  width: 68px; height: 68px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--gold); position: relative; z-index: 2;
  background: var(--cream);
}
@keyframes preloader-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

/* ---------- Floating contact rail (WhatsApp / Call / Mail) ---------- */
.float-contact {
  position: fixed; right: 22px; bottom: 26px; z-index: 500;
  display: flex; flex-direction: column; gap: 12px;
}
.float-contact a {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.float-contact a:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 12px 26px rgba(0,0,0,0.28); }
.float-contact .fc-whatsapp { background: #25D366; }
.float-contact .fc-call { background: var(--rust); }
.float-contact .fc-mail { background: var(--charcoal); }
@media (max-width: 620px) {
  .float-contact { right: 14px; bottom: 16px; gap: 10px; }
  .float-contact a { width: 44px; height: 44px; }
}

.details-sidebar {
  position: sticky;
  top: 110px;                        /* height of your fixed .nav + some breathing room */
  align-self: start;                 /* stops it stretching to match the tall content column */
  /* prevents it overflowing on short viewports */
  overflow-y: auto;
}

.details-grid {
  align-items: start;                /* required for sticky to have room to float within the grid/flex row */
}

@media (max-width: 900px) {
  .details-sidebar {
    position: static;
    top: auto;
  }
}

.fabric-tabbar{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:10px;
    margin-bottom:32px;
    -ms-overflow-style:none;
    scrollbar-width:none;
    padding-bottom:4px;
}
.fabric-tabbar::-webkit-scrollbar{
    display:none;
}
.fabric-tabbar .details-nav-item{
    flex:0 0 auto;
    white-space:nowrap;
}




.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.is-active {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}
.fabric-thumb img {
  cursor: zoom-in;
}


