/* ============================================================
   BREEZE — COMPONENTS: buttons, header, nav, footer, chrome
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), background var(--dur), color var(--dur);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-ic { flex: none; }
.btn-block { width: 100%; }

.btn-primary { background: var(--grad-warm); color: #241205; box-shadow: 0 8px 20px rgba(252, 132, 36, 0.32); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(252, 132, 36, 0.42); color: #241205; }

.btn-outline { background: transparent; color: var(--blue-deep); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost-light:hover { background: #fff; color: var(--blue-ink); }

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

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 60; }

.topbar {
  background: var(--grad-ink);
  color: #cfe0ea;
  font-size: var(--fs-xs);
}
.topbar-in {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 6px;
}
.tb-left, .tb-right { display: inline-flex; align-items: center; gap: var(--s-2); }
.tb-right { gap: var(--s-5); }
.tb-ic { color: var(--gold); flex: none; }
.tb-phone { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.tb-phone:hover { color: var(--gold); text-decoration: none; }

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 55;
}
.navbar.is-scrolled { box-shadow: var(--shadow-sm); }
.navbar-in {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.brand { flex: none; display: block; }
.brand img { height: 56px; width: auto; }

.mainnav { display: flex; align-items: center; gap: var(--s-5); margin-left: auto; }
.nl {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 6px 2px;
}
.nl:hover, .nl[aria-current="page"] { color: var(--blue-deep); text-decoration: none; }

.has-sub { position: relative; }
.caret {
  display: inline-block; width: 7px; height: 7px; margin-left: 4px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden; transition: opacity var(--dur), transform var(--dur);
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.sub li a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink); font-size: var(--fs-sm); font-weight: 500; }
.sub li a:hover { background: var(--wash); color: var(--blue-deep); text-decoration: none; }

.nav-actions { display: flex; align-items: center; gap: var(--s-3); }
.nav-phone { display: none; align-items: center; gap: 6px; font-weight: 700; color: var(--ink); font-size: var(--fs-sm); }
.nav-phone:hover { color: var(--blue-deep); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: none; padding: 6px; cursor: pointer; color: var(--ink);
}

/* ---------- Off-canvas drawer (transform:translateX, ledger F3) ---------- */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 86vw);
  height: 100%;
  background: #fff;
  z-index: 200;
  padding: var(--s-5);
  box-shadow: var(--shadow-lg);
  transform: translateX(105%);
  transition: transform var(--dur) var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.is-open { transform: translateX(0); }
.nd-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-5); }
.nd-head img { height: 46px; width: auto; }
.nd-close { background: none; border: none; font-size: 34px; line-height: 1; color: var(--ink); cursor: pointer; }
.nd-lbl { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: 0.14em; color: var(--muted); margin: var(--s-4) 0 var(--s-2); }
.nav-drawer ul li a { display: block; padding: 11px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav-drawer ul li a:hover { color: var(--blue-deep); text-decoration: none; }
.nd-ctas { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-6); }
.nd-ctas .btn { width: 100%; }
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(6, 20, 28, 0.5); z-index: 150;
  opacity: 0; visibility: hidden; transition: opacity var(--dur);
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding-block: 14px;
}
.mq-track {
  display: flex;
  gap: var(--s-7);
  width: max-content;
  animation: mq 34s linear infinite;
}
.mq-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: #e7eef3; font-family: var(--font-display); text-transform: uppercase;
  font-weight: 600; font-size: var(--fs-sm); letter-spacing: 0.05em; white-space: nowrap;
}
.mq-ic { color: var(--gold); flex: none; }
@keyframes mq { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Footer ---------- */
.footer { background: var(--grad-ink); color: #b9c6d1; padding-top: var(--s-9); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
}
.foot-logo { background: #fff; border-radius: var(--radius-md); padding: 10px 14px; height: auto; width: auto; max-height: 84px; }
.foot-tag { margin-top: var(--s-4); color: #9fb0bd; max-width: 40ch; }
.foot-lic { display: flex; align-items: center; gap: 8px; margin-top: var(--s-4); color: #fff; font-weight: 600; font-size: var(--fs-sm); }
.foot-ic { color: var(--gold); flex: none; }
.foot-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-4); }
.foot-creds span { font-size: var(--fs-xs); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-pill); padding: 5px 12px; color: #dce6ec; }
.foot-col h4 { color: #fff; font-size: var(--fs-md); margin-bottom: var(--s-4); }
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li, .foot-cities li { font-size: var(--fs-sm); color: #a9b8c4; }
.foot-col ul li a, .foot-cities li a { color: #cdd9e2; }
.foot-col ul li a:hover { color: var(--gold); text-decoration: none; }
.foot-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #cdd9e2; font-size: var(--fs-sm); }
.foot-row:hover { color: #fff; text-decoration: none; }
.foot-cta { margin-top: var(--s-4); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--s-5);
  font-size: var(--fs-xs); color: #8397a5;
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta { display: none; }
.mobile-cta a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: var(--fs-sm);
  padding: 14px 8px; color: #fff;
}
.mobile-cta a:hover { text-decoration: none; }
.mc-ic { flex: none; }
.mc-call { background: var(--blue-ink); }
.mc-book { background: var(--grad-warm); color: #241205; }
