/* ---------- Tokens ---------- */
:root {
  --bg: #FBF3EA;
  --bg-alt: #F1E4D3;
  --surface: #FFFFFF;
  --ink: #23201C;
  --ink-soft: #5C534B;
  --navy: #16324A;
  --navy-dark: #0E2033;
  --navy-tint: #E7EDF1;
  --amber: #C97A2E;
  --amber-light: #E9B77C;
  --line: rgba(22, 50, 74, 0.14);
  --shadow: 0 20px 50px -25px rgba(14, 32, 51, 0.35);
  --radius: 16px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-dark);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 243, 234, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 243, 234, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
}
.brand em { color: var(--amber); font-style: normal; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.main-nav a:hover { color: var(--navy); }
.main-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav .nav-cta:hover { background: var(--navy-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 1px;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 20px;
    display: none;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .main-nav .nav-cta { margin-top: 8px; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: #B36A22; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy-dark); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-media {
  margin: 0;
  position: relative;
}
.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(14, 32, 51, 0.82);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  margin: 0 0 14px;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.lede { font-size: 1.1rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-intro { max-width: 620px; font-size: 1.05rem; margin-bottom: 40px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Card grid (who it's for / winter) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.info-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.info-card p { font-size: 0.95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    135deg,
    var(--navy-tint),
    var(--navy-tint) 12px,
    #fff 12px,
    #fff 24px
  );
  border: 1px dashed var(--line);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0;
}
.gallery-photo {
  border: none;
  background: none;
}
.gallery-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-wide { grid-column: span 2; }
.gallery-label {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: rgba(14, 32, 51, 0.82);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.winter-photo {
  margin: 0 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  max-width: 520px;
}
.winter-photo img { width: 100%; display: block; }
.winter-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(14, 32, 51, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
}

/* ---------- Amenities ---------- */
.amenity-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.amenity-grid li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.amenity-grid li span { font-size: 1.2rem; }

/* ---------- Pricing ---------- */
.pricing-section {
  background: var(--navy-dark);
  text-align: center;
}
.pricing-section h2, .pricing-section p { color: #fff; }
.pricing-section .section-intro { margin: 0 auto 28px; color: var(--navy-tint); }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form { padding: 28px; }

.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--navy-dark);
}
.form-row .optional { font-weight: 400; color: var(--ink-soft); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--amber-light);
  outline-offset: 1px;
}

.error { color: #B3261E; font-size: 0.9rem; }
.note { color: var(--navy); font-size: 0.9rem; background: var(--navy-tint); padding: 10px 12px; border-radius: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
