/* =========================================================
   Panorama Rooms — Diros, Mani
   Mobile-first. Mediterranean palette: stone, sea, sand.
   ========================================================= */

/* ---------- 1. Tokens ---------- */

:root {
  --font-main: "Roboto", Arial, Helvetica, sans-serif;

  /* Sea & stone */
  --navy:        #0c2b3f;
  --navy-deep:   #071c2a;
  --navy-soft:   #17405a;
  --sea:         #12708f;
  --sea-dark:    #0d5c76;
  --sea-light:   #3fa0bd;

  /* Sand & surfaces */
  --sand:        #f7f2e9;
  --sand-deep:   #efe6d6;
  --surface:     #ffffff;

  /* Ink */
  --ink:         #23282b;
  --ink-soft:    #55605f;
  --ink-faint:   #7d8785;

  /* Warm accent (sunset / terracotta) */
  --ember:       #a8521f;
  --ember-light: #c8763f;

  --line:        rgba(12, 43, 63, 0.14);
  --line-strong: rgba(12, 43, 63, 0.28);
  --line-light:  rgba(255, 255, 255, 0.28);

  --max-width: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 180ms ease;

  --shadow-sm: 0 1px 2px rgba(12, 43, 63, 0.06),
               0 4px 14px rgba(12, 43, 63, 0.07);
  --shadow-md: 0 2px 6px rgba(12, 43, 63, 0.07),
               0 18px 44px rgba(12, 43, 63, 0.13);

  --header-h: 64px;
  --space-section: clamp(3.5rem, 9vw, 7.5rem);
}

/* ---------- 2. Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  /* room for the mobile quick-contact bar */
  padding-bottom: 66px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  margin: 0 0 0.5em;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; margin: 0; padding: 0; }

a {
  color: var(--sea-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--ember); }

strong { font-weight: 700; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--navy);
  color: #fff;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- 3. Layout primitives ---------- */

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section { padding-block: var(--space-section); }

.section--tint {
  background: var(--sand-deep);
  border-block: 1px solid var(--line);
}

.section__title {
  font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.9rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section__title--light { color: #fff; }

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea-dark);
}
.eyebrow--light { color: var(--sea-light); }

.section__head {
  display: grid;
  gap: 1rem 3rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section__intro {
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.06em;
}

.note {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-style: italic;
}

.lead-quote {
  margin-top: 1.6rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--sea-light);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  font-weight: 300;
  color: var(--navy-soft);
  font-style: italic;
}

/* ---------- 4. Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn--primary {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--sea-dark);
  border-color: var(--sea-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

/* ---------- 5. Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(12, 43, 63, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  /* may shrink so the language selector and menu button always stay on screen */
  flex: 0 1 auto;
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
}
.brand:hover { color: var(--sea-dark); }

/* Logo: fixed height per breakpoint, width follows the intrinsic 4:3 ratio */
.brand__logo {
  flex: none;
  width: auto;
  height: clamp(38px, 10vw, 46px);
  max-width: 100%;
  object-fit: contain;
}

/* the artwork is black line art, so it needs to flip on dark surfaces */
.brand__logo--invert { filter: brightness(0) invert(1); }

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.brand__sub {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.header__controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: none;
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.lang__btn {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.4rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}
.lang__btn:hover { color: var(--navy); background: rgba(12, 43, 63, 0.06); }

.lang__btn.is-active { color: var(--navy); }

/* the selected language is marked by weight, colour and a rule — not colour alone */
.lang__btn.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 22px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--ember);
}

.lang__sep { color: var(--line-strong); font-size: 0.8rem; }

/* Hamburger */
.burger {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-left: 0.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition);
}
.burger:hover { background: rgba(12, 43, 63, 0.06); }

.burger__bars {
  display: grid;
  gap: 5px;
  width: 20px;
}
.burger__bars i {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger[aria-expanded="true"] .burger__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  padding: 1rem 1rem 1.75rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition),
              visibility var(--transition);
}
.nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__list { display: grid; }

.nav__link {
  display: block;
  padding: 0.95rem 0.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}
.nav__link:hover { color: var(--sea-dark); }
.nav__link.is-current { color: var(--sea-dark); }

.nav__tail { margin-top: 1.25rem; }

.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.nav__call:hover { color: var(--ember); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(7, 28, 42, 0.4);
  border: 0;
}
.nav-scrim[hidden] { display: none; }

/* ---------- 6. Hero ---------- */

.hero {
  position: relative;
  display: grid;
  isolation: isolate;
  min-height: min(88svh, 760px);
  padding-block: clamp(3.5rem, 12vw, 7rem) 0;
  align-content: center;
  color: #fff;
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.72) brightness(0.92);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7, 28, 42, 0.62) 0%, rgba(7, 28, 42, 0.5) 45%, rgba(7, 28, 42, 0.88) 100%),
    linear-gradient(to right, rgba(7, 28, 42, 0.66) 0%, rgba(7, 28, 42, 0.22) 65%);
}

