/* ─────────────────────────────────────────
   THE COSY ROAD — Shared Styles
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --dusk:       #1C4158;
  --midnight:   #0D1B26;
  --terracotta: #C85A2C;
  --ember:      #E08C5A;
  --mist:       #EAF0F5;
  --fog:        #6A8FA0;
  --white:      #FAFAF8;
  --ink:        #0F2530;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--mist);
  color: var(--ink);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--midnight);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo-wm {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-rule {
  width: 1px;
  height: 18px;
  background: rgba(200, 90, 44, 0.5);
}

.nav-logo-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links .nav-cta a {
  color: var(--terracotta);
  border: 1px solid rgba(200, 90, 44, 0.4);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-links .nav-cta a:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.nav-links .nav-book a {
  background: var(--terracotta);
  color: var(--white);
  border: 1px solid var(--terracotta);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-links .nav-book a:hover {
  background: #b5491e;
  border-color: #b5491e;
  color: var(--white);
}

/* ─── NAV DROPDOWN ─── */
.nav-has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--midnight);
  border: 0.5px solid rgba(255,255,255,0.08);
  min-width: 220px;
  list-style: none;
  padding: 12px 0 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--fog) !important;
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown li a:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.04);
}

.nav-dropdown li + li {
  border-top: 0.5px solid rgba(255,255,255,0.05);
}

/* ─── MOBILE NAV SUBMENU ─── */
.nav-mobile-group { display: flex; flex-direction: column; }

.nav-mobile-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mobile-group-header a { flex: 1; }

.nav-mobile-expand {
  background: none;
  border: none;
  color: var(--fog);
  cursor: pointer;
  padding: 0 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nav-mobile-expand.open { transform: rotate(180deg); }

.nav-mobile-sub {
  display: none;
  flex-direction: column;
  margin: 0 20px 8px 20px;
  border-left: 0.5px solid rgba(255,255,255,0.1);
  padding-left: 16px;
}

.nav-mobile-sub.open { display: flex; }

.nav-mobile-sub a {
  font-size: 13px !important;
  padding: 9px 0 !important;
  color: var(--fog) !important;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  text-transform: none !important;
  letter-spacing: 0.04em !important;
}

.nav-mobile-sub a:last-child { border-bottom: none; }

/* ─── PAGE OFFSET (for fixed nav) ─── */
.page-top { padding-top: 68px; }

/* ─── INNER PAGE HERO ─── */
.inner-hero {
  background: var(--midnight);
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 72px;
  position: relative;
  overflow: hidden;
}

.inner-hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0D1B26 0%, #1C4158 60%, #0D1B26 100%);
}

.inner-hero-glow {
  position: absolute;
  bottom: -80px;
  right: 100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,90,44,0.14) 0%, transparent 70%);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-hero-eyebrow {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 20px;
}

.inner-hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: 60px;
  font-weight: 100;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 20px;
}

.inner-hero-title em {
  font-family: 'Cormorant', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 68px;
  font-weight: 300;
}

.inner-hero-sub {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--fog);
  letter-spacing: 0.03em;
  max-width: 480px;
}

.tc-rule {
  height: 3px;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.section { padding: 96px 80px; }
.s-mist     { background: var(--mist); }
.s-white    { background: var(--white); }
.s-dusk     { background: var(--dusk); }
.s-midnight { background: var(--midnight); }

.eyebrow {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 56px;
}

.eyebrow.dim { color: rgba(200,90,44,0.75); }

.section-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 42px;
  font-weight: 200;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-heading.light { color: var(--white); }

.section-heading em {
  font-family: 'Cormorant', serif;
  font-style: italic;
  color: var(--terracotta);
  font-size: 48px;
  font-weight: 300;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: #3A5060;
  line-height: 1.9;
  max-width: 560px;
}

.section-body.light { color: var(--fog); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ember);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(15,37,48,0.3);
}

.btn-ghost-dark:hover {
  border-color: var(--ink);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--midnight);
  border-top: 3px solid var(--terracotta);
  padding: 56px 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand .footer-wm {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand .footer-tagline {
  font-family: 'Cormorant', serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--fog);
  letter-spacing: 0.03em;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col h4 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col ul a {
  font-size: 13px;
  font-weight: 300;
  color: var(--fog);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-nav-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 0.5px solid #172D3C;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1E3848;
}

/* ─── UTILITY ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.divider {
  height: 0.5px;
  background: rgba(212,220,226,0.6);
  margin: 0;
}

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fog);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--white);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--white);
}

/* ─── MOBILE MENU ─── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--midnight);
  border-top: 0.5px solid rgba(200,90,44,0.25);
  z-index: 999;
  flex-direction: column;
  padding: 16px 0 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  padding: 16px 32px;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.nav-mobile .nav-mobile-cta {
  margin: 16px 32px 8px;
  padding: 14px 20px;
  border: 1px solid rgba(200,90,44,0.4);
  border-radius: 2px;
  color: var(--terracotta);
  text-align: center;
  letter-spacing: 0.26em;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(200,90,44,0.4);
}

.nav-mobile .nav-mobile-cta:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.nav-mobile .nav-mobile-book {
  margin: 4px 32px 0;
  padding: 14px 20px;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.26em;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid var(--terracotta);
}

.nav-mobile .nav-mobile-book:hover {
  background: #b5491e;
  border-color: #b5491e;
}

/* ─── RESPONSIVE (basic) ─── */
@media (max-width: 900px) {
  .nav { padding: 0 28px; }
  .inner-hero { padding: 0 28px 56px; }
  .inner-hero-title { font-size: 40px; }
  .section { padding: 64px 28px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 48px 28px; }
  .footer-inner { flex-direction: column; gap: 48px; }
  .footer-nav { flex-wrap: wrap; gap: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
