/* =====================================================
   WSB — Walls Slabs & Beyond
   ===================================================== */

/* --- GLOBAL OVERFLOW FIX --- */
* {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}

:root {
  --terracotta: #A46447;
  --terracotta-deep: #8a4f36;
  --terracotta-soft: #c08267;
  --almond: #CEB59E;
  --almond-soft: #ddc6b3;
  --umber: #4C362D;
  --umber-soft: #6a4c40;
  --sage: #88937B;
  --linen: #E8E1D5;
  --linen-light: #f1ece2;
  --cream: #fbf8f1;
  --umber-dark: #1f1612;
  --umber-deep: #2a1d17;

  --bg: var(--linen);
  --bg-alt: var(--cream);
  --text: var(--umber);
  --text-mute: #7a6a60;
  --text-dim: #a89a8e;
  --border: rgba(76, 54, 45, 0.12);
  --border-strong: rgba(76, 54, 45, 0.2);
  --shadow-sm: 0 4px 16px -4px rgba(76, 54, 45, 0.08);
  --shadow: 0 12px 40px -8px rgba(76, 54, 45, 0.15);
  --shadow-lg: 0 30px 80px -20px rgba(76, 54, 45, 0.25);

  --display: 'DM Serif Display', 'Playfair Display', serif;
  --italic: 'Cormorant Garamond', serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1480px;
  --pad-x: 56px;
  --radius: 16px;
  --radius-lg: 24px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font-family: inherit; color: inherit; }

/* ============ UTILITIES ============ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.pill {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: var(--umber);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  font-weight: 500;
}
.pill--accent { border-color: var(--terracotta); color: var(--terracotta); }
.pill--light {
  border-color: rgba(232, 225, 213, 0.4);
  color: var(--linen);
  background: rgba(76, 54, 45, 0.3);
}
.h-display { font-family: var(--display); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; color: var(--text); }
.h-italic { font-family: var(--italic); font-style: italic; font-weight: 500; color: var(--terracotta); }
.divider-line { width: 60px; height: 2px; background: var(--terracotta); margin: 28px 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 36px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--terracotta); color: var(--cream); box-shadow: 0 10px 30px -10px rgba(164, 100, 71, 0.4); }
.btn--primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(164, 100, 71, 0.55); }
.btn--outline { background: transparent; color: var(--umber); border: 1.5px solid var(--umber); }
.btn--outline:hover { background: var(--umber); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--umber); }
.btn--light:hover { background: white; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { transition: transform 0.35s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--pad-x);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  background: rgba(232, 225, 213, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
  max-width: 100vw;
  width: 100%;
}
.site-header.scrolled { padding: 12px var(--pad-x); }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; justify-self: center; }
.site-logo img { height: 56px; width: auto; border-radius: 6px; filter: drop-shadow(0 2px 8px rgba(180, 90, 60, 0.35)); }
.site-nav { justify-self: start; display: flex; gap: 32px; }
.site-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--umber);
  position: relative; padding: 6px 0; transition: color 0.25s ease;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-nav a:hover, .site-nav a.active { color: var(--terracotta); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.header-right { justify-self: end; display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--umber); transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  overflow: hidden;
  max-width: 100vw; width: 100%;
}
.hero-slider { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(120deg, rgba(40, 28, 22, 0.78) 0%, rgba(40, 28, 22, 0.6) 45%, rgba(40, 28, 22, 0.35) 100%),
    linear-gradient(180deg, transparent 50%, rgba(40, 28, 22, 0.5) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px;
  align-items: center; max-width: var(--max); margin: 0 auto;
  min-height: calc(100vh - 220px); overflow: hidden; width: 100%;
}
.hero-left { padding-top: 30px; }
.hero-pill {
  display: inline-block; padding: 12px 24px;
  border: 1px solid rgba(232, 225, 213, 0.4);
  border-radius: 999px; font-size: 11px; letter-spacing: 4px;
  color: var(--linen); background: rgba(76, 54, 45, 0.3);
  backdrop-filter: blur(8px); margin-bottom: 32px;
  text-transform: uppercase; font-family: 'Manrope', sans-serif; font-weight: 500;
}
.hero-tagline { font-family: var(--italic); font-style: italic; font-size: clamp(18px, 1.8vw, 24px); color: var(--almond-soft); margin-bottom: 20px; letter-spacing: 0.5px; }
.hero-title { font-family: var(--display); font-size: clamp(44px, 6vw, 84px); line-height: 1; letter-spacing: -0.01em; color: var(--linen); margin-bottom: 28px; }
.hero-title .accent { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--almond-soft); }
.hero-sub { font-size: 17px; color: rgba(232, 225, 213, 0.85); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 56px; padding-top: 36px; border-top: 1px solid rgba(232, 225, 213, 0.2); max-width: 540px; }
.hero-stat-num { font-family: var(--display); font-size: 44px; color: var(--linen); line-height: 1; }
.hero-stat-num .plus { color: var(--almond-soft); }
.hero-stat-label { font-size: 11px; letter-spacing: 1.5px; color: rgba(232, 225, 213, 0.7); margin-top: 6px; text-transform: uppercase; }
.hero-controls { position: absolute; bottom: 32px; right: var(--pad-x); display: flex; gap: 12px; z-index: 5; }
.hero-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(232, 225, 213, 0.4); background: rgba(76, 54, 45, 0.3); backdrop-filter: blur(8px); color: var(--linen); display: grid; place-items: center; transition: all 0.3s ease; }
.hero-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); transform: scale(1.05); }
.hero-dots { position: absolute; bottom: 50px; left: var(--pad-x); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 36px; height: 2px; background: rgba(232, 225, 213, 0.3); cursor: pointer; transition: background 0.3s ease; }
.hero-dot.active { background: var(--almond-soft); }

/* ============ FORM CARD ============ */
.form-card {
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(232, 225, 213, 0.6);
  border-radius: var(--radius-lg); padding: 44px 36px;
  box-shadow: var(--shadow-lg); position: relative;
}
.form-card-header { text-align: center; margin-bottom: 32px; }
.form-card .pill { margin-bottom: 22px; }
.form-title { font-family: var(--display); font-size: 32px; line-height: 1.1; margin-bottom: 14px; color: var(--umber); }
.form-title em { font-family: var(--italic); color: var(--terracotta); }
.form-sub { color: var(--text-mute); font-size: 14px; line-height: 1.6; }
.form-field { position: relative; margin-bottom: 22px; }
.form-field input, .form-field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border-strong); padding: 12px 0;
  color: var(--umber); font-size: 15px; outline: none;
  transition: border-color 0.3s ease; font-family: var(--body);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); font-family: var(--body); }
