:root {
  --ink: #321f1b;
  --ink-soft: #654b44;
  --paper: #fbf7f4;
  --paper-deep: #f2e7e1;
  --rose: #c88773;
  --rose-deep: #6e3e36;
  --line: rgba(50, 31, 27, .14);
  --white: #fff;
  --shadow: 0 25px 70px rgba(79, 48, 41, .12);
  --radius: 28px;
  --shell: min(1180px, calc(100vw - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: #d9b1a4; color: var(--ink); }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 200; transform: translateY(-150%); background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px; transition: .2s; }
.skip-link:focus { transform: none; }

.announcement { background: var(--ink); color: rgba(255,255,255,.82); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; gap: 14px; }
.announcement__inner a { margin-left: auto; color: #fff; }
.announcement__dot { width: 3px; height: 3px; background: var(--rose); border-radius: 50%; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,247,244,.88); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: border .25s, box-shadow .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(50,31,27,.05); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 43px; height: 43px; }
.brand__text { display: grid; line-height: 1; gap: 5px; }
.brand__text strong { font-size: 13px; letter-spacing: .18em; }
.brand__text small { font-size: 9px; letter-spacing: .3em; color: var(--ink-soft); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .25s; }
.site-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; width: 23px; height: 1.5px; background: var(--ink); margin: 7px auto; transition: .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 1px solid var(--ink); background: var(--ink); color: #fff; border-radius: 999px; font-size: 13px; letter-spacing: .03em; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--rose-deep); border-color: var(--rose-deep); box-shadow: 0 14px 28px rgba(110,62,54,.18); }
.button--small { min-height: 42px; padding-inline: 20px; }
.button--full { width: 100%; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-size: 13px; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px,3px); }

.hero { min-height: calc(100svh - 122px); display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(42px,7vw,100px); align-items: center; padding-block: 56px 78px; }
.hero__copy { padding-top: 10px; }
.eyebrow, .section-kicker { margin: 0 0 28px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 1px; background: currentColor; }
h1, h2, blockquote { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
h1 { margin: 0; font-size: clamp(54px, 7vw, 100px); line-height: .92; }
h1 em, h2 em, blockquote em { color: var(--rose-deep); font-weight: 400; }
.hero__lead { max-width: 590px; margin: 34px 0 30px; font-size: clamp(17px,1.5vw,21px); color: var(--ink-soft); }
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__facts { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 25px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hero__facts div { display: grid; gap: 4px; }
.hero__facts strong { font-size: 13px; }
.hero__facts span { font-size: 11px; color: var(--ink-soft); }
.hero__visual { position: relative; max-width: 560px; justify-self: end; }
.hero__visual > img { border-radius: 36px; box-shadow: var(--shadow); }
.floating-card { position: absolute; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.85); box-shadow: 0 18px 40px rgba(69,43,37,.14); border-radius: 18px; padding: 14px 17px; min-width: 142px; }
.floating-card span { color: var(--rose); font-size: 10px; letter-spacing: .18em; }
.floating-card p { margin: 8px 0 0; font-family: Georgia,serif; font-size: 16px; line-height: 1.2; }
.floating-card--top { right: -30px; top: 84px; }
.floating-card--bottom { left: -34px; bottom: 85px; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-deep); }
.marquee__track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 17px 0; animation: ticker 34s linear infinite; font-size: 11px; letter-spacing: .18em; }
.marquee__track i { color: var(--rose); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding-block: 130px; }
.about__grid { display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; align-items: start; }
h2 { margin: 0; font-size: clamp(48px,6vw,82px); line-height: .98; }
.about__copy { padding-top: 14px; }
.about__copy p { color: var(--ink-soft); }
.large-copy { margin-top: 0; color: var(--ink) !important; font-size: clamp(19px,2vw,26px); line-height: 1.45; }
.about__copy .text-link { margin-top: 18px; color: var(--ink); }

.services { background: var(--ink); color: #fff; }
.services .section-kicker { color: rgba(255,255,255,.55); }
.services h2 em { color: #d8a897; }
.section-heading { display: grid; grid-template-columns: 1fr 340px; gap: 70px; align-items: end; margin-bottom: 64px; }
.section-heading > p { margin: 0 0 8px; color: rgba(255,255,255,.6); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.service-card { position: relative; min-height: 370px; padding: 30px 30px 28px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); overflow: hidden; transition: background .3s, transform .3s; }
.service-card:hover { background: rgba(255,255,255,.06); }
.service-card__number { font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.4); }
.service-card__icon { position: absolute; right: 26px; top: 20px; font-family: Georgia,serif; font-size: 48px; color: #c98b77; opacity: .75; }
.service-card h3 { margin: 94px 0 14px; font-family: Georgia,serif; font-size: 31px; font-weight: 400; }
.service-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.service-card ul { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card li { border: 1px solid rgba(255,255,255,.17); border-radius: 999px; padding: 7px 10px; font-size: 10px; color: rgba(255,255,255,.72); }

.experience__intro { display: grid; grid-template-columns: 1fr 340px; align-items: end; gap: 70px; margin-bottom: 58px; }
.experience__intro p { margin: 0 0 8px; color: var(--ink-soft); }
.visual-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-auto-rows: auto; gap: 20px; }
.visual-card { margin: 0; background: var(--paper-deep); border-radius: var(--radius); overflow: hidden; }
.visual-card img { width: 100%; aspect-ratio: 1.28 / 1; object-fit: cover; transition: transform .5s; }
.visual-card:hover img { transform: scale(1.025); }
.visual-card figcaption { display: flex; gap: 14px; align-items: center; padding: 16px 19px 19px; font-family: Georgia,serif; font-size: 18px; }
.visual-card figcaption span { font-family: Inter,sans-serif; font-size: 10px; letter-spacing: .15em; color: var(--rose-deep); }
.visual-card--large { grid-row: span 2; }
.visual-card--large img { height: calc(100% - 58px); aspect-ratio: auto; }
.visual-card--wide { grid-column: 2; }

.quote-section { background: var(--paper-deep); padding-block: 115px; text-align: center; }
.quote-section__inner { max-width: 850px; }
.quote-mark { display: block; height: 50px; color: var(--rose); font-family: Georgia,serif; font-size: 80px; line-height: 1; }
.quote-section blockquote { margin: 26px 0 30px; font-size: clamp(46px,6vw,78px); line-height: .98; }
.quote-section p { font-size: 10px; letter-spacing: .25em; color: var(--ink-soft); }

.contact { padding-bottom: 70px; }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,9vw,120px); align-items: start; }
.contact__info > p { max-width: 540px; color: var(--ink-soft); font-size: 17px; }
.contact-list { margin: 48px 0 30px; border-top: 1px solid var(--line); }
.contact-list div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-list dt { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.contact-list dd { margin: 0; font-size: 14px; }
.contact-list a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 22px; font-size: 13px; }
.social-row a { border-bottom: 1px solid currentColor; }
.booking-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(25px,4vw,46px); box-shadow: var(--shadow); }
.form-head { display: flex; justify-content: space-between; margin-bottom: 35px; font-size: 10px; letter-spacing: .18em; color: var(--ink-soft); }
.booking-form label:not(.check) { display: grid; gap: 8px; margin-bottom: 22px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); padding: 10px 0 13px; outline: 0; text-transform: none; letter-spacing: normal; border-radius: 0; }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--rose-deep); }
.booking-form ::placeholder { color: #a38e88; }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; margin: 8px 0 24px; font-size: 11px; color: var(--ink-soft); }
.check input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--rose-deep); }
.form-note { margin: 12px 0 0; text-align: center; font-size: 10px; color: #8a746e; }
.map-card { position: relative; margin-top: 90px; height: 430px; border-radius: var(--radius); overflow: hidden; background: var(--paper-deep); }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) sepia(.16) contrast(.9); }
.map-card__button { position: absolute; right: 18px; bottom: 18px; background: var(--ink); color: #fff; border-radius: 999px; padding: 13px 18px; font-size: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.site-footer { background: var(--ink); color: #fff; padding: 58px 0 24px; }
.brand--footer .brand__text small { color: rgba(255,255,255,.52); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-bottom: 45px; }
.footer-top > p { text-align: center; color: rgba(255,255,255,.55); font-family: Georgia,serif; }
.back-top { justify-self: end; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.5); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.45); }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; place-items: center; width: 55px; height: 55px; border-radius: 50%; color: #fff; background: #1f9d58; box-shadow: 0 14px 30px rgba(31,157,88,.28); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 28px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay, .reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 34px, 760px); }
  .announcement__inner span:first-child, .announcement__dot { display: none; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; z-index: 3; }
  .site-nav { position: fixed; inset: 0; top: 108px; min-height: calc(100svh - 108px); background: var(--paper); display: grid; align-content: center; justify-items: center; gap: 25px; font-family: Georgia,serif; font-size: 32px; transform: translateX(100%); transition: transform .35s ease; }
  .site-nav.is-open { transform: none; }
  .site-nav .button { font-family: Inter,sans-serif; font-size: 13px; margin-top: 8px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero__visual { max-width: 560px; justify-self: center; margin-top: 10px; }
  .hero__copy { text-align: left; }
  .hero__facts { max-width: 650px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .section-heading, .experience__intro { grid-template-columns: 1fr; gap: 28px; }
  .section-heading > p, .experience__intro > p { max-width: 560px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .visual-grid { grid-template-columns: 1fr 1fr; }
  .visual-card--large { grid-row: auto; }
  .visual-card--large img { height: auto; aspect-ratio: 1.28/1; }
  .visual-card--wide { grid-column: auto; }
}

@media (max-width: 650px) {
  :root { --shell: calc(100% - 28px); --radius: 21px; }
  .announcement__inner { font-size: 10px; letter-spacing: .08em; }
  .announcement__inner a { font-size: 10px; }
  .brand img { width: 38px; height: 38px; }
  .brand__text strong { font-size: 11px; }
  .brand__text small { font-size: 8px; }
  .site-nav { top: 108px; }
  .hero { gap: 45px; padding-block: 52px 60px; }
  h1 { font-size: clamp(48px,16vw,72px); }
  h2 { font-size: clamp(43px,13vw,62px); }
  .hero__lead { margin-top: 25px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { width: fit-content; align-self: center; }
  .hero__facts { grid-template-columns: 1fr; gap: 15px; }
  .hero__facts div { grid-template-columns: 120px 1fr; }
  .hero__visual { padding-inline: 8px; }
  .floating-card { min-width: 120px; padding: 10px 12px; }
  .floating-card--top { right: -5px; top: 45px; }
  .floating-card--bottom { left: -2px; bottom: 45px; }
  .floating-card p { font-size: 13px; }
  .section { padding-block: 90px; }
  .service-grid { grid-template-columns: 1fr; border-left: 0; }
  .service-card { min-height: 335px; padding-inline: 22px; border-left: 1px solid rgba(255,255,255,.15); }
  .service-card h3 { margin-top: 80px; }
  .visual-grid { grid-template-columns: 1fr; }
  .quote-section { padding-block: 85px; }
  .quote-section blockquote { font-size: 44px; }
  .contact-list div { grid-template-columns: 1fr; gap: 7px; }
  .booking-form { padding: 26px 20px; }
  .map-card { height: 340px; margin-top: 60px; }
  .footer-top { grid-template-columns: 1fr; justify-items: start; gap: 25px; }
  .footer-top > p { text-align: left; margin: 0; }
  .back-top { justify-self: start; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { width: 51px; height: 51px; right: 14px; bottom: 14px; }
}

@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; }
}
