:root {
  color-scheme: dark;
  --black: #090806;
  --black-soft: #11100e;
  --graphite: #191714;
  --copper: #c8763d;
  --copper-light: #e2a06e;
  --wood: #6f3b22;
  --cream: #f4eee6;
  --muted: #b7aea4;
  --line: rgba(226, 160, 110, 0.2);
  --max-width: 1180px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  z-index: 20;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; z-index: 100; left: 16px; top: 16px; padding: 12px 16px; background: var(--cream); color: var(--black); border-radius: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}
.site-header.is-scrolled { background: rgba(9, 8, 6, 0.86); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(226, 160, 110, 0.35), 0 8px 22px rgba(0, 0, 0, 0.32);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { color: #d6cec5; font-size: 0.86rem; transition: color 160ms ease; }
.main-nav > a:hover, .main-nav > a:focus-visible { color: var(--copper-light); }
.main-nav .nav-cta { padding: 11px 18px; border: 1px solid var(--copper); color: var(--cream); }
.menu-button { display: none; background: none; border: 0; padding: 10px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 5px 0; background: var(--cream); }

.hero { position: relative; overflow: hidden; padding: 156px 0 0; background: linear-gradient(145deg, #0a0908 0%, #0c0b09 57%, #17100c 100%); }
.hero-glow { position: absolute; width: 500px; height: 500px; right: -120px; top: 40px; border-radius: 50%; background: rgba(200, 118, 61, 0.1); filter: blur(90px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 68px; min-height: 620px; }
.eyebrow { margin: 0 0 18px; color: var(--copper-light); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.04; letter-spacing: -0.035em; }
h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(3.3rem, 6.6vw, 6.7rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.4vw, 4.5rem); }
h3 { line-height: 1.2; }
.hero-text { max-width: 620px; color: #c6beb5; font-size: 1.12rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--copper); color: #130c07; }
.button-primary:hover { background: var(--copper-light); }
.button-secondary { border-color: rgba(244, 238, 230, 0.25); color: var(--cream); }
.button-secondary:hover { border-color: var(--copper-light); }
.button-large { min-height: 62px; padding-inline: 30px; }
.hero-note { margin: 16px 0 0; color: #8e867e; font-size: 0.78rem; }
.hero-visual { position: relative; min-height: 560px; }
.photo-slot { position: relative; overflow: hidden; height: 100%; background: linear-gradient(135deg, #211a15, #392115 60%, #16110e); border: 1px solid rgba(226, 160, 110, 0.16); }
.photo-slot::before, .photo-slot::after { content: ""; position: absolute; background: rgba(226, 160, 110, 0.2); }
.photo-slot::before { width: 1px; height: 120%; left: 30%; top: -10%; transform: rotate(19deg); }
.photo-slot::after { height: 1px; width: 120%; left: -10%; top: 68%; transform: rotate(-6deg); }
.photo-slot.has-photo::before, .photo-slot.has-photo::after { display: none; }
.photo-slot > span { position: absolute; left: 20px; bottom: 18px; color: rgba(244, 238, 230, 0.58); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
.photo-slot > img, .photo-slot > video { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.photo-slot-main > img { object-position: 50% 43%; }
.photo-slot-main { height: 540px; box-shadow: var(--shadow); }
.hero-seal { position: absolute; left: -40px; bottom: 34px; display: grid; padding: 22px 26px; background: rgba(9, 8, 6, 0.93); border-left: 3px solid var(--copper); box-shadow: var(--shadow); }
.hero-seal strong { font-family: Georgia, serif; font-size: 2.1rem; line-height: 1; }
.hero-seal span { color: var(--copper-light); font-size: 0.74rem; letter-spacing: 0.12em; }
.hero-seal small { margin-top: 5px; color: var(--muted); font-size: 0.72rem; }
.trust-strip { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-top: 1px solid var(--line); }
.trust-strip div { display: grid; gap: 4px; padding: 28px 34px; border-right: 1px solid var(--line); }
.trust-strip div:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--cream); font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; }
.trust-strip span { color: var(--muted); font-size: 0.77rem; letter-spacing: 0.04em; }

.story { background: #0d0b09; border-top: 1px solid rgba(244, 238, 230, 0.06); }
.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: start; gap: 96px; }
.story-copy h2 { max-width: 650px; }
.story-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.story-principle { display: grid; gap: 8px; margin-top: 36px; padding: 6px 0 6px 22px; border-left: 2px solid var(--copper); }
.story-principle span { color: var(--copper-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.story-principle strong { max-width: 590px; font-family: Georgia, serif; font-size: 1.28rem; font-weight: 400; line-height: 1.45; }
.milestone-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.milestone-list article { min-height: 210px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.milestone-list strong { display: block; color: var(--copper-light); font-family: Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1; }
.milestone-list span { display: block; margin: 14px 0 18px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.milestone-list p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.projects { background: #efebe5; color: #17120e; }
.section-heading { max-width: 780px; margin-bottom: 54px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr 0.65fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 440px; margin-bottom: 8px; color: #665d55; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 360px; gap: 20px; }
.project-card { position: relative; overflow: hidden; background: #24160f; }
.project-card .photo-slot { border: 0; }
.project-card:nth-child(1) img { object-position: 50% center; }
.project-card:nth-child(2) img { object-position: 50% 48%; }
.project-card:nth-child(3) img { object-position: 50% 46%; }
.project-card:nth-child(4) img { object-position: 50% 54%; }
.project-card:nth-child(5) img { object-position: 50% 48%; }
.project-card:nth-child(6) img { object-position: 50% 46%; }
.project-card:nth-child(7) img { object-position: 50% 46%; }
.project-card:nth-child(8) img { object-position: 50% 48%; }
.project-card:nth-child(9) img { object-position: 50% 42%; }
.project-card:nth-child(10) img { object-position: 50% 50%; }
.project-card:nth-child(11) img { object-position: 58% 50%; }
.project-card:nth-child(12) img { object-position: 50% 48%; }
.project-card:hover img { transform: scale(1.035); }
.project-label { position: absolute; z-index: 2; inset: auto 0 0; display: flex; align-items: center; gap: 15px; padding: 42px 24px 22px; color: white; background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); }
.project-label span { color: var(--copper-light); font-size: 0.72rem; }
.project-label h3 { margin: 0; font-family: Georgia, serif; font-size: 1.42rem; font-weight: 400; }

.details { background: var(--black-soft); }
.details-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; }
.details-intro { position: sticky; top: 130px; align-self: start; }
.details-intro > p:not(.eyebrow) { max-width: 500px; color: var(--muted); }
.text-link { display: inline-flex; gap: 18px; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid var(--copper); color: var(--copper-light); font-weight: 700; }
.detail-list article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 34px 0; border-top: 1px solid var(--line); }
.detail-list article:last-child { border-bottom: 1px solid var(--line); }
.detail-number { color: var(--copper-light); font-family: Georgia, serif; font-size: 1.3rem; }
.detail-list h3 { margin-bottom: 10px; font-size: 1.2rem; }
.detail-list p { max-width: 570px; margin-bottom: 0; color: var(--muted); }

.process { background: #efebe5; color: #17120e; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(23, 18, 14, 0.18); }
.process-list li { min-height: 280px; padding: 28px 28px 0; border-right: 1px solid rgba(23, 18, 14, 0.18); }
.process-list li:first-child { border-left: 1px solid rgba(23, 18, 14, 0.18); }
.process-list span { display: block; margin-bottom: 64px; color: #9a562d; font-family: Georgia, serif; font-size: 1.4rem; }
.process-list h3 { font-size: 1.12rem; }
.process-list p { color: #675f58; font-size: 0.91rem; }

.reviews { background: linear-gradient(140deg, #110e0b, #090806 62%); }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.reviews-heading h2 { margin-bottom: 0; }
.google-score { display: grid; min-width: 220px; padding: 18px 22px; border: 1px solid var(--line); }
.google-score strong { font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.google-score span { color: var(--copper-light); font-size: 0.76rem; letter-spacing: 0.14em; }
.google-score small { margin-top: 4px; color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; margin: 0; padding: 30px; background: #14110e; border: 1px solid rgba(244, 238, 230, 0.08); }
blockquote::before { content: "“"; color: var(--copper); font-family: Georgia, serif; font-size: 3.4rem; line-height: 0.6; }
blockquote p { margin: 24px 0; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.45; }
blockquote footer { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }

.payment { background: #efebe5; color: #17120e; }
.payment-heading > p { color: #665d55; }
.payment-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 20px; }
.payment-card { min-height: 390px; padding: 38px; background: #f8f4ef; border: 1px solid rgba(23, 18, 14, 0.14); }
.payment-card h3 { max-width: 580px; margin: 48px 0 18px; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; }
.payment-card > p:not(.payment-note) { max-width: 500px; color: #675f58; }
.payment-number { color: #9a562d; font-family: Georgia, serif; font-size: 1.35rem; }
.payment-card-featured { color: var(--cream); background: linear-gradient(135deg, #28160d, #11100e 68%); border-color: rgba(226, 160, 110, 0.26); }
.payment-card-title { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.payment-card-title small { padding: 6px 10px; color: var(--copper-light); border: 1px solid rgba(226, 160, 110, 0.4); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.payment-card-featured h3 { margin-top: 34px; }
.payment-card ul { display: grid; gap: 12px; margin: 0 0 26px; padding: 0; list-style: none; }
.payment-card li { position: relative; padding-left: 28px; color: #c7beb5; }
.payment-card li::before { content: "✓"; position: absolute; left: 0; color: var(--copper-light); font-weight: 800; }
.payment-note { margin-bottom: 28px; color: #91877e; font-size: 0.82rem; }

.contact { padding-top: 0; background: var(--black); }
.contact-panel { display: grid; grid-template-columns: 1.15fr 0.65fr; align-items: center; gap: 80px; padding: 72px; background: linear-gradient(135deg, #28160d 0%, #160f0b 46%, #11100e 100%); border: 1px solid rgba(226, 160, 110, 0.22); }
.contact-panel h2 { margin-bottom: 20px; font-size: clamp(2.4rem, 4.2vw, 4rem); }
.contact-panel p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: #c0b5aa; }
.contact-actions { display: grid; gap: 12px; text-align: center; }
.contact-actions > a:not(.button) { color: var(--copper-light); font-weight: 700; }
.contact-actions small { color: #928980; }

.site-footer { padding: 56px 0 28px; background: #070605; border-top: 1px solid rgba(244, 238, 230, 0.07); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 0.6fr; align-items: center; gap: 36px; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.footer-links { display: flex; justify-content: flex-end; gap: 20px; color: var(--copper-light); font-size: 0.85rem; }
.copyright { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(244, 238, 230, 0.07); color: #6e6862; font-size: 0.72rem; }
.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 25; display: none; padding: 11px 16px; background: var(--copper); color: #140c07; box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36); line-height: 1.1; }
.floating-whatsapp span { display: block; font-size: 0.65rem; }
.floating-whatsapp strong { font-size: 0.83rem; }

:focus-visible { outline: 2px solid var(--copper-light); outline-offset: 4px; }

@media (max-width: 980px) {
  .header-inner { min-height: 74px; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .main-nav { position: fixed; inset: 0 0 auto; display: grid; align-content: center; justify-items: center; gap: 22px; min-height: 100svh; padding: 100px 30px 50px; background: rgba(9, 8, 6, 0.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a { font-size: 1.05rem; }
  .hero { padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: auto; }
  .photo-slot-main { height: min(70vw, 540px); }
  .hero-seal { left: 18px; }
  .split-heading, .story-grid, .details-grid, .payment-grid, .contact-panel { grid-template-columns: 1fr; gap: 46px; }
  .details-intro { position: static; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { border-left: 1px solid rgba(23, 18, 14, 0.18); }
  .review-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  blockquote { min-height: 210px; }
  .contact-panel { padding: 54px 40px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 80px 0; }
  .brand-copy small { display: none; }
  .hero-grid { min-height: auto; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  h2 { font-size: clamp(2.3rem, 11vw, 3.7rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 58px; }
  .trust-strip div, .trust-strip div:first-child { padding: 22px 14px; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .milestone-list { grid-template-columns: 1fr; }
  .milestone-list article { min-height: 0; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:first-child, .process-list li:nth-child(3) { min-height: 0; padding: 26px 18px; border-left: 1px solid rgba(23, 18, 14, 0.18); border-bottom: 1px solid rgba(23, 18, 14, 0.18); }
  .process-list span { margin-bottom: 36px; }
  .reviews-heading { display: grid; align-items: start; }
  .google-score { width: 100%; }
  .payment-card { min-height: 0; padding: 30px 22px; }
  .contact-panel { gap: 36px; padding: 44px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .floating-whatsapp { display: block; }
}

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