.form-field input:focus, .form-field textarea:focus { border-bottom-color: var(--terracotta); }
.form-submit { width: 100%; background: var(--terracotta); color: var(--cream); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 18px; border-radius: 999px; cursor: pointer; transition: all 0.3s ease; margin-top: 12px; box-shadow: 0 10px 30px -10px rgba(164, 100, 71, 0.4); }
.form-submit:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(164, 100, 71, 0.55); }
.form-foot { text-align: center; font-size: 12px; color: var(--text-mute); margin-top: 18px; line-height: 1.5; }

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative; padding: 180px var(--pad-x) 100px;
  text-align: center; background-size: cover; background-position: center;
  isolation: isolate; color: var(--linen);
  max-width: 100vw; width: 100%;
}
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(76, 54, 45, 0.65), rgba(76, 54, 45, 0.5)); }
.page-hero .pill { color: var(--linen); border-color: rgba(232, 225, 213, 0.4); background: rgba(76, 54, 45, 0.3); }
.page-hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 76px); line-height: 1.05; margin: 24px 0 16px; color: var(--linen); }
.page-hero h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: #ffffff !important; }
.page-hero p { font-size: 18px; color: rgba(232, 225, 213, 0.85); max-width: 640px; margin: 0 auto; }

/* ============ SECTIONS ============ */
.section { padding: 120px var(--pad-x); max-width: 100vw; }
.section--alt { background: var(--cream); }

