:root {
  --ink:#24302c;
  --muted:#69736f;
  --paper:#fbfaf6;
  --sand:#efe7db;
  --olive:#5e6b55;
  --deep:#263a34;
  --white:#fff;
  --shadow:0 18px 50px rgba(24,38,32,.12);
  --radius:22px;
  --max:1180px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}

a {
  color:inherit;
  text-decoration:none;
}

img {
  display:block;
  max-width:100%;
  width:100%;
  object-fit:cover;
}

.container {
  width:min(calc(100% - 40px),var(--max));
  margin-inline:auto;
}

.eyebrow {
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.76rem;
  font-weight:700;
  color:var(--olive);
}

.hero-eyebrow {
  color:#dce6e1;
}

h1,
h2,
h3 {
  font-family:Georgia,"Times New Roman",serif;
  line-height:1.06;
  font-weight:500;
  margin:0 0 18px;
}

h1 {
  font-size:clamp(3.2rem,7vw,6.7rem);
  letter-spacing:-.045em;
}

h2 {
  font-size:clamp(2.15rem,4vw,4rem);
  letter-spacing:-.03em;
}

h3 {
  font-size:1.55rem;
}

p {
  margin:0 0 18px;
}

.lead {
  font-size:clamp(1.05rem,2vw,1.3rem);
  max-width:680px;
  color:#edf3ef;
}

.muted {
  color:var(--muted);
}

/* Header */

.site-header {
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(251,250,246,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(36,48,44,.08);
}

.nav {
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:4px;
  padding-bottom:4px;
}

.brand {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  line-height:1;
  flex-shrink:0;
}

.site-logo {
  display:block;
  width:135px;
  height:auto;
  max-height:60px;
  object-fit:contain;
}

.brand-location {
  margin-top:3px;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:.50rem;
  font-weight:600;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--muted);
  white-space:nowrap;
}

.nav-links {
  display:flex;
  align-items:center;
  gap:26px;
  font-size:.9rem;
}

.nav-links a:hover {
  color:var(--olive);
}

.lang {
  font-size:.82rem;
  color:var(--muted);
  border-left:1px solid rgba(36,48,44,.13);
  padding-left:18px;
}

.lang span {
  font-weight:700;
  color:var(--ink);
}

.menu-toggle {
  display:none;
  background:none;
  border:0;
  font-size:1.6rem;
  color:var(--ink);
  cursor:pointer;
}

/* Buttons */

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  background:var(--deep);
  color:white;
  font-weight:700;
  font-size:.9rem;
  border:1px solid var(--deep);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.button:hover {
  transform:translateY(-1px);
  box-shadow:0 8px 20px rgba(38,58,52,.18);
}

.button.light {
  background:white;
  color:var(--deep);
  border-color:white;
}

.button.outline {
  background:transparent;
  color:var(--deep);
  border-color:rgba(38,58,52,.22);
}

/* Hero */

.hero {
  min-height:78vh;
  display:grid;
  align-items:end;
  background:
    linear-gradient(90deg,rgba(12,24,20,.62),rgba(12,24,20,.15)),
    url('https://le-cdn.website-editor.net/s/cdad424f0096407387c1f695d3a86198/dms3rep/multi/opt/IMG_3427-de43a1b7-1920w.jpg?Expires=1790556651&Key-Pair-Id=K2NXBXLF010TJW&Signature=tH4IwSjemK06bGsD7q2KnvxJNpmXi0fDqlEapWo3pmz8brL24nZMB-smc2wn43mi~xSu1dLz-PHq9ZInCL1oH0rzO34eYGfarkR-mw1R1SO~YCZ0PBcwF72o7h-6Xqee9zUZA8kVQ~yyWDLAYZamtDP-DhvxwMRacYpa5VOTQAw0KLCUr-gTehLw0FD~q7R7hcJwr3IlN~J1Jgl7ppzVDrT2SxxLzx9T4nehz1u3ydiTEetbPjBXrz5Ev-0~HKrUYCKTOJ3Z5dQDhxoC4ZsMBeffzNJwBJcPUsjHhNfVe-16CQj6huwWsEBagGSeAsoiufg7Q55IGi~IEbfdiE9wYw__')
    center/cover no-repeat;
  color:white;
}

