/* ═══════════════════════════════════════════════════════════
   ATELIER VALE — main.css
   Design system, layout, components, responsive
═══════════════════════════════════════════════════════════ */

/* ─── Custom properties ─────────────────────────────────── */
:root {
  --bg:          #F7F4EE;
  --fg:          #252220;
  --muted:       #8A837A;
  --border:      #E8E3DC;
  --warm-sand:   #F3EDE3;
  --light-warm:  #F7F4EF;
  --dark-1:      #1A1814;
  --dark-2:      #18160F;
  --white:       #FFFFFF;

  --font-head:   'Poppins', sans-serif;
  --font-body:   'Manrope', sans-serif;

  --container:   1400px;
  --px:          clamp(24px, 4vw, 48px);
  --py-section:  clamp(72px, 8vw, 120px);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --radius:      0;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p  { line-height: 1.8; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }
.eyebrow-dim   { color: rgba(255,255,255,0.4); }

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 32px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-dark {
  background: var(--fg);
  color: var(--white);
}
.btn-dark:hover {
  background: #3d3835;
}
.btn-white {
  background: var(--white);
  color: var(--fg);
}
.btn-white:hover {
  background: var(--warm-sand);
}
.btn-glass {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.22);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}
.btn-full { width: 100%; justify-content: center; }

.text-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(37,34,32,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
  display: inline-block;
}
.text-link:hover { border-color: var(--fg); }

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed          { opacity: 1; transform: translateY(0); }
.reveal-delay-1.revealed  { transition-delay: 0.15s; }
.reveal-delay-2.revealed  { transition-delay: 0.3s; }
.reveal-delay-3.revealed  { transition-delay: 0.45s; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  height: 64px;
  padding: 0 var(--px);
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--fg);
}
.site-nav {
  display: flex;
  justify-content: center;
}
.site-nav ul {
  display: flex;
  gap: 36px;
}
.site-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--fg);
  border-bottom-color: var(--fg);
}
.header-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.header-cta:hover { color: var(--fg); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s;
}

/* ─── MOBILE MENU OVERLAY ────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark-1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 1; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: var(--px);
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--white); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 64px);
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.5s ease;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translateX(0); }
  100% { transform: scale(1.06) translateX(-1%); }
}
.hero-bg-img.animate {
  animation: kenBurns 12s ease-in-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.20) 45%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
}
.hero-stamp {
  position: absolute;
  top: 24px;
  right: var(--px);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 var(--px) 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hero-headline .eyebrow { margin-bottom: 12px; }
.hero-headline h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.scroll-line::after {
  content: '';
  display: block;
  width: 100%;
  height: 50%;
  background: rgba(255,255,255,0.7);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  white-space: nowrap;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track .sep { color: var(--border); }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ─── BRAND STATEMENT ────────────────────────────────────── */
.statement-section {
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.statement-text {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: rgba(37,34,32,0.80);
  padding: 0 var(--px);
  margin-bottom: 48px;
  will-change: transform;
}
.statement-sub {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.statement-sub p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 460px;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section {
  padding-top: clamp(72px, 8vw, 120px);
  border-top: 1px solid var(--border);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.gallery-header h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
.gallery-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.gallery-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--px) 60px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  align-items: flex-start;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip:active { cursor: grabbing; }
.gallery-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.gallery-card--offset { margin-top: 40px; }
.gallery-img-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-card:hover .gallery-img-wrap img { transform: scale(1.04); }
.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.9);
  color: var(--fg);
  padding: 5px 10px;
}
.gallery-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 0 0;
}
.gallery-meta h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 3px;
}
.gallery-meta p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
}
.gallery-meta span {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
}
.gallery-spacer { flex: 0 0 var(--px); }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-1);
  padding: 56px 0;
  margin-top: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item {
  background: var(--dark-1);
  padding: 40px var(--px);
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  padding: var(--py-section) 0;
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 860px; }
.testimonials-carousel { margin-top: 32px; position: relative; min-height: 160px; }
.testimonial-item {
  display: none;
  animation: fadeIn 0.6s var(--ease-out);
}
.testimonial-item.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-item blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin-bottom: 32px;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 20px;
}
.attr-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--muted);
  flex-shrink: 0;
}
.attr-name {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 3px;
  line-height: 1;
}
.attr-project {
  font-size: 12px;
  color: var(--muted);
  line-height: 1;
}
.testimonial-controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 6px;
  height: 6px;
  background: var(--border);
  transition: background 0.2s, width 0.3s;
}
.testimonial-dot.is-active { background: var(--fg); width: 20px; }
.testimonial-arrows { display: flex; gap: 16px; }
.testimonial-arrows button {
  font-size: 22px;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px solid var(--border);
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}
.testimonial-arrows button:hover { color: var(--fg); border-color: var(--fg); }

