:root {
  --ink: #232323;
  --muted: #68635d;
  --paper: #fffaf1;
  --cream: #f3eadb;
  --gold: #f1b153;
  --gold-dark: #bd7a28;
  --green: #344338;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(32, 27, 21, 0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.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;
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(35, 35, 35, 0.72);
  backdrop-filter: blur(12px);
  transition: background .25s ease, padding .25s ease;
}
.site-header.is-scrolled { background: rgba(35, 35, 35, 0.94); padding-block: 9px; }
.brand img { width: 159px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover, .site-nav a:focus { background: rgba(255,255,255,.14); }
.site-nav .nav-phone { background: var(--gold); color: #1f1f1f; font-weight: 700; }
.site-nav .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-toggle { display: none; }
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.hero-home { background-image: url('../images/adobestock-130233970-2000x1333.jpg'); }
.hero-stay { min-height: 74vh; background-image: url('../images/adobestock-105527845-2000x1333.jpg'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(255,250,241,.9) 0%, rgba(255,250,241,.68) 36%, rgba(255,250,241,.2) 68%),
    linear-gradient(180deg, rgba(23,23,23,.24), rgba(255,250,241,.16) 46%, rgba(23,23,23,.36));
}
.hero-content {
  width: min(980px, calc(100% - 40px));
  padding-top: 80px;
  color: var(--ink);
  text-shadow: 0 2px 8px rgba(255,255,255,.96), 0 1px 0 rgba(255,255,255,.9);
}
.hero-logo { width: min(520px, 84vw); margin: 0 auto 22px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 18px; font-weight: 300; }
h1 { font-size: clamp(42px, 7vw, 88px); }
h2 { font-size: clamp(34px, 5vw, 62px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
.hero p { font-size: clamp(23px, 3.3vw, 38px); margin: 0 auto 30px; max-width: 820px; font-weight: 400; }
.hero .large { font-size: clamp(30px, 5vw, 62px); }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 13px;
  text-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.button.primary { background: var(--gold); color: #1f1f1f; }
.button.light { background: var(--white); color: var(--ink); }
.button.full { width: 100%; }
.down-link, .to-top {
  position: absolute;
  color: var(--white);
  text-decoration: none;
  font-size: 38px;
  text-shadow: none;
}
.down-link { bottom: 22px; }
.to-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 15;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 24px;
  box-shadow: var(--shadow);
}
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 16;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(35, 35, 35, .9);
  box-shadow: var(--shadow);
  transform: translate(-50%, calc(100% + 28px));
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: transform .25s ease, opacity .25s ease;
}
.sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta a {
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 700;
}
.sticky-cta a:first-child {
  background: var(--white);
  color: var(--ink);
}
.sticky-cta a:last-child {
  background: var(--gold);
  color: #1f1f1f;
}
.section { padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 80px); }
.offer,
.trust,
.process,
.hero-stay,
.faq,
.contact,
.gallery,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.section-title { text-align: center; max-width: 850px; margin: 0 auto 48px; }
.eyebrow { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .2em; font-size: 13px; font-weight: 700; margin: 0 0 12px; }
.split { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.copy { font-size: 17px; color: #34302c; }
.align-right { text-align: right; }
.photo-card { margin: 0; border: 12px solid var(--white); box-shadow: var(--shadow); transform: rotate(.5deg); background: var(--white); }
.offer { background: linear-gradient(135deg, #ffffff 0%, #f4ecde 100%); }
.feature-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid article {
  min-height: 142px;
  padding: 26px 20px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(40,32,20,.08);
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.feature-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: rgba(241, 177, 83, .12);
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff4df;
  color: var(--gold-dark);
}
.feature-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-grid h3 { font-size: 18px; font-weight: 400; margin-top: 8px; position: relative; z-index: 1; }
.trust {
  background: var(--paper);
}
.trust-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-grid article {
  padding: 28px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 34px rgba(40,32,20,.08);
}
.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 20px;
}
.trust-grid p {
  margin: 0;
  color: #4d4740;
}
.process {
  background: linear-gradient(135deg, #344338 0%, #243029 100%);
  color: var(--white);
}
.process .eyebrow {
  color: var(--gold);
}
.process-steps {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-steps article {
  padding: 30px 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.process-steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #1f1f1f;
  font-weight: 700;
}
.process-steps h3 {
  font-size: 24px;
  font-weight: 400;
}
.process-steps p {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.center-cta {
  margin-top: 34px;
  text-align: center;
}
.faq {
  background: #fff;
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
}
.faq-list details {
  border-top: 1px solid #e6dacb;
  background: var(--paper);
}
.faq-list details:last-child {
  border-bottom: 1px solid #e6dacb;
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--green);
  font-size: 20px;
  font-weight: 500;
}
.faq-list summary::marker {
  color: var(--gold-dark);
}
.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: #4d4740;
}
.contact { background: var(--green); color: var(--white); }
.contact a { color: var(--gold); }
.contact-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-lines { margin-top: 28px; font-weight: 500; }
.contact-form { background: var(--paper); color: var(--ink); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow); }
.contact-form label { display: block; margin-bottom: 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.contact-form .optional {
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d8cbbb;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.honeypot { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-alert { padding: 13px 14px; margin-bottom: 18px; font-weight: 500; }
.form-alert.success { background: #d9f0df; color: #183d24; }
.form-alert.error { background: #f6d7d7; color: #5f1515; }
.form-note {
  margin: 2px 0 18px;
  color: #5d554d;
  font-size: 14px;
}
.form-note a {
  color: var(--gold-dark);
  font-weight: 700;
}
.gallery { background: #fff; }
.gallery-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-grid button { position: relative; border: 0; padding: 0; background: #111; cursor: pointer; overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .35s ease; }
.gallery-grid button:hover img { transform: scale(1.06); opacity: .78; }
.site-footer { padding: 42px 20px 108px; text-align: center; color: var(--white); background: #232323; }
.site-footer a { color: var(--white); }
.footer-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}
.footer-icons { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; }
.footer-icons a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.footer-icons a:hover,
.footer-icons a:focus {
  transform: translateY(-3px);
  background: var(--gold);
  color: #1f1f1f;
}
.footer-icons svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-icons a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}
.lightbox { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; background: rgba(0,0,0,.88); padding: 40px; }
.lightbox[hidden] { display: none; }
.lightbox img { width: auto; height: auto; max-height: 86vh; max-width: 86vw; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox button { position: absolute; border: 0; color: var(--white); background: transparent; cursor: pointer; font-size: 62px; }
.lightbox-close { top: 18px; right: 28px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.legal-page { background: var(--paper); }
.legal-hero { padding: 150px 20px 58px; text-align: center; background: var(--green); color: var(--white); }
.legal-content { max-width: 920px; margin: 0 auto; padding: 64px 20px 90px; background: var(--paper); color: var(--ink); }
.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(25px, 3vw, 36px);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content dd,
.legal-content li {
  color: #3d3934;
  font-size: 17px;
}
.legal-content dl {
  margin: 0;
}
.legal-content dt {
  margin-top: 18px;
  font-weight: 700;
  color: var(--green);
}
.legal-content dd {
  margin: 4px 0 0;
}
.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
  background: #232323;
  color: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}
.cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--gold);
}
.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.cookie-actions .button {
  min-height: 44px;
  padding: 12px 18px;
  white-space: nowrap;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; border: 0; background: transparent; padding: 10px; }
  .nav-toggle span:not(.sr-only) { display: block; width: 28px; height: 2px; background: var(--white); }
  .site-nav { position: absolute; inset: 100% 0 auto 0; display: none; flex-direction: column; align-items: stretch; padding: 12px 20px 24px; background: rgba(35,35,35,.96); }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .site-nav .lang-switch { justify-content: center; }
  .hero { background-attachment: scroll; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .align-right { text-align: left; }
  .feature-grid, .trust-grid, .process-steps, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}
@media (max-width: 560px) {
  .brand img { width: 136px; }
  .hero-home {
    background-image: url('../images/adobestock-130233970-1200x800.jpg');
    background-position: 24% center;
  }
  .hero-stay {
    background-position: 68% center;
  }
  .hero-overlay {
    background:
      radial-gradient(ellipse at center, rgba(255,250,241,.94) 0%, rgba(255,250,241,.78) 42%, rgba(255,250,241,.28) 76%),
      linear-gradient(180deg, rgba(23,23,23,.28), rgba(255,250,241,.14) 46%, rgba(23,23,23,.4));
  }
  .hero-content { padding-top: 92px; }
  .actions { flex-direction: column; align-items: stretch; }
  .feature-grid, .trust-grid, .process-steps, .gallery-grid { grid-template-columns: 1fr; }
  .section { padding-inline: 18px; }
  .sticky-cta {
    width: calc(100% - 24px);
    border-radius: 18px;
  }
  .sticky-cta a {
    min-width: 0;
    flex: 1;
    padding-inline: 10px;
  }
  .to-top {
    display: none;
  }
  .site-footer {
    padding-bottom: 148px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 88px;
    padding: 18px;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .cookie-actions .button {
    width: 100%;
  }
}
