:root {
  --ink: #16242c;
  --ink-soft: #40515a;
  --paper: #f6f2eb;
  --paper-deep: #eee7dc;
  --white: #fff;
  --wine: #0b2a47;
  --wine-dark: #0b2a47;
  --brand-rgb: 11, 42, 71;
  --gold: #d9a441;
  --line: rgba(22, 36, 44, .13);
  --shadow-sm: 0 12px 32px rgba(34, 30, 25, .08);
  --shadow-lg: 0 28px 80px rgba(34, 30, 25, .16);
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--wine); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 2000; top: 12px; left: 12px; padding: 10px 16px; color: var(--white); background: var(--ink); border-radius: 10px; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.announcement { position: relative; z-index: 20; color: #eef5fb; background: var(--wine-dark); font-size: 13px; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement p { margin: 0; }
.announcement__dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: #efc98d; border-radius: 50%; box-shadow: 0 0 0 5px rgba(239, 201, 141, .13); }
.announcement__links { display: flex; gap: 20px; }
.announcement__links a { display: inline-flex; align-items: center; gap: 6px; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.announcement__links a:hover { color: #fff; }
.announcement__links .icon { width: 15px; height: 15px; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(246, 242, 235, .86); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(22, 36, 44, .07); }
.nav-shell { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 255px; color: var(--ink); text-decoration: none; }
.brand__mark { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; color: var(--white); background: var(--wine); border-radius: 14px 14px 14px 4px; box-shadow: 0 8px 20px rgba(var(--brand-rgb), .22); }
.brand__mark span { font-size: 14px; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: -.02em; }
.brand__text small { margin-top: 5px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .095em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 27px); }
.site-nav > a:not(.button) { position: relative; padding: 28px 0; color: #33454e; font-size: 14px; font-weight: 650; text-decoration: none; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; background: var(--wine); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button).is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.6); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-size: 14px; font-weight: 750; text-decoration: none; cursor: pointer; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--wine); box-shadow: 0 12px 28px rgba(var(--brand-rgb), .19); }
.button--primary:hover { background: var(--wine-dark); box-shadow: 0 15px 34px rgba(var(--brand-rgb), .25); }
.button--ghost { color: var(--ink); background: rgba(255,255,255,.58); border-color: var(--line); }
.button--ghost:hover { background: var(--white); border-color: rgba(22,36,44,.23); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: #f5ede3; }
.button--small { min-height: 42px; padding-inline: 18px; border-radius: 12px; }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-size: 14px; font-weight: 800; text-decoration: none; }
.text-link .icon, .button .icon { transition: transform .25s var(--ease); }
.text-link:hover .icon, .button:hover .icon { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 78px 0 0; }
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(4px); }
.hero__glow--one { top: -190px; left: -150px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(207, 218, 208, .8), rgba(207, 218, 208, 0) 70%); }
.hero__glow--two { right: -240px; bottom: -40px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(217, 164, 65, .16), rgba(217, 164, 65, 0) 69%); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); align-items: center; gap: clamp(48px, 7vw, 94px); }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 26px; height: 1px; background: var(--wine); }
.hero h1, .section h2, .safety-panel h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.052em; line-height: .99; }
.hero h1 { max-width: 680px; font-size: clamp(48px, 6vw, 78px); }
.hero h1 em { color: var(--wine); font-weight: inherit; }
.hero__lead { max-width: 590px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin: 30px 0 0; padding: 0; list-style: none; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; color: #4a5a61; font-size: 13px; font-weight: 700; }
.hero__trust .icon { color: var(--wine); }
.hero__visual { position: relative; padding: 18px 0 30px 26px; }
.hero__visual::before { content: ""; position: absolute; z-index: -1; top: -18px; right: -68px; bottom: 10px; left: 0; background: var(--paper-deep); border-radius: 48% 0 0 48%; }
.hero__photo { position: relative; margin: 0; overflow: hidden; background: #d8d4ce; border: 9px solid rgba(255,255,255,.72); border-radius: 30px 30px 30px 8px; box-shadow: var(--shadow-lg); }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,30,38,.7), transparent 38%); pointer-events: none; }
.hero__photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.hero__photo figcaption { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; color: var(--white); }
.hero__photo figcaption span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero__photo figcaption strong { font-size: 14px; }
.floating-note { position: absolute; z-index: 2; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.floating-note--top { top: -18px; right: -20px; min-width: 160px; padding: 16px 19px; border-radius: 18px 18px 4px 18px; }
.floating-note--top strong, .floating-note--top span { display: block; }
.floating-note--top strong { font-family: Georgia, serif; font-size: 20px; }
.floating-note--top span { margin-top: 2px; color: var(--ink-soft); font-size: 11px; }
.floating-note--bottom { bottom: 0; left: -18px; display: flex; align-items: center; gap: 12px; min-width: 190px; padding: 14px; border-radius: 18px 18px 18px 4px; }
.floating-note__icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--wine); border-radius: 13px; }
.floating-note--bottom > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.floating-note--bottom strong { font-size: 13px; }
.floating-note--bottom small { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }
.hero__stats { position: relative; margin-top: 82px; }
.hero__stats dl { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 25px 0 35px; border-top: 1px solid var(--line); }
.hero__stats dl > div { position: relative; display: flex; align-items: center; gap: 13px; padding: 0 28px; }
.hero__stats dl > div:first-child { padding-left: 0; }
.hero__stats dl > div:not(:last-child)::after { content: ""; position: absolute; top: 8px; right: 0; bottom: 8px; width: 1px; background: var(--line); }
.hero__stats dt { color: var(--wine); font-family: Georgia, serif; font-size: 35px; line-height: 1; }
.hero__stats dd { max-width: 112px; margin: 0; color: var(--ink-soft); font-size: 12px; font-weight: 650; line-height: 1.4; }

.section { padding: 118px 0; }
.section h2, .safety-panel h2 { font-size: clamp(39px, 5vw, 62px); }
.section h2 span, .faq-heading h2 span { color: var(--wine); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; margin-bottom: 54px; }
.section-heading > p { max-width: 410px; margin: 0 0 3px; color: var(--ink-soft); font-size: 16px; }
.section-heading--center { max-width: 830px; margin-inline: auto; align-items: center; flex-direction: column; gap: 20px; text-align: center; }
.section-heading--center > p { max-width: 580px; }

.section--about { color: #ebf0ee; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); align-items: center; gap: clamp(70px, 10vw, 125px); }
.about-media { position: relative; min-height: 610px; }
.about-media__main, .about-media__small { position: absolute; margin: 0; overflow: hidden; background: #34464e; }
.about-media__main { inset: 0 82px 58px 0; border-radius: 12px 34px 12px 12px; }
.about-media__main img, .about-media__small img { width: 100%; height: 100%; object-fit: cover; }
.about-media__small { right: 0; bottom: 0; width: 48%; height: 37%; border: 7px solid var(--ink); border-radius: 20px 8px 20px 20px; }
.about-media__label { position: absolute; top: 38px; left: -25px; padding: 16px 20px; color: var(--ink); background: #f0d69e; border-radius: 4px 15px 15px 15px; box-shadow: var(--shadow-sm); }
.about-media__label span, .about-media__label strong { display: block; }
.about-media__label span { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.about-media__label strong { margin-top: 2px; font-family: Georgia, serif; font-size: 16px; }
.about-copy .section-kicker { color: #dcb264; }
.about-copy h2 span { color: #dfb568; }
.about-copy > p:not(.section-kicker) { max-width: 590px; margin: 24px 0 0; color: #b9c4c4; }
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 38px 0 32px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.values-row div { display: flex; flex-direction: column; }
.values-row span { color: #dcb264; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.values-row strong { margin-top: 5px; color: var(--white); font-size: 15px; }
.values-row small { margin-top: 4px; color: #99a8aa; font-size: 11px; line-height: 1.45; }
.about-copy .text-link { color: #e0bc7a; }

.section--rooms { background: var(--paper-deep); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.room-card { overflow: hidden; background: rgba(255,255,255,.72); border: 1px solid rgba(22,36,44,.08); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.room-card__image { position: relative; overflow: hidden; }
.room-card__image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .7s var(--ease); }
.room-card:hover .room-card__image img { transform: scale(1.035); }
.room-card__image > span { position: absolute; top: 18px; left: 18px; padding: 8px 12px; color: var(--white); background: rgba(22,36,44,.78); border-radius: 999px; font-size: 11px; font-weight: 750; backdrop-filter: blur(8px); }
.room-card__body { display: grid; grid-template-columns: 1fr auto; gap: 28px; padding: 26px 28px 29px; }
.room-card__body h3 { margin: 0; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.room-card__body p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; }
.room-card__body ul { margin: 2px 0 0; padding: 0; list-style: none; }
.room-card__body li { position: relative; padding-left: 14px; color: #40515a; font-size: 11px; white-space: nowrap; }
.room-card__body li + li { margin-top: 5px; }
.room-card__body li::before { content: ""; position: absolute; top: .75em; left: 0; width: 4px; height: 4px; background: var(--wine); border-radius: 50%; }
.room-standard { grid-column: 1/-1; display: grid; grid-template-columns: .85fr 1.15fr auto; align-items: center; gap: 48px; padding: 36px 40px; color: #eef3f1; background: var(--ink); border-radius: var(--radius-md); }
.room-standard__top .feature-icon { margin-bottom: 22px; color: var(--ink); background: #ecd39d; }
.room-standard__top .section-kicker { margin-bottom: 8px; color: #dcb264; }
.room-standard h3 { margin: 0; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.room-standard__top p:last-child { margin: 10px 0 0; color: #aebaba; font-size: 12px; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 22px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 8px; color: #c5cfce; font-size: 12px; }
.check-list .icon { width: 17px; height: 17px; flex: 0 0 auto; color: #e0bc7a; }
.rooms-note { margin: 18px 0 0; color: #66747a; font-size: 11px; text-align: right; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { min-height: 238px; padding: 29px 26px; background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 19px; transition: transform .35s var(--ease), background .3s ease, box-shadow .35s ease; }
.feature-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-sm); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--wine); background: #e2ebf2; border-radius: 14px; }
.feature-icon .icon { width: 23px; height: 23px; }
.feature-card h3 { margin: 24px 0 8px; font-family: Georgia, serif; font-size: 20px; font-weight: 500; line-height: 1.25; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }

.safety-panel { padding: 106px 0; color: #ecf0ef; background: var(--wine); }
.safety-panel__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 125px); }
.section-kicker--light { color: #efd39c; }
.safety-panel__heading > p:last-child { max-width: 440px; margin: 25px 0 0; color: #d5e4ee; }
.safety-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.23); border-left: 1px solid rgba(255,255,255,.23); }
.safety-list > div { min-height: 175px; padding: 25px 26px; border-right: 1px solid rgba(255,255,255,.23); border-bottom: 1px solid rgba(255,255,255,.23); }
.safety-list span { color: #efcd8d; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.safety-list p { margin: 22px 0 0; color: #e3edf4; font-size: 12px; }
.safety-list strong { display: block; margin-bottom: 4px; color: var(--white); font-family: Georgia, serif; font-size: 18px; font-weight: 500; }

.section--gallery { background: #fbf9f5; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 17px; background: #d9d4cc; cursor: zoom-in; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,24,31,.72), transparent 52%); }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-item__label { position: absolute; z-index: 1; bottom: 17px; left: 18px; color: var(--white); font-size: 13px; font-weight: 750; }
.gallery-item__expand { position: absolute; z-index: 1; right: 15px; bottom: 15px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); border-radius: 10px; backdrop-filter: blur(8px); opacity: 0; transform: translateY(7px); transition: opacity .25s ease, transform .25s var(--ease); }
.gallery-item:hover .gallery-item__expand, .gallery-item:focus-visible .gallery-item__expand { opacity: 1; transform: translateY(0); }

.section--story { padding-top: 0; background: #fbf9f5; }
.story-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 70px 76px; color: #edf2f0; background: var(--ink); border-radius: var(--radius-lg); }
.story-card__number { position: absolute; right: 30px; bottom: -68px; color: rgba(255,255,255,.045); font-family: Georgia, serif; font-size: 210px; line-height: 1; pointer-events: none; }
.story-card__title, .story-card__copy { position: relative; z-index: 1; }
.story-card__title h2 { font-size: clamp(45px, 5vw, 66px); }
.story-card__copy { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.story-card__copy p { max-width: 590px; margin: 0; color: #b9c4c4; }
.story-card__copy p + p { margin-top: 19px; }

.section--faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 125px); }
.faq-heading > p:not(.section-kicker) { max-width: 390px; margin: 24px 0; color: var(--ink-soft); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; font-family: Georgia, serif; font-size: 19px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 auto; color: var(--wine); background: #e3ebf2; border-radius: 50%; transition: transform .3s var(--ease); }
.faq-list details[open] summary > span { transform: rotate(90deg); }
.faq-list details p { max-width: 740px; margin: -4px 60px 23px 0; color: var(--ink-soft); font-size: 14px; }

.section--contact { background: var(--paper-deep); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; gap: clamp(54px, 8vw, 100px); }
.location-card { position: relative; min-height: 580px; overflow: hidden; border-radius: 12px 34px 12px 12px; box-shadow: var(--shadow-lg); }
.location-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location-card__shade { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,28,36,.89), rgba(12,28,36,.26) 75%); }
.location-card__content { position: absolute; z-index: 1; right: 44px; bottom: 45px; left: 44px; color: var(--white); }
.location-pin { width: 50px; height: 50px; display: grid; place-items: center; color: var(--wine); background: var(--white); border-radius: 16px 16px 16px 4px; }
.location-card__content > p { margin: 28px 0 4px; color: #e4cda4; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-card h2 { margin-bottom: 28px; font-size: clamp(37px, 4vw, 54px); }
.contact-copy { align-self: center; }
.contact-copy > p:not(.section-kicker) { max-width: 490px; margin: 24px 0 30px; color: var(--ink-soft); }
.contact-links { border-top: 1px solid var(--line); }
.contact-links > a { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-links > a > span:first-child { width: 44px; height: 44px; display: grid; place-items: center; color: var(--wine); background: #dfe9f1; border-radius: 13px; }
.contact-links > a > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.contact-links small { color: #78858a; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; margin-top: 2px; font-size: 14px; }
.contact-links__arrow { color: var(--wine); transition: transform .25s var(--ease); }
.contact-links a:hover .contact-links__arrow { transform: translateX(5px); }
.contact-note { display: flex; gap: 13px; margin-top: 27px; padding: 18px 20px; background: rgba(255,255,255,.55); border-radius: 15px; }
.contact-note > .icon { flex: 0 0 auto; margin-top: 2px; color: var(--wine); }
.contact-note p { display: flex; flex-direction: column; margin: 0; }
.contact-note strong { font-size: 12px; }
.contact-note span { margin-top: 3px; color: var(--ink-soft); font-size: 11px; }

.section--register { padding: 108px 0; color: #eef2f1; background: var(--ink); }
.register-shell { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: clamp(60px, 9vw, 115px); }
.register-copy h2 { font-size: clamp(43px, 5vw, 62px); }
.register-copy > p:not(.section-kicker) { max-width: 470px; margin: 25px 0 30px; color: #b5c1c0; }
.register-copy ul { margin: 0; padding: 0; list-style: none; }
.register-copy li { display: flex; align-items: center; gap: 9px; color: #c6d0cf; font-size: 12px; }
.register-copy li + li { margin-top: 10px; }
.register-copy li .icon { width: 18px; height: 18px; color: #dfb76f; }
.register-form { padding: 35px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 24px 70px rgba(0,0,0,.2); }
.form-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; margin-bottom: 7px; color: #35464e; font-size: 11px; font-weight: 800; }
.form-row label span { color: var(--wine); }
.form-row input, .form-row select, .form-row textarea { width: 100%; color: var(--ink); background: #f7f4ef; border: 1px solid transparent; border-radius: 11px; outline: none; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.form-row input, .form-row select { height: 48px; padding: 0 14px; }
.form-row textarea { display: block; min-height: 94px; padding: 12px 14px; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #9a9f9f; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { background: var(--white); border-color: rgba(var(--brand-rgb), .55); box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .08); }
.form-consent { display: flex; align-items: flex-start; gap: 9px; margin: 1px 0 19px; color: #647176; font-size: 10px; cursor: pointer; }
.form-consent input { width: 16px; height: 16px; flex: 0 0 auto; margin: 0; accent-color: var(--wine); }
.form-status { min-height: 18px; margin: 9px 0 -8px; color: var(--wine); font-size: 11px; text-align: center; }

.site-footer { padding: 68px 0 24px; color: #bec8c7; background: #101b21; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .65fr 1fr; gap: 70px; padding-bottom: 48px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__text small { color: #95a4a5; }
.footer-brand > p { max-width: 360px; margin: 20px 0 0; color: #849496; font-size: 12px; }
.site-footer h2 { margin: 3px 0 18px; color: var(--white); font-family: inherit; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { color: #93a2a4; font-size: 12px; }
.site-footer li + li { margin-top: 9px; }
.site-footer a { text-decoration: none; transition: color .2s ease; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #718184; font-size: 10px; }
.footer-credit { margin: 20px 0 0; color: #95a4a5; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-align: center; }

.floating-whatsapp { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px; color: var(--white); background: #1d9b61; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; box-shadow: 0 12px 32px rgba(12,62,39,.3); font-size: 12px; font-weight: 800; text-decoration: none; transition: transform .25s var(--ease), background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #168454; }

.lightbox { width: min(92vw, 1080px); max-width: none; padding: 0; overflow: visible; color: var(--white); background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(8,15,19,.92); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; }
.lightbox figure img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; }
.lightbox figcaption { margin-top: 12px; color: #d2dcda; font-size: 13px; text-align: center; }
.lightbox__close, .lightbox__nav { position: absolute; z-index: 2; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; cursor: pointer; backdrop-filter: blur(8px); }
.lightbox__close { top: -50px; right: 0; width: 40px; height: 40px; }
.lightbox__nav { top: 50%; width: 46px; height: 46px; transform: translateY(-50%); }
.lightbox__nav--prev { left: -62px; }
.lightbox__nav--prev .icon { transform: rotate(180deg); }
.lightbox__nav--next { right: -62px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(217,164,65,.75); outline-offset: 3px; }

@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .site-nav { gap: 16px; }
  .site-nav > a:not(.button) { font-size: 13px; }
  .brand { min-width: auto; }
  .brand__text small { max-width: 175px; }
  .hero__grid { grid-template-columns: .95fr 1.05fr; gap: 45px; }
  .floating-note--top { right: -8px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .room-standard { grid-template-columns: .9fr 1.1fr; }
  .room-standard > .button { grid-column: 1/-1; justify-self: start; }
  .gallery-grid { grid-auto-rows: 205px; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .announcement__inner { min-height: 34px; justify-content: center; }
  .announcement__inner > p { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: calc(34px + var(--header-height)); right: 0; bottom: 0; left: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 22px 24px 40px; overflow-y: auto; background: rgba(246,242,235,.98); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .22s ease, transform .3s var(--ease), visibility .22s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .nav-cta { margin-top: 22px; }
  .hero { padding-top: 55px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 720px; }
  .hero__visual { max-width: 680px; margin: 12px auto 0; }
  .hero__stats { margin-top: 60px; }
  .hero__stats dl { grid-template-columns: repeat(2, 1fr); }
  .hero__stats dl > div { min-height: 90px; padding: 18px 28px; border-bottom: 1px solid var(--line); }
  .hero__stats dl > div:nth-child(2)::after { display: none; }
  .hero__stats dl > div:nth-child(3) { padding-left: 0; }
  .section { padding: 90px 0; }
  .about-grid, .safety-panel__grid, .faq-grid, .contact-grid, .register-shell { grid-template-columns: 1fr; }
  .about-media { max-width: 680px; min-height: 590px; }
  .about-copy { max-width: 720px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-standard { grid-column: auto; grid-template-columns: 1fr; gap: 28px; }
  .room-standard > .button { grid-column: auto; }
  .safety-panel { padding: 86px 0; }
  .safety-panel__grid { gap: 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .story-card { grid-template-columns: 1fr; gap: 38px; }
  .story-card__copy { padding-top: 24px; }
  .faq-grid { gap: 50px; }
  .location-card { min-height: 520px; }
  .contact-copy, .register-copy { max-width: 680px; }
  .register-shell { gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr .7fr 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  :root { --radius-md: 19px; --radius-lg: 24px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement__links { width: 100%; justify-content: space-between; gap: 12px; }
  .announcement__links a { font-size: 12px; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__text strong { font-size: 15px; }
  .brand__text small { max-width: 190px; font-size: 7px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero__lead { margin-top: 21px; font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__trust { margin-top: 23px; }
  .hero__visual { padding: 0 7px 22px 13px; }
  .hero__visual::before { top: -8px; right: -28px; border-radius: 40% 0 0 40%; }
  .hero__photo { border-width: 5px; border-radius: 22px 22px 22px 7px; }
  .hero__photo figcaption { right: 15px; bottom: 13px; left: 15px; }
  .hero__photo figcaption span { display: none; }
  .floating-note--top { top: -22px; right: -4px; min-width: 135px; padding: 11px 14px; }
  .floating-note--top strong { font-size: 16px; }
  .floating-note--bottom { bottom: 0; left: -1px; min-width: 170px; padding: 10px; }
  .floating-note__icon { width: 36px; height: 36px; }
  .hero__stats { margin-top: 48px; }
  .hero__stats dl { padding-bottom: 20px; }
  .hero__stats dl > div { display: block; min-height: 96px; padding: 18px 17px; }
  .hero__stats dt { font-size: 30px; }
  .hero__stats dd { margin-top: 7px; font-size: 10px; }
  .section { padding: 74px 0; }
  .section h2, .safety-panel h2 { font-size: clamp(37px, 11vw, 52px); }
  .section-heading { margin-bottom: 36px; }
  .about-grid { gap: 55px; }
  .about-media { min-height: 430px; }
  .about-media__main { right: 44px; bottom: 44px; }
  .about-media__small { width: 51%; height: 35%; }
  .about-media__label { top: 20px; left: -5px; padding: 12px 14px; }
  .about-media__label strong { font-size: 13px; }
  .values-row { grid-template-columns: 1fr; gap: 13px; }
  .values-row div { display: grid; grid-template-columns: 26px 1fr; }
  .values-row small { grid-column: 2; }
  .room-card__body { grid-template-columns: 1fr; gap: 18px; padding: 23px 20px; }
  .room-card__body ul { display: flex; flex-wrap: wrap; gap: 5px 13px; }
  .room-card__body li + li { margin-top: 0; }
  .room-standard { padding: 28px 22px; }
  .check-list { grid-template-columns: 1fr; }
  .rooms-note { text-align: left; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; padding: 22px; }
  .feature-card h3 { margin-top: 18px; }
  .safety-panel { padding: 72px 0; }
  .safety-list { grid-template-columns: 1fr; }
  .safety-list > div { min-height: auto; padding: 22px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item--wide { grid-column: span 1; }
  .story-card { padding: 39px 25px; }
  .story-card__number { right: -10px; bottom: -35px; font-size: 120px; }
  .faq-list summary { font-size: 17px; }
  .faq-list details p { margin-right: 0; }
  .location-card { min-height: 470px; }
  .location-card__content { right: 25px; bottom: 28px; left: 25px; }
  .location-card h2 { font-size: 37px; }
  .contact-links > a { grid-template-columns: 42px 1fr auto; gap: 12px; }
  .register-form { padding: 25px 20px; }
  .form-split { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 13px; bottom: 13px; width: 50px; height: 50px; min-height: 50px; justify-content: center; padding: 0; }
  .floating-whatsapp span { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); white-space: nowrap; }
  .lightbox__nav { top: auto; bottom: -55px; }
  .lightbox__nav--prev { left: calc(50% - 55px); }
  .lightbox__nav--next { right: calc(50% - 55px); }
}

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