/* ─── PROCESS ────────────────────────────────────────────── */
.process-section {
  padding: var(--py-section) 0;
  background: var(--warm-sand);
}
.process-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
}
.process-header h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  border-top: 1px solid rgba(37,34,32,0.15);
}
.process-step { padding-top: 40px; }
.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(37,34,32,0.1);
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.process-step h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.85; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  height: clamp(400px, 55vh, 680px);
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,22,15,0.62);
}
.cta-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  padding: 0 var(--px);
}
.cta-banner-content .eyebrow { margin-bottom: 0; }
.cta-banner-content h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  color: var(--white);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--px) 40px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col .plain { font-size: 14px; color: rgba(255,255,255,0.35); }
.footer-legal {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── PAGE HEADER (About / Services) ────────────────────── */
.page-header {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.page-header-main .eyebrow { margin-bottom: 16px; }
.page-header-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 400px;
  align-self: end;
}

/* ─── FULL-BLEED IMAGE ───────────────────────────────────── */
.fullbleed-img {
  width: 100%;
  height: clamp(360px, 55vw, 640px);
  overflow: hidden;
}

/* ─── ABOUT PHILOSOPHY ───────────────────────────────────── */
.philosophy-section {
  padding: var(--py-section) 0;
  border-bottom: 1px solid var(--border);
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-grid .eyebrow { margin-bottom: 16px; }
.two-col-grid h2 { margin-bottom: 24px; }
.two-col-grid p + p { margin-top: 16px; color: var(--muted); font-size: 14px; }
.portrait-img-wrap {
  height: clamp(360px, 45vw, 560px);
  overflow: hidden;
  position: relative;
}

/* ─── VALUES ─────────────────────────────────────────────── */
.values-section {
  padding: var(--py-section) 0;
  border-bottom: 1px solid var(--border);
}
.values-heading {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 48px;
}
.values-list { display: flex; flex-direction: column; }
.value-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.value-row h3 { font-size: 18px; font-weight: 400; }
.value-row p  { font-size: 14px; color: var(--muted); line-height: 1.9; }

/* ─── TEAM ───────────────────────────────────────────────── */
.team-section {
  padding: var(--py-section) 0;
  border-bottom: 1px solid var(--border);
}
.team-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
}
.team-header h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.team-member:hover .team-photo { filter: grayscale(0); }
.team-member h3 { font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.team-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.team-member p { font-size: 14px; color: var(--muted); line-height: 1.85; }

/* ─── RECOGNITION ────────────────────────────────────────── */
.recognition-section {
  padding: var(--py-section) 0;
  background: var(--dark-1);
}
.recognition-section .eyebrow { margin-bottom: 40px; }
.recognition-list { display: flex; flex-direction: column; }
.recognition-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.recognition-row:hover { background: rgba(255,255,255,0.03); }
.rec-pub {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}
.rec-note {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

/* ─── ABOUT BOTTOM CTA ───────────────────────────────────── */
.about-cta-section {
  padding: var(--py-section) 0;
  border-top: 1px solid var(--border);
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.about-cta-inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); }

/* ─── SERVICES ───────────────────────────────────────────── */
.service-section {
  padding: clamp(64px, 7vw, 112px) 0;
  border-bottom: 1px solid var(--border);
}
.service-section--alt { background: var(--light-warm); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-grid--reverse { direction: rtl; }
.service-grid--reverse > * { direction: ltr; }
.service-img { overflow: hidden; aspect-ratio: 4/5; }
.service-num-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.service-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: rgba(37,34,32,0.1);
  letter-spacing: -0.02em;
  line-height: 0.9;
  flex-shrink: 0;
}
.service-rule {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--border);
}
.service-content .eyebrow { margin-bottom: 12px; }
.service-content h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 20px; }
.service-content > p { color: var(--muted); font-size: 14px; line-height: 1.9; margin-bottom: 28px; }
.ideal-for-box {
  background: var(--warm-sand);
  padding: 20px;
  margin-bottom: 28px;
}
.ideal-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 8px !important;
  line-height: 1 !important;
}
.ideal-for-box p:last-child { font-size: 14px; color: var(--muted); }
.includes-list { margin-bottom: 36px; }
.includes-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 12px;
}
.includes-list ul { display: flex; flex-direction: column; gap: 8px; list-style: none; }
.includes-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.includes-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
  font-size: 12px;
}

