/* ---------------------------------------------------------------------------
   Annecy74 — design tokens
   Ported from the Claude Design brand identity + homepage explorations.
--------------------------------------------------------------------------- */
:root {
  --ink: #10202A;
  --ink-deep: #0B1720;
  --ink-shadow: #08141C;
  --sand: #F5F2EC;
  --sand-deep: #E7E0D3;
  --sand-mid: #F0EDE5;
  --brass: #A9854E;
  --brass-light: #E7C89A;
  --accent: #2F7E7C;
  --text: #10202A;
  --text-soft: #3C4650;
  --text-mid: #4A5560;
  --text-muted: #7E8891;
  --hero-scrim: 0.55;

  --display: 'Bodoni Moda', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --gutter: 40px;
  --max: 1440px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }

img { max-width: 100%; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; text-wrap: pretty; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.skip-link {
  position: absolute;
  /* Logical, so it parks off the leading edge in RTL too. A physical `left`
     here pushes the document's scroll extent under `dir="rtl"`. */
  inset-inline-start: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--sand-deep);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus {
  inset-inline-start: 0;
  color: var(--sand-deep);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Shared type helpers ----------------------------------------------------- */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow--light { color: rgba(231, 224, 211, 0.55); }

.section {
  padding: 90px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.section--dark { background: var(--ink); color: var(--sand-deep); max-width: none; }
.section--sand { background: var(--sand-deep); max-width: none; }
.section__inner { max-width: var(--max); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: end;
}
.section-head h2 { margin-top: 14px; font-size: 38px; line-height: 1.14; }
.section-head p { margin: 0; min-width: 0; font-size: 14px; line-height: 1.75; color: var(--text-soft); }
.section--dark .section-head p { color: rgba(231, 224, 211, 0.8); }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 20px var(--gutter);
  background: var(--ink);
  color: var(--sand-deep);
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 46px; height: 46px; flex: none; }
.brand__word {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-nav a { color: rgba(231, 224, 211, 0.85); white-space: nowrap; }
.site-nav a:hover { color: #fff; }

.book-trigger {
  white-space: nowrap;
  border: 1px solid var(--brass);
  color: var(--brass-light);
  padding: 8px 14px;
  letter-spacing: inherit;
  text-transform: inherit;
  font-size: inherit;
}
.book-trigger:hover { background: rgba(169, 133, 78, 0.16); }

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink-deep);
  border: 1px solid rgba(231, 224, 211, 0.25);
  padding: 8px 12px;
  white-space: nowrap;
  color: var(--sand-deep);
}
.lang-trigger__flag { font-size: 14px; }
.lang-trigger__name { font-size: 10.5px; letter-spacing: 0.06em; }
.lang-trigger__caret { font-size: 8px; color: rgba(231, 224, 211, 0.55); }

/* Booking channel dropdown ------------------------------------------------ */
.dropdown { position: relative; }

.channels {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 20, 28, 0.28);
  min-width: 210px;
  text-transform: none;
  letter-spacing: normal;
}
.channels[hidden] { display: none; }
.channels--centred { left: 50%; transform: translateX(-50%); min-width: 240px; top: calc(100% + 10px); }

.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 32, 42, 0.08);
}
.channel:hover { background: var(--sand); }
.channel__id { display: flex; align-items: center; gap: 12px; min-width: 0; }
.channel__logo {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.channel__best {
  flex: none;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.channels__note {
  padding: 12px 16px 14px;
  font-size: 9.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Language drawer --------------------------------------------------------- */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(8, 20, 28, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

.lang-drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 41;
  width: min(320px, 86vw);
  height: 100%;
  background: #fff;
  box-shadow: -18px 0 44px rgba(8, 20, 28, 0.25);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-drawer.is-open { transform: translateX(0); }

.lang-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(16, 32, 42, 0.1);
}
.lang-drawer__title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.icon-close { font-size: 18px; color: var(--text-muted); line-height: 1; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 11px 22px;
  font-size: 13px;
  line-height: 1;
  color: var(--ink);
  border-bottom: 1px solid rgba(16, 32, 42, 0.07);
}
.lang-option:hover { background: var(--sand); }
.lang-option__flag {
  font-size: 17px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
}
.lang-option:hover .lang-option__flag { transform: scale(1.4); }
.lang-option[aria-current='true'] { font-weight: 400; color: var(--accent); }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  background: var(--ink);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 20, 28, var(--hero-scrim)) 0%,
    rgba(8, 20, 28, calc(var(--hero-scrim) * 0.22)) 34%,
    rgba(8, 20, 28, calc(var(--hero-scrim) * 1.3)) 100%
  );
}
.hero__top-fade {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 240px;
  background: linear-gradient(to bottom, rgba(4, 10, 15, 0.55) 0%, rgba(4, 10, 15, 0) 100%);
}
.hero__mark {
  position: absolute;
  top: 34px; left: 0; right: 0;
  display: flex;
  justify-content: center;
}
.hero__mark img { width: 62px; height: 62px; }

