/* Wellmark Resorts — shared styles for index.html, Home.html, book.html, help.html, guide.html.

   The look, after Rizvi pointed at oneandonlyresorts.com: white space, a light
   serif for headings (Cormorant Garamond), a quiet sans for everything else
   (DM Sans), small letter-spaced capitals for labels, square-cornered dark
   buttons, and photographs given the whole width. Colour is kept for the
   pictures; the chrome stays near-monochrome, with the logo's red only as a
   hairline accent. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --red: #d81b1d; --red-dark: #b01315; --red-soft: #fdeceb;
  --green: #3b743f; --green-dark: #24492c; --green-deep: #1b3622; --green-soft: #eef3ee;
  --gold: #b8933a; --gold-soft: #f8f3e6;
  --amber: #8f5f07; --amber-soft: #fdf3e1;
  --ink: #1a1a1a; --muted: #6b6b6b; --line: #e6e3dd; --line-2: #d3cfc7;
  --paper: #ffffff;     /* page background */
  --card: #ffffff;
  --cream: #f6f4ef;     /* alternate section band */
  --max: 1240px; --r: 0px;
  --shadow-sm: none;
  --shadow: 0 18px 44px rgba(23,25,28,.10);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, "Segoe UI", Roboto, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 15.5px/1.7 var(--sans);
  -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p { margin: 0; }
h1, h2, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: var(--ink); }
[hidden] { display: none !important; }
:focus-visible { outline: 1.5px solid var(--ink); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* section headings: a small tracked label, then a light serif title */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--red); }
.h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; margin-top: 16px; font-weight: 300; }
.h2 em { font-style: italic; font-weight: 300; }
.lead { color: var(--muted); font-size: 16px; max-width: 600px; margin-top: 18px; line-height: 1.75; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ── buttons: square, small capitals, dark ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  padding: 16px 28px; border-radius: 0; border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-red { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-red:hover { background: #000; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-light:hover { background: var(--ink); color: #fff; }
.btn-green { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.btn-green:hover { background: var(--green-deep); }
.btn:disabled { opacity: .55; cursor: wait; }

/* a text link with a thin rule under it — the One&Only "Explore" link */
.tlink {
  display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: inherit; padding-bottom: 6px; border-bottom: 1px solid currentColor;
  transition: opacity .15s ease;
}
.tlink:hover { opacity: .6; }

/* ── header ── */
.top {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}
.top .wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; height: 78px; }
/* The logo keeps its shape whatever the header is squeezed to — it is the nav
   that gives way (hidden below 900px), never the wordmark. */
.top .logo { display: flex; align-items: center; justify-content: center; flex: none; }
.top .logo img { height: 44px; width: auto; max-width: none; flex: none; }
.top .logo .lg-white { display: none; }
.top nav { display: flex; gap: 4px; min-width: 0; overflow: hidden; }
.top nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 9px; white-space: nowrap; opacity: .85;
}
.top nav a:hover { opacity: 1; }
.top .cta { display: flex; gap: 22px; align-items: center; justify-content: end; }
.top .cta .call { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 13px; white-space: nowrap; }
.top .cta .btn { padding: 12px 20px; font-size: 11px; }
/* over the hero the bar is transparent and everything in it turns white */
.top.over { background: transparent; border-color: transparent; backdrop-filter: none; }
.top.over nav a, .top.over .cta .call { color: #fff; }
.top.over .cta .btn-red { background: transparent; border-color: rgba(255,255,255,.7); }
.top.over .cta .btn-red:hover { background: #fff; color: var(--ink); }
.top.over .logo .lg-colour { display: none; }
.top.over .logo .lg-white { display: block; }
.top.over .menu-btn { border-color: rgba(255,255,255,.6); background: transparent; }
.top.over .menu-btn span, .top.over .menu-btn span::before, .top.over .menu-btn span::after { background: #fff; }
.menu-btn {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  background: transparent; cursor: pointer; place-items: center; justify-self: end;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block; width: 18px; height: 1.5px; background: var(--ink); content: ""; position: relative;
}
.menu-btn span::before { position: absolute; top: -6px; }
.menu-btn span::after { position: absolute; top: 6px; }

/* ── cards: a hairline, no shadow ── */
.card { background: var(--card); border: 1px solid var(--line); border-radius: 0; }

/* ── informational notice ── */
.notice {
  background: var(--cream); color: #4a4a4a; border: 1px solid var(--line);
  padding: 14px 18px; font-size: 14px; line-height: 1.6;
}
.notice b { color: var(--ink); }

/* ── rating line (facts only, no invented quotes) ── */
.rating { border-bottom: 1px solid var(--line); }
.rating .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px; padding: 22px 28px; font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.rating .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.rating b { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--ink); }
.rating a { color: var(--ink); }

/* ── footer ── */
footer { background: var(--cream); color: var(--ink); margin-top: 120px; border-top: 1px solid var(--line); }
footer .wrap { padding: 64px 28px 36px; display: grid; gap: 34px; grid-template-columns: 1.5fr 1fr 1fr 1fr; }
footer img { height: 44px; width: auto; max-width: none; }
footer h4 { margin: 0 0 12px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
footer p, footer a { font-size: 14px; color: var(--ink); line-height: 1.9; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .fine { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 20px; font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 22px; }
footer .fine a { font-size: 12px; color: var(--muted); text-decoration: underline; }

/* ── responsive ── */
@media (max-width: 1200px) {
  .top .cta .call { display: none; }
}
@media (max-width: 900px) {
  .top .wrap { grid-template-columns: auto 1fr auto; }
  .top nav { display: none; }
  .top .cta .call { display: none; }
  footer .wrap { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 640px) {
  .top .wrap { grid-template-columns: 1fr auto 1fr; height: 68px; }
  .top .logo img { height: 38px; }
  .top nav, .top .cta { display: none; }
  .menu-btn { display: grid; grid-column: 3; }
  .top.open { background: rgba(255,255,255,.98); border-color: var(--line); }
  .top.open nav {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 69px;
    background: var(--card); border-bottom: 1px solid var(--line); padding: 12px 18px 20px; gap: 0;
    box-shadow: var(--shadow);
  }
  .top.open nav a { padding: 13px 4px; font-size: 12px; color: var(--ink); border-bottom: 1px solid var(--line); opacity: 1; }
  .top.open nav a.nav-cta { background: var(--ink); color: #fff; text-align: center; margin-top: 12px; border: 0; padding: 15px; }
  .top.over.open .logo .lg-colour { display: block; }
  .top.over.open .logo .lg-white { display: none; }
  .top.over.open .menu-btn { border-color: var(--line-2); }
  .top.over.open .menu-btn span, .top.over.open .menu-btn span::before, .top.over.open .menu-btn span::after { background: var(--ink); }
  footer .wrap { grid-template-columns: 1fr; }
  footer { margin-top: 80px; }
}
