/* Aliathon Aegean - design system */
:root {
  --ink: #16283a;
  --ink-soft: #44586c;
  --sea: #1d6d8d;
  --sea-deep: #124d66;
  --sand: #c8a25e;
  --sand-soft: #e8d9bd;
  --cream: #faf6ef;
  --line: #e5ddce;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(22, 40, 58, 0.12);
  --font-head: 'Rubik', 'Arial', sans-serif;
  --font-body: 'Assistant', 'Arial', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, .97);
  box-shadow: 0 4px 24px rgba(22,40,58,.08);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand .brand-name {
  font-family: var(--font-head); font-size: 1.45rem; font-weight: 700;
  color: var(--white); letter-spacing: .5px;
}
.brand .brand-sub { font-size: .72rem; color: rgba(255,255,255,.75); letter-spacing: .8px; }
.site-header.scrolled .brand-name, .site-header.inner .brand-name { color: var(--ink); }
.site-header.scrolled .brand-sub, .site-header.inner .brand-sub { color: var(--ink-soft); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.92);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.main-nav a:hover { border-color: var(--sand); }
.site-header.scrolled .main-nav a, .site-header.inner .main-nav a { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-btn {
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  border: 1px solid rgba(255,255,255,.55); color: var(--white);
  padding: 7px 14px; border-radius: 999px; transition: all .2s;
}
.lang-btn:hover { background: rgba(255,255,255,.15); }
.site-header.scrolled .lang-btn, .site-header.inner .lang-btn {
  color: var(--ink); border-color: var(--line);
}
.btn {
  display: inline-block; font-weight: 600; border-radius: 999px;
  padding: 12px 28px; transition: all .25s ease; cursor: pointer;
  border: none; font-family: var(--font-body); font-size: 1rem;
}
.btn-gold { background: var(--sand); color: var(--ink); }
.btn-gold:hover { background: #b8914d; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,162,94,.4); }
.btn-sea { background: var(--sea); color: var(--white); }
.btn-sea:hover { background: var(--sea-deep); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-sm { padding: 9px 20px; font-size: .9rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,42,60,.55) 0%, rgba(18,42,60,.25) 45%, rgba(18,42,60,.65) 100%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 720px; padding-top: 60px; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sand); margin-bottom: 14px;
}
.hero .kicker { color: var(--sand-soft); }
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 20px;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 34px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
h2.section-title {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700; line-height: 1.25; margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* about */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs .img-main { border-radius: var(--radius); box-shadow: var(--shadow); height: 460px; object-fit: cover; width: 100%; }
.about-imgs .img-float {
  position: absolute; bottom: -36px; inset-inline-start: -36px; width: 46%;
  border-radius: var(--radius); border: 6px solid var(--cream);
  box-shadow: var(--shadow); height: 220px; object-fit: cover;
}
.about-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.04rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.stat { border-top: 2px solid var(--sand); padding-top: 12px; }
.stat b { font-family: var(--font-head); font-size: 1.7rem; display: block; color: var(--sea-deep); }
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* rooms */
.rooms-section { background: var(--white); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.room-card {
  border-radius: var(--radius); overflow: hidden; background: var(--cream);
  border: 1px solid var(--line); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card .room-img { height: 250px; overflow: hidden; }
.room-card .room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 6px; }
.room-meta { display: flex; gap: 16px; font-size: .85rem; color: var(--ink-soft); margin-bottom: 12px; }
.room-body p.desc { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.room-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.price { font-size: .85rem; color: var(--ink-soft); }
.price b { font-family: var(--font-head); font-size: 1.5rem; color: var(--sea-deep); margin-inline-end: 3px; }

/* pools - dark band */
.pools-section { background: var(--ink); color: var(--white); }
.pools-section .section-head p { color: rgba(255,255,255,.75); }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.photo-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 380px; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.photo-card:hover img { transform: scale(1.06); }
.photo-card .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(180deg, rgba(16,30,44,0) 30%, rgba(16,30,44,.55) 62%, rgba(16,30,44,.93) 100%);
}
.photo-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 6px; color: #fff; text-shadow: 0 1px 8px rgba(10,20,30,.45); }
.photo-card p { font-size: .9rem; color: rgba(255,255,255,.92); text-shadow: 0 1px 6px rgba(10,20,30,.4); }

/* dining */
.dining-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dine-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.dine-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dine-card .dine-img { height: 190px; overflow: hidden; }
.dine-card img { width: 100%; height: 100%; object-fit: cover; }
.dine-card .dine-body { padding: 18px 20px 20px; }
.dine-card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 4px; }
.dine-card p { font-size: .88rem; color: var(--ink-soft); }

/* spa */
.spa-section { background: var(--white); }
.spa-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.spa-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spa-imgs img { border-radius: var(--radius); height: 240px; width: 100%; object-fit: cover; }
.spa-imgs img:first-child { grid-column: 1 / -1; height: 260px; }
.check-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); }
.check-list li::before {
  content: "✓"; color: var(--sand); font-weight: 700; font-size: 1rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 50%;
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* location */
.location-section { background: var(--cream); }

/* CTA band */
.cta-band {
  position: relative; background-size: cover; background-position: center; padding: 110px 0; text-align: center; color: var(--white);
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(16,42,60,.72); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 30px; font-size: 1.1rem; }

/* footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 60px 0 30px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.site-footer .brand-name { font-family: var(--font-head); color: var(--white); font-size: 1.4rem; }
.site-footer a:hover { color: var(--sand-soft); }
.footer-col { display: grid; gap: 8px; font-size: .93rem; align-content: start; }
.footer-col b { color: var(--white); margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; font-size: .82rem; color: rgba(255,255,255,.55); text-align: center; }

/* ---------- inner pages ---------- */
.page-head {
  background: var(--ink); color: var(--white); padding: 150px 0 70px; text-align: center;
  background-size: cover; background-position: center; position: relative;
}
.page-head::after { content: ""; position: absolute; inset: 0; background: rgba(16,36,54,.66); }
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.page-head p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }

/* booking */
.search-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; margin-top: -46px; position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 1fr 130px auto; gap: 16px; align-items: end;
}
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sea); background: var(--white); }
.results { padding: 60px 0 90px; }
.result-row {
  display: grid; grid-template-columns: 300px 1fr auto; gap: 26px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 22px; transition: box-shadow .3s;
}
.result-row:hover { box-shadow: var(--shadow); }
.result-row img { height: 100%; min-height: 210px; width: 100%; object-fit: cover; }
.result-info { padding: 22px 0; }
.result-info h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 6px; }
.result-cta { padding: 22px 26px; text-align: center; display: grid; gap: 8px; justify-items: center; }
.badge {
  display: inline-block; background: #fdf1dc; color: #9a7222; font-size: .78rem;
  font-weight: 600; border-radius: 999px; padding: 4px 12px;
}
.notice { background: #fdf6e8; border: 1px solid var(--sand-soft); color: #7c6231; border-radius: 10px; padding: 16px 20px; margin: 30px 0; }
.error-box { background: #fdecec; border: 1px solid #f2c6c6; color: #8d3434; border-radius: 10px; padding: 16px 20px; margin: 30px 0; }

/* details / forms */
.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; padding: 60px 0 90px; align-items: start; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.panel h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 18px; }
.form-grid { display: grid; gap: 18px; }
.summary-img { border-radius: 10px; height: 180px; width: 100%; object-fit: cover; margin-bottom: 18px; }
.summary-rows { display: grid; gap: 10px; font-size: .95rem; }
.summary-rows .row { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.summary-rows .row.total { font-weight: 700; font-size: 1.1rem; border-bottom: none; color: var(--sea-deep); }

/* success */
.success-wrap { max-width: 620px; margin: 0 auto; text-align: center; padding: 80px 24px 100px; }
.success-icon {
  width: 84px; height: 84px; border-radius: 50%; background: #e8f4ec; color: #1e7a43;
  font-size: 2.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.ref-big { font-family: var(--font-head); font-size: 2rem; color: var(--sea-deep); letter-spacing: 2px; margin: 10px 0 20px; }

/* admin */
.admin-wrap { padding: 130px 0 80px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 34px; }
.admin-stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.admin-stat b { font-family: var(--font-head); font-size: 1.8rem; display: block; color: var(--sea-deep); }
.admin-stat span { font-size: .85rem; color: var(--ink-soft); }
table.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; font-size: .9rem; }
.admin-table th { background: var(--ink); color: var(--white); padding: 12px 14px; text-align: start; font-weight: 600; }
.admin-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:hover td { background: #fbf8f1; }
.pill { border-radius: 999px; padding: 3px 12px; font-size: .78rem; font-weight: 600; }
.pill.pending { background: #fdf1dc; color: #9a7222; }
.pill.confirmed { background: #e8f4ec; color: #1e7a43; }
.pill.cancelled { background: #fdecec; color: #8d3434; }
.inline-form { display: inline-flex; gap: 6px; align-items: center; }
.inline-form select, .inline-form input { padding: 6px 8px; border: 1px solid var(--line); border-radius: 8px; font-family: var(--font-body); font-size: .85rem; }
.btn-mini { padding: 6px 14px; font-size: .8rem; border-radius: 8px; }
.table-scroll { overflow-x: auto; }

/* ---------- inner-page header: always solid so nav is readable ---------- */
.site-header.inner {
  background: rgba(250, 246, 239, .97);
  box-shadow: 0 4px 24px rgba(22, 40, 58, .08);
  padding: 14px 0;
}

/* ---------- motion & wow ---------- */
.hero { overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.09) translateY(-12px); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
.img-float { animation: floaty 6.5s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,.7,.3,1), transform .8s cubic-bezier(.22,.7,.3,1); }
.reveal.visible { opacity: 1; transform: none; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.g-item { border-radius: 12px; overflow: hidden; position: relative; }
.g-item.tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(22,40,58,0); transition: background .3s; pointer-events: none;
}
.g-item:hover::after { background: rgba(22,40,58,.14); }

/* lightbox */
.lb-zoom { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; background: rgba(10, 20, 30, .93); z-index: 300;
  display: none; align-items: center; justify-content: center; flex-direction: column; padding: 40px 70px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1150px); max-height: 76vh; border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55); object-fit: contain;
  animation: lbIn .3s ease;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lb-caption { color: rgba(255,255,255,.9); margin-top: 16px; font-size: 1rem; text-align: center; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none;
  border-radius: 50%; width: 48px; height: 48px; font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 22px; inset-inline-end: 22px; }
.lb-prev { inset-inline-start: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { inset-inline-end: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- resort landing & areas ---------- */
.hero-tall { min-height: 100vh; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.hotel-choice {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hotel-choice:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.choice-img { height: 300px; overflow: hidden; }
.choice-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hotel-choice:hover .choice-img img { transform: scale(1.07); }
.choice-body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex: 1; }
.choice-body h3 { font-family: var(--font-head); font-size: 1.6rem; }
.choice-body p { color: var(--ink-soft); flex: 1; }
.area-tag {
  display: inline-block; background: #fdf1dc; color: #9a7222; font-size: .78rem;
  font-weight: 600; border-radius: 999px; padding: 4px 14px; letter-spacing: .4px;
}
.photo-card .area-tag { background: rgba(253, 241, 220, .95); color: #7c5f1d; margin-bottom: 8px; align-self: flex-start; }
.area-card { height: 420px; }
.cards2 { grid-template-columns: 1fr 1fr; max-width: 900px; margin-inline: auto; }
.check-list-dark li { color: rgba(255,255,255,.85); }
.check-list-dark li::before { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.gallery-section { background: var(--white); }

/* ---------- room page ---------- */
.room-head { padding: 150px 0 60px; }
.room-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 40px; padding: 50px 0 90px; align-items: start; }
.room-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; }
.rg-main { grid-column: 1 / -1; height: 420px; border-radius: var(--radius); overflow: hidden; }
.rg-thumb { height: 130px; border-radius: 10px; overflow: hidden; }
.rg-main img, .rg-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rg-main:hover img, .rg-thumb:hover img { transform: scale(1.05); }
.rp-sub { font-family: var(--font-head); font-size: 1.25rem; margin: 28px 0 14px; }
.features-2col { grid-template-columns: 1fr 1fr; }
.btn-ghost-dark { border: 1.5px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost-dark:hover { background: var(--white); }
.book-card {
  position: sticky; top: 100px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.bc-price { display: flex; align-items: baseline; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 18px; }
.bc-price b { font-family: var(--font-head); font-size: 2rem; color: var(--sea-deep); }
.bc-price span { color: var(--ink-soft); font-size: .9rem; }
.avail-banner {
  background: #e8f4ec; border: 1px solid #bfe0cb; color: #1e6a3d;
  border-radius: 10px; padding: 14px 16px; font-size: .92rem; line-height: 1.6;
}

/* ---------- language flags ---------- */
.lang-flags { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; align-items: center; flex-shrink: 0; }
.flag-btn {
  display: inline-flex; border-radius: 4px; overflow: hidden; line-height: 0;
  opacity: .55; border: 2px solid transparent; transition: opacity .2s, transform .2s, border-color .2s;
}
.flag-btn img { display: block; border-radius: 2px; }
.flag-btn:hover { opacity: 1; transform: translateY(-1px); }
.flag-btn.active { opacity: 1; border-color: var(--sand); }

/* ---------- floating buttons ---------- */
.float-btn {
  position: fixed; bottom: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(22, 40, 58, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.wa-btn { left: 22px; background: #25d366; }
.acc-btn { right: 22px; background: var(--sea); }

.acc-panel {
  position: fixed; bottom: 90px; right: 22px; z-index: 150;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 45px rgba(22, 40, 58, .25); padding: 16px;
  display: none; flex-direction: column; gap: 8px; min-width: 210px;
}
.acc-panel.open { display: flex; }
.acc-panel b { font-family: var(--font-head); margin-bottom: 4px; }
.acc-panel button {
  border: 1px solid var(--line); background: var(--cream); border-radius: 9px;
  padding: 9px 12px; font-family: var(--font-body); font-size: .92rem; cursor: pointer;
  text-align: start; transition: all .15s;
}
.acc-panel button:hover { border-color: var(--sea); }
.acc-panel button.on { background: var(--sea); color: var(--white); border-color: var(--sea); }
.acc-panel .acc-reset { background: transparent; color: #8d3434; border-style: dashed; }

/* accessibility modes */
html.acc-bigtext { font-size: 118%; }
html.acc-contrast body { filter: invert(1) hue-rotate(180deg); background: #0b0b0b; }
html.acc-contrast img, html.acc-contrast video, html.acc-contrast .hero-bg,
html.acc-contrast .cta-band, html.acc-contrast .page-head { filter: invert(1) hue-rotate(180deg); }
html.acc-gray body { filter: grayscale(1); }
html.acc-contrast.acc-gray body { filter: invert(1) hue-rotate(180deg) grayscale(1); }
html.acc-links a { text-decoration: underline !important; text-underline-offset: 3px; }
html.acc-font body, html.acc-font h1, html.acc-font h2, html.acc-font h3,
html.acc-font .section-title, html.acc-font .btn { font-family: Arial, Verdana, sans-serif !important; letter-spacing: .01em; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s; }
.site-header.scrolled .nav-toggle span, .site-header.inner .nav-toggle span { background: var(--ink); }

@media (max-width: 960px) {
  section { padding: 64px 0; }
  .about-grid, .spa-grid, .form-wrap { grid-template-columns: 1fr; }
  .about-imgs .img-float { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .cards3, .cards2, .dining-grid, .choice-grid { grid-template-columns: 1fr; }
  .room-layout { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .room-gallery { grid-template-columns: repeat(2, 1fr); }
  .rg-main { height: 260px; }
  .features-2col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .area-card { height: 340px; }
  .photo-card { height: 300px; }
  .stats, .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .search-card { grid-template-columns: 1fr 1fr; }
  .result-row { grid-template-columns: 1fr; }
  .result-row img { min-height: 200px; }
  .result-info, .result-cta { padding: 0 22px 22px; text-align: start; justify-items: start; }
  .main-nav {
    display: none; position: absolute; top: 100%; inset-inline: 0;
    background: var(--cream); flex-direction: column; padding: 20px 24px; gap: 16px;
    box-shadow: 0 16px 30px rgba(22,40,58,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--ink) !important; }
  .nav-toggle { display: block; }
}