.hero__copy {
  position: relative;
  padding: 130px var(--gutter);
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.hero__copy h1 {
  font-size: 56px;
  line-height: 1.08;
  color: #fff;
  max-width: 800px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}
.hero__copy p {
  margin: 0;
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Booking bar ------------------------------------------------------------- */
.bookbar {
  position: relative;
  margin: 0 var(--gutter) var(--gutter);
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 20, 28, 0.28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.bookbar__field {
  flex: 1 1 150px;
  min-width: 0;
  padding: 18px 24px;
  border-right: 1px solid rgba(16, 32, 42, 0.1);
}
.bookbar__field--guests { flex: 1 1 110px; position: relative; }
.bookbar__label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bookbar__value {
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  margin-top: 6px;
  white-space: nowrap;
}
.bookbar__trigger { display: block; width: 100%; }
.bookbar__cta {
  flex: 1 1 150px;
  min-width: 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.btn-solid {
  background: var(--ink);
  color: var(--sand-deep);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 26px;
  white-space: nowrap;
}
.btn-solid:hover { background: var(--ink-deep); }

/* Guests popover ---------------------------------------------------------- */
.guests {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 10;
  width: 280px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 20, 28, 0.28);
  padding: 8px 22px;
}
.guests[hidden] { display: none; }
.guests__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 32, 42, 0.1);
}
.guests__row:last-of-type { border-bottom: 0; }
.guests__name { font-family: var(--display); font-size: 16px; color: var(--ink); }
.guests__hint { font-size: 11px; color: var(--text-muted); }
.guests__stepper { display: flex; align-items: center; gap: 14px; }
.step {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  line-height: 1;
}
.step:hover { background: var(--sand-mid); }
.step:disabled { opacity: 0.35; cursor: default; }
.guests__count {
  width: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
}
.guests__note { padding: 10px 0 4px; font-size: 10.5px; color: var(--text-muted); }

/* Date picker ------------------------------------------------------------- */
.modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 20, 28, 0.55);
}
.modal-scrim[hidden], .datepicker[hidden] { display: none; }

.datepicker {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 61;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(8, 20, 28, 0.35);
  width: min(660px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  padding: 26px 30px 24px;
  color: var(--ink);
}
.datepicker__close { position: absolute; top: 14px; right: 16px; }
.datepicker__title {
  text-align: center;
  font-family: var(--display);
  font-size: 15px;
  margin-bottom: 20px;
}
.datepicker__months { position: relative; }
.datepicker__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cal-nav {
  position: absolute;
  top: -2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink);
}
.cal-nav:hover { background: var(--sand-mid); }
.cal-nav--prev { left: -4px; }
.cal-nav--next { right: -4px; }

