:root {
  --bg: #f6f1eb;
  --bg-soft: #eee7df;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: #fbf8f4;
  --ink: #1d1a17;
  --muted: #6f6860;
  --line: rgba(29, 26, 23, 0.12);
  --gold: #a98555;
  --gold-soft: #d8c4a7;
  --shadow: 0 30px 80px rgba(43, 34, 25, 0.13);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 196, 167, .30), transparent 28%),
    radial-gradient(circle at 90% 24%, rgba(191, 198, 184, .30), transparent 26%),
    var(--bg);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }
::selection { background: var(--gold-soft); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: top .25s ease;
}
.skip-link:focus { top: 18px; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 130px 0; overflow: clip; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(4rem, 8vw, 7.3rem); }
h2 { font-size: clamp(3.2rem, 6vw, 5.8rem); }
h1 em, h2 em { color: var(--gold); font-weight: 500; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: padding .3s ease;
}
.site-header.is-scrolled { padding: 10px 0; }
.header-shell {
  width: min(1240px, calc(100% - 28px));
  min-height: 66px;
  margin-inline: auto;
  padding: 9px 12px 9px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(247, 243, 237, .72);
  box-shadow: 0 14px 40px rgba(39, 31, 24, .08);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}
.brand-name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; letter-spacing: .08em; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.site-nav a { position: relative; color: #39342f; font-size: .9rem; font-weight: 600; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: .84rem;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.header-cta:hover { transform: translateY(-2px); background: #332d27; }
.menu-toggle { display: none; }

.hero { min-height: 100svh; display: grid; align-items: center; padding-top: 150px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(50px, 7vw, 100px); }
.hero-copy { position: relative; z-index: 2; }
.hero-text { max-width: 590px; margin: 34px 0 36px; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { background: var(--ink); color: #fff; box-shadow: 0 18px 40px rgba(29,26,23,.17); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(29,26,23,.22); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.34); }
.button-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,.7); }
.hero-meta { display: flex; align-items: center; gap: 24px; margin-top: 50px; }
.hero-meta div { display: grid; gap: 2px; }
.meta-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.meta-label { color: var(--muted); font-size: .78rem; }
.meta-divider { width: 1px; height: 42px; background: var(--line); }

.hero-visual { position: relative; min-height: 650px; }
.hero-photo-wrap {
  position: absolute;
  inset: 0 4% 0 8%;
  border-radius: 210px 210px 42px 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9d0c6;
  isolation: isolate;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 52% 50%; transform: scale(1.015); }
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,20,17,.2), transparent 42%);
}
.photo-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.18) 45%, transparent 65%);
  transform: translateX(-130%);
  animation: shine 8s 1.2s ease-in-out infinite;
}
@keyframes shine { 0%, 55% { transform: translateX(-130%); } 75%, 100% { transform: translateX(130%); } }
.floating-card {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(251,248,244,.76);
  box-shadow: 0 20px 50px rgba(42,34,26,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.rating-card { top: 16%; right: -2%; display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 2px 10px; }
.rating-card .stars { grid-column: 1 / -1; color: #c19759; letter-spacing: .07em; font-size: .82rem; }
.rating-card strong { font-family: var(--font-display); font-size: 1.65rem; }
.rating-card small { color: var(--muted); }
.location-card { left: -2%; bottom: 10%; display: flex; align-items: center; gap: 12px; max-width: 270px; }
.location-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.1rem; }
.location-card strong, .location-card small { display: block; }
.location-card strong { font-size: .86rem; }
.location-card small { color: var(--muted); font-size: .72rem; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.orb-one { width: 360px; height: 360px; left: -160px; top: 15%; background: rgba(212, 192, 167, .24); }
.orb-two { width: 280px; height: 280px; right: -100px; bottom: 2%; background: rgba(178, 191, 175, .22); }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; width: 30px; height: 48px; border: 1px solid var(--line); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; left: 50%; top: 9px; width: 4px; height: 8px; border-radius: 999px; background: var(--gold); transform: translateX(-50%); animation: scrollCue 1.9s ease-in-out infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,19px); } }

