:root {
  --ink: #12110f;
  --soft-ink: #2d2923;
  --muted: #716a5d;
  --line: #e2d8c9;
  --paper: #f7f0e6;
  --cream: #fffaf1;
  --white: #ffffff;
  --gold: #c9963f;
  --gold-dark: #9b6f2b;
  --wood: #6d4326;
  --green: #285447;
  --shadow: 0 24px 70px rgba(18, 17, 15, .18);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
body.lock, body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 { letter-spacing: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(16px, 4vw, 56px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled, .site-header.open {
  background: rgba(18,17,15,.94);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #0b0b0b;
}
.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
.brand small {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.75);
}
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: .9rem;
  color: rgba(255,255,255,.84);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); }
.header-cta, .menu-toggle {
  border: 1px solid rgba(255,255,255,.35);
  padding: 10px 16px;
  font-weight: 800;
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: 28px;
  overflow: hidden;
  color: var(--white);
  padding: 116px clamp(16px, 5vw, 72px) 40px;
}
.hero > picture {
  position: absolute;
  inset: 0;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48) 46%, rgba(0,0,0,.18)),
    linear-gradient(0deg, rgba(0,0,0,.85), transparent 48%);
}
.hero-content, .planning-card { position: relative; z-index: 1; }
.hero-content { max-width: 820px; padding-bottom: 28px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
}
.eyebrow.dark { color: var(--gold-dark); }
h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .96;
  max-width: 12.8ch;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 1;
}
h3 { margin: 0 0 8px; font-size: 1.12rem; line-height: 1.2; }
.hero-copy {
  max-width: 670px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.6vw, 1.26rem);
}
.hero-actions, .contact-actions, .about-badges, .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}
.btn.primary { background: var(--gold); color: #17110a; }
.btn.dark { background: var(--ink); color: var(--white); }
.btn.light { background: var(--white); color: var(--ink); }
.btn.ghost { border-color: rgba(255,255,255,.42); color: var(--white); background: rgba(255,255,255,.08); }
.btn.full { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.trust-row span {
  padding: 9px 12px;
  background: rgba(18,17,15,.72);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}

.planning-card, .quote-card, .contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,250,241,.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.planning-card h2 { font-size: 1.55rem; line-height: 1.1; }
.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.option {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--soft-ink);
  border-radius: 999px;
  padding: 0 13px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}
.option.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  border-radius: 6px;
  outline-color: var(--gold);
}

.quick-strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  background: var(--ink);
  color: var(--white);
  scrollbar-width: none;
}
.quick-strip span {
  flex: 0 0 auto;
  padding: 14px 22px;
  background: #1f1c18;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 800;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(16px, 5vw, 72px);
}
.intro-grid, .about, .contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: 42px;
  align-items: center;
}
.intro-grid p:last-child, .about-copy p, .contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.section-head h2 { max-width: 850px; }
.section-head.compact { display: block; max-width: 760px; }

.service-shell, .about, .plan-feature, .testimonials, .faq { background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.service-card.featured { grid-column: span 2; }
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  transition: transform .5s ease;
}
.service-card:hover img, .project-card:hover img, .reel-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 62%);
}
.service-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}
.service-card span { color: var(--gold); font-weight: 900; }
.service-card p { margin: 0; color: rgba(255,255,255,.78); }

.why { background: #efe5d6; }
.why-grid, .portfolio-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.why-card, .portfolio-card, .portfolio-stat, .testimonial, .faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.why-card strong, .portfolio-stat strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 18px;
}
.why-card p, .portfolio-card p, .portfolio-stat p, .testimonial p, .faq p { color: var(--muted); margin-bottom: 0; }