/* ============ VISION ============ */
.vision-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; max-width: var(--max); margin: 0 auto; width: 100%; }
.vision-imgwrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background-size: cover; background-position: center; position: relative; box-shadow: var(--shadow); width: 100%; }
.vision-imgwrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(76, 54, 45, 0.2) 100%); }
.vision-overline { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-bottom: 24px; }
.vision-title { font-family: var(--display); font-size: clamp(36px, 4.5vw, 60px); line-height: 1.05; margin-bottom: 8px; }
.vision-title em { font-family: var(--italic); font-style: italic; color: var(--terracotta); }
.vision-text { color: var(--text-mute); font-size: 16px; line-height: 1.8; margin-bottom: 20px; max-width: 580px; }
.vision-stats { display: flex; gap: 48px; margin: 48px 0; flex-wrap: wrap; }
.vstat { display: flex; align-items: center; gap: 16px; }
.vstat-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(164, 100, 71, 0.1); display: grid; place-items: center; color: var(--terracotta); }
.vstat-num { font-family: var(--display); font-size: 30px; line-height: 1; color: var(--umber); }
.vstat-label { font-size: 11px; letter-spacing: 1.5px; color: var(--text-mute); margin-top: 4px; text-transform: uppercase; }

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; z-index: 9999; border-radius: 50%; transform: translate(-50%, -50%); left: 0; top: 0; mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: var(--almond-soft); transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--almond-soft); transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.cursor-ring.hovered { width: 72px; height: 72px; background: rgba(206, 181, 158, 0.12); border-color: var(--almond-soft); }
.cursor-ring.clicked { width: 28px; height: 28px; background: var(--terracotta); border-color: var(--terracotta); }
body.cursor-enabled, body.cursor-enabled a, body.cursor-enabled button, body.cursor-enabled .svc-panel, body.cursor-enabled .g-item, body.cursor-enabled .faq-q { cursor: none; }
body.cursor-enabled input, body.cursor-enabled textarea { cursor: text; }
@media (max-width: 1024px), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ============ SERVICES ACCORDION ============ */
.services-accordion { display: flex; height: 620px; gap: 8px; max-width: var(--max); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; }
.svc-panel { position: relative; flex: 1; min-width: 90px; cursor: pointer; overflow: hidden; background-size: cover; background-position: center; transition: flex 0.75s cubic-bezier(0.7, 0, 0.2, 1); border-radius: 12px; }
.svc-panel.active { flex: 4.5; }
.svc-panel::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(76, 54, 45, 0.15) 0%, rgba(76, 54, 45, 0.55) 50%, rgba(76, 54, 45, 0.92) 100%); transition: opacity 0.5s ease; z-index: 1; }
.svc-icon-circle { position: absolute; top: 28px; left: 28px; width: 56px; height: 56px; border-radius: 50%; background: rgba(20, 17, 15, 0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(232, 225, 213, 0.2); display: grid; place-items: center; color: var(--linen); z-index: 3; transition: background 0.4s ease, border-color 0.4s ease; }
.svc-panel.active .svc-icon-circle { background: var(--terracotta); border-color: var(--terracotta); }
.svc-vlabel { position: absolute; bottom: 36px; left: 50%; white-space: nowrap; color: var(--linen); font-family: var(--display); font-size: clamp(18px, 1.6vw, 24px); letter-spacing: 6px; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg) translateX(-50%); transform-origin: center; z-index: 2; transition: opacity 0.3s ease; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.svc-panel.active .svc-vlabel { opacity: 0; pointer-events: none; }
.svc-bg-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: clamp(80px, 12vw, 180px); color: var(--linen); opacity: 0; letter-spacing: -0.02em; z-index: 2; text-shadow: 0 4px 24px rgba(0,0,0,0.4); pointer-events: none; transition: opacity 0.5s ease 0.1s; white-space: nowrap; }
.svc-panel.active .svc-bg-label { opacity: 0.15; }
.svc-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 48px 44px; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s; pointer-events: none; z-index: 3; color: var(--linen); max-width: 600px; }
.svc-panel.active .svc-content { opacity: 1; transform: translateY(0); pointer-events: auto; }
.svc-content .svc-num { color: var(--almond-soft); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.svc-content h3 { font-family: var(--display); font-size: clamp(28px, 3vw, 40px); line-height: 1.05; color: var(--linen); margin-bottom: 16px; }
.svc-content p { color: rgba(232, 225, 213, 0.85); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.svc-content .btn { background: var(--linen); color: var(--umber); }
.svc-content .btn:hover { background: var(--almond-soft); transform: translateY(-2px); }

/* ============ SERVICES HEADER ============ */
.services-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.services-head h2 { font-family: var(--display); font-size: clamp(36px, 4.5vw, 58px); margin: 20px 0 16px; line-height: 1.1; }
.services-head h2 em { font-family: var(--italic); font-style: italic; color: var(--terracotta); }
.services-head p { color: var(--text-mute); font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: var(--max); margin: 0 auto; width: 100%; }
.svc-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 40px; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease; position: relative; overflow: hidden; isolation: isolate; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--terracotta), var(--almond)); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--almond); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num { font-family: var(--italic); font-style: italic; font-size: 16px; color: var(--almond); margin-bottom: 18px; letter-spacing: 1px; }
.svc-icon { width: 64px; height: 64px; border-radius: 14px; background: rgba(164, 100, 71, 0.08); display: grid; place-items: center; color: var(--terracotta); margin-bottom: 28px; }
.svc-title { font-family: var(--display); font-size: 28px; margin-bottom: 16px; line-height: 1.15; }
.svc-text { color: var(--text-mute); font-size: 15px; line-height: 1.75; }

