:root {
  --ink: #161113;
  --paper: #f7f0ec;
  --rose: #d73f78;
  --rose-light: #f3c1d1;
  --muted: #75676d;
  --line: rgba(22, 17, 19, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", sans-serif; }
img { display: block; width: 100%; }
a { color: inherit; }

.topbar {
  position: fixed; inset: 0 0 auto; z-index: 20; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px); color: white;
  background: linear-gradient(to bottom, rgba(13,9,11,.78), transparent);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 600; }
.monogram { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; font-family: "Playfair Display", serif; }
.mini-cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 99px; text-decoration: none; font-size: 14px; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: white; }
.hero-photo { position: absolute; inset: 0; background: url("assets/hero.jpg") center 38%/cover no-repeat; transform: scale(1.02); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,8,9,.92) 0%, rgba(11,8,9,.55) 45%, rgba(11,8,9,.1) 80%), linear-gradient(0deg, rgba(11,8,9,.75), transparent 55%); }
.hero-copy { position: relative; z-index: 2; width: min(740px, 88vw); margin: 0 0 clamp(90px, 13vh, 150px) clamp(24px, 8vw, 120px); }
.eyebrow { margin: 0 0 18px; color: var(--rose); font-size: 12px; font-weight: 700; letter-spacing: .22em; }
.hero .eyebrow { color: var(--rose-light); }
h1, h2, h3 { font-family: "Playfair Display", serif; font-weight: 600; line-height: .98; margin: 0; }
h1 { font-size: clamp(52px, 8.6vw, 116px); letter-spacing: -.045em; }
h1 em { color: var(--rose-light); }
.lead { max-width: 560px; margin: 26px 0 34px; color: rgba(255,255,255,.82); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 99px; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--rose); color: white; }
.button-ghost { border: 1px solid rgba(255,255,255,.45); color: white; }
.scroll-note { position: absolute; right: 34px; bottom: 34px; z-index: 2; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-note span { margin-top: 10px; }

.section { padding: clamp(80px, 11vw, 150px) clamp(24px, 8vw, 120px); }
.intro { display: grid; grid-template-columns: .55fr 1.5fr 1fr; gap: 50px; align-items: start; border-bottom: 1px solid var(--line); }
.intro h2, .section-heading h2, .location h2, .final-cta h2 { font-size: clamp(40px, 6vw, 78px); letter-spacing: -.035em; }
.intro > p:last-child, .location > p { margin: 8px 0 0; color: var(--muted); line-height: 1.8; }

.services { display: grid; gap: 28px; }
.service-card { min-height: 520px; display: grid; grid-template-columns: 1.15fr .85fr; background: #171214; color: white; overflow: hidden; border-radius: 28px; }
.service-card.reverse { grid-template-columns: .85fr 1.15fr; background: #ead1da; color: var(--ink); }
.service-card.reverse img { order: 2; }
.service-card img { height: 100%; min-height: 420px; object-fit: cover; }
.service-content { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(34px, 6vw, 72px); }
.service-content span { color: var(--rose); font-size: 12px; font-weight: 700; }
.service-content h3 { margin: 16px 0 18px; font-size: clamp(38px, 5vw, 68px); }
.service-content p { color: inherit; opacity: .72; line-height: 1.7; }
.service-content a { margin-top: 32px; font-weight: 700; text-underline-offset: 5px; }

.results { background: #fffaf7; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 360px); gap: 16px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 18px; }
.gallery figure.wide { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.025); }
.instagram-link { display: inline-block; margin-top: 28px; font-weight: 700; text-underline-offset: 5px; }

.location { display: grid; grid-template-columns: 1.4fr .6fr; gap: 50px; align-items: end; }
.final-cta { text-align: center; background: var(--ink); color: white; }
.final-cta h2 { max-width: 800px; margin: 0 auto 38px; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(24px, 8vw, 120px); background: var(--ink); color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 25; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: white; font-size: 24px; text-decoration: none; box-shadow: 0 12px 35px rgba(0,0,0,.25); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 800px) {
  .brand span:last-child { display: none; }
  .hero-photo { background-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(11,8,9,.92) 0%, rgba(11,8,9,.48) 70%, rgba(11,8,9,.2)); }
  .hero-copy { margin-left: 24px; }
  .scroll-note { display: none; }
  .intro, .location { grid-template-columns: 1fr; gap: 24px; }
  .service-card, .service-card.reverse { grid-template-columns: 1fr; }
  .service-card.reverse img { order: 0; }
  .service-card img { height: 430px; min-height: 0; }
  .service-content h3 {
    font-size: clamp(32px, 9.2vw, 42px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .service-content a {
    display: inline-flex;
    flex-wrap: wrap;
    line-height: 1.45;
  }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 480px 240px; }
  .gallery figure.wide { grid-column: 1 / 3; grid-row: auto; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