.portfolio { background: var(--paper); }
.archive-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -8px 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}
.archive-intro p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
}
.archive-intro div {
  flex: 0 0 auto;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
}
.archive-intro strong { color: var(--gold); font-size: 1.15rem; }
.archive-intro span { color: rgba(255,255,255,.72); font-weight: 800; }
.archive-stats { margin-bottom: 18px; }
.portfolio-stat {
  background: var(--ink);
  color: var(--white);
}
.portfolio-stat strong { color: var(--gold); font-size: 3.2rem; }
.portfolio-stat p { color: rgba(255,255,255,.72); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 14px;
}
.archive-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 1px 0 var(--line);
}
.archive-card.large { grid-column: span 2; }
.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .5s ease, opacity .5s ease;
}
.archive-card:hover img {
  transform: scale(1.05);
  opacity: .95;
}
.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.08) 65%);
}
.archive-card div {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.archive-card .year {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 1000;
}
.archive-card small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  font-weight: 900;
}
.archive-card h3 {
  font-size: 1.45rem;
  margin-bottom: 7px;
}
.archive-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.about-media img {
  width: 100%;
  min-height: 440px;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badges { margin-top: 20px; }
.about-badges span {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 14px;
  font-weight: 800;
}

.reels { background: #f0e7d9; }
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.reel-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.reel-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .45s ease;
  opacity: .8;
}
.reel-card span {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
}
.reel-card strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px;
  background: rgba(18,17,15,.78);
  backdrop-filter: blur(10px);
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 18px;
}
.filter {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--soft-ink);
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}
.filter.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 12px;
}
.project-card {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  text-align: left;
}
.project-card.tall { grid-row: span 2; }
.project-card.wide { grid-column: span 2; }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform .45s ease, opacity .45s ease;
}
.project-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  background: rgba(18,17,15,.8);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.project-card.hidden { display: none; }

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 540px);
  gap: 36px;
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(16px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(18,17,15,.9), rgba(18,17,15,.72)),
    url("images/renovation-consultation.webp") center/cover;
  color: var(--white);
}
.quote-copy p:last-child { color: rgba(255,255,255,.78); max-width: 560px; }
.quote-result { min-height: 24px; margin: 0; color: var(--muted); font-weight: 800; font-size: .92rem; }
.quote-result a { color: var(--gold-dark); text-decoration: underline; }

.contact { background: #efe5d6; }
.contact-card, .contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 0 var(--line);
}
.contact-actions { margin-top: 22px; }
.faq-list { display: grid; gap: 10px; margin-top: 26px; }
.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--soft-ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(16px, 5vw, 72px) 96px;
  background: var(--ink);
  color: var(--white);
}
.footer p { max-width: 600px; color: rgba(255,255,255,.68); }
.footer-links a {
  border: 1px solid rgba(255,255,255,.18);
  padding: 10px 14px;
}
.float-action {
  position: fixed;
  right: 18px;
  z-index: 55;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
}
.float-call { bottom: 88px; background: var(--ink); }
.float-whatsapp { bottom: 28px; background: var(--green); }

.mobile-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(18,17,15,.94);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
}
.mobile-dock a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  font-weight: 900;
}
.mobile-dock a:nth-child(2) { color: #8ee2b3; }

.lightbox {
  width: min(94vw, 1080px);
  border: 0;
  padding: 0;
  background: transparent;
}
.lightbox::backdrop { background: rgba(0,0,0,.78); }
.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  background: #000;
}
.close-lightbox {
  position: absolute;
  right: 0;
  top: -44px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .desktop-nav { gap: 12px; font-size: .84rem; }
  .header-cta { display: none; }
  .service-grid, .reel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid, .portfolio-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 761px) and (max-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }
  h1 {
    font-size: clamp(2.55rem, 5.1vw, 3.2rem);
    max-width: 100%;
    line-height: 1.02;
  }
  .hero-copy { font-size: 1rem; }
  .trust-row span { font-size: .86rem; }
  .planning-card { padding: 18px; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-flex; justify-content: center; }
  .header-cta { display: none; }
  .desktop-nav {
    position: fixed;
    inset: 74px 12px auto 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(18,17,15,.98);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .site-header.open .desktop-nav { display: grid; }
  .desktop-nav a { padding: 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .hero, .intro-grid, .about, .quote-section, .contact { grid-template-columns: 1fr; }
  .hero { align-items: end; padding-top: 100px; }
  .planning-card { max-width: 520px; }
  .project-grid { grid-template-columns: 1fr; }
  .float-action { display: none; }
  .mobile-dock { display: grid; }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 14px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand strong { font-size: .92rem; }
  .brand small { font-size: .64rem; }
  .hero {
    min-height: auto;
    padding: 90px 14px 28px;
  }
  .hero-bg { object-position: 58% center; }
  .hero-content { padding-bottom: 0; }
  h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
    max-width: 100%;
    line-height: 1.03;
  }
  h2 { font-size: clamp(2rem, 10vw, 3.05rem); }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .trust-row span { width: 100%; }
  .planning-card { margin-top: 12px; }
  .section, .quote-section { padding: 52px 14px; }
  .section-head { display: block; }
  .service-grid, .why-grid, .portfolio-grid, .reel-grid, .testimonial-grid, .project-grid { grid-template-columns: 1fr; }
  .archive-intro { display: block; }
  .archive-intro div { margin-top: 14px; }
  .archive-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .archive-card.large { grid-column: auto; }
  .service-card, .service-card.featured { grid-column: auto; min-height: 320px; }
  .project-grid { grid-auto-rows: 250px; }
  .project-card.tall, .project-card.wide { grid-row: auto; grid-column: auto; }
  .about-media img { min-height: 340px; }
  .footer { display: block; }
}