/* ============ TRUSTED ============ */
.trusted { background: var(--umber); color: var(--linen); padding: 140px var(--pad-x); max-width: 100vw; }
.trusted-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; max-width: var(--max); margin: 0 auto; width: 100%; }
.trusted-head .pill { color: var(--almond-soft); border-color: rgba(206, 181, 158, 0.3); background: rgba(232, 225, 213, 0.05); }
.trusted-head h2 { font-family: var(--display); font-size: clamp(38px, 4.8vw, 60px); line-height: 1.05; color: var(--linen); margin: 24px 0 24px; }
.trusted-head h2 em { font-family: var(--italic); font-style: italic; color: var(--almond-soft); }
.trusted-head p { color: rgba(232, 225, 213, 0.75); font-size: 16px; line-height: 1.7; }
.trusted-head img { margin-top: 40px; border-radius: var(--radius); aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.trusted-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(232, 225, 213, 0.1); }
.trust-card { background: var(--umber); padding: 36px 30px; transition: background 0.4s ease; }
.trust-card:hover { background: rgba(164, 100, 71, 0.15); }
.trust-num { font-family: var(--display); font-size: 24px; color: var(--terracotta-soft); margin-bottom: 14px; }
.trust-title { font-family: var(--display); font-size: 21px; color: var(--linen); margin-bottom: 14px; line-height: 1.25; }
.trust-text { color: rgba(232, 225, 213, 0.7); font-size: 14px; line-height: 1.7; }

/* ============ GALLERY ============ */
.gallery-head { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.gallery-head h2 { font-family: var(--display); font-size: clamp(38px, 4.8vw, 60px); line-height: 1.05; margin: 20px 0 16px; }
.gallery-head h2 em { font-family: var(--italic); font-style: italic; color: var(--terracotta); }
.gallery-head p { color: var(--text-mute); font-size: 17px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max); margin: 0 auto; width: 100%; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; cursor: pointer; background: var(--almond-soft); box-shadow: var(--shadow-sm); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.g-item:hover img { transform: scale(1.06); }
.g-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(76, 54, 45, 0.6) 100%); opacity: 0; transition: opacity 0.4s ease; }
.g-item:hover::after { opacity: 1; }
.g-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 24px; color: var(--linen); font-family: var(--display); font-size: 18px; z-index: 2; transform: translateY(20px); opacity: 0; transition: transform 0.45s ease, opacity 0.45s ease; }
.g-item:hover .g-caption { transform: translateY(0); opacity: 1; }
.gallery-cta { text-align: center; margin-top: 64px; }
.gallery-section { padding: 80px var(--pad-x) 40px; }
.gallery-section:first-of-type { padding-top: 0; }
.gallery-section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.gallery-section-head .pill { margin-bottom: 18px; }
.gallery-section-head h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 50px); line-height: 1.1; margin-bottom: 14px; }
.gallery-section-head h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--terracotta); }
.gallery-section-head p { color: var(--text-mute); font-size: 16px; }
.gallery-divider { max-width: var(--max); margin: 60px auto; height: 1px; background: var(--border); }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; background: rgba(76, 54, 45, 0.92); backdrop-filter: blur(20px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 40px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 90vw); max-height: 88vh; border-radius: 12px; box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5); cursor: default; }
.lightbox-close { position: absolute; top: 28px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: rgba(232, 225, 213, 0.15); color: var(--linen); display: grid; place-items: center; border: 1px solid rgba(232, 225, 213, 0.3); }
.lightbox-close:hover { background: rgba(232, 225, 213, 0.25); }

