:root {
  color-scheme: light;
  --ink: #10202b;
  --night: #112b39;
  --paper: #f7f5f0;
  --soft: #e9e8e1;
  --accent: #d7a663;
  --accent-2: #9fc1ba;
  --glow: rgba(215, 166, 99, .36);
  --radius-lg: 32px;
  --radius-md: 18px;
  --shadow: 0 22px 60px rgba(10, 26, 35, .16);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.site-shell { overflow: clip; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.muted { color: color-mix(in srgb, var(--ink) 64%, transparent); }

.topbar {
  position: relative;
  z-index: 5;
  color: rgba(255,255,255,.72);
  background: var(--night);
  font-size: .78rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 20px; }
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 4;
  inset: 38px 0 auto;
  color: #fff;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.2); }
.brand { display: inline-flex; flex-direction: column; gap: 2px; text-decoration: none; line-height: 1; }
.brand__main { font-size: clamp(1.25rem, 2.2vw, 1.8rem); font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.brand__sub { color: var(--accent); font-size: .64rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); font-size: .83rem; font-weight: 700; }
.site-nav a { opacity: .86; text-decoration: none; }
.site-nav a:hover { opacity: 1; color: var(--accent); }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: #fff; font-size: .78rem; font-weight: 800; text-decoration: none; white-space: nowrap; }

.hero {
  position: relative;
  min-height: 720px;
  padding: 190px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 74% 22%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 30%),
    linear-gradient(118deg, color-mix(in srgb, var(--night) 94%, #000), color-mix(in srgb, var(--night) 77%, #000));
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4; background-image: linear-gradient(120deg, transparent 0 52%, rgba(255,255,255,.06) 52.1% 52.3%, transparent 52.4% 100%), radial-gradient(circle at 8% 90%, transparent 0 20%, rgba(255,255,255,.08) 20.1% 20.25%, transparent 20.3%); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(46px, 7vw, 110px); }
.hero__copy { max-width: 630px; }
.hero h1 { max-width: 680px; margin: 22px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.1rem, 6.2vw, 6.65rem); font-weight: 500; letter-spacing: -.065em; line-height: .93; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__lead { max-width: 580px; color: rgba(255,255,255,.82); font-size: clamp(1.02rem, 1.4vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 800; text-align: center; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.button--accent { color: var(--night); background: var(--accent); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.05); }
.button--dark { color: #fff; background: var(--night); }
.button--small { min-height: 42px; padding: 10px 15px; font-size: .88rem; }
.button__arrow { font-size: 1.15em; line-height: 1; }
.microcopy { margin: 18px 0 0; color: rgba(255,255,255,.56); font-size: .76rem; }

.hero__visual { position: relative; min-height: 450px; margin: 0; }
.hero__visual::before { content: ""; position: absolute; inset: 22px -16px -20px 22px; border: 1px solid color-mix(in srgb, var(--accent) 56%, transparent); transform: rotate(3deg); }
.hero__visual::after { content: ""; position: absolute; z-index: -1; width: 180px; height: 180px; right: -52px; bottom: -48px; border-radius: 50%; background: var(--glow); filter: blur(26px); }
.hero__visual img { position: relative; z-index: 1; width: 100%; height: auto; min-height: 450px; object-fit: cover; object-position: center; border-radius: 2px; box-shadow: var(--shadow); }
.hero__caption { position: absolute; z-index: 2; left: 24px; bottom: 22px; max-width: 74%; padding: 10px 14px; color: #fff; background: rgba(10,27,35,.78); backdrop-filter: blur(12px); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero__badge { position: absolute; z-index: 3; right: -22px; top: 24px; display: grid; place-items: center; width: 116px; height: 116px; border: 1px solid var(--accent); border-radius: 50%; color: var(--night); background: var(--accent); font-size: .75rem; font-weight: 900; line-height: 1.1; text-align: center; transform: rotate(10deg); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.hero__badge span { display: block; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }

.proof-strip { position: relative; z-index: 2; margin-top: -1px; color: #fff; background: var(--accent); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 118px; padding: 24px 26px; border-right: 1px solid rgba(255,255,255,.28); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.proof-item span { display: block; margin-top: 7px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

.section { padding: 104px 0; }
.section--dark { color: #fff; background: var(--night); }
.section--soft { background: var(--soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2 { max-width: 690px; margin: 16px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.065em; line-height: .96; }
.section-heading p { max-width: 390px; margin: 0; color: color-mix(in srgb, currentColor 68%, transparent); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 70px; align-items: start; }
.intro-copy { max-width: 700px; font-size: 1.1rem; }
.intro-copy p { margin: 0 0 18px; }
.differentials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.differential { min-height: 150px; padding: 22px; border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: var(--radius-md); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.differential__number { color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.differential h3 { margin: 32px 0 0; font-size: 1rem; line-height: 1.2; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-card { position: relative; min-height: 260px; margin: 0; overflow: hidden; border-radius: var(--radius-md); background: #c9c9c4; }
.gallery-card:nth-child(1) { grid-column: span 7; min-height: 430px; }
.gallery-card:nth-child(2) { grid-column: span 5; }
.gallery-card:nth-child(3), .gallery-card:nth-child(4) { grid-column: span 4; }
.gallery-card:nth-child(5), .gallery-card:nth-child(6) { grid-column: span 4; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card figcaption { position: absolute; inset: auto 0 0; padding: 46px 18px 16px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.72)); font-weight: 800; }

.facts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.fact-row { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent); }
.fact-row dt { color: color-mix(in srgb, currentColor 62%, transparent); font-size: .84rem; }
.fact-row dd { margin: 0; font-weight: 800; text-align: right; }
.amenities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.amenity { padding: 8px 12px; border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent); border-radius: 999px; color: color-mix(in srgb, currentColor 84%, transparent); font-size: .8rem; }

.location-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr); gap: 64px; align-items: start; }
.location-copy { font-size: 1.06rem; }
.location-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 32px; }
.location-point { padding: 18px; border-radius: var(--radius-md); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.location-point strong { display: block; color: var(--accent); font-size: 1.25rem; }
.location-point span { display: block; margin-top: 4px; font-size: .88rem; }
.location-map { min-height: 420px; display: grid; place-items: center; padding: 30px; border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); border-radius: var(--radius-lg); background: radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 42%), linear-gradient(135deg, #132f3a, #0d1c25); color: #fff; text-align: center; }
.location-map__pin { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 22px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-size: 2rem; }
.location-map h3 { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; }
.location-map p { max-width: 360px; margin: 0 auto 24px; color: rgba(255,255,255,.7); }

.tour-box { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 40px; align-items: center; padding: 42px; border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); border-radius: var(--radius-lg); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 11%, transparent), transparent); }
.tour-box h2 { margin: 14px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.tour-box p { color: color-mix(in srgb, currentColor 70%, transparent); }
.tour-facade { min-height: 310px; display: grid; place-items: center; padding: 28px; border-radius: var(--radius-md); background: linear-gradient(120deg, rgba(0,0,0,.3), rgba(0,0,0,.06)), repeating-linear-gradient(135deg, color-mix(in srgb, var(--accent) 22%, transparent) 0 1px, transparent 1px 18px); }
.tour-facade iframe { width: 100%; min-height: 310px; border: 0; border-radius: 12px; background: #111; }
.tour-trigger { display: grid; place-items: center; width: min(220px, 70vw); aspect-ratio: 1; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); background: rgba(0,0,0,.16); cursor: pointer; font-weight: 900; text-align: center; transition: transform .2s ease, background .2s ease; }
.tour-trigger:hover { transform: scale(1.04); background: color-mix(in srgb, var(--accent) 13%, transparent); }

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.faq-item { border: 1px solid color-mix(in srgb, var(--ink) 13%, transparent); border-radius: var(--radius-md); background: rgba(255,255,255,.42); }
.faq-item summary { padding: 20px 22px; cursor: pointer; font-weight: 850; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { float: right; content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 22px 22px; color: color-mix(in srgb, var(--ink) 73%, transparent); }

.lead-section { color: #fff; background: var(--night); }
.lead-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr); gap: 70px; align-items: start; }
.lead-section h2 { margin: 15px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.06em; line-height: .95; }
.lead-section .lead-copy { color: rgba(255,255,255,.72); }
.lead-form { padding: 28px; border-radius: var(--radius-lg); color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 850; }
.field input, .field select { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid rgba(16,32,43,.18); border-radius: 10px; color: var(--ink); background: #fff; }
.field input:focus, .field select:focus { border-color: var(--accent); outline: 3px solid color-mix(in srgb, var(--accent) 28%, transparent); }
.form-note { margin: 15px 0 0; color: rgba(16,32,43,.61); font-size: .73rem; }
.form-error { margin: 0 0 15px; padding: 11px 13px; border-radius: 10px; color: #8a1c1c; background: #ffe2df; font-size: .85rem; font-weight: 700; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 36px 0 110px; color: rgba(255,255,255,.72); background: #0b1b24; font-size: .8rem; }
.site-footer__inner { display: flex; justify-content: space-between; gap: 24px; }
.site-footer a { color: #fff; font-weight: 700; text-decoration: none; }

.ai-widget { position: fixed; z-index: 30; right: 22px; bottom: 24px; width: min(370px, calc(100vw - 44px)); }
.ai-launch { display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 15px; border: 1px solid var(--accent); border-radius: 999px; color: #fff; background: color-mix(in srgb, var(--night) 93%, transparent); box-shadow: 0 15px 35px rgba(0,0,0,.22); cursor: pointer; text-align: left; }
.ai-launch:hover { background: color-mix(in srgb, var(--night) 80%, var(--accent)); }
.ai-launch__icon { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); }
.ai-launch__text { min-width: 0; }
.ai-launch strong, .ai-launch small { display: block; }
.ai-launch strong { font-size: .83rem; }
.ai-launch small { color: rgba(255,255,255,.62); font-size: .68rem; }
.ai-launch__chevron { margin-left: auto; color: var(--accent); font-size: 1.2rem; }
.ai-panel { margin-bottom: 10px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--accent) 45%, #fff); border-radius: 20px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.ai-panel__head { display: flex; justify-content: space-between; gap: 18px; padding: 16px 18px; color: #fff; background: var(--night); }
.ai-panel__head strong, .ai-panel__head small { display: block; }
.ai-panel__head strong { font-size: .9rem; }
.ai-panel__head small { color: rgba(255,255,255,.62); font-size: .7rem; }
.ai-close { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: transparent; cursor: pointer; font-size: 1.2rem; line-height: 1; }
.ai-messages { max-height: 260px; overflow: auto; padding: 14px; }
.ai-message { margin: 0 0 10px; padding: 11px 12px; border-radius: 12px; font-size: .8rem; white-space: pre-wrap; }
.ai-message:last-child { margin-bottom: 0; }
.ai-message--assistant { background: #e8eee8; }
.ai-message--user { margin-left: 30px; color: var(--night); background: color-mix(in srgb, var(--accent) 27%, #fff); }
.ai-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 12px; }
.ai-chip { padding: 7px 9px; border: 1px solid rgba(16,32,43,.2); border-radius: 999px; color: var(--ink); background: #fff; cursor: pointer; font-size: .7rem; }
.ai-chip:hover { border-color: var(--accent); }
.ai-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px 14px 14px; border-top: 1px solid rgba(16,32,43,.12); }
.ai-form textarea { min-height: 48px; max-height: 100px; resize: vertical; padding: 10px; border: 1px solid rgba(16,32,43,.2); border-radius: 10px; }
.ai-form button { min-width: 72px; border: 0; border-radius: 10px; color: var(--night); background: var(--accent); cursor: pointer; font-weight: 850; }
.ai-status { padding: 0 14px 12px; color: rgba(16,32,43,.62); font-size: .7rem; }
[hidden] { display: none !important; }

.mobile-cta { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 980px) {
  .site-nav { display: none; }
  .hero { padding-top: 150px; }
  .hero__inner, .intro-grid, .location-grid, .lead-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 690px; width: 100%; margin-inline: auto; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 18px; }
  .tour-box { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .topbar__inner { min-height: 34px; font-size: .67rem; }
  .topbar__inner span { display: none; }
  .site-header { inset: 34px 0 auto; }
  .site-header__inner { min-height: 72px; }
  .brand__main { font-size: 1.05rem; }
  .brand__sub { font-size: .52rem; }
  .header-cta { padding: 9px 12px; font-size: .68rem; }
  .hero { min-height: auto; padding: 128px 0 54px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.8rem); }
  .hero__lead { font-size: .98rem; }
  .hero__visual { min-height: 300px; }
  .hero__visual img { min-height: 300px; }
  .hero__visual::before { inset: 12px -8px -12px 10px; }
  .hero__badge { right: -10px; top: -18px; width: 94px; height: 94px; font-size: .66rem; }
  .hero__caption { left: 12px; bottom: 12px; max-width: 80%; padding: 8px 10px; font-size: .64rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { min-height: 96px; padding: 18px 15px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.28); }
  .section { padding: 72px 0; }
  .section-heading h2, .lead-section h2 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .differentials, .facts-grid, .location-points, .faq-grid, .form-grid { grid-template-columns: 1fr; }
  .gallery { display: grid; grid-template-columns: repeat(2, 1fr); }
  .gallery-card, .gallery-card:nth-child(1), .gallery-card:nth-child(2), .gallery-card:nth-child(3), .gallery-card:nth-child(4), .gallery-card:nth-child(5), .gallery-card:nth-child(6) { grid-column: span 1; min-height: 190px; }
  .gallery-card:nth-child(1) { grid-column: 1 / -1; min-height: 260px; }
  .tour-box { padding: 26px 20px; }
  .lead-form { padding: 20px 16px; }
  .site-footer { padding-bottom: 96px; }
  .site-footer__inner { display: block; }
  .site-footer__inner > * + * { margin-top: 12px; }
  .ai-widget { right: 12px; bottom: 74px; width: calc(100vw - 24px); }
  .ai-panel { max-height: min(72vh, 540px); }
  .ai-messages { max-height: 220px; }
  .mobile-cta { position: fixed; z-index: 25; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 12px; border-top: 1px solid rgba(255,255,255,.2); background: rgba(10,27,35,.96); backdrop-filter: blur(12px); }
  .mobile-cta .button { min-height: 42px; padding: 9px 10px; font-size: .78rem; }
}

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