.cal__label {
  text-align: center;
  font-family: var(--display);
  font-size: 15px;
  margin-bottom: 14px;
}
.cal__weekdays, .cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.cal__weekdays {
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-align: center;
}
.cal__cell { height: 32px; display: flex; align-items: center; justify-content: center; }
.cal__cell.is-inrange { background: var(--sand-mid); }
.cal__day {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  border-radius: 50%;
  color: var(--ink);
}
.cal__day:hover:not(:disabled) { background: var(--sand-mid); }
.cal__day:disabled { color: #C7CBCE; cursor: default; }
.cal__day.is-selected { background: var(--ink); color: var(--sand-deep); }
.cal__day.is-selected:hover { background: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  border: 1px solid rgba(16, 32, 42, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11.5px;
  color: var(--ink);
}
.chip:hover { border-color: var(--brass); }
.chip.is-active { background: var(--ink); color: var(--sand-deep); border-color: var(--ink); }

.datepicker__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  border-top: 1px solid rgba(16, 32, 42, 0.1);
  padding-top: 20px;
}
.link-underline { font-size: 12px; text-decoration: underline; color: var(--text-mid); }
.btn-apply {
  background: var(--ink);
  color: var(--sand-deep);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 26px;
}

/* Stats strip ------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--ink);
  color: var(--sand-deep);
}
.stats__cell {
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid rgba(231, 224, 211, 0.14);
  display: grid;
  gap: 5px;
}
.stats__cell:last-child { border-right: 0; }
.stats__figure { font-family: var(--display); font-size: 22px; }
.stats__label {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(231, 224, 211, 0.6);
}

/* Intro ------------------------------------------------------------------- */
.intro { padding: 80px var(--gutter) 60px; max-width: var(--max); margin: 0 auto; }
.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.rule__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); }
.rule__line { width: 46px; height: 1px; background: rgba(16, 32, 42, 0.3); }
.rule__text {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.intro h2 { font-size: 44px; line-height: 1.14; max-width: 820px; }
.intro p {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* Carousels --------------------------------------------------------------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 28px;
  margin-bottom: -22px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__btn {
  position: absolute;
  top: calc(50% - 80px);
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  z-index: 2;
}
.carousel__btn:hover { background: var(--ink-deep); }
.carousel__btn--prev { left: 10px; }
.carousel__btn--next { right: 10px; }

.rooms { padding: 0 var(--gutter) 90px; max-width: var(--max); margin: 0 auto; }
.slide { flex: 0 0 300px; scroll-snap-align: start; display: grid; gap: 10px; }
.slide__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-deep);
}
.slide__frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-mid);
}
.slide__caption::before {
  content: '';
  flex: none;
  width: 20px; height: 1px;
  background: var(--brass);
}

/* Craft ------------------------------------------------------------------- */
.craft__inner { display: grid; gap: 50px; }
.craft__head h2 { font-size: 38px; line-height: 1.14; }
.craft__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px 32px;
  align-items: start;
}
.craft__shot {
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-deep);
}
.craft__shot img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.craft__notes { min-width: 0; display: grid; gap: 20px; align-content: start; }
.craft__note {
  border-top: 1px solid rgba(231, 224, 211, 0.2);
  padding-top: 22px;
  display: grid;
  gap: 16px;
}
.craft__note img { width: 100%; height: auto; }
.craft__note h3 { font-size: 20px; }
.craft__note p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(231, 224, 211, 0.72);
}

/* Location ---------------------------------------------------------------- */
.location { display: grid; gap: 34px; }
.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.place {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(16, 32, 42, 0.1);
  overflow: hidden;
}
.place__frame { position: relative; aspect-ratio: 4 / 3; }
.place__frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.place__body {
  padding: 20px 20px 22px;
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: start;
}
.place__time { font-family: var(--mono); font-size: 11px; color: var(--accent); }
.place__name { font-family: var(--display); font-size: 19px; }
.place__note { font-size: 12.5px; line-height: 1.6; color: var(--text-mid); }

/* Amenities --------------------------------------------------------------- */
.amenities h2 { font-size: 34px; text-align: center; margin-bottom: 40px; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 28px;
}
.amenity { min-width: 0; display: grid; gap: 12px; }
.amenity__icon { height: 36px; display: flex; align-items: flex-end; color: var(--brass); }
.amenity__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  min-height: 50px;
  display: flex;
  align-items: flex-start;
}
.amenity__note { font-size: 12.5px; line-height: 1.65; color: var(--text-mid); }

/* Welcome pack ------------------------------------------------------------ */
.welcome { padding: 0 var(--gutter) 90px; max-width: var(--max); margin: 0 auto; }
.welcome__split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  background: var(--sand);
}
.welcome__frame { min-width: 0; position: relative; aspect-ratio: 4 / 3; }
.welcome__frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.welcome__body {
  min-width: 0;
  padding: 56px;
  display: grid;
  align-content: center;
  gap: 18px;
}
.welcome__body h2 { font-size: 34px; line-height: 1.16; }
.welcome__body p {
  margin: 0;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* Square gallery ---------------------------------------------------------- */
.tiles {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px;
}
.tile { min-width: 0; position: relative; aspect-ratio: 1; background: var(--sand-deep); }
.tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Map + accordion --------------------------------------------------------- */
.practical {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.practical__map {
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand-deep);
}
.practical__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.accordion { min-width: 0; display: grid; align-content: center; }
.accordion__item { border-bottom: 1px solid rgba(16, 32, 42, 0.16); }
.accordion__trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
}
.accordion__sign { color: var(--brass); font-size: 18px; width: 12px; }
.accordion__title { font-family: var(--display); font-size: 20px; }
.accordion__panel { padding: 0 0 22px 28px; display: grid; gap: 14px; }
.accordion__panel[hidden] { display: none; }
.accordion__body {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-mid);
  white-space: pre-line;
}
.btn-outline {
  display: inline-flex;
  width: fit-content;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--brass);
  padding: 11px 20px;
}
.btn-outline:hover { background: var(--brass); color: var(--sand); }