/* ============ FAQ ============ */
.faq-list { max-width: 920px; margin: 0 auto; width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); padding: 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 28px 0; font-family: var(--display); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4; color: var(--umber); display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; transition: color 0.3s ease; }
.faq-q:hover { color: var(--terracotta); }
.faq-num { font-family: var(--italic); font-style: italic; font-size: 14px; color: var(--almond); flex-shrink: 0; width: 40px; padding-top: 6px; }
.faq-q-text { flex: 1; }
.faq-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--terracotta); flex-shrink: 0; transition: all 0.3s ease; }
.faq-icon svg { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.faq-item.open .faq-icon { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.faq-a-inner { padding: 0 76px 32px 40px; color: var(--text-mute); font-size: 15px; line-height: 1.8; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; max-width: var(--max); margin: 0 auto; width: 100%; }
.contact-info { padding-right: 20px; }
.contact-info h2 { font-family: var(--display); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; margin: 20px 0 16px; }
.contact-info h2 em { font-family: var(--italic); font-style: italic; color: var(--terracotta); }
.contact-info p { color: var(--text-mute); font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.contact-details { margin: 40px 0; }
.cdetail { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cdetail-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(164, 100, 71, 0.1); color: var(--terracotta); display: grid; place-items: center; flex-shrink: 0; }
.cdetail-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mute); margin-bottom: 4px; }
.cdetail-value { font-size: 16px; color: var(--umber); font-weight: 500; }
.cdetail-value a:hover { color: var(--terracotta); }
.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-link { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; color: var(--umber); transition: all 0.3s ease; }
.social-link:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); transform: translateY(-2px); }
.contact-form-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 56px 48px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-family: var(--display); font-size: 28px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-mute); margin-bottom: 32px; font-size: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--umber-dark); color: var(--linen);
  padding: 100px var(--pad-x); text-align: center;
  position: relative; overflow: hidden;
  max-width: 100vw;
}
.cta-strip::before, .cta-strip::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-strip::before { background: var(--terracotta); top: -150px; left: -100px; opacity: 0.14; }
.cta-strip::after { background: var(--almond); bottom: -150px; right: -100px; opacity: 0.10; }
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; width: 100%; }
.cta-inner .pill { color: var(--almond-soft); border-color: rgba(206, 181, 158, 0.3); background: rgba(232, 225, 213, 0.05); }
.cta-strip .pill { background: rgba(232, 225, 213, 0.04); border-color: rgba(206, 181, 158, 0.25); color: var(--almond-soft); }
.cta-strip h2 { font-family: var(--display); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 24px; line-height: 1.1; color: var(--linen); }
.cta-inner h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--almond-soft); }
.cta-strip p { color: rgba(232, 225, 213, 0.78); font-size: 17px; margin-bottom: 36px; line-height: 1.7; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-wordmark {
  font-family: 'Italiana', 'Marcellus', serif;
  font-weight: 400; letter-spacing: 0.12em;
  color: var(--linen); text-transform: uppercase;
  line-height: 1; font-size: clamp(36px, 7vw, 92px);
  margin: 28px 0 22px; display: block; width: 100%;
  word-break: break-word;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--umber-dark); color: var(--linen);
  padding: 80px var(--pad-x) 30px;
  border-top: 1px solid rgba(232, 225, 213, 0.08);
  max-width: 100vw;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 56px; max-width: var(--max); margin: 0 auto 60px; width: 100%; }
