:root {
  --bg:      #0C0906;
  --bg2:     #131009;
  --bg3:     #1C1812;
  --fg:      #FFFFFF;
  --fg2:     rgba(255,255,255,0.65);
  --fg3:     rgba(255,255,255,0.35);
  --gold:    #D6AE4E;
  --gold-d:  #B5903C;
  --border:  rgba(255,255,255,0.07);
  --border-g:rgba(214,174,78,0.22);
  --serif:   'Playfair Display', Georgia, serif;
  --display: 'Anton', 'Barlow', system-ui, sans-serif;
  --body:    'Barlow', system-ui, sans-serif;
  --radius:  3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 1.7rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 7rem);
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(2rem, 5vw, 6rem);
  display: flex; align-items: center; justify-content: space-between;
  height: 6.4rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2.8rem;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--fg2);
}
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

.nav-cta {
  background: var(--gold);
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-d); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(8rem, 12vw, 12rem) clamp(2rem, 5vw, 6rem) clamp(5rem, 8vw, 8rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='%23D6AE4E' stroke-width='0.4' opacity='0.10'/%3E%3C/svg%3E");
}

/* ── HERO ASSEMBLY VIDEO ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* the isometric homestead — a self-animating vector that draws itself on */
.hero-build-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 54%;
}
/* readability + edge-blend so the headline stays crisp over the build */
.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(12,9,6,0.88) 0%,
      rgba(12,9,6,0.42) 34%,
      rgba(12,9,6,0.50) 68%,
      rgba(12,9,6,0.94) 100%);
}

.hero-phi-bg { z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90ch;
  margin: 0 auto 5.5rem;
}

.hero-eyebrow {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(6.6rem, 11vw, 14.5rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.002em;
  text-transform: uppercase;
  margin: 0 auto 3rem;
  text-shadow: 0 3px 34px rgba(0,0,0,0.6);
  -webkit-text-stroke: 0.6px currentColor;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
  text-shadow: 0 0 42px rgba(214,174,78,0.4);
}

.hero-body {
  font-size: 1.8rem;
  color: var(--fg2);
  line-height: 1.7;
  margin: 0 auto 4rem;
}

.hero-actions { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  background: var(--gold);
  color: #000;
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.4rem 3.2rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-d); }

.btn-outline {
  border: 1px solid var(--border-g);
  color: var(--fg2);
  font-family: var(--body);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.4rem 3rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO TIMELINE ── */
.hero-timeline {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  border: 1px solid rgba(245,194,0,0.15);
  background: rgba(14,14,14,0.7);
  backdrop-filter: blur(6px);
}

.hero-stage {
  padding: clamp(2.5rem,4vw,4rem) clamp(1.8rem,3vw,3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  border-right: 1px solid rgba(245,194,0,0.15);
}
.hero-stage:last-child { border-right: none; }

.hero-stage-num {
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  opacity: 0.65;
}

.hero-stage-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.hero-stage-desc {
  font-size: 1.3rem;
  color: var(--fg3);
  line-height: 1.6;
  text-align: center;
  max-width: 22ch;
}

.hero-stage-illustration {
  width: 100%;
  max-width: 260px;
  height: auto;
  overflow: visible;
}

.hero-stage-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.45;
  color: var(--gold);
}
.hero-stage-arrow svg { width: 22px; height: auto; }

/* ── GOLDEN RATIO BACKGROUND ── */
.hero-phi-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* φ annotation on timeline panels */
.hero-stage-illustration text {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.8rem 0;
  background: var(--bg2);
}
.trust-bar .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(3rem, 5vw, 8rem); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.4rem; color: var(--fg2); font-weight: 500; letter-spacing: 0.04em;
}
.trust-item svg { width: 1.8rem; height: 1.8rem; fill: var(--gold); flex-shrink: 0; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 4.6vw, 5.6rem);
  font-weight: 400; line-height: 1.02; letter-spacing: 0.01em; text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section-body { font-size: 1.75rem; color: var(--fg2); line-height: 1.7; max-width: 56ch; }