/* ─── SERVICES BOTTOM CTA ────────────────────────────────── */
.services-cta-section {
  padding: var(--py-section) 0;
  background: var(--dark-1);
}
.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.services-cta-grid h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); }
.services-cta-right p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}
.contact-info {
  background: var(--dark-1);
  padding: clamp(56px, 8vw, 100px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-info-top h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--white);
  margin: 20px 0;
  line-height: 1.05;
}
.contact-info-top p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.9; max-width: 360px; }
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-detail-block { display: flex; flex-direction: column; gap: 5px; }
.detail-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.contact-detail-block p { font-size: 14px; color: rgba(255,255,255,0.55); }
.contact-detail-block a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.contact-detail-block a:hover { color: var(--white); }
.whatsapp-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.whatsapp-link:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.contact-form-panel {
  background: var(--bg);
  padding: clamp(56px, 8vw, 100px) clamp(40px, 5vw, 72px);
  overflow-y: auto;
}
#form-success {
  padding: 40px 0;
}
#form-success h2 { margin: 16px 0 20px; font-size: clamp(2rem, 4vw, 3rem); }
#form-success p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }

.inquiry-form { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(37,34,32,0.3); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--fg); }
.form-field textarea { resize: none; }
.select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
  width: 14px;
  height: 14px;
}

/* ─── Utilities ──────────────────────────────────────────── */
.desktop-only { display: block; }
.desktop-br { display: block; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .service-grid { gap: 48px; }
  .two-col-grid  { gap: 48px; }
}

@media (max-width: 900px) {
  /* Header */
  .site-nav   { display: none; }
  .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-inner { grid-template-columns: 1fr auto; }

  /* Hero */
  .hero-right .scroll-indicator { display: none; }
  .hero-right { gap: 12px; }

  /* Stats: 2×2 */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item  { padding: 32px 24px; }

  /* Gallery */
  .gallery-card { flex: 0 0 270px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-header { flex-direction: column; gap: 12px; }

  /* About */
  .two-col-grid      { grid-template-columns: 1fr; }
  .portrait-img-wrap { height: 300px; }
  .value-row         { grid-template-columns: 1fr; gap: 12px; }
  .team-grid         { grid-template-columns: 1fr; gap: 48px; }
  .about-cta-inner   { flex-direction: column; align-items: flex-start; }

  /* Services */
  .service-grid           { grid-template-columns: 1fr; }
  .service-grid--reverse  { direction: ltr; }
  .service-grid--reverse .service-img { order: -1; }
  .services-cta-grid      { grid-template-columns: 1fr; gap: 32px; }

  /* Page header */
  .page-header-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer-cols   { grid-template-columns: 1fr 1fr; }
  .footer-top    { flex-direction: column; }

  /* Desktop only elements */
  .desktop-only { display: none; }
}

@media (max-width: 600px) {
  /* Hero headline */
  .hero-headline h1 { font-size: clamp(2.8rem, 10vw, 4rem); }

  /* Contact: stack vertically */
  .contact-split { grid-template-columns: 1fr; }
  .contact-info  { min-height: 480px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; align-items: flex-start; }

  /* Stats: 2 col still */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery narrower cards */
  .gallery-card { flex: 0 0 240px; }
  .gallery-card--offset { margin-top: 20px; }

  /* Recognition */
  .recognition-row { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Desktop line break */
  .desktop-br { display: none; }

  /* Process steps */
  .process-grid { gap: 0; }
  .process-step { border-top: 1px solid rgba(37,34,32,0.1); }
}
