/* MIDFIELD — shared styles. Mobile-first; breakpoints at 768px and 1024px. */

:root {
  --baize: #123f33;
  --baize-deep: #0b2a22;
  --brass: #b8893b;
  --brass-soft: #e6cf9c;
  --porcelain: #f6f7f4;
  --sage: #e3ebe5;
  --line: #cfdad3;
  --ink: #1f2522;
  --muted: #56615b;
  --error: #a23b32;
  --white: #ffffff;

  --font-display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 4px;
  --wrap: 1180px;
  --gap: 1.5rem;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--porcelain);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--baize); text-underline-offset: 3px; }
a:hover { color: var(--brass); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; }

h1, h2, h3 { margin: 0 0 .6em; line-height: 1.15; font-weight: 600; }
h1, h2 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--baize); color: var(--white); padding: .5rem 1rem;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.4rem;
  border: 0;
  border-radius: 2px;
  background: var(--baize);
  color: var(--white);
  font: 600 1rem/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease;
}
.btn:hover { background: var(--baize-deep); color: var(--white); }
.btn-small { padding: .6rem 1.1rem; font-size: .95rem; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-brass { background: var(--brass); color: var(--baize-deep); }
.btn-brass:hover { background: var(--brass-soft); color: var(--baize-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 4.25rem; }

.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--baize); text-decoration: none;
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; letter-spacing: .08em;
}
.logo:hover { color: var(--baize); }
.logo-mark { width: 1.6rem; height: 1.6rem; color: var(--brass); }
.logo-light, .logo-light:hover { color: var(--white); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.75rem; height: 2.75rem; padding: .6rem;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; background: var(--baize); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--porcelain); border-bottom: 1px solid var(--line);
  display: none;
}
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: .5rem 1.25rem 1rem; }
.site-nav a {
  display: block; padding: .75rem 0;
  color: var(--ink); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--sage);
}
.site-nav a:hover { color: var(--baize); }
.site-nav a.is-active { color: var(--baize); box-shadow: inset 3px 0 0 var(--brass); padding-left: .75rem; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--baize-deep); color: var(--white); overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-grid { position: relative; display: grid; gap: 2rem; padding-top: 3rem; padding-bottom: 3rem; }
.hero-text p { font-size: 1.1rem; max-width: 34rem; color: #e8efe9; }

.booking-panel {
  background: var(--white); color: var(--ink);
  border-top: 4px solid var(--brass);
  border-radius: var(--radius);
  padding: 1.5rem;
  scroll-margin-top: 5rem;
}
.booking-panel h2 { font-size: 1.6rem; }

.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: .92rem; }
input, select, textarea {
  width: 100%; padding: .7rem .75rem;
  font: 400 1rem/1.3 var(--font-body); color: var(--ink);
  background: var(--white);
  border: 1px solid #aebbb3; border-radius: var(--radius);
}
input:focus, select:focus, textarea:focus { outline: 3px solid var(--brass-soft); border-color: var(--baize); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--error); }

.booking-nights { margin: 0; color: var(--muted); font-size: .95rem; min-height: 1.5em; }
.form-error, .field-error { margin: 0; color: var(--error); font-size: .9rem; }
.form-error:empty, .field-error:empty { display: none; }

.booking-result { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px dashed var(--line); }
.booking-hotel { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: .25rem; }
.booking-summary { font-weight: 600; color: var(--baize); }
.booking-note { font-size: .85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section-tint { background: var(--sage); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head p { color: var(--muted); }
.section-more { margin-top: 2rem; font-weight: 600; }
.illustrative { font-style: italic; font-size: .92rem; }

.card-grid { display: grid; gap: var(--gap); }
.hotel-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hotel-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hotel-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.hotel-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: .2rem; }
.hotel-loc { color: var(--muted); font-size: .93rem; margin-bottom: .6rem; }
.hotel-price { margin-bottom: 1rem; }
.hotel-price strong { font-size: 1.2rem; color: var(--baize); }

.benefits { display: grid; gap: 2rem; }
.benefit { border-left: 2px solid var(--brass); padding-left: 1.1rem; }
.benefit p { color: var(--muted); margin: 0; }

.dest-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr 1fr; }
.dest { position: relative; display: block; color: var(--white); text-decoration: none; border-radius: var(--radius); overflow: hidden; }
.dest img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 42, 34, .9), rgba(11, 42, 34, 0) 55%); }
.dest-name, .dest-meta { position: absolute; left: 1rem; z-index: 1; }
.dest-name { bottom: 2.3rem; font-family: var(--font-display); font-size: 1.4rem; }
.dest-meta { bottom: 1rem; font-size: .88rem; color: var(--brass-soft); }
.dest:hover { color: var(--white); }
.dest:hover .dest-name { text-decoration: underline; text-decoration-color: var(--brass); }

