:root {
  --ink: #121110;
  --ink-soft: #2a2724;
  --stone: #ece8e1;
  --stone-deep: #ddd6cb;
  --ivory: #f7f4ef;
  --champagne: #b8955a;
  --champagne-bright: #d4b37a;
  --muted: #7a736a;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(18, 17, 16, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--champagne); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.72), rgba(18, 17, 16, 0));
  color: var(--white);
  transition: background 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(18, 17, 16, 0.94);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand-mark img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border: 1px solid rgba(212, 179, 122, 0.45);
}

.brand-mark span { display: none; }
@media (min-width: 720px) {
  .brand-mark span { display: inline; }
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a { color: rgba(255, 255, 255, 0.86); }
.nav a:hover { color: var(--champagne-bright); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switch {
  border: 1px solid rgba(212, 179, 122, 0.55);
  color: var(--champagne-bright);
  min-width: 2.1rem;
  min-height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-bright);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.12rem;
}

@media (min-width: 980px) {
  .nav { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: drift 22s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 17, 16, 0.25) 0%, rgba(18, 17, 16, 0.35) 40%, rgba(18, 17, 16, 0.82) 100%),
    linear-gradient(90deg, rgba(18, 17, 16, 0.45), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 14vh, 9rem) clamp(1.25rem, 5vw, 4rem) clamp(2.8rem, 7vh, 4.5rem);
  max-width: 46rem;
  animation: rise 1.1s var(--ease) both;
}

.hero-place {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne-bright);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.8rem, 11vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne-bright);
}

.hero-lead {
  margin: 1.4rem 0 0;
  max-width: 28rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-gold {
  background: var(--champagne);
  color: var(--ink);
  border-color: var(--champagne);
}
.btn-gold:hover {
  background: var(--champagne-bright);
  border-color: var(--champagne-bright);
  color: var(--ink);
}
.btn-line {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-line:hover {
  border-color: var(--champagne-bright);
  color: var(--champagne-bright);
}
.btn-block { width: 100%; }

/* Stay */
.stay {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
  background: var(--ivory);
}

.stay-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .stay-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}

.stay-copy h2,
.section-head h2,
.info-card h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
}

.lead {
  margin: 1.1rem 0 0;
  font-size: 1.12rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.stay-copy p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.stay-visual {
  overflow: hidden;
  min-height: 28rem;
  background: var(--stone-deep);
}

.stay-visual img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

/* Suites */
.suites {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    linear-gradient(180deg, #1a1816 0%, #121110 100%);
  color: var(--white);
}

.suites .section-head h2 { color: var(--white); }
.suites .section-head p { color: rgba(255, 255, 255, 0.68); }

.section-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.suite-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .suite-grid { grid-template-columns: repeat(4, 1fr); }
}

.suite-card {
  background: #161412;
  padding: 1.75rem 1.4rem 1.9rem;
}

.suite-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--champagne-bright);
}

.suite-card p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  padding: clamp(4rem, 9vw, 6rem) clamp(0.75rem, 2vw, 1.5rem);
  background: var(--ink);
}

.section-head--light h2 { color: var(--white); }
.section-head--light p { color: rgba(255, 255, 255, 0.65); }

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
  }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: #2a2622;
  min-height: 12rem;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

@media (min-width: 900px) {
  .gallery-item--tall img { min-height: 26rem; }
  .gallery-item--wide img { min-height: 16rem; }
}

.gallery-item:hover img { transform: scale(1.04); }

/* Location + Map */
.location {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    radial-gradient(800px 360px at 100% 0%, rgba(184, 149, 90, 0.12), transparent 55%),
    var(--ivory);
  display: grid;
  gap: 1.25rem;
  justify-items: stretch;
}

.location > .prose-card,
.location > .map-card {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.prose-card,
.map-card {
  border: 1px solid rgba(184, 149, 90, 0.35);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(18, 17, 16, 0.06);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.prose-card h2,
.map-card h3,
.faq .section-head h2,
.info-card h2,
.contact-card h2,
.stay-copy h2,
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
}

.prose-card h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--ink);
}