.footer-brand { max-width: 380px; }
.footer-brand img { background: var(--linen); padding: 10px; border-radius: 10px; height: 80px; width: auto; margin-bottom: 24px; }
.footer-brand p { color: rgba(232, 225, 213, 0.78); font-size: 14px; line-height: 1.7; margin-bottom: 8px; max-width: 320px; }
.footer-brand-name { font-family: 'Italiana', 'Marcellus', serif; font-weight: 400; letter-spacing: 0.18em; color: var(--almond-soft); text-transform: uppercase; line-height: 1; display: block; font-size: 26px; margin: 18px 0 16px; }
.footer-brand .footer-pill { display: inline-block; padding: 8px 18px; border: 1px solid rgba(206, 181, 158, 0.25); border-radius: 999px; font-size: 10px; letter-spacing: 3px; color: var(--almond-soft); text-transform: uppercase; margin-bottom: 14px; }
.footer-pill { display: inline-block; margin-bottom: 14px; }
.footer-col h4 { font-family: var(--display); font-size: 16px; color: var(--almond-soft); margin-bottom: 22px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(232, 225, 213, 0.7); font-size: 14px; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--terracotta-soft); }
.footer-contact-item { margin-bottom: 18px; }
.footer-contact-item .lbl { font-size: 11px; letter-spacing: 2px; color: var(--almond); text-transform: uppercase; margin-bottom: 4px; }
.footer-contact-item .val { font-size: 14px; color: rgba(232, 225, 213, 0.85); word-break: break-word; }
.footer-contact-item .val a:hover { color: var(--terracotta-soft); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(232, 225, 213, 0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: rgba(232, 225, 213, 0.5); font-size: 13px; }
.footer-bottom a:hover { color: var(--terracotta-soft); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-soc { width: 36px; height: 36px; border-radius: 50%; background: rgba(232, 225, 213, 0.08); border: 1px solid rgba(232, 225, 213, 0.15); color: var(--almond-soft); display: grid; place-items: center; transition: all 0.3s ease; }
.footer-soc:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); transform: translateY(-2px); }

/* ============ WHATSAPP ============ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; color: white; z-index: 90; box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.5); animation: wa-pulse 2.4s infinite; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 12px 32px -8px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============ ACCENT ITALIC ============ */
.vision-title em, .who-title em, .form-title em, .svc-content h3 em, .contact-info h2 em, .gallery-head h2 em, .services-head h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--terracotta); }
.trusted-head h2 em, .cta-inner h2 em { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; color: var(--almond-soft); }

/* ============ DARK FAQ ============ */
body.dark-faq { background: var(--umber); color: var(--linen); }
body.dark-faq .site-header { background: rgba(76, 54, 45, 0.88); border-bottom-color: rgba(232, 225, 213, 0.1); }
body.dark-faq .site-nav a { color: var(--linen); }
body.dark-faq .site-nav a:hover, body.dark-faq .site-nav a.active { color: var(--almond-soft); }
body.dark-faq .site-nav a.active::after, body.dark-faq .site-nav a:hover::after { background: var(--almond-soft); }
body.dark-faq .menu-toggle span { background: var(--linen); }
body.dark-faq .site-logo img { filter: brightness(1.05); }
body.dark-faq .faq-item { border-color: rgba(232, 225, 213, 0.12); }
body.dark-faq .faq-item:first-child { border-top-color: rgba(232, 225, 213, 0.12); }
body.dark-faq .faq-q { color: var(--linen); }
body.dark-faq .faq-q:hover { color: var(--almond-soft); }
body.dark-faq .faq-num { color: var(--almond); }
body.dark-faq .faq-icon { border-color: rgba(232, 225, 213, 0.25); color: var(--almond-soft); }
body.dark-faq .faq-item.open .faq-icon { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }
body.dark-faq .faq-a-inner { color: rgba(232, 225, 213, 0.78); }
body.dark-faq .faq-a-inner strong { color: var(--almond-soft); }
body.dark-faq .page-hero::before { background: linear-gradient(180deg, rgba(40, 28, 22, 0.82), rgba(40, 28, 22, 0.7)); }

