/* ══════════════════════════════════════════════
   FLOYURHOM — MINIMAL PREMIUM REDESIGN
   Style: Exaggerated Minimalism · Dark + Orange
   Fonts: Cormorant Garamond (display) · DM Sans (body)
══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --bg:           #0C0C0C;
  --surface:      #141414;
  --card:         #1A1A1A;
  --card-hover:   #1F1F1F;
  --border:       rgba(255, 255, 255, 0.07);
  --border-mid:   rgba(255, 255, 255, 0.12);

  --orange:       #FF8400;
  --orange-hover: #D97000;
  --orange-faint: rgba(255, 132, 0, 0.08);
  --orange-glow:  rgba(255, 132, 0, 0.18);

  --white:        #F8F5F0;
  --muted:        rgba(248, 245, 240, 0.50);
  --subtle:       rgba(248, 245, 240, 0.18);

  --font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:   'DM Sans', 'system-ui', sans-serif;

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

  --nav-h:       72px;
  --max-w:       1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
}
.pre-logo {
  width: 140px;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.pre-line {
  width: 160px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.pre-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--orange);
  animation: lineSlide 1.2s var(--ease) 0.4s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineSlide {
  to { left: 100%; }
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 62px;
  width: auto;
  display: block;
  /* Slight brightness boost so blue/orange pops on dark bg */
  filter: brightness(1.05);
  transition: filter 0.2s;
}
.nav-logo:hover .nav-logo-img {
  filter: brightness(1.15);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.nav-links a:hover  { color: var(--white); background: var(--subtle); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--orange);
  padding: 11px 24px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease-out);
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 20px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s var(--ease-out);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav a {
  display: block;
  padding: 14px 32px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  cursor: pointer;
}
.mobile-nav a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════════════ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
h2.headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}
p.body-text {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease-out), box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-faint);
  transform: translateY(-2px);
}

/* Scroll reveal — sections below the fold only */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Ensure content above fold is always visible */
#hero .hero-eyebrow,
#hero .hero-h1,
#hero .hero-sub,
#hero .hero-actions,
#hero .hero-stats {
  opacity: 0; /* CSS animation sets this to 1 */
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.42s; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  min-height: 80svh;
  display: flex;
  align-items: center;          /* centre vertically — never overflows upward */
  padding-top: var(--nav-h);    /* clear the fixed navbar */
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,12,12,0.68) 0%, rgba(12,12,12,0.15) 70%),
    linear-gradient(to top, rgba(12,12,12,0.60) 0%, transparent 50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 48px;
  padding-top: var(--nav-h);
}
.hero-content .wrap { display: flex; flex-direction: column; align-items: flex-start; }
/* Hero content entrance — pure CSS, no GSAP dependency */
.hero-eyebrow,
.hero-h1,
.hero-sub,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.75s var(--ease-out) forwards;
}
.hero-eyebrow  { animation-delay: 0.2s; }
.hero-h1       { animation-delay: 0.42s; }
.hero-sub      { animation-delay: 0.6s; }
.hero-actions  { animation-delay: 0.76s; }
.hero-stats    { animation-delay: 0.92s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 16px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.65;
  color: rgba(248,245,240,0.68);
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px; right: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: rotate(180deg) translateY(0); }
  50%       { opacity: 1;   transform: rotate(180deg) translateY(-6px); }
}

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-bar {
  height: 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   ABOUT INTRO
══════════════════════════════════════════════ */
#intro {
  padding: 100px 0;
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  align-self: stretch;
}
.intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.intro-img-wrap:hover img { transform: scale(1.04); }
.intro-accent {
  position: absolute;
  bottom: -1px; left: -1px;
  width: 80px; height: 4px;
  background: var(--orange);
}
.intro-text .tag { margin-bottom: 20px; }
.intro-text h2.headline { margin-bottom: 24px; }
.intro-text p.body-text { margin-bottom: 36px; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
#services {
  padding: 100px 0;
  background: var(--surface);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
.services-head .body-text { max-width: 380px; margin-left: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
}
.svc-card:hover { background: var(--card-hover); }
.svc-img-wrap {
  overflow: hidden;
  height: 220px;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.92) saturate(0.95);
}
.svc-card:hover .svc-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.72) saturate(0.80);
}
.svc-body {
  padding: 28px 28px 32px;
  position: relative;
}
.svc-num {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.svc-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.svc-card:hover .svc-name { color: var(--orange); }
.svc-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}
.svc-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width 0.4s var(--ease-out);
}
.svc-card:hover .svc-line { width: 100%; }

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
#portfolio {
  padding: 100px 0;
  background: var(--bg);
}
.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 360px 260px;
  gap: 10px;
}
.p-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}
.p-item:nth-child(1) { grid-column: 1 / 8;  grid-row: 1; }
.p-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.p-item:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; }
.p-item:nth-child(4) { grid-column: 5 / 9;  grid-row: 2; }
.p-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }
.p-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
  filter: brightness(0.92) saturate(0.95);
}
.p-item:hover .p-img {
  transform: scale(1.05);
  filter: brightness(0.68) saturate(0.75);
}
.p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.88) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.p-cat {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.p-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease-out);
}
.p-item:hover .p-cat  { opacity: 1; transform: translateY(0); }
.p-item:hover .p-title { transform: translateY(0); }