.hero__inner {
  max-width: 62rem;
  padding-block: 1rem clamp(2.5rem, 8vw, 4.5rem);
}

.hero__title {
  max-width: 26ch;
  margin-bottom: 0.6em;
  color: #fff;

  white-space: pre-line;
  
  font-size: clamp(2.1rem, 1.15rem + 4.6vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-shadow: 0 2px 26px rgba(7, 28, 42, 0.55);
}

.hero__text {
  max-width: 46ch;
  font-size: clamp(1.02rem, 0.95rem + 0.5vw, 1.28rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.93);
  text-shadow: 0 1px 14px rgba(7, 28, 42, 0.55);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.hero__facts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
  background: rgba(7, 28, 42, 0.55);
  backdrop-filter: blur(4px);
}

.hero__facts li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero__facts li:last-child { border-bottom: 0; }

.hero__facts strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

/* ---------- 7. Split sections ---------- */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split__figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.split__figure { margin: 0; }

/* The exterior photo is small by nature — frame it instead of stretching it. */
.split__figure--property {
  display: grid;
  gap: 0.85rem;
  justify-self: start;
  width: min(100%, 360px);
  padding: 0.85rem 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.split__figure--property img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: none;
}
.split__figure--property figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- 8. Highlights ---------- */

.highlights__grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  background: var(--sand-deep);
  font-weight: 500;
  color: var(--navy);
  transition: background-color var(--transition);
}
.highlight:hover { background: var(--surface); }

.highlight__icon {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--sea);
}

.highlight--wide {
  background: var(--navy);
  color: #fff;
}
.highlight--wide:hover { background: var(--navy-soft); }
.highlight--wide .highlight__icon { color: var(--sea-light); }

/* ---------- 9. Stay ---------- */

.stay__grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.stay__item {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.stay__item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stay__item figcaption {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.stay .note { margin-top: clamp(1.75rem, 4vw, 2.5rem); }
.stay .btn { margin-top: 1rem; }

/* ---------- 10. Restaurant ---------- */

.restaurant { background: var(--surface); }

.restaurant__lead {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.restaurant__figure { margin: 0; }

.restaurant__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.restaurant__figure--catch img { aspect-ratio: 4 / 3; }

.restaurant__figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.25rem;
}

.pills li {
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  background: var(--sand);
}

.restaurant__aside {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.pullquote { margin: 0; }

.pullquote p {
  font-size: clamp(1.35rem, 1rem + 1.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.28;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.pullquote::before {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 1.25rem;
  background: var(--ember);
}

/* ---------- 11. Amenities ---------- */

.essentials {
  display: grid;
  gap: 0.85rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.essentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--navy);
}

.essentials .icon { color: var(--sea); width: 22px; height: 22px; }

.am-groups {
  display: grid;
  gap: 0.65rem;
}

.am-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.am-group[open] { border-color: var(--line-strong); }

.am-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 54px;
  padding: 0.85rem 1.1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--transition);
}
.am-group summary::-webkit-details-marker { display: none; }
.am-group summary:hover { background: var(--sand); }

.am-group summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-right: 2px solid var(--sea);
  border-bottom: 2px solid var(--sea);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--transition);
}
.am-group[open] summary::after {
  transform: rotate(-135deg) translate(-3px, -3px);
}

.am-list {
  display: grid;
  gap: 0.15rem;
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.am-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.am-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sea-light);
}

.note--wifi {
  margin-top: 1.75rem;
  font-style: normal;
  color: var(--navy-soft);
  font-weight: 500;
}

/* ---------- 12. Location ---------- */

.distances {
  display: grid;
  gap: 0;
  margin: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.distances li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.distances .icon { color: var(--sea); width: 22px; height: 22px; }

.distances__label { color: var(--ink-soft); }

.distances__value {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  white-space: nowrap;
}

/* ---------- 13. Gallery ---------- */

.gallery__grid {
  display: grid;
  gap: clamp(0.6rem, 1.6vw, 1rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms ease, filter var(--transition);
}
.gallery__item:hover img { transform: scale(1.035); filter: brightness(1.04); }

.lightbox {
  width: min(96vw, 1100px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy-deep);
  overflow: visible;
}
.lightbox::backdrop { background: rgba(7, 28, 42, 0.88); }

.lightbox img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 28, 42, 0.72);
  color: #fff;
  cursor: pointer;
  transition: background-color var(--transition);
}
.lightbox__close:hover { background: var(--ember); }
.lightbox__close .icon { width: 22px; height: 22px; }

/* ---------- 14. Contact ---------- */

.contact {
  background:
    radial-gradient(120% 90% at 15% 0%, var(--navy-soft) 0%, transparent 60%),
    var(--navy);
  color: rgba(255, 255, 255, 0.86);
}