/* ── BLUEPRINT GRID BACKGROUND ── */
.services {
  padding: clamp(7rem, 10vw, 12rem) 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='%23D6AE4E' stroke-width='0.4' opacity='0.18'/%3E%3C/svg%3E");
}
.services-header { margin-bottom: clamp(5rem, 7vw, 7rem); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

/* ── SERVICE CARDS + FLOOR PLANS ── */
.service-card {
  background: var(--bg2);
  padding: 3.6rem 3.2rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: var(--bg3); }

.floor-plan {
  position: absolute;
  bottom: -8px; right: -8px;
  width: 58%;
  opacity: 0.055;
  color: var(--gold);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.service-card:hover .floor-plan { opacity: 0.14; }

/* door swing animation */
.door-leaf {
  transform-box: fill-box;
  transform-origin: 0% 0%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .door-leaf { transform: rotate(-88deg); }

.service-number {
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold);
  font-weight: 500; letter-spacing: 0.1em; margin-bottom: 2.4rem; opacity: 0.7;
  position: relative; z-index: 1;
}
.service-card h3 {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 700;
  margin-bottom: 1.2rem; line-height: 1.2;
  position: relative; z-index: 1;
}
.service-card p { font-size: 1.55rem; color: var(--fg2); line-height: 1.7; position: relative; z-index: 1; }

/* ── PORTFOLIO ── */
.portfolio { padding: clamp(7rem, 10vw, 12rem) 0; border-top: 1px solid var(--border); }
.portfolio-header { margin-bottom: clamp(4rem, 6vw, 5rem); }

.filter-bar {
  display: flex; align-items: center; gap: 0.8rem;
  flex-wrap: wrap; margin-bottom: clamp(4rem, 6vw, 5rem);
}
.filter-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--fg3);
  font-family: var(--body);
  font-size: 1.4rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.9rem 2rem; border-radius: 100px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--fg2); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }

/* ── SCRAPBOOK GRID ── pinned-up photos, gently askew, straighten on hover ── */
.grid { columns: 3; column-gap: 2rem; }
@media (min-width: 1300px){ .grid { columns: 4; } }
.grid-item {
  break-inside: avoid; margin-bottom: 2rem;
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s ease, border-color 0.3s ease;
  will-change: transform;
}
.grid-item.hidden { display: none; }
.grid-item img { width: 100%; display: block; transition: transform 0.6s ease; }
/* subtle scattered tilt — cycles so the wall never looks like a strict grid */
.grid-item:nth-child(6n+1) { transform: rotate(-1.8deg); }
.grid-item:nth-child(6n+2) { transform: rotate(1.3deg); }
.grid-item:nth-child(6n+3) { transform: rotate(-0.8deg); }
.grid-item:nth-child(6n+4) { transform: rotate(2deg); }
.grid-item:nth-child(6n+5) { transform: rotate(-1.3deg); }
.grid-item:nth-child(6n+6) { transform: rotate(0.9deg); }
.grid-item:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  border-color: var(--border-g);
  z-index: 5;
}
.grid-item:hover img { transform: scale(1.05); }
.grid-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 2rem;
}
.grid-item:hover .grid-item-overlay { opacity: 1; }
.grid-item-label { font-size: 1.3rem; font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.04em; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox-close {
  position: fixed; top: 2.4rem; right: 2.4rem;
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--fg2);
  font-size: 2rem; width: 4.4rem; height: 4.4rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  font-size: 2.4rem; width: 5rem; height: 5rem; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ── ABOUT ── */
.about { padding: clamp(7rem, 10vw, 12rem) 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(5rem, 7vw, 10rem); align-items: center; }
.about-image { border-radius: 4px; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--border); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image.portrait { aspect-ratio: 4/5; max-width: 440px; }
.about-image.portrait img { object-position: center 20%; }
.about-content .section-body { margin-bottom: 2rem; }
.about-stats { display: flex; gap: 4rem; margin-top: 4rem; padding-top: 3.6rem; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--serif); font-size: 4.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.6rem; }
.stat-label { font-size: 1.25rem; color: var(--fg3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── SERVICE AREA ── */
.area { padding: clamp(6rem, 8vw, 10rem) 0; text-align: center; }
.area .section-body { margin: 0 auto 4rem; }
.area-towns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 4.8rem; }
.town-pill {
  border: 1px solid var(--border-g); color: var(--fg2);
  padding: 0.8rem 2rem; border-radius: 100px;
  font-size: 1.45rem; font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.town-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials { padding: clamp(7rem, 10vw, 12rem) 0; background: var(--bg2); border-top: 1px solid var(--border); }
.testimonials-header { margin-bottom: clamp(4rem, 6vw, 6rem); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.testimonial { background: var(--bg3); padding: 3.6rem; transition: background 0.2s; }
.testimonial:hover { background: #222; }
.testimonial-stars { display: flex; gap: 0.4rem; margin-bottom: 2rem; }
.testimonial-stars span { color: var(--gold); font-size: 1.4rem; }
.testimonial-quote { font-size: 1.65rem; line-height: 1.75; color: var(--fg2); margin-bottom: 2.4rem; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 1.45rem; }
.testimonial-location { font-size: 1.25rem; color: var(--gold); margin-top: 0.3rem; letter-spacing: 0.04em; }

/* ── CONTACT ── */
.contact { padding: clamp(7rem, 10vw, 12rem) 0; border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(5rem, 7vw, 10rem); align-items: start; }
.contact-info .section-body { margin-bottom: 3.6rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1.4rem; margin-bottom: 2.4rem; }
.contact-detail svg { width: 2rem; height: 2rem; fill: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-detail-text { font-size: 1.6rem; color: var(--fg2); line-height: 1.5; }
.contact-detail-text strong { color: var(--fg); font-weight: 600; display: block; margin-bottom: 0.2rem; }
form { display: flex; flex-direction: column; gap: 1.4rem; }
input, textarea, select {
  width: 100%; padding: 1.4rem 1.6rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg2); font-family: var(--body); font-size: 1.6rem; color: var(--fg);
  outline: none; transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: var(--fg3); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); background: var(--bg3); }
select { cursor: pointer; }
select option { background: var(--bg2); }
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  color: var(--fg3); padding: 4rem clamp(2rem, 5vw, 6rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.footer-logo { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--fg); }
.footer-logo span { color: var(--gold); }
.footer-copy, .footer-area { font-size: 1.3rem; }

/* ── REVEALS ── */
.reveal { opacity: 0; transform: translateY(28px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-bottom: 4rem; }
  .hero-timeline { grid-template-columns: 1fr; }
  .hero-stage { border-right: none; border-bottom: 1px solid rgba(245,194,0,0.15); }
  .hero-stage:last-child { border-bottom: none; }
  .hero-stage-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }
  .about-image.portrait { aspect-ratio: 4/5; max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 2.4rem; }
  .grid { columns: 2; }
}
@media (max-width: 500px) {
  .grid { columns: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}


/* ── DECORATIVE FLOOR-PLAN VECTORS (fill the side space) ── */
.has-deco { position: relative; overflow: hidden; }
.has-deco > .wrap { position: relative; z-index: 2; }
.deco-plan {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(220px, 22vw, 420px); height: auto;
  color: var(--gold); opacity: 0.06; pointer-events: none; z-index: 0;
}
.deco-plan.left  { left: -6rem; }
.deco-plan.right { right: -6rem; }
.deco-plan.top   { top: 8%; transform: none; }
.deco-plan.bottom{ top: auto; bottom: -4rem; transform: none; }
@media (max-width: 1100px){ .deco-plan { display: none; } }


/* ── WORKED WITH (wine estates) ── */
.clients { padding: clamp(6rem,8vw,10rem) 0; border-top:1px solid var(--border); background:var(--bg2); text-align:center; }
.clients-header { max-width:60ch; margin:0 auto clamp(3.5rem,5vw,5rem); }
.client-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(168px,1fr)); gap:1px; border:1px solid var(--border); border-radius:4px; overflow:hidden; }
.client { background:var(--bg); padding:3.2rem 1.6rem; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.7rem; min-height:180px; transition:background .25s; }
.client:hover{ background:var(--bg3); }
.client .name { font-family:var(--serif); font-size:2.1rem; font-weight:700; line-height:1.18; }
.client .loc { font-size:1.15rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); opacity:.85; }
.client.has-img { padding:0; position:relative; overflow:hidden; min-height:210px; }
.client.has-img img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.client.has-img .ov{ position:relative; z-index:1; width:100%; min-height:210px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.6rem; padding:2rem; background:linear-gradient(rgba(12,9,6,.5),rgba(12,9,6,.82)); }

/* ════════════════════════════════════════════════════════
   CALL / WHATSAPP — the whole site points at picking up the phone
   ════════════════════════════════════════════════════════ */