.hero-inner {
  padding:clamp(80px,14vw,150px) 0 70px;
}

.hero-copy {
  max-width:760px;
}

.hero-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}

/* Sections */

section {
  padding:96px 0;
}

.section-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:36px;
}

.section-head p {
  max-width:560px;
}

.grid-2 {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:58px;
  align-items:center;
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}

/* Room cards */

.card {
  background:white;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  height:100%;
}

.card img {
  height:290px;
}

.card-body {
  padding:26px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.card-body h3 {
  margin-bottom:14px;
}

.card p {
  color:var(--muted);
}

.card-body .button {
  margin-top:auto;
  align-self:flex-start;
}

/* Images */

.image-shell {
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.image-shell img {
  aspect-ratio:4/3;
}

.image-tall img {
  aspect-ratio:4/5;
}

/* Features */

.feature-list {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:28px;
}

.feature {
  padding:18px;
  border:1px solid rgba(36,48,44,.10);
  border-radius:16px;
  background:rgba(255,255,255,.55);
}

.feature strong {
  display:block;
  margin-bottom:3px;
}

/* Quote */

.quote {
  background:var(--deep);
  color:white;
  border-radius:var(--radius);
  padding:clamp(34px,6vw,68px);
}

.quote blockquote {
  font-family:Georgia,serif;
  font-size:clamp(1.7rem,3vw,2.8rem);
  line-height:1.25;
  margin:0 0 18px;
}

.quote cite {
  font-style:normal;
  color:#d9e2de;
}

/* Bands and CTAs */

.band {
  background:var(--sand);
}

.cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.cta p {
  max-width:640px;
}

.cta-buttons {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Internal page hero */

.page-hero {
  padding:60px 0 48px;
  background:var(--sand);
}

.page-hero h1 {
  font-size:clamp(2.8rem,5vw,4.8rem);
}

.page-hero p {
  max-width:740px;
  color:var(--muted);
  font-size:1.18rem;
}

/* Room pages */

.room-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
}

.specs {
  background:white;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  position:sticky;
  top:110px;
  height:max-content;
}

.specs ul {
  padding-left:20px;
  margin:15px 0 26px;
}

.specs li {
  margin:8px 0;
}

/* Gallery */

.gallery-grid {
  columns:3 280px;
  column-gap:18px;
}

.gallery-grid img {
  margin:0 0 18px;
  border-radius:18px;
  break-inside:avoid;
}

/* Forms */

.form {
  display:grid;
  gap:14px;
}

.form label {
  font-weight:650;
}

.form input,
.form textarea {
  width:100%;
  padding:14px 15px;
  border:1px solid rgba(36,48,44,.2);
  border-radius:12px;
  background:white;
  font:inherit;
}

.form textarea {
  min-height:150px;
  resize:vertical;
}

.notice {
  font-size:.87rem;
  color:var(--muted);
}

/* Footer */

.footer {
  background:#19241f;
  color:#dfe7e2;
  padding:58px 0 30px;
}

.footer-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:42px;
}

.footer h3 {
  color:white;
}

.footer a {
  color:#dfe7e2;
}

.footer .fine {
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:42px;
  padding-top:22px;
  font-size:.82rem;
  color:#aebbb5;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* Responsive */

@media (max-width:850px) {
  .site-logo {
    width:135px;
    height:auto;
    max-height:50px;
  }

  .nav {
    min-height:78px;
  }

  .brand-location {
    font-size:.52rem;
    letter-spacing:.16em;
  }

  .nav-links {
    display:none;
  }

  .nav-links.open {
    display:flex;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    padding:22px;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    border-bottom:1px solid rgba(36,48,44,.1);
  }

  .menu-toggle {
    display:block;
  }

  .nav .button.desktop {
    display:none;
  }

  .grid-2,
  .room-grid {
    grid-template-columns:1fr;
  }

  .grid-3 {
    grid-template-columns:1fr;
  }

  .specs {
    position:static;
  }

  .footer-grid {
    grid-template-columns:1fr;
  }

  .cta,
  .section-head {
    align-items:flex-start;
    flex-direction:column;
  }

  .feature-list {
    grid-template-columns:1fr;
  }

  .hero {
    min-height:72vh;
  }

  .card img {
    height:auto;
    aspect-ratio:16/10;
  }
}