.contact__lead {
  max-width: 52ch;
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.contact__cards {
  display: grid;
  gap: 0.85rem;
  margin: clamp(2rem, 5vw, 3rem) 0 2rem;
}

.contact__card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.1rem 1rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition),
              transform var(--transition);
}
.contact__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sea-light);
  color: #fff;
  transform: translateY(-2px);
}
/* the address card links out to the map, so it flags the new tab */
.contact__ext {
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.4em;
  vertical-align: -0.05em;
  color: var(--sea-light);
}

.contact__icon {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--sea-light);
}

.contact__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.contact__value {
  font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact__langs {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}
.contact__langs strong { color: #fff; }

/* ---------- 15. Footer ---------- */

.site-footer {
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--sea-light); }

.site-footer__inner {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand .brand__logo {
  height: clamp(52px, 12vw, 64px);
  margin-bottom: 0.9rem;
}

.site-footer__title {
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer__col p { margin-bottom: 0.5rem; }

.site-footer__links { display: grid; gap: 0.15rem; }
.site-footer__links a {
  display: inline-block;
  padding: 0.35rem 0;
  text-decoration: none;
}

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__base p { margin: 0; }

/* ---------- 16. Mobile quick contact bar ---------- */

.quickbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -6px 22px rgba(12, 43, 63, 0.12);
}

.quickbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.5rem;
  background: var(--sea);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background-color var(--transition);
}
.quickbar__btn:hover { background: var(--sea-dark); color: #fff; }

.quickbar__btn--alt { background: var(--navy); }
.quickbar__btn--alt:hover { background: var(--navy-soft); color: #fff; }

/* =========================================================
   Breakpoints
   ========================================================= */

/* ---------- Narrow phones: keep the whole header row on screen ---------- */
@media (max-width: 419px) {
  .brand__sub { display: none; }
  .lang__btn { min-width: 38px; }
  .lang__sep { display: none; }
  .burger { width: 44px; height: 44px; }
}

@media (max-width: 359px) {
  .container { width: min(100% - 1.5rem, var(--max-width)); }
  .brand__logo { height: 36px; }
}

/* ---------- >= 600px ---------- */
@media (min-width: 600px) {

  .highlights__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlight--wide { grid-column: 1 / -1; }

  .essentials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .am-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* odd item count: the last tile runs full width instead of leaving a gap */
  .gallery__grid > li:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .stay__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stay__item--lead { grid-column: 1 / -1; }
  .stay__item--lead img { aspect-ratio: 21 / 9; }

  .hero__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero__facts li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
  .hero__facts li:first-child { border-left: 0; }

  .contact__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- >= 768px ---------- */
@media (min-width: 768px) {

  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }
  .split--reverse .split__text { order: 2; }

  .restaurant__lead { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
  .restaurant__aside { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); }

  .section__head { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; }

  .essentials { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}

/* ---------- >= 1024px ---------- */
@media (min-width: 1024px) {

  :root { --header-h: 76px; }

  body { padding-bottom: 0; }

  .brand__logo { height: 56px; }

  /* Desktop navigation: inline, no hamburger */
  .burger { display: none; }
  .quickbar { display: none; }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav__link {
    padding: 0.45rem 0.7rem;
    border-bottom: 0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
  }
  .nav__link:hover { background: rgba(12, 43, 63, 0.06); }
  .nav__link.is-current {
    color: var(--sea-dark);
    box-shadow: inset 0 -2px 0 var(--sea);
    border-radius: 0;
  }

  .nav__tail { margin: 0; }

  .nav__call {
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 0.9rem;
    min-height: 40px;
  }
  .nav__call:hover { border-color: var(--ember); }

  .nav-scrim { display: none !important; }

  .highlights__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .highlight--wide { grid-column: 1 / -1; padding-block: 1.35rem; }
  .highlight--wide span { font-size: 1.08rem; }

  .stay__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stay__item--lead { grid-column: 1 / -1; }

  .am-groups { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .gallery__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .gallery__grid > li:last-child:nth-child(odd) { grid-column: auto; }

  .contact__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .hero__inner { padding-block: 2rem clamp(3.5rem, 7vw, 6rem); }
}

/* ---------- >= 1280px ---------- */
@media (min-width: 1280px) {

  .hero { min-height: min(90svh, 840px); }

  .section__head { gap: 1rem 5rem; }

  .split { gap: 5rem; }

  .restaurant__lead { gap: 4.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .quickbar, .nav-scrim, .lightbox, .skip-link { display: none !important; }
  body { padding-bottom: 0; background: #fff; color: #000; }
  .hero { min-height: auto; color: #000; }
  .hero__media { display: none; }
  .hero__title, .hero__text { color: #000; text-shadow: none; }
  .contact, .site-footer { background: #fff; color: #000; }
  .contact__value, .section__title--light { color: #000; }
  /* footer sits on white when printed, so the logo must stay black */
  .brand__logo--invert { filter: none; }
  .am-group[open] .am-list, .am-list { display: grid !important; }
}