/* ══════════════════════════════════════════════
   BEFORE / AFTER
══════════════════════════════════════════════ */
#before-after {
  padding: 100px 0;
  background: var(--surface);
}
.ba-head { text-align: center; margin-bottom: 48px; }
.ba-head .tag { justify-content: center; }
.ba-head .tag::before { display: none; }
.ba-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 2px;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-img { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 2px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  pointer-events: none;
  box-shadow: 0 4px 20px var(--orange-glow);
}
.ba-lbl {
  position: absolute; bottom: 16px;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(12,12,12,0.7);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 5;
  pointer-events: none;
}
.ba-lbl-b { left: 16px; }
.ba-lbl-a { right: 16px; }
.ba-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   STATS
══════════════════════════════════════════════ */
#stats {
  padding: 72px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.stat-box {
  background: var(--card);
  padding: 36px 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num b { color: var(--orange); font-weight: inherit; }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
#testimonials {
  padding: 100px 0;
  background: var(--bg);
}
.t-head { text-align: center; margin-bottom: 64px; }
.t-head .tag { justify-content: center; }
.t-head .tag::before { display: none; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.3s var(--ease-out);
  cursor: default;
}
.t-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
}
.t-stars { display: flex; gap: 3px; margin-bottom: 20px; color: var(--orange); }
.t-quote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(248,245,240,0.78);
  font-style: italic;
  margin-bottom: 28px;
}
.t-divider {
  width: 28px; height: 1px;
  background: var(--orange);
  margin-bottom: 20px;
}
.t-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.t-loc {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 500px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--bg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.about-text .tag { margin-bottom: 20px; }
.about-text h2.headline { margin-bottom: 24px; }
.about-text p.body-text { margin-bottom: 36px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: border-left-color 0.25s, background 0.25s;
}
.about-feat:hover {
  border-left-color: var(--orange);
  background: var(--card-hover);
}
.about-feat-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.about-feat-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.about-feat-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
#process {
  padding: 100px 0;
  background: var(--bg);
}
.process-head { margin-bottom: 72px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.proc-step {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.25s;
}
.proc-step:hover { background: var(--card); }
.proc-n {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 24px;
  transition: opacity 0.25s;
}
.proc-step:hover .proc-n { opacity: 0.5; }
.proc-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.proc-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
#cta {
  padding: 36px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(12,12,12,0.6);
  margin-bottom: 8px;
}
.cta-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(12,12,12,0.65);
  font-weight: 300;
  margin-bottom: 24px;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease-out), box-shadow 0.2s;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.25s var(--ease-out);
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   STICKY WHATSAPP
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 50;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: brightness(1.05);
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { color: var(--orange); flex-shrink: 0; }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--subtle);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-credit { color: var(--subtle); }
.footer-credit a {
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit a:hover { color: var(--orange); border-color: var(--orange); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid      { grid-template-columns: 1fr; gap: 48px; }
  /* Give the image a real height when it's no longer stretching beside text */
  .intro-img-wrap  { min-height: 320px; }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .services-head   { grid-template-columns: 1fr; }
  .services-head .body-text { margin-left: 0; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid  { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .p-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .p-item          { aspect-ratio: 4/3; }
  .process-steps   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  :root            { --nav-h: 64px; }
  .nav-links,
  .nav-cta         { display: none; }
  .hamburger       { display: flex; }
  .nav-inner       { padding: 0 20px; }

  /* ── Section padding ── */
  #intro, #services, #portfolio,
  #testimonials, #about, #process { padding: 64px 0; }
  #cta, .contact-cta-section { padding: 64px 0; }
  #stats           { padding: 48px 0; }
  #services-detail,
  #gallery-section,
  #contact-section { padding: 52px 0 68px; }

  /* ── Grids ── */
  .services-grid   { grid-template-columns: 1fr; }
  .t-grid          { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .portfolio-grid  { grid-template-columns: 1fr; }
  .p-item          { aspect-ratio: 16/10; }

  /* ── Layout fixes ── */
  .about-grid      { gap: 32px; }
  .about-img-wrap img { height: 300px; }
  .intro-img-wrap  { min-height: 260px; }
  .portfolio-head  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .process-head    { margin-bottom: 48px; }
  .services-head   { margin-bottom: 40px; }

  /* ── Component sizing ── */
  .hero-stats      { gap: 24px; flex-wrap: wrap; }
  .ba-wrap         { aspect-ratio: 4/3; }
  .stat-box        { padding: 28px 20px; }
  .proc-step       { padding: 32px 24px; }
  .t-card          { padding: 28px 24px; }

  /* ── Page hero ── */
  .page-hero       { min-height: 38vh; }
  .page-hero-content { padding-bottom: 36px; }

  /* ── Gallery ── */
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-filters { margin-bottom: 32px; gap: 8px; }

  /* ── Footer ── */
  .footer-bottom   { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* ── CTA ── */
  .cta-btns        { flex-direction: column; align-items: stretch; }
  .cta-btns a      { justify-content: center; }
}

@media (max-width: 480px) {
  /* ── Spacing ── */
  .wrap            { padding: 0 18px; }
  #intro, #services, #portfolio,
  #testimonials, #about, #process { padding: 48px 0; }
  #cta, .contact-cta-section { padding: 48px 0; }
  #stats           { padding: 36px 0; }
  #services-detail,
  #gallery-section,
  #contact-section { padding: 36px 0 52px; }

  /* ── Hero ── */
  .hero-h1         { font-size: 2.2rem; }
  .hero-sub        { font-size: 0.9rem; }
  .hero-actions    { flex-direction: column; }
  .hero-actions a  { justify-content: center; }
  .hero-stat-num   { font-size: 1.55rem; }
  .hero-stats      { gap: 20px; }

  /* ── Type ── */
  h2.headline      { font-size: 1.85rem; }
  .page-h1         { font-size: 2.4rem; }

  /* ── Images ── */
  .about-img-wrap img { height: 240px; }
  .intro-img-wrap  { min-height: 220px; }

  /* ── Cards ── */
  .t-card          { padding: 24px 18px; }
  .svc-body        { padding: 22px 18px 26px; }
  .proc-step       { padding: 24px 18px; }
  .stat-box        { padding: 24px 16px; }

  /* ── Gallery ── */
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* ── Footer ── */
  .footer-grid     { gap: 28px; }
  .footer-desc     { max-width: 100%; }

  /* ── Contact page socials ── */
  .contact-socials { flex-direction: column; }
  .contact-social-btn { justify-content: center; }

  /* ── Contact CTA ── */
  .contact-cta-sub { margin-bottom: 28px; }
}

/* ══════════════════════════════════════════════
   LEAD MODAL
══════════════════════════════════════════════ */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal[hidden] { display: none; }
.lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lead-box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  animation: modalIn 0.42s var(--ease-out) forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.lead-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.lead-close:hover { color: var(--white); background: var(--card-hover); }
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
}
.lead-brand {
  padding: 52px 40px;
  background: var(--card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.lead-logo { height: 68px; width: auto; max-width: none; align-self: center; filter: brightness(1.05); }
.lead-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
}
.lead-headline em { font-style: italic; color: var(--orange); }
.lead-tagline {
  font-size: 0.87rem;
  line-height: 1.72;
  color: var(--muted);
}
.lead-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-perks li {
  font-size: 0.82rem;
  color: rgba(248,245,240,0.60);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lead-perks li span { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.lead-form-wrap { padding: 52px 44px; }
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.lead-field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.50);
}
.lead-field label span { color: var(--orange); }
.lead-field input,
.lead-field select,
.lead-field textarea {
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: rgba(248,245,240,0.22); }
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.lead-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='rgba(248,245,240,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.lead-field select option { background: var(--card); color: var(--white); }
.lead-field textarea { resize: vertical; min-height: 86px; }
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-submit { width: 100%; justify-content: center; margin-top: 6px; }
.lead-error {
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-top: 12px;
  text-align: center;
}
.lead-error a { color: var(--orange); text-decoration: underline; }
.lead-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  gap: 16px;
}
.lead-success[hidden] { display: none; }
.lead-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--orange-faint);
  border: 1px solid var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.lead-success h4 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--white);
}
.lead-success p { font-size: 0.9rem; color: var(--muted); max-width: 280px; }
.lead-done { align-self: center; margin-top: 4px; }
@media (max-width: 680px) {
  .lead-inner          { grid-template-columns: 1fr; }
  .lead-brand          { padding: 36px 28px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .lead-form-wrap      { padding: 32px 28px 40px; }
  .lead-row            { grid-template-columns: 1fr; gap: 0; }
  .lead-headline       { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,12,12,0.95) 0%, rgba(12,12,12,0.50) 55%, rgba(12,12,12,0.25) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 56px;
}
.page-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
}
.page-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1.06;
  color: var(--white);
}

