/* ==========================================================================
   Kerio View Lodge - concept redesign
   Type:  Outfit (headings / UI)  ·  Switzer Light (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&display=swap');

@font-face {
  font-family: 'Switzer';
  src: url('fonts/Switzer-Light.woff2') format('woff2'),
       url('fonts/Switzer-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  /* surface */
  --bone:        #F6F2EA;
  --bone-deep:   #EDE7DA;
  --card:        #FFFDF9;

  /* ink */
  --forest:      #16241C;
  --forest-soft: #22352A;
  --ink:         #1C2B22;
  --muted:       #5C6B60;   /* 5.05:1 on --bone */

  /* accent */
  --brass:       #8C6D3F;   /* 4.80:1 with white */
  --brass-lift:  #A8834B;
  --on-brass:    #FFFFFF;

  --line:        #DED6C6;
  --line-dark:   #33463A;

  /* spacious scale (density 3/10) */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --shell: 1320px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --radius: 2px;
  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: 'Switzer', ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, .u-display {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; font-weight: 400; letter-spacing: -0.01em; line-height: 1.3; }
p  { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

/* ---------- utility ---------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.section { padding-block: clamp(var(--s-5), 6vw, var(--s-7)); }
.section--tight { padding-block: clamp(var(--s-4), 4vw, var(--s-5)); }

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 var(--s-2);
  display: block;
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); }
.muted { color: var(--muted); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--forest); color: #fff; padding: 12px 18px;
  font-family: 'Outfit', sans-serif; font-size: .85rem; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:where(a, button, input, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--brass); --btn-fg: var(--on-brass); --btn-bd: var(--brass);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 28px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bd);
  font-family: 'Outfit', sans-serif; font-size: .93rem; font-weight: 400; letter-spacing: .01em;
  text-decoration: none; border-radius: 999px; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--forest); border-color: var(--forest); color: #fff; }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.btn--light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.5); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--forest); }
.btn--solid-light { --btn-bg: #fff; --btn-fg: var(--forest); --btn-bd: #fff; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .42; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 400;
  letter-spacing: .05em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); padding: 6px 0; border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--brass); border-color: var(--brass); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ==========================================================================
   HEADER + DROPDOWN NAVIGATION
   ========================================================================== */
/* Solid on every page and every scroll position - a translucent bar over bright
   sky was never going to hold 4.5:1, and solid reads calmer besides. */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: var(--forest);
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}

.header-inner { display: flex; align-items: center; gap: var(--s-4); width: 100%; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1; flex-shrink: 0; }
.brand__mark { height: 42px; width: auto; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 1.12rem;
  letter-spacing: .015em; text-transform: uppercase; white-space: nowrap;
}
.brand__sub {
  font-family: 'Outfit', sans-serif; font-size: .55rem; font-weight: 300;
  letter-spacing: .3em; text-transform: uppercase; opacity: .72; margin-top: 5px; white-space: nowrap;
}
@media (max-width: 420px) { .brand__text { display: none; } }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }

.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 13px; min-height: 44px;
  font-family: 'Outfit', sans-serif; font-size: .86rem; font-weight: 300;
  letter-spacing: .015em; text-decoration: none;
  color: rgba(255,255,255,.82);
  background: none; border: 0; cursor: pointer;
  transition: color .22s var(--ease);
  white-space: nowrap;
}
/* a hairline instead of a pill - quieter, and it marks the open panel too */
.nav__link::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 15px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); background: var(--brass-lift); }
.nav__caret { transition: transform .28s var(--ease); opacity: .55; }
.nav__item.is-open > .nav__link { color: #fff; }
.nav__item.is-open > .nav__link::after { transform: scaleX(1); }
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* --- dropdown panel --- */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translate(-50%, 8px);
  min-width: 268px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 24px 60px -18px rgba(22,36,28,.34);
  padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  color: var(--ink);
}
.nav__item.is-open > .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
/* hover bridge so the pointer can travel into the panel */
.dropdown::before { content: ''; position: absolute; inset: -12px 0 auto 0; height: 12px; }

.dropdown__grid { display: grid; grid-template-columns: 1fr; gap: 2px; list-style: none; margin: 0; padding: 0; }
.dropdown--wide { min-width: 560px; }
.dropdown--wide .dropdown__grid { grid-template-columns: 1fr 1fr; column-gap: 10px; }

