:root {
  --ink: #17130f;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --clay: #bd6038;
  --clay-dark: #8f4226;
  --sand: #d9c6ae;
  --line: rgba(23, 19, 15, .17);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header { position: relative; z-index: 20; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; max-width: 1440px; margin: 0 auto; padding: 22px 5vw; border-bottom: 1px solid var(--line); background: var(--paper); }
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand img { border-radius: 50%; border: 1px solid var(--line); }
.brand span { display: grid; line-height: 1.08; }
.brand strong { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.brand small { margin-top: 4px; color: #73685f; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
nav { display: flex; gap: 32px; font-size: 13px; font-weight: 600; }
nav a, .footer-links a { position: relative; }
nav a::after, .footer-links a::after { content: ''; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header > .button { justify-self: end; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid var(--ink); border-radius: 100px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--clay); border-color: var(--clay); }
.button-small { min-height: 42px; padding: 10px 19px; font-size: 12px; }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { color: #fff; }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding: 10px 0 5px; border-bottom: 1px solid currentColor; color: #fff; font-size: 13px; font-weight: 700; }
.text-link.dark { color: var(--ink); }

.hero { min-height: 790px; display: grid; grid-template-columns: 1.03fr .97fr; background: var(--clay); color: #fff; overflow: hidden; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 86px 6vw 64px max(5vw, calc((100vw - 1440px)/2 + 72px)); }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.hero h1 { max-width: 740px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 5.5vw, 90px); font-weight: 400; letter-spacing: -.055em; line-height: .96; }
.hero-lead { max-width: 610px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero .button { background: #fff; border-color: #fff; color: var(--ink); }
.hero .button:hover { background: var(--ink); color: #fff; }
.trust-list { display: flex; gap: 34px; margin: 70px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.28); list-style: none; }
.trust-list li { display: flex; gap: 10px; align-items: flex-start; }
.trust-list strong { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1; }
.trust-list span { color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 790px; background: #9f7c63; }
.hero-main-photo { position: absolute; inset: 0; }
.hero-main-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,13,9,.52), transparent 43%); }
.hero-main-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-caption { position: absolute; z-index: 2; right: 42px; bottom: 42px; font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.05; text-align: right; }
.hero-detail-photo { position: absolute; z-index: 3; top: 44px; left: -62px; width: 190px; height: 245px; padding: 8px; background: #fff; object-fit: cover; transform: rotate(-3deg); box-shadow: 0 18px 45px rgba(31,15,7,.22); }
.rotating-note { position: absolute; z-index: 3; top: 306px; left: -45px; display: grid; width: 102px; height: 102px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(23,19,15,.68); font-family: var(--serif); font-size: 11px; letter-spacing: .08em; text-align: center; text-transform: uppercase; transform: rotate(-15deg); }

.marquee { overflow: hidden; padding: 18px 0; border-bottom: 1px solid var(--line); background: var(--cream); color: #4d453e; white-space: nowrap; }
.marquee div { width: max-content; font-family: var(--serif); font-size: 15px; letter-spacing: .08em; }
.marquee i { margin: 0 25px; color: var(--clay); font-size: 10px; }
.section { max-width: 1440px; margin: 0 auto; padding: 112px 6vw; }
.section-label { display: flex; gap: 14px; align-items: center; margin-bottom: 44px; color: #6f665f; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.section-label span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); font-family: var(--serif); letter-spacing: 0; }
.section-label.light { color: rgba(255,255,255,.66); }
.section-label.light span { border-color: rgba(255,255,255,.28); color: #fff; }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 4.5vw, 68px); font-weight: 400; letter-spacing: -.045em; line-height: 1.02; }

.consulting { background: var(--paper); }
.consulting-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 10vw; }
.consulting-grid h2 { max-width: 650px; }
.consulting-copy { max-width: 570px; padding-top: 34px; }
.consulting-copy p { margin: 0 0 22px; color: #5e544c; font-size: 17px; }
.consulting-photos { display: grid; grid-template-columns: 1fr .8fr .78fr; gap: 18px; align-items: stretch; margin-top: 76px; }
.consulting-photos > img { width: 100%; height: 480px; object-fit: cover; }
.quote-card { display: flex; flex-direction: column; justify-content: center; min-height: 480px; padding: 45px; background: var(--cream); }
.quote-mark { height: 46px; color: var(--clay); font-family: var(--serif); font-size: 90px; line-height: 1; }
blockquote { margin: 22px 0 28px; font-family: var(--serif); font-size: 27px; font-style: italic; line-height: 1.28; }
.quote-card small { color: #71665d; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

.collection { max-width: none; padding-inline: max(6vw, calc((100vw - 1440px)/2 + 70px)); background: var(--cream); }
.section-heading-row { display: grid; grid-template-columns: 1fr 340px; gap: 7vw; align-items: end; }
.section-heading-row h2 { max-width: 840px; }
.section-heading-row > p { margin: 0 0 5px; color: #665d55; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-auto-rows: 330px; gap: 18px; margin-top: 72px; }
.gallery-grid figure { position: relative; overflow: hidden; margin: 0; background: #d8cec0; }
.gallery-grid figure::after { content: ''; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(transparent, rgba(20,15,11,.55)); pointer-events: none; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-wide { grid-row: span 2; }
.gallery-tall { grid-column: span 2; }
.gallery-grid figcaption { position: absolute; z-index: 2; right: 20px; bottom: 17px; left: 20px; display: flex; justify-content: space-between; color: #fff; font-family: var(--serif); font-size: 17px; }
.gallery-grid figcaption span { font-family: var(--sans); font-size: 10px; letter-spacing: .12em; }
.center-action { margin-top: 48px; text-align: center; }

.process { max-width: none; padding-inline: max(6vw, calc((100vw - 1440px)/2 + 70px)); background: var(--ink); color: #fff; }
.process-intro { display: grid; grid-template-columns: 1fr 370px; gap: 7vw; align-items: end; }
.process-intro h2 { max-width: 750px; }
.process-intro p { margin: 0 0 7px; color: rgba(255,255,255,.62); }
.process-list { margin: 70px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.17); list-style: none; }
.process-list li { display: grid; grid-template-columns: 95px 1fr; gap: 25px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.step-number { color: var(--clay); font-family: var(--serif); font-size: 32px; }
.process-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.process-list p { max-width: 760px; margin: 0; color: rgba(255,255,255,.58); }
.services-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 76px; background: rgba(255,255,255,.16); }
.services-strip article { min-height: 260px; padding: 38px; background: #211c17; }
.services-strip article > span { color: var(--clay); font-size: 28px; }
.services-strip h3 { margin: 32px 0 11px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.services-strip p { margin: 0; color: rgba(255,255,255,.56); font-size: 14px; }

.local-seo { display: grid; grid-template-columns: .93fr 1.07fr; gap: 8vw; align-items: center; }
.local-photo { position: relative; }
.local-photo img { width: 100%; height: 690px; object-fit: cover; }
.local-photo span { position: absolute; right: -48px; bottom: 45px; display: grid; width: 130px; height: 130px; place-items: center; border-radius: 50%; background: var(--clay); color: #fff; font-family: var(--serif); font-size: 20px; line-height: 1.1; text-align: center; transform: rotate(8deg); }
.local-copy { max-width: 630px; }
.local-copy h2 { margin-bottom: 28px; }
.local-copy > p:not(.eyebrow) { color: #5e554d; font-size: 17px; }
.local-copy .button { margin-top: 22px; }

.faq { border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 9vw; }
.faq-list { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; padding: 24px 0; cursor: pointer; font-family: var(--serif); font-size: 21px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--sans); font-size: 18px; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 720px; margin: -8px 55px 26px 0; color: #645b53; }

.final-cta { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 640px; background: var(--clay); color: #fff; }
.cta-image img { width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
.cta-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 75px 8vw; }
.cta-copy > img { margin-bottom: 34px; border-radius: 50%; filter: invert(1); }
.cta-copy > p { margin: 0 0 25px; font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.cta-copy h2 { max-width: 690px; margin-bottom: 38px; font-size: clamp(48px, 5vw, 76px); }

footer { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 50px; align-items: start; padding: 60px max(5vw, calc((100vw - 1440px)/2 + 65px)) 35px; background: var(--ink); color: #fff; }
.footer-brand img { filter: invert(1); }
footer > p { max-width: 500px; margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; font-size: 12px; font-weight: 700; }
footer > small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .08em; }

.floating-whatsapp { position: fixed; z-index: 30; right: 24px; bottom: 24px; display: grid; min-width: 112px; height: 48px; place-items: center; padding: 0 18px; border-radius: 100px; background: #2a9f5b; color: #fff; box-shadow: 0 9px 30px rgba(19,55,31,.28); font-size: 12px; font-weight: 800; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr .82fr; }
  .hero-copy { padding-left: 6vw; }
  .hero h1 { font-size: clamp(50px, 6.4vw, 72px); }
  .trust-list { gap: 18px; }
  .consulting-photos { grid-template-columns: 1fr 1fr; }
  .consulting-photos > img:last-child { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-row: span 1; }
  .gallery-tall { grid-column: span 1; }
  .local-photo span { right: -25px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 2; grid-row: 1 / span 2; flex-direction: column; align-items: flex-end; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .site-header { padding: 15px 18px; }
  .site-header > .button { display: none; }
  .brand strong { font-size: 18px; }
  .hero { display: flex; min-height: 0; flex-direction: column; }
  .hero-copy { padding: 72px 22px 58px; }
  .hero h1 { font-size: clamp(49px, 14vw, 67px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .trust-list li:last-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 590px; }
  .hero-detail-photo { top: 24px; left: 20px; width: 135px; height: 175px; }
  .rotating-note { top: 215px; left: 24px; width: 84px; height: 84px; font-size: 9px; }
  .photo-caption { right: 24px; bottom: 30px; font-size: 22px; }
  .section { padding: 82px 22px; }
  .section-label { margin-bottom: 30px; }
  h2 { font-size: 44px; }
  .consulting-grid, .section-heading-row, .process-intro, .local-seo, .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .consulting-copy { padding-top: 0; }
  .consulting-photos { grid-template-columns: 1fr; margin-top: 48px; }
  .consulting-photos > img { height: 420px; }
  .consulting-photos > img:last-child { display: block; height: 330px; }
  .quote-card { min-height: 390px; padding: 36px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 370px; margin-top: 44px; }
  .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .process-list { margin-top: 48px; }
  .process-list li { grid-template-columns: 55px 1fr; }
  .services-strip { grid-template-columns: 1fr; margin-top: 55px; }
  .services-strip article { min-height: auto; }
  .local-photo img { height: 520px; }
  .local-photo span { right: 12px; bottom: -28px; width: 110px; height: 110px; }
  .local-copy { padding-top: 24px; }
  .faq-grid h2 { margin-bottom: 20px; }
  summary { font-size: 19px; }
  .final-cta { grid-template-columns: 1fr; }
  .cta-image img { min-height: 520px; height: 520px; object-position: center 28%; }
  .cta-copy { padding: 70px 22px 85px; }
  footer { grid-template-columns: 1fr; gap: 30px; padding: 55px 22px 92px; }
  .footer-links { grid-column: auto; grid-row: auto; align-items: flex-start; }
  .floating-whatsapp { right: 16px; bottom: 16px; min-width: 105px; }
}

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