/* ══════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════ */
#gallery-section { padding: 80px 0 100px; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.gf-btn {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  padding: 10px 22px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.gf-btn:hover  { color: var(--white); border-color: rgba(255,255,255,0.25); }
.gf-btn.active { color: var(--bg); background: var(--orange); border-color: var(--orange); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gal-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.92) saturate(0.95);
}
.gal-item:hover img { transform: scale(1.04); filter: brightness(0.68) saturate(0.80); }
.gal-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
}
.gal-item:hover .gal-item-overlay { opacity: 1; }
.gal-item-cat {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   SERVICES DETAIL PAGE
══════════════════════════════════════════════ */
#services-detail { padding: 80px 0 100px; }
.svc-detail-grid { display: flex; flex-direction: column; gap: 3px; }
.svc-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.svc-detail-card:hover { border-color: var(--border-mid); }
.svc-detail-card:nth-child(even) .sdc-img-wrap { order: 2; }
.svc-detail-card:nth-child(even) .sdc-body      { order: 1; }
.sdc-img-wrap { overflow: hidden; }
.sdc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: brightness(0.92) saturate(0.92);
}
.svc-detail-card:hover .sdc-img-wrap img { transform: scale(1.04); }
.sdc-body {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.sdc-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.sdc-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
}
.sdc-desc {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--muted);
}
.sdc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sdc-features li {
  font-size: 0.82rem;
  color: rgba(248,245,240,0.60);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sdc-features li::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .svc-detail-card,
  .svc-detail-card:nth-child(even) .sdc-img-wrap,
  .svc-detail-card:nth-child(even) .sdc-body { grid-column: 1; order: unset; }
  .svc-detail-card { grid-template-columns: 1fr; min-height: unset; }
  .sdc-img-wrap { height: 260px; }
  .sdc-body { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .sdc-img-wrap { height: 220px; }
  .sdc-body { padding: 28px 18px; }
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
#contact-section { padding: 80px 0 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* Left: info panel */
.contact-info {}
.contact-info-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info-heading em { font-style: italic; color: var(--orange); }
.contact-info-intro {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-items { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 2px;
  background: var(--orange-faint);
  border: 1px solid var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-item-body {}
.contact-item-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.96rem;
  color: var(--white);
  font-weight: 500;
}
.contact-item-value a {
  color: inherit;
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--orange); }

.contact-socials {
  display: flex;
  gap: 12px;
}
.contact-social-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  padding: 10px 18px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.contact-social-btn:hover {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange-faint);
}

/* Right: form panel */
.contact-form-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px 44px 52px;
}
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.contact-form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
  gap: 18px;
}
.contact-success[hidden] { display: none; }
.contact-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--orange-faint);
  border: 1px solid var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.contact-success h4 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--white);
}
.contact-success p { font-size: 0.9rem; color: var(--muted); max-width: 300px; }
.contact-error {
  font-size: 0.82rem;
  color: #ff6b6b;
  margin-top: 12px;
  text-align: center;
}
.contact-error a { color: var(--orange); text-decoration: underline; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .contact-form-panel { padding: 32px 24px 36px; }
}

/* Contact page CTA section */
.contact-cta-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-cta-wrap  { text-align: center; }
.contact-cta-tag   { justify-content: center; margin-bottom: 16px; }
.contact-cta-tag::before { display: none; }
.contact-cta-headline { margin-bottom: 20px; }
.contact-cta-sub   { max-width: 440px; margin: 0 auto 40px; }