:root { --wa: #25D366; --wa-d: #1da851; }

/* WhatsApp + Call buttons */
.btn-wa, .btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 1rem;
  font-family: var(--body); font-size: 1.6rem; font-weight: 600;
  padding: 1.4rem 2.8rem; border-radius: var(--radius);
  border: none; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.btn-wa { background: var(--wa); color: #06250f; }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-1px); }
.btn-call { background: var(--gold); color: #000; }
.btn-call:hover { background: var(--gold-d); transform: translateY(-1px); }
.btn-wa svg, .btn-call svg { width: 2rem; height: 2rem; flex-shrink: 0; }
.btn-wa svg { fill: #06250f; }
.btn-call svg { fill: #000; }
.btn-call.outline { background: none; border: 1px solid var(--border-g); color: var(--fg); }
.btn-call.outline svg { fill: var(--gold); }
.btn-call.outline:hover { border-color: var(--gold); color: var(--gold); }

/* nav phone */
.nav-right { display: flex; align-items: center; gap: 1.6rem; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 1.5rem; font-weight: 600; color: var(--fg); letter-spacing: 0.01em;
}
.nav-phone svg { width: 1.7rem; height: 1.7rem; fill: var(--gold); }
.nav-phone small { display: block; font-size: 1.05rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.nav-wa {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--wa); color: #06250f; font-size: 1.4rem; font-weight: 700;
  padding: 0.9rem 1.8rem; border-radius: var(--radius); transition: background .2s;
}
.nav-wa:hover { background: var(--wa-d); }
.nav-wa svg { width: 1.6rem; height: 1.6rem; fill: #06250f; }

/* hero actions now mix gold + green */
.hero-actions .btn-wa, .hero-actions .btn-call { font-size: 1.7rem; padding: 1.5rem 3rem; }
.hero-note { margin-top: 2.2rem; font-size: 1.4rem; color: var(--fg2); display: inline-flex; align-items: center; gap: .8rem; }
.hero-note .dot { width: .8rem; height: .8rem; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.55)} 70%{box-shadow:0 0 0 10px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ── PHOTO MARQUEE (auto-scrolling window-shop strip) ── */
.marquee { overflow: hidden; padding: 2.4rem 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.marquee::before, .marquee::after { content:""; position:absolute; top:0; bottom:0; width: 12vw; z-index: 2; pointer-events:none; }
.marquee::before { left:0; background: linear-gradient(to right, var(--bg2), transparent); }
.marquee::after { right:0; background: linear-gradient(to left, var(--bg2), transparent); }
.marquee-track { display: flex; gap: 1.2rem; width: max-content; animation: scroll-x 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { width: clamp(220px, 26vw, 320px); aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; position: relative; border: 1px solid var(--border); }
.marquee-item img, .marquee-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.marquee-item .tag { position:absolute; left:1rem; bottom:1rem; font-size:1.15rem; font-weight:600; letter-spacing:.04em; color:#fff; text-shadow:0 1px 6px rgba(0,0,0,.7); z-index:1; }
.marquee-item .play-pip { position:absolute; top:1rem; right:1rem; width:2.6rem; height:2.6rem; border-radius:50%; background:rgba(0,0,0,.55); display:flex; align-items:center; justify-content:center; }
.marquee-item .play-pip svg { width:1.2rem; height:1.2rem; fill:#fff; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FEATURED VIDEO BAND ── */
.video-band { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; border-top: 1px solid var(--border); }
.video-band > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-band::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(to right, rgba(12,9,6,.92) 0%, rgba(12,9,6,.72) 45%, rgba(12,9,6,.35) 100%); }
.video-band .wrap { position: relative; z-index: 2; width: 100%; }
.video-band-inner { max-width: 60ch; }
.video-band h2 { font-family: var(--display); font-size: clamp(3.4rem,5vw,6rem); font-weight:400; line-height:1.0; letter-spacing:.01em; text-transform:uppercase; margin-bottom: 1.8rem; }
.video-band h2 em { color: var(--gold); font-style: normal; }
.video-band p { font-size: 1.8rem; color: var(--fg2); line-height: 1.6; margin-bottom: 3rem; max-width: 48ch; }
.video-band .hero-actions { justify-content: flex-start; }

/* ── ON THE TOOLS (real people) ── */
.tools { padding: clamp(7rem,10vw,12rem) 0; border-top: 1px solid var(--border); background: var(--bg2); }
.tools-header { margin-bottom: clamp(4rem,6vw,5rem); max-width: 60ch; }
.tools-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.4rem; }
.tools-grid .cell { border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--border); background: var(--bg3); }
.tools-grid .cell img, .tools-grid .cell video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tools-grid .tall { grid-row: span 2; }
.cell-cap { position:absolute; left:0; right:0; bottom:0; padding: 2.2rem 1.8rem 1.4rem; font-size:1.4rem; font-weight:500; color:#fff; background:linear-gradient(to top, rgba(0,0,0,.78), transparent); z-index:1; }
.tools-cta { margin-top: 3.4rem; display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.tools-cta .line { font-size: 1.7rem; color: var(--fg); font-weight: 500; }
@media (max-width: 760px){ .tools-grid { grid-template-columns: 1fr 1fr; } .tools-grid .tall { grid-row: span 1; } }


/* ── WORK TEASER (links to dedicated work.html) ── */
.work-teaser{ padding: clamp(6rem,9vw,10rem) 0; border-top:1px solid var(--border); text-align:center; }
.work-teaser .section-body{ margin:0 auto; }
.work-teaser .cluster{ display:flex; flex-wrap:wrap; justify-content:center; gap:1.6rem; margin:clamp(3rem,5vw,4.5rem) 0; }
.work-teaser .cluster a{ width:clamp(150px,17vw,228px); aspect-ratio:4/5; border-radius:var(--radius); overflow:hidden;
  border:1px solid rgba(255,255,255,.08); box-shadow:0 10px 26px rgba(0,0,0,.5);
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.work-teaser .cluster img{ width:100%; height:100%; object-fit:cover; display:block; }
.work-teaser .cluster a:nth-child(odd){ transform:rotate(-2deg); }
.work-teaser .cluster a:nth-child(even){ transform:rotate(1.6deg); }
.work-teaser .cluster a:nth-child(3n){ transform:rotate(-0.6deg); }
.work-teaser .cluster a:hover{ transform:rotate(0) translateY(-8px) scale(1.04); box-shadow:0 18px 40px rgba(0,0,0,.6); z-index:2; }
@media (max-width:560px){ .work-teaser .cluster a{ width:42vw; } }

/* ── SCRAPBOOK: photos + quotes + scribbly arrows ── */
.scrap { position: relative; columns: 3; column-gap: 2.6rem; margin-top: 1rem; }
@media (max-width:900px){ .scrap{ columns:2; } }
@media (max-width:560px){ .scrap{ columns:1; } }
.scrap-item { break-inside: avoid; margin-bottom: 2.8rem; position: relative;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.scrap-item.ph { border-radius: var(--radius); overflow: hidden;
  border:1px solid rgba(255,255,255,.08); box-shadow:0 10px 26px rgba(0,0,0,.5); }
.scrap-item.ph img, .scrap-item.ph video { width:100%; display:block; }
.scrap-item .cap { position:absolute; left:0; right:0; bottom:0; padding:1.8rem 1.4rem 1.2rem;
  font-size:1.35rem; color:#fff; background:linear-gradient(to top,rgba(0,0,0,.82),transparent); }
.scrap-quote { background: var(--bg3); border:1px solid var(--border-g); border-radius: var(--radius);
  padding: 3rem 2.6rem 2.6rem; box-shadow:0 10px 26px rgba(0,0,0,.45); }
.scrap-quote p { font-family: var(--serif); font-style: italic; font-size: 2.2rem; line-height:1.35; color: var(--fg); }
.scrap-quote .by { margin-top:1.4rem; font-size:1.25rem; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); font-weight:700; }
.scrap-quote.gold { background: linear-gradient(160deg, rgba(214,174,78,.16), rgba(214,174,78,.03)); border-color: var(--gold); }
.scrap-item.tape::before { content:""; position:absolute; top:-11px; left:50%; width:80px; height:24px;
  transform:translateX(-50%) rotate(-3deg); background:rgba(214,174,78,.16);
  border:1px dashed rgba(214,174,78,.4); border-radius:2px; z-index:3; }
.scrap-item:nth-child(5n+1){ transform: rotate(-1.8deg); }
.scrap-item:nth-child(5n+2){ transform: rotate(1.4deg); }
.scrap-item:nth-child(5n+3){ transform: rotate(-1deg); }
.scrap-item:nth-child(5n+4){ transform: rotate(2deg); }
.scrap-item:nth-child(5n+5){ transform: rotate(-1.4deg); }
.scrap-item:hover{ transform: rotate(0) translateY(-6px) scale(1.02); z-index:6;
  box-shadow:0 18px 40px rgba(0,0,0,.6); }
.q-scribble { position:absolute; width:72px; height:auto; color:var(--gold); opacity:.85; pointer-events:none; z-index:4; }
.q-scribble.tl { top:-1.7rem; left:-0.6rem; }
.q-scribble.tr { top:-1.7rem; right:-0.4rem; }
@media (max-width:560px){ .q-scribble{ display:none; } }

/* video tiles inside the portfolio grid */
.grid-item.vid { cursor: default; }
.grid-item.vid video { width: 100%; display: block; }
.grid-item .vbadge { position:absolute; top:1rem; left:1rem; z-index:2; display:inline-flex; align-items:center; gap:.5rem; background:rgba(0,0,0,.6); color:#fff; font-size:1.15rem; font-weight:600; padding:.5rem 1rem; border-radius:100px; }
.grid-item .vbadge svg { width:1.1rem; height:1.1rem; fill: var(--wa); }

/* ── CONTACT REWORK: call/WhatsApp first ── */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 2.4rem; }
.contact-card {
  border: 1px solid var(--border-g); border-radius: var(--radius);
  padding: 3rem 2.6rem; background: var(--bg2); text-align: center;
  transition: border-color .2s, background .2s, transform .15s;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card.wa:hover { border-color: var(--wa); }
.contact-card.call:hover { border-color: var(--gold); }
.contact-card .ic { width: 5.2rem; height: 5.2rem; border-radius: 50%; display:flex; align-items:center; justify-content:center; margin: 0 auto 1.8rem; }
.contact-card.wa .ic { background: rgba(37,211,102,.14); }
.contact-card.call .ic { background: rgba(214,174,78,.14); }
.contact-card .ic svg { width: 2.6rem; height: 2.6rem; }
.contact-card.wa .ic svg { fill: var(--wa); }
.contact-card.call .ic svg { fill: var(--gold); }
.contact-card .big { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; margin-bottom: .4rem; }
.contact-card .sub { font-size: 1.4rem; color: var(--fg2); }
.contact-divider { display:flex; align-items:center; gap:1.6rem; margin: 3rem 0 2.4rem; color: var(--fg3); font-size: 1.35rem; letter-spacing:.1em; text-transform:uppercase; }
.contact-divider::before, .contact-divider::after { content:""; height:1px; background: var(--border); flex:1; }

/* ── FLOATING WHATSAPP BUBBLE ── */
.wa-float {
  position: fixed; right: 2.2rem; bottom: 2.4rem; z-index: 900;
  width: 6rem; height: 6rem; border-radius: 50%; background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.4); transition: transform .18s, background .2s;
}
.wa-float:hover { background: var(--wa-d); transform: scale(1.06); }
.wa-float svg { width: 3.2rem; height: 3.2rem; fill: #fff; }
.wa-float::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite;
}

/* ── STICKY MOBILE CALL BAR ── */
.mobile-cta-bar { display: none; }
@media (max-width: 760px) {
  .mobile-cta-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    border-top: 1px solid rgba(0,0,0,.2);
  }
  .mobile-cta-bar a { display: flex; align-items: center; justify-content: center; gap: .8rem; padding: 1.5rem; font-size: 1.6rem; font-weight: 700; }
  .mobile-cta-bar .m-call { background: var(--gold); color: #000; }
  .mobile-cta-bar .m-wa { background: var(--wa); color: #06250f; }
  .mobile-cta-bar svg { width: 1.9rem; height: 1.9rem; }
  .mobile-cta-bar .m-call svg { fill:#000; } .mobile-cta-bar .m-wa svg { fill:#06250f; }
  .wa-float { display: none; }
  body { padding-bottom: 6rem; }
  .video-band { min-height: 60vh; }
  .contact-cards { grid-template-columns: 1fr; }
  .nav-phone .num { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-note .dot, .wa-float::after { animation: none; }
}

/* ════════════════════════════════════════════════════════
   HERO REDESIGN — left text + right photo collage (replaces floor plan)
   ════════════════════════════════════════════════════════ */
.hero { text-align:left; align-items:center; padding: clamp(8.5rem,11vw,12rem) 0 clamp(4rem,7vw,7rem); overflow:hidden; }
.hero-grid { width:100%; max-width:1440px; margin:0 auto; padding:0 clamp(2rem,5vw,7rem);
  display:grid; grid-template-columns:1.14fr 0.86fr; gap:clamp(2.5rem,4vw,5rem); align-items:center; }
.hero-content { position:relative; z-index:2; max-width:none; margin:0; text-align:left; }
.hero h1 { font-size: clamp(5.6rem, 7.8vw, 10.6rem); line-height:.88; letter-spacing:0; margin:0 0 2.4rem; text-align:left; }
.hero-body { margin:0 0 3rem; max-width:46ch; font-size:1.85rem; }
.hero-actions { justify-content:flex-start; }
.hero-note { justify-content:flex-start; }

.hero-visual { position:relative; height:clamp(400px,42vw,580px); perspective:1100px; }
.hv-blob { position:absolute; width:78%; height:74%; left:10%; top:12%; z-index:0; border-radius:50%;
  background:radial-gradient(circle, rgba(214,174,78,.22), transparent 62%); filter:blur(10px); }
.hv-ring { position:absolute; width:clamp(120px,13vw,190px); aspect-ratio:1; top:-5%; right:5%; z-index:0;
  border:2px dashed var(--gold); border-radius:50%; opacity:.45; animation:hvSpin 24s linear infinite; }
@keyframes hvSpin { to { transform:rotate(360deg); } }
.hv-dots { position:absolute; left:-3%; bottom:-3%; width:120px; height:90px; z-index:0; opacity:.5;
  background-image:radial-gradient(var(--gold) 1.4px, transparent 1.6px); background-size:14px 14px; }
.hv-stack { position:absolute; inset:0; z-index:1; transform-style:preserve-3d;
  transform: rotateX(var(--ry,0deg)) rotateY(var(--rx,0deg)); transition: transform .3s ease-out; }
.hv-card { position:absolute; border-radius:8px; overflow:hidden; border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 54px rgba(0,0,0,.55); background:var(--bg3); }
.hv-card img, .hv-card video { width:100%; height:100%; object-fit:cover; display:block; }
.hv-card--main  { width:66%; height:72%; top:5%;   left:17%; z-index:2; transform:translateZ(36px) rotate(-3deg); animation:hvFloat 7s ease-in-out infinite; }
.hv-card--two   { width:45%; height:47%; bottom:1%; left:-1%; z-index:3; transform:translateZ(82px) rotate(3.5deg); animation:hvFloat 6s ease-in-out infinite .7s; }
.hv-card--three { width:43%; height:45%; top:-1%;  right:-1%; z-index:1; transform:translateZ(8px) rotate(4deg); animation:hvFloat 8s ease-in-out infinite 1.3s; }
@keyframes hvFloat { 0%,100%{ translate:0 0; } 50%{ translate:0 -12px; } }
.hv-badge { position:absolute; right:2%; bottom:7%; z-index:5; background:var(--gold); color:#1c1206;
  font-size:1.3rem; font-weight:700; line-height:1.2; padding:1rem 1.6rem; border-radius:10px;
  box-shadow:0 12px 30px rgba(0,0,0,.5); transform:translateZ(110px) rotate(-2deg); }
.hv-badge .star { color:#1c1206; }

@media (max-width: 900px) {
  .hero { min-height:auto; padding-top: clamp(7rem,16vw,9rem); }
  .hero-grid { grid-template-columns:1fr; gap:clamp(3rem,8vw,4.5rem); }
  .hero-content { order:1; }
  .hero-visual { order:2; height:82vw; max-height:460px; perspective:none; }
  .hero h1 { font-size: clamp(5.4rem,15vw,9rem); }
  .hero-body { max-width:none; }
  .hv-stack { transform:none !important; }
}
@media (max-width: 430px){ .hv-dots{ display:none; } }
@media (prefers-reduced-motion: reduce){
  .hv-ring, .hv-card--main, .hv-card--two, .hv-card--three { animation:none; }
}
