/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0E0B09;
  --bg-2:      #15110E;
  --bg-3:      #1E1813;
  --bg-4:      #251e18;
  --cream:     #F2EBDA;
  --cream-2:   #DDD2BC;
  --cream-3:   #8B7E68;
  --gold:      #C49A5B;
  --gold-2:    #a07d3f;
  --line:      rgba(242,235,218,.1);
  --line-2:    rgba(242,235,218,.06);

  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h:     72px;
  --gutter:    clamp(1.25rem, 5vw, 4rem);
  --max-w:     1280px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.025em; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  border-radius: 6px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Layout helpers
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. Typography
   ============================================================= */
.section-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--cream-3);
  max-width: 52ch;
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 3px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .22s var(--ease-out), background .22s, color .22s, box-shadow .22s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(196,154,91,.25);
}
.btn-primary:hover {
  background: #d4a96a;
  box-shadow: 0 8px 32px rgba(196,154,91,.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,235,218,.3);
}
.btn-ghost:hover {
  background: rgba(242,235,218,.06);
  border-color: rgba(242,235,218,.6);
}

.btn-large { padding: 1.1rem 2.75rem; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }
.mid-cta .btn, .bottom-cta .btn { white-space: normal; text-align: center; max-width: 100%; }

/* =============================================================
   6. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Safety: data-split elements never stay invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s var(--ease-out), box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  gap: 0;
}
/* Logo text — shared base */
.logo-hazbun {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--cream);
  line-height: 1;
}
.logo-construction {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .45rem;
  font-weight: 400;
  letter-spacing: .42em;
  color: var(--gold);
  line-height: 1;
  margin-top: 4px;
}
/* Footer sizes */
.logo-hazbun--lg { font-size: 2rem; letter-spacing: .2em; }
.logo-construction--lg { font-size: .62rem; letter-spacing: .44em; margin-top: 6px; }
.footer-logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  padding: .6rem 1.4rem;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 3px;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--bg) !important; }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(14,11,9,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  z-index: 999;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 300;
  color: var(--cream-2);
  transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--cream-3);
}
.mobile-contact a:hover { color: var(--gold); }

/* =============================================================
   8. Sticky CTA
   ============================================================= */
.sticky-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(120%);
  z-index: 900;
  transition: transform .4s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(-50%) translateX(0); }
.sticky-cta-btn {
  display: block;
  padding: .85rem 1rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  border-radius: 6px 0 0 6px;
  transition: background .2s, padding .2s;
}
.sticky-cta-btn:hover { background: #d4a96a; }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,11,9,.82) 0%,
    rgba(14,11,9,.55) 50%,
    rgba(14,11,9,.75) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(196,154,91,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(14,11,9,.4) 0%, transparent 60%);
  pointer-events: none;
  animation: meshPulse 18s ease-in-out infinite;
}
@keyframes meshPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem;
  border: 1px solid rgba(196,154,91,.35);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -.03em;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-line { display: block; }
.hero-italic { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  color: var(--cream-2);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: .85rem;
}
.hero-promise {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--cream-3);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.8s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =============================================================
   10. Trust bar
   ============================================================= */
.trust {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem var(--gutter);
}
.trust-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
}
.trust-badge strong { display: block; font-size: .9rem; color: var(--cream); }
.trust-badge span { display: block; font-size: .78rem; color: var(--cream-3); }
.trust-tagline {
  font-size: .875rem;
  color: var(--cream-3);
  max-width: 65ch;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

/* =============================================================
   11. About
   ============================================================= */
.about {
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
  background: var(--bg);
}
.about-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  gap: 4rem;
}
.about-content .btn { margin-top: 2rem; }
.about-body {
  color: var(--cream-2);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.8;
  max-width: 55ch;
  margin-bottom: .5rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  align-self: start;
}
.stat-card {
  background: var(--bg-3);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* =============================================================
   12. Services
   ============================================================= */
.services {
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
  background: var(--bg-2);
}
.services-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.services-header {
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-3);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background .3s;
  cursor: default;
}
.service-card:hover { background: var(--bg-4); }
.service-icon {
  display: block;
  margin-bottom: .5rem;
  color: var(--gold);
  line-height: 0;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.service-card p {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
  margin-top: .5rem;
}
.service-link:hover { gap: .8rem; }

/* =============================================================
   13. Mid CTA
   ============================================================= */
.mid-cta {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: var(--bg-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(196,154,91,.08) 0%, transparent 70%);
  pointer-events: none;
}
.mid-cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
}
.mid-cta-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mid-cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2.25rem;
  line-height: 1.1;
}
.mid-cta-title em { font-style: italic; color: var(--gold); }

/* =============================================================
   14. Process
   ============================================================= */
.process {
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
  background: var(--bg);
}
.process-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.process-header {
  margin-bottom: 4rem;
  max-width: 55ch;
}
.process-steps {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { background: var(--bg-2); }
.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  padding-top: .15rem;
  transition: opacity .25s;
}
.process-step:hover .step-num { opacity: 1; }
.step-content h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .5rem;
  line-height: 1.25;
}
.step-content p {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
}