.about { background: rgba(255,255,255,.33); }
.section-heading { margin-bottom: 70px; }
.about-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.about-story .lead { max-width: 720px; margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.12; }
.about-story > p:not(.lead) { max-width: 680px; color: var(--muted); }
.feature-list { margin-top: 48px; border-top: 1px solid var(--line); }
.feature-card { display: grid; grid-template-columns: 50px .75fr 1.25fr; gap: 20px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature-card > span { color: var(--gold); font-family: var(--font-display); font-size: 1.35rem; }
.feature-card h3 { margin-bottom: 0; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.about-panel { position: sticky; top: 115px; min-height: 600px; padding: 38px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-xl); background: #201c18; color: #fff; box-shadow: var(--shadow); overflow: hidden; }
.about-panel::before { content: ""; position: absolute; width: 340px; height: 340px; top: -120px; right: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(216,196,167,.27), transparent 65%); }
.panel-number { color: rgba(255,255,255,.06); font-family: var(--font-display); font-size: clamp(9rem, 18vw, 15rem); font-weight: 700; line-height: .7; transform: translateX(-18px); }
.panel-content { position: relative; z-index: 1; }
.panel-content > p { margin-bottom: 14px; color: var(--gold-soft); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.panel-content h3 { margin-bottom: 36px; font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 3.4rem); line-height: .98; }
.panel-content dl { margin: 0; }
.panel-content dl div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.13); }
.panel-content dt { color: rgba(255,255,255,.6); }
.panel-content dd { margin: 0; font-weight: 700; }

.reviews-block { margin-top: 130px; }
.reviews-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.reviews-heading h3 { max-width: 680px; margin-bottom: 0; font-family: var(--font-display); font-size: clamp(2.7rem, 4.5vw, 4.4rem); line-height: .98; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 300px; padding: 30px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius-lg); background: rgba(255,255,255,.55); box-shadow: 0 20px 60px rgba(43,34,25,.07); backdrop-filter: blur(12px); }
.review-top { display: flex; justify-content: space-between; color: var(--muted); font-size: .75rem; }
.review-stars { color: #c19759; letter-spacing: .08em; }
.review-card blockquote { margin: auto 0; font-family: var(--font-display); font-size: 1.65rem; line-height: 1.15; }
.review-card footer { color: var(--muted); font-size: .8rem; }

.works { background: #201c18; color: white; }
.works::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(rgba(255,255,255,.55) .6px, transparent .6px); background-size: 16px 16px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.works .eyebrow { color: var(--gold-soft); }
.works-header { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .55fr; gap: 50px; align-items: end; margin-bottom: 70px; }
.works-header > p { max-width: 470px; justify-self: end; margin-bottom: 0; color: rgba(255,255,255,.62); }
.gallery { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(2, minmax(270px, 1fr)); gap: 20px; }
.gallery-card { position: relative; min-height: 350px; padding: 0; border: 0; border-radius: var(--radius-lg); overflow: hidden; background: #312a24; cursor: zoom-in; }
.gallery-card-tall { grid-row: 1 / 3; min-height: 760px; }
.gallery-card picture, .gallery-card img { width: 100%; height: 100%; }
.gallery-card img { object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.05); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,15,13,.78), transparent 50%); pointer-events: none; }
.gallery-card-tall img { object-position: 48% 49%; }
.gallery-card:nth-child(2) img { object-position: 48% 38%; }
.gallery-card:nth-child(3) img { object-position: 48% 36%; }
.gallery-overlay { position: absolute; z-index: 2; inset: auto 26px 24px; text-align: left; }
.gallery-overlay strong, .gallery-overlay small { display: block; }
.gallery-overlay strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.gallery-overlay small { margin-top: 8px; color: rgba(255,255,255,.64); font-size: .74rem; }
.works-cta { position: relative; z-index: 1; margin-top: 42px; padding-top: 30px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.15); }
.works-cta p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.text-link { font-weight: 700; }
.text-link span { color: var(--gold-soft); }

