/* ── GOOGLE FONTS (import per page via <link> tag) ── */
/* ── TOKENS ── */
:root {
  --red: #C8102E;
  --red-dark: #9e0c23;
  --black: #080808;
  --black2: #111111;
  --black3: #1a1a1a;
  --white: #f5f2ee;
  --gray: #888;
  --border: rgba(255,255,255,0.08);
  --px: 20px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  padding-bottom: 68px;
}
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--px);
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  min-height: 60px;
}
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: none; list-style: none; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin: -8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: rgba(8,8,8,0.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.nav-drawer.open { max-height: 520px; }
.nav-drawer ul { list-style: none; padding: 16px 0 24px; }
.nav-drawer ul li a {
  display: block; padding: 14px var(--px);
  color: var(--white); text-decoration: none;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.7; border-bottom: 1px solid var(--border);
  transition: opacity 0.2s, color 0.2s;
}
.nav-drawer ul li a:hover, .nav-drawer ul li a.active { opacity: 1; color: var(--red); }
.nav-drawer .drawer-cta {
  background: var(--red); color: #fff !important;
  opacity: 1 !important; margin: 16px var(--px) 0;
  text-align: center; border-bottom: none !important;
  display: block; padding: 14px var(--px) !important;
}

/* ── FLOATING CTA BAR ── */
.float-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: flex; border-top: 1px solid var(--border);
}
.float-btn {
  flex: 1; padding: 12px 6px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  text-decoration: none; color: #fff; transition: filter 0.2s;
}
.float-btn:hover { filter: brightness(1.2); }
.float-btn.call  { background: var(--red); }
.float-btn.sms   { background: #1c1c1c; border-left: 1px solid var(--border); }
.float-btn.book  { background: var(--black2); border-left: 1px solid var(--border); }
.float-icon { font-size: 20px; line-height: 1; }
.float-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 38vh; display: flex; align-items: flex-end;
  padding: 96px var(--px) 48px;
  position: relative; overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.page-hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.18;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.85) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 11vw, 92px);
  line-height: 0.92; letter-spacing: 2px; margin-bottom: 12px;
}
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 3.5vw, 18px); font-style: italic;
  color: rgba(245,242,238,0.6); line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: #fff;
  padding: 15px 28px; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  display: inline-block; white-space: nowrap;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
  display: inline-block; white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-white {
  background: #fff; color: var(--red);
  padding: 15px 32px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: transform 0.2s, background 0.2s; font-weight: 500; white-space: nowrap;
}
.btn-white:hover { background: var(--black); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  border: 2px solid #fff; color: #fff;
  padding: 13px 28px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: background 0.2s; white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

/* ── SECTION COMMONS ── */
section { padding: 72px var(--px); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--red); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 9vw, 72px);
  line-height: 0.95; letter-spacing: 1px; margin-bottom: 14px;
}
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 3.5vw, 18px); font-style: italic;
  color: rgba(245,242,238,0.55); line-height: 1.6; max-width: 520px;
}
.divider { width: 40px; height: 2px; background: var(--red); margin: 24px 0; }

/* ── BOOK CTA BANNER ── */
.book-cta-banner {
  background: var(--red); text-align: center; padding: 72px var(--px);
  position: relative; overflow: hidden;
}
.book-cta-banner::before {
  content: 'BH'; position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 28vw, 300px);
  color: rgba(0,0,0,0.1); top: 50%; left: 50%;
  transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; letter-spacing: -4px;
}
.book-cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 80px);
  line-height: 0.95; letter-spacing: 2px; margin-bottom: 12px; position: relative; z-index: 1;
}
.book-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 3vw, 19px); font-style: italic;
  opacity: 0.85; margin-bottom: 32px; position: relative; z-index: 1;
}
.book-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 52px var(--px) 28px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 44px; width: auto; object-fit: contain; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: rgba(245,242,238,0.4); line-height: 1.6; margin-bottom: 14px; }
.footer-contact-item { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(245,242,238,0.5); margin-bottom: 8px; }
.footer-contact-item a { color: var(--red); text-decoration: none; }
.footer-contact-item a:hover { text-decoration: underline; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-col h4 { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(245,242,238,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(245,242,238,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(245,242,238,0.3); text-decoration: none; }
.footer-legal a:hover { color: var(--red); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TABLET 640px+ ── */
@media (min-width: 640px) {
  :root { --px: 32px; }
}

/* ── DESKTOP 1024px+ ── */
@media (min-width: 1024px) {
  :root { --px: 48px; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    color: var(--white); text-decoration: none;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    opacity: 0.7; transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--red); }
  .nav-phone { display: flex !important; align-items: center; gap: 6px; font-size: 13px; color: var(--white) !important; opacity: 1 !important; font-weight: 500; letter-spacing: 0.5px !important; text-transform: none !important; }
  .nav-phone:hover { color: var(--red) !important; }
  .nav-cta { background: var(--red) !important; color: #fff !important; padding: 10px 20px; opacity: 1 !important; font-size: 11px !important; letter-spacing: 2px; }
  .nav-cta:hover { background: var(--red-dark) !important; }
  .nav-hamburger { display: none; }
  .nav-drawer { display: none !important; }
  nav { min-height: auto; padding: 14px var(--px); }
  .nav-logo img { height: 50px; }
  section { padding: 100px var(--px); }
  .float-btn { flex-direction: row; padding: 18px; font-size: 13px; gap: 10px; }
  .float-icon { font-size: 16px; }
  .float-label { font-size: 13px; letter-spacing: 1.5px; }
  .footer-top { grid-template-columns: 2fr 3fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1280px) { :root { --px: 64px; } }