/* ============ ABOUT PILLARS ============ */
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--max); margin: 0 auto; width: 100%; }
.pillar-card { background: var(--linen); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 36px; position: relative; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-num { font-family: 'Italiana', 'Marcellus', serif; font-size: 56px; line-height: 1; color: var(--terracotta); margin-bottom: 24px; letter-spacing: 0.04em; }
.pillar-card h3 { font-family: var(--display); font-size: 24px; margin-bottom: 14px; color: var(--umber); }
.pillar-card p { color: var(--text-mute); font-size: 15px; line-height: 1.75; }

/* ============ VISION MODAL ============ */
.vision-modal-overlay { position: fixed; inset: 0; background: rgba(30, 20, 15, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.vision-modal-overlay.active { opacity: 1; pointer-events: auto; }
.vision-modal { background: var(--linen); border-radius: 16px; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; padding: 48px 48px 40px; box-shadow: 0 32px 80px rgba(0,0,0,0.3); transform: translateY(24px); transition: transform 0.35s ease; }
.vision-modal-overlay.active .vision-modal { transform: translateY(0); }
.vision-modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.vision-modal-header { margin-bottom: 32px; }
.vision-modal-header h2 { margin-top: 12px; font-size: clamp(22px, 3vw, 30px); }
.vision-slides-wrap { position: relative; }
.vision-slides { position: relative; min-height: 220px; }
.vision-slide { display: none; animation: vsSlideIn 0.4s ease; }
.vision-slide.active { display: block; }
@keyframes vsSlideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.vs-num { font-family: 'Italiana', 'Marcellus', serif; font-size: 48px; color: var(--terracotta); line-height: 1; letter-spacing: 0.04em; opacity: 0.18; margin-bottom: -8px; }
.vs-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.vs-title { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); color: var(--umber); margin-top: 18px; margin-bottom: 16px; line-height: 1.15; }
.vs-text { font-size: 15px; color: var(--text-mute); line-height: 1.75; margin-bottom: 10px; }
.vision-slide-nav { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.vs-dots { display: flex; gap: 8px; flex: 1; }
.vs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); opacity: 0.25; border: none; cursor: pointer; transition: opacity 0.25s, transform 0.25s; padding: 0; }
.vs-dot.active { opacity: 1; transform: scale(1.35); }
.vs-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.vs-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* Trust statement card */
.trust-card--statement { display: flex; align-items: center; }
.trust-statement-inner { width: 100%; }
.trust-statement-quote { font-family: var(--italic); font-size: 80px; color: var(--terracotta); line-height: 0.7; margin-bottom: 16px; }
.trust-statement-text { font-family: var(--display); font-size: clamp(22px, 2.5vw, 30px); color: #fff; line-height: 1.3; margin-bottom: 12px; }
.trust-statement-text em { color: var(--terracotta); font-style: italic; }
.trust-statement-sub { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* CTA extras */
.cta-logo-symbol { margin: 20px auto 8px; width: 72px; height: 72px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; }
.cta-logo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cta-brand-name { font-family: 'Italiana', 'Marcellus', serif; font-weight: 400; letter-spacing: 0.08em; font-size: clamp(28px, 4vw, 56px); line-height: 1; margin: 12px 0 18px; }
.cta-line { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.cta-tagline { font-family: var(--italic); font-style: italic; font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; margin-top: 8px; }

/* ============================================================
   RESPONSIVE — TABLET (max 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad-x: 28px; }

  .site-header {
    display: flex !important;
    justify-content: space-between;
  }
  .site-logo { justify-self: auto; }
  .header-right { justify-self: auto; }
  .header-right .btn { display: none; }
  .menu-toggle { display: flex; }
  .site-nav { display: none; justify-self: auto; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 88px; left: 0; right: 0;
    background: var(--linen); padding: 32px var(--pad-x);
    gap: 24px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); z-index: 99;
  }
  body.dark-faq .site-nav.open { background: var(--umber); border-bottom-color: rgba(232, 225, 213, 0.1); }

  .hero-grid, .vision-grid, .trusted-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px var(--pad-x) 60px; }

  .services-accordion { display: block; height: auto; gap: 0; border-radius: 0; overflow: visible; padding: 0; max-width: 100%; }
  .svc-panel, .svc-panel.active { display: block !important; flex: none !important; width: 100%; min-width: 0; height: 480px; margin-bottom: 18px; border-radius: 18px; cursor: default; overflow: hidden; background-size: cover; background-position: center; }
  .svc-panel:last-child { margin-bottom: 0; }
  .svc-panel::before { background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(76, 54, 45, 0.6) 50%, rgba(76, 54, 45, 0.95) 100%); }
  .svc-vlabel, .svc-bg-label { display: none !important; }
  .svc-content { opacity: 1 !important; transform: none !important; pointer-events: auto !important; padding: 0 26px 30px; max-width: 100%; }
  .svc-content h3 { font-size: 26px; margin-bottom: 12px; }
  .svc-content p { font-size: 14px; margin-bottom: 20px; line-height: 1.65; }
  .svc-content .btn { width: 100%; justify-content: center; padding: 16px 20px; font-size: 11px; letter-spacing: 1.5px; white-space: normal; }
  .svc-icon-circle { background: var(--terracotta) !important; border-color: var(--terracotta) !important; top: 20px; left: 20px; width: 44px; height: 44px; }
  .svc-icon-circle svg { width: 18px; height: 18px; }

  .trusted-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 80px var(--pad-x); }
  .trusted { padding: 80px var(--pad-x); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 36px 28px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 34px; }
  .faq-a-inner { padding: 0 0 28px 40px; }
  .about-pillars { grid-template-columns: 1fr; gap: 18px; }
  .pillar-card { padding: 36px 28px; }
  .pillar-num { font-size: 44px; margin-bottom: 18px; }
  .cta-brand-name { font-size: 36px; }
  .footer-socials { justify-content: flex-start; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --pad-x: 16px; }

  /* Force everything within viewport */
  .hero, .section, .trusted, .cta-strip, .site-footer, .page-hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100%;
    max-width: 100vw;
  }

  .container, .hero-grid, .vision-grid, .trusted-grid, .contact-grid,
  .services-grid, .gallery-grid, .footer-grid, .cta-inner, .faq-list,
  .about-pillars {
    width: 100%;
    max-width: 100%;
  }

  /* Grid → single column */
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Hide hero controls on mobile */
  .hero-controls, .hero-dots { display: none; }

  /* Card padding */
  .form-card { padding: 32px 20px; }
  .svc-card { padding: 32px 24px; }
  .trust-card { padding: 24px 20px; }
  .vision-modal { padding: 36px 20px 32px; }
  .contact-form-card { padding: 28px 20px; }

  /* CTA wordmark fit */
  .cta-wordmark { font-size: 32px !important; word-break: break-word; }
  .cta-strip h2 { font-size: 24px; }
  .cta-inner p { font-size: 15px; }
  .footer-brand-name { font-size: 18px; }
  .pill { font-size: 10px; padding: 9px 18px; letter-spacing: 2.5px; }

  /* Buttons — stack and full width on mobile */
  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
    max-width: 100%;
  }
  .btn--primary, .btn--outline {
    width: 100%;
    padding: 16px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }

  /* Vision image */
  .vision-imgwrap { aspect-ratio: 3/4; width: 100%; }
  .vision-stats { flex-direction: column; gap: 24px; }

  /* Typography */
  .hero-title, .vision-title, .page-hero h1 { word-break: break-word; }
  .page-hero { padding: 140px 16px 70px; }
  .page-hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }

  /* FAQ */
  .faq-q { gap: 16px; padding: 22px 0; }
  .faq-num { width: 32px; font-size: 12px; }
  .faq-a-inner { padding: 0 0 24px 32px; font-size: 14px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* WhatsApp float smaller */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
/* Hero wordmark — Walls Slabs & Beyond above pill */
.hero-wordmark {
  font-family: 'Italiana', 'Marcellus', serif;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.25em;
  color: #ddc6b3 !important;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
  .hero-wordmark {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
    color: #ddc6b3 !important;
  }
}

/* Fix hero blur — ensure crisp background image */
.hero-slide {
  filter: none !important;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-overlay {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 640px) {
  .hero-wordmark {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
  }
}
@media (max-width: 640px) {
  
  .hero-slide {
    background-position: center center !important;
    background-size: cover !important;
  }
}
.hero-slide-1{
    background-image:url('../assets/hero/landing-2.jpg') !important;
}

.hero-slide-2{
    background-image:url('../assets/hero/landing-3.jpg') !important;
}

.hero-slide-3{
    background-image:url('../assets/hero/landing-villa.jpg') !important;
}

@media (max-width:768px){

.hero-slide-1{
    background-image:url('../assets/hero/landing-2-mobile.jpg') !important;
}

.hero-slide-2{
    background-image:url('../assets/hero/landing-3-mobile.jpg') !important;
}

.hero-slide-3{
    background-image:url('../assets/hero/landing-villa-mobile.jpg') !important;
}

}