/* =============================================================
   15. Projects
   ============================================================= */
.projects {
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
  background: var(--bg-2);
}
.projects-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.projects-header { margin-bottom: 3.5rem; }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.project-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-3);
}
.project-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease-out), filter .5s;
  filter: sepia(0.22) contrast(1.1) brightness(.72) saturate(0.85);
}
.project-card:hover .project-img-wrap img {
  transform: scale(1.07);
  filter: sepia(0.1) contrast(1.05) brightness(.88) saturate(1.0);
}
.project-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(196,154,91,.08) 0%, rgba(14,11,9,.35) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s;
}
.project-card:hover .project-img-wrap::after { opacity: 0.4; }
.project-overlay { z-index: 2; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,9,.85) 0%, rgba(14,11,9,.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .4s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-cta {
  padding: .65rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, color .2s;
  backdrop-filter: blur(4px);
}
.project-cta:hover { background: var(--gold); color: var(--bg); }
.project-info {
  padding: 1.1rem 1.4rem 1.3rem;
  border-left: 2px solid rgba(196,154,91,.4);
  margin: 0.9rem 1rem;
}
.project-cat {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
}
.project-info h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: .01em;
}
.projects-cta { text-align: center; }

/* =============================================================
   16. Testimonials
   ============================================================= */
.testimonials {
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
  background: var(--bg);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.testimonials-header { margin-bottom: 3.5rem; }
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color .3s, background .3s;
}
.testimonial-card:hover {
  border-color: rgba(196,154,91,.3);
  background: var(--bg-4);
}
.stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--cream-2);
  line-height: 1.7;
  flex: 1;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  opacity: .3;
  line-height: 0;
  vertical-align: -.5em;
  margin-right: .25rem;
}
.testimonial-card footer strong {
  display: block;
  font-size: .875rem;
  color: var(--cream);
  margin-bottom: .2rem;
}
.testimonial-card footer span {
  font-size: .78rem;
  color: var(--cream-3);
}

/* =============================================================
   17. Bottom CTA
   ============================================================= */
.bottom-cta {
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  inset: -50% -10%;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(196,154,91,.07) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
}
.bottom-cta-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.bottom-cta-title em { font-style: italic; color: var(--gold); }
.bottom-cta-sub {
  color: var(--cream-3);
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* =============================================================
   18. Contact
   ============================================================= */
.contact {
  padding: clamp(4rem, 9vw, 9rem) var(--gutter);
  background: var(--bg);
}
.contact-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  gap: 4rem;
}
.contact-desc {
  color: var(--cream-3);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .25s, background .25s;
  text-decoration: none;
}
.contact-item:hover {
  border-color: rgba(196,154,91,.35);
  background: var(--bg-2);
}
.contact-item-icon { display: flex; align-items: center; flex-shrink: 0; margin-top: .05rem; color: var(--gold); }
.contact-item strong { display: block; font-size: .8rem; font-weight: 500; color: var(--cream); letter-spacing: .05em; }
.contact-item span { display: block; font-size: .85rem; color: var(--cream-3); margin-top: .15rem; word-break: break-all; }

/* Form */
.contact-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.75rem, 4vw, 3rem);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .9rem;
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-3); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7E68' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--bg-2); }
.form-note {
  font-size: .75rem;
  color: var(--cream-3);
  text-align: center;
  margin-top: .25rem;
}

/* Form button states */
#form-submit .btn-sending,
#form-submit .btn-sent { display: none; }
#form-submit.is-sending .btn-text { display: none; }
#form-submit.is-sending .btn-sending { display: inline; }
#form-submit.is-sent .btn-text,
#form-submit.is-sent .btn-sending { display: none; }
#form-submit.is-sent .btn-sent { display: inline; }
#form-submit.is-sent { background: #2a6a3a; box-shadow: none; cursor: default; }

/* =============================================================
   19. Footer
   ============================================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.7;
  max-width: 36ch;
  margin: 1.5rem 0;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cream-3);
  transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--gold); border-color: rgba(196,154,91,.4); }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-col h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col span {
  display: block;
  font-size: .83rem;
  color: var(--cream-3);
  margin-bottom: .55rem;
  line-height: 1.5;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-bottom p {
  font-size: .75rem;
  color: var(--cream-3);
  line-height: 1.5;
}
.footer-areas {
  font-size: .72rem;
  color: rgba(139,126,104,.6);
}

/* =============================================================
   20. WhatsApp button
   ============================================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* =============================================================
   21. Responsive — tablet (720px+)
   ============================================================= */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* =============================================================
   22. Responsive — desktop (1024px+)
   ============================================================= */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    grid-template-columns: 100px 1fr;
    padding: 2.25rem 2.75rem;
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects-grid .project-card:first-child {
    grid-column: span 2;
  }
  .projects-grid .project-card:first-child .project-img-wrap {
    aspect-ratio: 16/9;
  }
}

/* =============================================================
   23. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-mesh { animation: none; }
  .scroll-line { animation: none; }
  @keyframes dotPulse { 0%, 100% { opacity: 1; } }
}