.prose-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 300;
}

.prose-card .lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.section-head--left {
  text-align: left;
  margin: 0 0 1.1rem;
  max-width: none;
}

.map-card h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--ink);
}

.map-card .section-head p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 90, 0.35);
  background: #d9d2c6;
  min-height: 320px;
  aspect-ratio: 16 / 10;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.map-note {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.suites-extra {
  max-width: 820px;
  margin: 2rem auto 0;
  text-align: center;
}

.suites-extra p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, #f7f3ec 0%, #efe8dc 100%);
}

.faq .section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--ink);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(184, 149, 90, 0.35);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(18, 17, 16, 0.06);
}

.faq-item {
  border-bottom: 1px solid rgba(18, 17, 16, 0.08);
  padding: 0 1.25rem;
}

.faq-item:last-child { border-bottom: 0; }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 1.15rem 2rem 1.15rem 0;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--champagne);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Reserve */
.reserve {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(184, 149, 90, 0.18), transparent 55%),
    linear-gradient(160deg, #f3eee5 0%, #e7dfd2 100%);
}

.reserve-shell {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 920px) {
  .reserve-shell {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 1.35rem;
    align-items: stretch;
  }
}

.info-card,
.reserve-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 149, 90, 0.45);
  box-shadow: 0 18px 50px rgba(18, 17, 16, 0.08);
  padding: clamp(1.5rem, 4vw, 2.35rem);
}

.info-card {
  background:
    linear-gradient(165deg, #1b1916 0%, #121110 100%);
  color: var(--white);
  border-color: rgba(212, 179, 122, 0.4);
}

.info-card .eyebrow { color: var(--champagne-bright); }
.info-card h2 { color: var(--white); }
.info-card .lead { color: rgba(255, 255, 255, 0.78); }

.info-lines {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.info-line {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(212, 179, 122, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.info-line span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-bright);
}

.info-line strong {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

a.info-line:hover {
  border-color: var(--champagne-bright);
  color: var(--white);
}

.reserve-form {
  border-top: 3px solid var(--champagne);
}

.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin-bottom: 1.1rem;
}

@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f675d;
}

.field input,
.field textarea {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(18, 17, 16, 0.16);
  background: #f7f3ec;
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 300;
  border-radius: 0;
  min-height: 3rem;
}

.field textarea { min-height: 7rem; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(184, 149, 90, 0.18);
  background: #fff;
}

.form-note {
  margin: 0.95rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.form-status.is-ok {
  background: rgba(184, 149, 90, 0.14);
  border-color: rgba(184, 149, 90, 0.35);
  color: var(--ink);
}

.form-status.is-err {
  background: rgba(122, 34, 48, 0.08);
  border-color: rgba(122, 34, 48, 0.25);
  color: #7a2230;
}

/* Contact */
.contact {
  padding: clamp(4rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3.5rem);
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(184, 149, 90, 0.18), transparent 60%),
    #121110;
  color: var(--white);
}

.contact-card {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid rgba(212, 179, 122, 0.4);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.contact-card .eyebrow { color: var(--champagne-bright); }
.contact-card h2 { color: var(--white); }

.contact-place {
  margin: 1rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--champagne-bright);
}

.contact-actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(212, 179, 122, 0.45);
  color: var(--white);
  background: rgba(184, 149, 90, 0.1);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.contact-chip:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--ink);
}

.muted { color: rgba(255, 255, 255, 0.58); }

.seo-line {
  margin: 1.75rem auto 0;
  max-width: 38rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.48);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 179, 122, 0.22);
}

.site-footer {
  padding: 1.5rem;
  text-align: center;
  background: #0c0b0a;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.site-footer p { margin: 0; }
.footer-langs { margin-top: 0.45rem !important; }
.footer-langs a { color: rgba(255, 255, 255, 0.7); }

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes drift {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(1.2rem); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .hero-content, .reveal, .gallery-item img, .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .reveal { opacity: 1; }
}