.reviews { display: grid; gap: var(--gap); }
.review { margin: 0; background: var(--white); padding: 1.5rem; border-radius: var(--radius); }
.review blockquote { margin: 0 0 1rem; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; }
.review figcaption { color: var(--muted); font-size: .92rem; }

.cta { background: var(--baize); color: var(--white); padding: 3rem 0; }
.cta-inner { display: grid; gap: 1.5rem; align-items: center; }
.cta p { color: #d8e3dc; margin: 0; }

/* ---------- Inner pages ---------- */
.page-hero { position: relative; background: var(--baize-deep); color: var(--white); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-hero-text { position: relative; padding-top: 4rem; padding-bottom: 3rem; }
.page-hero-text p { max-width: 36rem; font-size: 1.1rem; color: #e8efe9; margin: 0; }

.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.updated { color: var(--muted); font-size: .92rem; }
.inline-figure { margin: 2rem 0; }
.inline-figure img { border-radius: var(--radius); width: 100%; }
.inline-figure figcaption { color: var(--muted); font-size: .9rem; margin-top: .5rem; }

.offer { border-top: 1px solid var(--line); padding-top: .5rem; margin-top: 2rem; }
.offer-price { font-weight: 600; color: var(--baize); }

.faq-list { margin: 2rem 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 1rem 2rem 1rem 0; position: relative;
  font-weight: 600; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: .25rem; top: .85rem; font-size: 1.4rem; color: var(--brass); line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); padding-bottom: 1rem; margin: 0; }

.intro { font-size: 1.1rem; }
.hotel-list { display: grid; gap: 3rem; margin-top: 2rem; }
.hotel-row { display: grid; gap: 1.25rem; scroll-margin-top: 5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.hotel-row:last-child { border-bottom: 0; }
.hotel-row img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.hotel-row h2 { margin-bottom: .2rem; }
.badge { display: inline-block; margin-left: .4rem; padding: .1rem .5rem; font-size: .8rem; background: var(--brass-soft); color: var(--baize-deep); border-radius: 2px; }
.amen-title { font-size: 1rem; margin-top: 1.25rem; }
.amenities { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.amenities li { background: var(--sage); padding: .3rem .7rem; border-radius: 2px; font-size: .9rem; }
.hotel-row-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.hotel-row-foot .hotel-price { margin: 0; }

.contact-grid { display: grid; gap: 3rem; }
.contact-form { display: grid; gap: 1.1rem; }
.field-check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: .6rem; }
.field-check input { width: 1.2rem; height: 1.2rem; margin-top: .2rem; flex: none; }
.field-check label { flex: 1; font-weight: 400; }
.field-check .field-error { flex-basis: 100%; }
.optional { font-weight: 400; color: var(--muted); }
.form-success { background: var(--sage); border-left: 3px solid var(--baize); padding: 1.25rem 1.5rem; border-radius: var(--radius); }
.contact-info { background: var(--white); border: 1px solid var(--line); padding: 1.5rem; border-radius: var(--radius); align-self: start; }
.contact-info address { font-style: normal; margin-bottom: 1em; }
.contact-info img { margin-top: 1rem; border-radius: var(--radius); }

/* ---------- Footer ---------- */
.site-footer { background: var(--baize-deep); color: #cdd9d1; padding-top: 3rem; font-size: .95rem; }
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--brass-soft); }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2rem; }
.footer-brand p { margin-top: 1rem; max-width: 22rem; }
.footer-title { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .45rem; }
.site-footer address { font-style: normal; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .15); padding-top: 1.25rem; padding-bottom: 1.5rem; font-size: .88rem; }
.age-note strong { color: var(--brass-soft); }

/* ---------- 768px ---------- */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .dest img { aspect-ratio: 4 / 5; }
  .cta-inner { grid-template-columns: 1fr auto; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .hotel-row { grid-template-columns: 1fr 1.4fr; align-items: start; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; }
  .page-hero-text { padding-top: 6rem; padding-bottom: 4.5rem; }
  .section { padding: 4.5rem 0; }
}

/* ---------- 1024px ---------- */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: block; background: none; border: 0; }
  .site-nav ul { display: flex; gap: 1.75rem; padding: 0; }
  .site-nav a { border: 0; padding: .4rem 0; }
  .site-nav a.is-active { box-shadow: inset 0 -2px 0 var(--brass); padding-left: 0; }

  .hero-grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 4rem; padding-top: 5rem; padding-bottom: 5rem; min-height: 38rem; }
  .booking-panel { padding: 2rem; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
}