.dropdown__link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 14px; min-height: 44px; justify-content: center;
  text-decoration: none; border-radius: 4px;
  transition: background .18s var(--ease);
}
.dropdown__link:hover { background: var(--bone-deep); }
.dropdown__title {
  font-family: 'Outfit', sans-serif; font-size: .93rem; font-weight: 400;
  color: var(--ink); letter-spacing: -.005em;
}
.dropdown__desc { font-size: .78rem; line-height: 1.4; color: var(--muted); }

.dropdown__foot {
  margin-top: 8px; padding: 12px 14px 4px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.dropdown__foot .link-arrow { border: 0; font-size: .78rem; }

.header-cta { display: flex; align-items: center; gap: 6px; margin-left: var(--s-3); flex-shrink: 0; }
.header-cta .btn { min-height: 42px; padding: 10px 20px; font-size: .86rem; margin-left: 8px; }

/* icon-only contact buttons - always paired with an aria-label + title */
.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; flex-shrink: 0;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.icon-btn:hover { background: #fff; color: var(--forest); border-color: #fff; transform: translateY(-2px); }
.icon-btn--wa:hover { background: #25D366; border-color: #25D366; color: #fff; }
/* on a light ground */
.icon-btn--dark { color: var(--ink); border-color: var(--line); }
.icon-btn--dark:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.icon-btn--dark.icon-btn--wa:hover { background: #1EBE5B; border-color: #1EBE5B; color: #fff; }

/* a phone number / address that is also a link */
.contact-line {
  font-family: 'Outfit', sans-serif; font-size: 1.14rem; font-weight: 300;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  word-break: break-word;
}
.contact-line:hover { color: var(--brass); border-bottom-color: var(--brass); }

/* the same row, stacked into the mobile panel */
.nav__mobile-contact { display: none; gap: 8px; margin-top: var(--s-3); }
@media (max-width: 1200px) {
  .nav__mobile-contact { display: flex; }
  .nav__mobile-contact .icon-btn { width: 48px; height: 48px; }
}

/* --- mobile --- */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-left: auto;
  background: none; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: currentColor; position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1px; background: currentColor;
  transition: transform .28s var(--ease), top .28s var(--ease);
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; margin: 0;
    background: var(--forest); overflow-y: auto;
    padding: var(--s-3) clamp(20px, 5vw, 56px) var(--s-6);
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line-dark); }
  .nav__link { width: 100%; justify-content: space-between; padding: 18px 2px; font-size: 1.15rem; border-radius: 0; }
  .nav__link:hover { background: none; }
  .nav__item.is-open > .nav__link { background: none; color: var(--brass-lift); }

  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; background: none; border: 0; box-shadow: none; padding: 0;
    display: none; color: #fff;
  }
  .nav__item.is-open > .dropdown { display: block; transform: none; padding-bottom: 14px; }
  .dropdown--wide { min-width: 0; }
  .dropdown--wide .dropdown__grid, .dropdown__grid { grid-template-columns: 1fr; }
  .dropdown__link { padding: 12px 0 12px 18px; border-left: 1px solid var(--line-dark); border-radius: 0; }
  .dropdown__link:hover { background: rgba(255,255,255,.06); }
  .dropdown__title { color: #fff; font-weight: 300; }
  .dropdown__desc { color: rgba(255,255,255,.6); }
  .dropdown__foot { border-top-color: var(--line-dark); padding-inline: 0; }
  .dropdown__foot .link-arrow { color: #fff; }
  .nav__mobile-cta { display: block; margin-top: var(--s-4); }
  .nav__mobile-cta .btn { width: 100%; }
}
@media (min-width: 1201px) { .nav__mobile-cta { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: min(74vh, 620px); display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,13,.86) 0%, rgba(10,18,13,.34) 45%, rgba(10,18,13,.12) 100%);
}
.hero__body { position: relative; color: #fff; padding-block: clamp(var(--s-5), 8vw, var(--s-7)); width: 100%; }
.hero__body .eyebrow { color: rgba(255,255,255,.78); }
.hero h1 { max-width: 15ch; }
.hero__sub { margin-top: var(--s-3); max-width: 46ch; color: rgba(255,255,255,.86); font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-4); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px);
  margin-top: var(--s-5); padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero__meta div { color: rgba(255,255,255,.82); }
.hero__meta dt {
  font-family: 'Outfit', sans-serif; font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; opacity: .62; margin-bottom: 5px;
}
.hero__meta dd { margin: 0; font-family: 'Outfit', sans-serif; font-size: 1.02rem; font-weight: 300; }

/* page hero (interior pages) */
.page-hero { position: relative; overflow: hidden; background: var(--forest); color: #fff; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .46; }
.page-hero__body { position: relative; padding-block: clamp(var(--s-5), 7vw, 104px) clamp(var(--s-4), 4.5vw, var(--s-5)); }
.page-hero h1 { max-width: 16ch; font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.page-hero .eyebrow { color: var(--brass-lift); }
.page-hero__sub { margin-top: var(--s-3); max-width: 54ch; color: rgba(255,255,255,.8); }

/* ==========================================================================
   BLOCKS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--s-4), 4.5vw, var(--s-6)); align-items: center; }
.split--reverse .split__media { order: -1; }
.split--top { align-items: start; }
.split__body { max-width: 52ch; }
.split__body h2 { margin-bottom: var(--s-3); }
.split__body .btn, .split__body .link-arrow { margin-top: var(--s-3); }
.split__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 4px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/9; }
}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4); margin-bottom: var(--s-5); flex-wrap: wrap; }
.section-head__text { max-width: 44ch; }
.section-head h2 { margin-bottom: var(--s-2); }

/* card grid */
.grid { display: grid; gap: clamp(var(--s-3), 2.4vw, var(--s-4)); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { display: flex; flex-direction: column; text-decoration: none; }
.card__media { overflow: hidden; border-radius: 4px; background: var(--bone-deep); }
.card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding-top: var(--s-2); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__title { font-family: 'Outfit', sans-serif; font-size: 1.18rem; font-weight: 300; letter-spacing: -.01em; }
.card__meta { font-size: .84rem; color: var(--muted); }
.card__foot { margin-top: auto; padding-top: var(--s-2); }
.card__arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brass);
}
.card:hover .card__arrow svg { transform: translateX(5px); }
.card__arrow svg { transition: transform .3s var(--ease); }
.card--wide .card__media img { aspect-ratio: 16/10; }
.card--square .card__media img { aspect-ratio: 1/1; }
/* single-column: keep the media from ballooning */
@media (max-width: 680px) {
  .card__media img, .card--wide .card__media img { aspect-ratio: 16/9; }
}

/* value / icon row */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-block: 1px solid var(--line); }
.values > div { padding: var(--s-4) var(--s-3); border-left: 1px solid var(--line); }
.values > div:first-child { border-left: 0; padding-left: 0; }
.values svg { color: var(--brass); margin-bottom: var(--s-2); }
.values h4 { margin-bottom: 6px; font-family: 'Outfit', sans-serif; }
.values p { font-size: .88rem; color: var(--muted); }
@media (max-width: 900px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .values > div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .values > div:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .values { grid-template-columns: 1fr; }
  .values > div { border-left: 0; padding-left: 0; }
  .values > div + div { border-top: 1px solid var(--line); }
}

/* dark feature band */
.band { background: var(--forest); color: #fff; }
.band .eyebrow { color: var(--brass-lift); }
.band .muted, .band .lede { color: rgba(255,255,255,.72); }
.band .rule { background: var(--line-dark); }

/* quote */
.quote { text-align: center; max-width: 46ch; margin-inline: auto; }
.quote blockquote {
  margin: 0 0 var(--s-3); font-family: 'Outfit', sans-serif; font-weight: 200;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.24; letter-spacing: -.02em;
}
.quote figcaption { font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: 'Outfit', sans-serif; }
.band .quote figcaption { color: rgba(255,255,255,.6); }

/* full-bleed image */
.bleed { position: relative; height: clamp(200px, 30vw, 380px); overflow: hidden; }
.bleed img { width: 100%; height: 100%; object-fit: cover; }

/* accordion */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: var(--s-3) 0; min-height: 56px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 300; letter-spacing: -.01em;
}
.acc__btn:hover { color: var(--brass); }
.acc__icon { flex-shrink: 0; transition: transform .3s var(--ease); color: var(--brass); }
.acc__btn[aria-expanded="true"] .acc__icon { transform: rotate(45deg); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height .34s var(--ease); }
.acc__panel p { padding-bottom: var(--s-3); color: var(--muted); margin-bottom: 0; }

/* ==========================================================================
   CONTACT BUTTONS  (shared by contact page + footer)
   ========================================================================== */
.contact-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
@media (max-width: 900px) { .contact-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-tiles { grid-template-columns: 1fr; } }

.ctile {
  display: flex; flex-direction: column; gap: 10px;
  padding: var(--s-3); min-height: 132px;
  background: var(--card); border: 1px solid var(--line); border-radius: 4px;
  text-decoration: none;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.ctile:hover { border-color: var(--brass); transform: translateY(-3px); }
.ctile__icon { color: var(--brass); }
.ctile__label {
  font-family: 'Outfit', sans-serif; font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.ctile__value { font-family: 'Outfit', sans-serif; font-size: 1.02rem; font-weight: 300; color: var(--ink); word-break: break-word; }
.ctile__note { font-size: .8rem; color: var(--muted); margin-top: auto; }

/* ==========================================================================
   CURRENCY SWITCHER
   ========================================================================== */
.cur-switch {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; background: var(--card); gap: 2px;
}
.cur-switch button {
  min-height: 36px; padding: 7px 15px;
  background: none; border: 0; border-radius: 999px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 300;
  letter-spacing: .03em; color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.cur-switch button:hover { color: var(--ink); background: var(--bone-deep); }
.cur-switch button[aria-pressed="true"] {
  background: var(--forest); color: #fff; font-weight: 400;
}

.cur-bar {
  display: flex; align-items: center; gap: var(--s-2);
  flex-wrap: wrap; margin-bottom: var(--s-3);
}
.cur-bar__lbl {
  font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.cur-bar__note { font-size: .82rem; color: var(--muted); }

/* dark ground */
.band .cur-switch, .footer-currency .cur-switch {
  background: rgba(255,255,255,.06); border-color: var(--line-dark);
}
.band .cur-switch button, .footer-currency .cur-switch button { color: rgba(255,255,255,.66); }
.band .cur-switch button:hover, .footer-currency .cur-switch button:hover {
  background: rgba(255,255,255,.12); color: #fff;
}
.band .cur-switch button[aria-pressed="true"],
.footer-currency .cur-switch button[aria-pressed="true"] { background: #fff; color: var(--forest); }

.footer-currency {
  display: flex; align-items: center; gap: var(--s-2);
  flex-wrap: wrap; padding-block: var(--s-3);
  border-top: 1px solid var(--line-dark);
}
.footer-currency__lbl {
  font-family: 'Outfit', sans-serif; font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.footer-currency__note { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ==========================================================================
   MAP
   ========================================================================== */
.map-embed {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 5px;
  background: var(--bone-deep);
}
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-embed--sm { height: 190px; }
.map-embed--lg { height: clamp(280px, 40vw, 420px); }
.map-embed__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; margin-top: 12px;
}

/* footer variant sits on the dark ground */
.footer-map { margin-bottom: var(--s-5); }
.footer-map .map-embed { border-color: var(--line-dark); }
.footer-map h4 {
  font-family: 'Outfit', sans-serif; font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: var(--s-2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--forest); color: #fff; padding-top: clamp(var(--s-6), 8vw, var(--s-7)); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-5); padding-bottom: var(--s-6); }
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand h3 { font-size: 1.6rem; margin-bottom: var(--s-2); }
.footer-brand p { color: rgba(255,255,255,.66); font-size: .95rem; max-width: 34ch; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif; font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: var(--s-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.footer-col a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 0; min-height: 40px; font-size: .94rem; color: rgba(255,255,255,.82);
  text-decoration: none; transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--brass-lift); }
.footer-col svg { flex-shrink: 0; opacity: .7; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  flex-wrap: wrap; padding-block: var(--s-3);
  border-top: 1px solid var(--line-dark); font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--brass-lift); }

/* the real logo, sized so its outlined wordmark reads on the dark ground */
.wordmark { display: flex; justify-content: center; padding-bottom: clamp(20px, 3vw, 40px); }
.wordmark img { height: clamp(96px, 15vw, 160px); width: auto; opacity: .92; }

/* ==========================================================================
   BOOKING
   ========================================================================== */
.book-layout { display: grid; grid-template-columns: 1fr 384px; gap: clamp(var(--s-4), 4vw, var(--s-6)); align-items: start; }
@media (max-width: 1000px) { .book-layout { grid-template-columns: 1fr; } }

/* stepper */
.stepper { display: flex; align-items: center; margin-bottom: var(--s-5); }
.stepper__step { display: flex; align-items: center; gap: 12px; }
.stepper__dot {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--card); color: var(--muted);
  font-family: 'Outfit', sans-serif; font-size: .85rem;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.stepper__label {
  font-family: 'Outfit', sans-serif; font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.stepper__line { flex: 1; height: 1px; background: var(--line); margin-inline: 14px; min-width: 18px; }
.stepper__step[data-state="current"] .stepper__dot { background: var(--brass); border-color: var(--brass); color: #fff; }
.stepper__step[data-state="current"] .stepper__label { color: var(--ink); }
.stepper__step[data-state="done"] .stepper__dot { background: var(--forest); border-color: var(--forest); color: #fff; }
.stepper__step[data-state="done"] .stepper__label { color: var(--ink); }
@media (max-width: 700px) { .stepper__label { display: none; } .stepper__line { margin-inline: 8px; } }

.panel { background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: clamp(var(--s-3), 3vw, var(--s-5)); }
.panel + .panel { margin-top: var(--s-3); }
.panel__head { margin-bottom: var(--s-4); }
.panel__head h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 6px; }
.panel__head p { font-size: .92rem; color: var(--muted); }
.step[hidden] { display: none; }

/* fields */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--s-2); }
.field label {
  font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  font-family: 'Switzer', sans-serif; font-size: 1rem; font-weight: 300;
  padding: 13px 15px; min-height: 48px;
  background: var(--bone); color: var(--ink);
  border: 1px solid var(--line); border-radius: 3px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field input:hover, .field select:hover { border-color: var(--brass-lift); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); background: #fff; }
.field textarea { min-height: 116px; resize: vertical; }
.field__hint { font-size: .78rem; color: var(--muted); }
.field__err { font-size: .8rem; color: #A3341F; display: none; }
.field.is-invalid input, .field.is-invalid select { border-color: #A3341F; }
.field.is-invalid .field__err { display: block; }

.form-alert {
  display: none; padding: var(--s-2) var(--s-3); margin-bottom: var(--s-3);
  border: 1px solid #C97A66; background: #FBEEEA; border-radius: 4px;
}
.form-alert[data-show="true"] { display: block; }
.form-alert h4 { color: #7E2716; margin-bottom: 6px; }
.form-alert ul { margin: 0; padding-left: 18px; font-size: .88rem; }
.form-alert a { color: #7E2716; }

/* calendar */
.cal { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--card); }
.cal__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 12px; border-bottom: 1px solid var(--line); }
.cal__month { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 400; }
.cal__nav { display: flex; gap: 4px; }
.cal__nav button {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.cal__nav button:hover:not([disabled]) { background: var(--bone-deep); border-color: var(--brass); }
.cal__nav button[disabled] { opacity: .3; cursor: not-allowed; }
.cal__dows, .cal__days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal__dows { padding: 10px 8px 4px; }
.cal__dows span {
  text-align: center; font-family: 'Outfit', sans-serif; font-size: .66rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.cal__days { padding: 4px 8px 12px; gap: 2px; }
.cal__day {
  aspect-ratio: 1; min-height: 44px; display: grid; place-items: center;
  background: none; border: 0; border-radius: 3px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: .92rem; font-weight: 300; color: var(--ink);
  transition: background .16s var(--ease), color .16s var(--ease);
  position: relative;
}
.cal__day:hover:not([disabled]) { background: var(--bone-deep); }
.cal__day[disabled] { color: #BDBBB4; cursor: not-allowed; }
.cal__day.is-empty { pointer-events: none; }
.cal__day.in-range { background: rgba(140,109,63,.14); border-radius: 0; }
.cal__day.is-start, .cal__day.is-end { background: var(--brass); color: #fff; }
.cal__day.is-start { border-radius: 3px 0 0 3px; }
.cal__day.is-end { border-radius: 0 3px 3px 0; }
.cal__day.is-start.is-end { border-radius: 3px; }
.cal__day.is-soldout::after {
  content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 999px; background: #A3341F;
}
.cal__legend { display: flex; flex-wrap: wrap; gap: 16px; padding: 10px 12px; border-top: 1px solid var(--line); font-size: .76rem; color: var(--muted); }
.cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal__legend i { width: 9px; height: 9px; border-radius: 999px; display: inline-block; }

.date-readout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); margin-top: var(--s-3); }
@media (max-width: 620px) { .date-readout { grid-template-columns: 1fr; } }
.date-readout > div { padding: 13px 15px; border: 1px solid var(--line); border-radius: 3px; background: var(--bone); }
.date-readout dt {
  font-family: 'Outfit', sans-serif; font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.date-readout dd { margin: 0; font-family: 'Outfit', sans-serif; font-size: 1.02rem; font-weight: 300; }

/* rate cards */
.rates { display: flex; flex-direction: column; gap: 10px; }
.rate {
  display: grid; grid-template-columns: 108px 1fr auto; gap: var(--s-3); align-items: center;
  width: 100%; text-align: left; padding: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: 5px; cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.rate:hover:not([disabled]) { border-color: var(--brass-lift); transform: translateY(-2px); }
.rate[aria-pressed="true"] { border-color: var(--brass); background: rgba(140,109,63,.07); box-shadow: 0 0 0 1px var(--brass); }
.rate[disabled] { opacity: .5; cursor: not-allowed; }
.rate__img { width: 108px; aspect-ratio: 4/3; object-fit: cover; border-radius: 3px; }
.rate__name { font-family: 'Outfit', sans-serif; font-size: 1.08rem; font-weight: 400; margin-bottom: 3px; }
.rate__desc { font-size: .84rem; color: var(--muted); margin-bottom: 6px; }
.rate__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rate__tag {
  font-family: 'Outfit', sans-serif; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
}
.rate__price { text-align: right; }
.rate__price strong { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 400; display: block; }
.rate__price span { font-size: .76rem; color: var(--muted); }
.rate__stock { font-size: .76rem; color: var(--brass); font-family: 'Outfit', sans-serif; letter-spacing: .04em; }
.rate__stock[data-out="true"] { color: #A3341F; }
@media (max-width: 620px) {
  .rate { grid-template-columns: 76px 1fr; }
  .rate__img { width: 76px; }
  .rate__price { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--line); padding-top: 10px; }
  .rate__price strong { display: inline; margin-right: 8px; }
}

/* summary rail */
.summary { position: sticky; top: calc(var(--header-h) + 20px); }
.summary__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 5px 5px 0 0; }
.summary__box { background: var(--card); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 5px 5px; padding: var(--s-3); }
.summary__box h3 { font-size: 1.15rem; margin-bottom: var(--s-2); }
.sum-list { list-style: none; margin: 0 0 var(--s-2); padding: 0; }
.sum-list li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; font-size: .92rem; border-bottom: 1px dashed var(--line); }
.sum-list li span:first-child { color: var(--muted); }
.sum-list li span:last-child { font-family: 'Outfit', sans-serif; text-align: right; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: var(--s-2); }
.sum-total span { font-family: 'Outfit', sans-serif; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.sum-total strong { font-family: 'Outfit', sans-serif; font-size: 1.9rem; font-weight: 400; }
.summary__note { font-size: .78rem; color: var(--muted); margin-top: var(--s-2); padding-top: var(--s-2); border-top: 1px solid var(--line); }

.perks { list-style: none; margin: var(--s-3) 0 0; padding: var(--s-3) 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.perks li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--muted); }
.perks svg { flex-shrink: 0; color: var(--brass); margin-top: 3px; }

.step-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid var(--line); }

/* confirmation */
.confirm { text-align: center; padding-block: var(--s-4); }
.confirm__seal {
  width: 66px; height: 66px; margin: 0 auto var(--s-3); border-radius: 999px;
  display: grid; place-items: center; background: var(--forest); color: #fff;
}
.confirm h2 { margin-bottom: var(--s-2); }
.confirm p { margin-inline: auto; }
.confirm__ref {
  display: inline-block; margin-top: var(--s-3); padding: 10px 22px;
  border: 1px dashed var(--brass); border-radius: 999px;
  font-family: 'Outfit', sans-serif; letter-spacing: .12em; color: var(--brass);
}
.confirm__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: var(--s-4); }

.demo-note {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; margin-bottom: var(--s-4);
  background: rgba(140,109,63,.09); border: 1px solid rgba(140,109,63,.32);
  border-radius: 4px; font-size: .86rem; color: #5F4A2A;
}
.demo-note svg { flex-shrink: 0; color: var(--brass); margin-top: 2px; }
.demo-note strong { font-family: 'Outfit', sans-serif; font-weight: 500; }

/* ==========================================================================
   MOTION
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { transition-delay: var(--d, 0ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