/* Concierge --------------------------------------------------------------- */
.concierge {
  padding: 70px var(--gutter);
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 40px;
  align-items: center;
}
.concierge__portrait {
  min-width: 0;
  position: relative;
  aspect-ratio: 1;
  max-width: 240px;
  overflow: hidden;
  border-radius: 50%;
}
.concierge__portrait img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.concierge h2 { margin-top: 14px; font-size: 34px; line-height: 1.16; }
.concierge p {
  margin: 16px 0 0;
  max-width: 480px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* Reviews ----------------------------------------------------------------- */
.reviews h2 { font-size: 34px; margin-bottom: 36px; }
.reviews .carousel__track { padding: 0 80px 6px; margin-bottom: 0; gap: 20px; }
.reviews .carousel__btn { top: 50%; }
.review {
  flex: 0 0 338px;
  scroll-snap-align: start;
  background: #fff;
  padding: 26px 24px;
  display: grid;
  gap: 14px;
  align-content: start;
}
.review__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mid);
}
.review__stars { color: var(--brass); }
.review__title { font-family: var(--display); font-size: 19px; line-height: 1.3; }
.review p { margin: 0; font-size: 13px; line-height: 1.7; color: var(--text-mid); }

/* Closing CTA ------------------------------------------------------------- */
.cta { position: relative; background: var(--ink); }
.cta__bg { position: absolute; inset: 0; overflow: hidden; }
.cta__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
}
.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 28, 0.7);
}
.cta__inner {
  position: relative;
  padding: 90px var(--gutter);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}
.cta__inner img { width: 58px; height: 58px; }
.cta__inner h2 { font-size: 36px; color: #fff; }
.btn-light {
  background: var(--sand-deep);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 30px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-light__arrow { transition: transform 0.28s ease; }
.btn-light:hover .btn-light__arrow { transform: translateX(6px); }

/* Footer ------------------------------------------------------------------ */
.site-footer {
  background: var(--ink-deep);
  color: rgba(231, 224, 211, 0.7);
  padding: var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 30px;
}
.site-footer img { width: 36px; height: 36px; flex: none; }
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__word {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--sand-deep);
  white-space: nowrap;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer__links a { color: inherit; white-space: nowrap; }
.site-footer__links a:hover { color: var(--sand-deep); }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1080px) {
  .amenities__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --gutter: 22px; }
  .hero { min-height: 560px; }
  .hero__copy { padding: 110px var(--gutter) 90px; }
  .hero__copy h1 { font-size: 40px; }
  .intro h2 { font-size: 32px; }
  .section-head h2, .craft__head h2 { font-size: 30px; }
  .amenities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .welcome__body { padding: 36px 28px; }
  .concierge { grid-template-columns: 1fr; justify-items: start; }
  .reviews .carousel__track { padding: 0 var(--gutter) 6px; }
  .reviews .carousel__btn { display: none; }
  .bookbar__field { flex: 1 1 100%; border-right: 0; border-bottom: 1px solid rgba(16, 32, 42, 0.1); }
  .bookbar__cta { flex: 1 1 100%; justify-content: stretch; }
  .bookbar__cta .btn-solid { width: 100%; text-align: center; }
  .site-nav { font-size: 10px; gap: 8px 14px; }
}

@media (max-width: 560px) {
  .amenities__grid { grid-template-columns: 1fr; }
  .hero__copy h1 { font-size: 34px; }
  .slide { flex: 0 0 78vw; }
  .review { flex: 0 0 80vw; }
  .site-nav .nav-link { display: none; }
}