.contacts { padding-bottom: 100px; }
.contact-shell { display: grid; grid-template-columns: .88fr 1.12fr; gap: 24px; padding: 24px; border: 1px solid rgba(255,255,255,.8); border-radius: 54px; background: rgba(255,255,255,.52); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.contact-copy { padding: clamp(28px, 5vw, 62px); }
.contact-copy h2 { font-size: clamp(3.3rem, 5.6vw, 5.4rem); }
.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0; color: var(--muted); }
.button-wide { width: 100%; max-width: 360px; }
.contact-details { margin-top: 48px; border-top: 1px solid var(--line); }
.contact-details > * { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); font-size: .78rem; }
.contact-details strong { font-size: .9rem; }
.map-card { position: relative; min-height: 640px; border-radius: 36px; overflow: hidden; background: #dfd5c9; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45); }
.map-art { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.map-card:hover .map-art { transform: scale(1.035); }
.map-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(29,26,23,.72), transparent 45%); pointer-events: none; }
.map-label { position: absolute; z-index: 2; left: 30px; right: 70px; bottom: 30px; color: white; }
.map-label span, .map-label strong, .map-label small { display: block; }
.map-label span { margin-bottom: 6px; color: var(--gold-soft); font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.map-label strong { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; }
.map-label small { margin-top: 9px; color: rgba(255,255,255,.68); }
.map-arrow { position: absolute; z-index: 3; right: 26px; bottom: 27px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.35rem; transition: transform .25s ease; }
.map-card:hover .map-arrow { transform: translate(3px,-3px); }

.site-footer { padding: 0 0 42px; }
.footer-inner { padding-top: 30px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.footer-inner > :last-child { justify-self: end; }
.brand-footer .brand-mark { width: 36px; height: 36px; font-size: 1.25rem; }
.brand-footer .brand-name { color: var(--ink); font-size: 1.25rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #1d1a17; color: white; box-shadow: 0 18px 40px rgba(29,26,23,.25); transition: transform .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; fill: currentColor; }

.lightbox { width: min(92vw, 900px); max-height: 92vh; padding: 0; border: 0; border-radius: 28px; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(14,12,10,.86); backdrop-filter: blur(10px); }
.lightbox img { max-height: 90vh; width: 100%; object-fit: contain; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.lightbox-close { position: absolute; z-index: 2; top: -16px; right: -16px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: white; color: var(--ink); font-size: 1.6rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  :root { --container: min(100% - 30px, 760px); }
  .section { padding: 100px 0; }
  .header-shell { grid-template-columns: auto auto; justify-content: space-between; }
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
  }
  .menu-toggle span { width: 20px; height: 1.5px; background: white; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    padding: 120px 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(246,241,235,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-family: var(--font-display); font-size: 2.6rem; }
  .hero { padding-top: 130px; }
  .hero-grid, .about-layout, .works-header, .contact-shell { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { min-height: 620px; margin-top: 20px; }
  .hero-photo-wrap { inset: 0 7%; }
  .about-panel { position: relative; top: auto; min-height: 500px; }
  .reviews-heading { display: block; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 230px; }
  .works-header > p { justify-self: start; }
  .contact-shell { padding: 18px; border-radius: 40px; }
  .map-card { min-height: 540px; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 24px); --radius-xl: 30px; --radius-lg: 24px; }
  .section { padding: 82px 0; }
  .site-header { padding-top: 10px; }
  .header-shell { width: calc(100% - 18px); min-height: 60px; padding: 7px 7px 7px 14px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { min-height: auto; padding-top: 118px; padding-bottom: 90px; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .hero-text { margin: 26px 0 30px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { gap: 16px; margin-top: 36px; }
  .meta-value { font-size: 1.2rem; }
  .hero-visual { min-height: 505px; margin-top: 38px; }
  .hero-photo-wrap { inset: 0 4%; border-radius: 150px 150px 28px 28px; }
  .rating-card { top: 8%; right: 0; }
  .location-card { left: 0; bottom: 5%; max-width: 250px; }
  .scroll-cue { display: none; }
  .section-heading { margin-bottom: 46px; }
  .feature-card { grid-template-columns: 40px 1fr; gap: 12px; }
  .feature-card p { grid-column: 2; }
  .about-panel { min-height: 450px; padding: 28px; }
  .panel-number { font-size: 9rem; }
  .reviews-block { margin-top: 90px; }
  .reviews-heading h3 { font-size: 3rem; }
  .review-card blockquote { font-size: 1.45rem; }
  .works-header { margin-bottom: 42px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-card, .gallery-card-tall { min-height: 500px; grid-row: auto; }
  .gallery-card:nth-child(2), .gallery-card:nth-child(3) { min-height: 410px; }
  .works-cta { display: block; }
  .works-cta .text-link { display: inline-block; margin-top: 15px; }
  .contact-shell { padding: 10px; border-radius: 30px; }
  .contact-copy { padding: 28px 18px 34px; }
  .contact-details > * { grid-template-columns: 1fr; gap: 4px; }
  .map-card { min-height: 480px; border-radius: 24px; }
  .map-label { left: 22px; bottom: 24px; }
  .map-label small { max-width: 250px; }
  .map-arrow { width: 42px; height: 42px; right: 18px; bottom: 18px; }
  .footer-inner { grid-template-columns: 1fr auto; row-gap: 16px; }
  .footer-inner > p:nth-child(2) { display: none; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