/* ---------------------------------------------------------------------------
   Right-to-left (Hebrew, Arabic)

   The layout above is written with physical properties because it mirrors the
   design source one-to-one. Rather than rewrite all of it in logical
   properties, this block flips the pieces whose direction is load-bearing:
   anything absolutely positioned, anything with a one-sided border, and the
   carousels, whose scroll axis inverts under RTL.
--------------------------------------------------------------------------- */
[dir='rtl'] {
  /* Bodoni Moda has no Hebrew or Arabic coverage; fall back to a serif that does. */
  --display: 'Frank Ruhl Libre', 'Noto Serif Hebrew', 'Noto Naskh Arabic', 'Times New Roman', serif;
  --sans: 'Noto Sans Hebrew', 'Noto Sans Arabic', 'Segoe UI', system-ui, sans-serif;
}

/* Letter-spacing is a Latin typographic device; it breaks Arabic joining. */
[dir='rtl'] .brand__word,
[dir='rtl'] .site-nav,
[dir='rtl'] .eyebrow,
[dir='rtl'] .hero__eyebrow,
[dir='rtl'] .rule__text,
[dir='rtl'] .stats__label,
[dir='rtl'] .bookbar__label,
[dir='rtl'] .btn-solid,
[dir='rtl'] .btn-light,
[dir='rtl'] .btn-apply,
[dir='rtl'] .btn-outline,
[dir='rtl'] .lang-drawer__title,
[dir='rtl'] .site-footer__word,
[dir='rtl'] .site-footer__links,
[dir='rtl'] .channel__best {
  letter-spacing: normal;
}

/* One-sided rules and paddings. */
[dir='rtl'] .stats__cell { border-right: 0; border-left: 1px solid rgba(231, 224, 211, 0.14); }
[dir='rtl'] .stats__cell:last-child { border-left: 0; }
[dir='rtl'] .bookbar__field { border-right: 0; border-left: 1px solid rgba(16, 32, 42, 0.1); }
[dir='rtl'] .bookbar__cta { justify-content: flex-start; }
[dir='rtl'] .accordion__panel { padding: 0 28px 22px 0; }

/* Drawers and popovers open from the mirrored edge. */
[dir='rtl'] .lang-drawer {
  right: auto;
  left: 0;
  box-shadow: 18px 0 44px rgba(8, 20, 28, 0.25);
  transform: translateX(-100%);
}
[dir='rtl'] .lang-drawer.is-open { transform: translateX(0); }
[dir='rtl'] .channels { left: auto; right: 0; }
[dir='rtl'] .channels--centred { right: 50%; left: auto; transform: translateX(50%); }
[dir='rtl'] .guests { left: auto; right: 0; }
[dir='rtl'] .datepicker__close { right: auto; left: 16px; }

/* Arrows point the other way, and the carousel scroll axis inverts. */
[dir='rtl'] .carousel__btn--prev { left: auto; right: 10px; }
[dir='rtl'] .carousel__btn--next { right: auto; left: 10px; }
[dir='rtl'] .cal-nav--prev { left: auto; right: -4px; }
[dir='rtl'] .cal-nav--next { right: auto; left: -4px; }
[dir='rtl'] .carousel__btn--prev::before { content: '›'; }
[dir='rtl'] .carousel__btn--next::before { content: '‹'; }
[dir='rtl'] .carousel__btn { font-size: 0; }
[dir='rtl'] .carousel__btn::before { font-size: 17px; }
[dir='rtl'] .btn-light__arrow { transform: scaleX(-1); }
[dir='rtl'] .btn-light:hover .btn-light__arrow { transform: scaleX(-1) translateX(6px); }

/* The caption rule sits on the leading edge. */
[dir='rtl'] .slide__caption::before { order: 0; }

/* Latin-script runs inside RTL prose (phone numbers, emails, brand names). */
[dir='rtl'] .accordion__body a[href^='tel:'],
[dir='rtl'] .accordion__body a[href^='mailto:'] {
  display: inline-block;
  direction: ltr;
  text-align: right;
}
[dir='rtl'] .place__time,
[dir='rtl'] .bookbar__value,
[dir='rtl'] .guests__count {
  direction: ltr;
  text-align: right;
}

@media (max-width: 860px) {
  [dir='rtl'] .bookbar__field { border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel__track { scroll-behavior: auto; }
  .lang-drawer, .scrim, .btn-light__arrow, .lang-option__flag { transition: none; }
}
