:root {
  --red: #e2003c;
  --black: #000000;
  --ink: #3a3a3a;
  --muted: #4b4f58;
  --gray: #8a8a8a;
  --band: #7a7a7a;
  --light: #f5f5f5;
  --footer: #1a1a1a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.49;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, h4, .logo-name, .hero-line, .section-heading {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-weight: 700;
}
h1 { font-size: 64px; line-height: 1.4; }
h2, .section-heading { font-size: 32px; line-height: 1.3; }
h3 { font-size: 24px; line-height: 1.3; }

/* Header — matches aboveav.com */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  color: #fff;
}
.header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.logo-mark {
  width: auto;
  height: 52px;
  display: block;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.logo-sub {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.main-nav a:hover { color: var(--red); }
.btn-connect:hover { background: #fff; color: #000; }
.btn-connect {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 8px 22px !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  width: 44px;
  height: 44px;
  line-height: 1;
  cursor: pointer;
}

/* Page title band */
.page-title {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px 20px 56px;
}
.page-title h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.page-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.75;
}
.page-links a:hover { opacity: 1; color: var(--red); }

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #111;
  overflow: hidden;
}
.hero img {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.45);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .hero img {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }
}
.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}
.hero-line {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 22px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-red:hover { background: #c10034; }

/* Quote — homepage pattern */
.quote-band {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}
.quote-band p {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Noto Sans", sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
}
.red-italic {
  color: var(--red);
  font-style: italic;
  font-family: "Noto Sans", sans-serif;
}
.quote-attr {
  margin-top: 12px !important;
  color: var(--red);
  font-style: italic;
  font-size: 1rem !important;
}

/* Stats — About page pattern */
.stats {
  background: var(--light);
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 64px 20px;
  text-align: center;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: #444;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Gray mission band — About page */
.mission-band {
  background: var(--band);
  color: #fff;
  padding: 72px 24px;
}
.narrow { max-width: 720px; margin: 0 auto; }
.mission-band h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}
.red-rule {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--red);
  margin-bottom: 22px;
}
.mission-band p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  max-width: 36em;
}

.section-heading {
  margin: 0 0 8px;
}
.intro {
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 62ch;
}
.room-plan-link {
  margin: 0 0 28px;
}

/* Rooms */
.rooms { padding: 64px 0 24px; }
.room-feature {
  display: block;
  background: #fff;
  margin-bottom: 32px;
}
.room-feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.room-copy { padding: 22px 4px 8px; }
.room-copy h3, .room-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.meta { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.cap-row {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0;
  font-size: 13px;
  color: var(--muted);
}
.cap-row b { display: block; color: var(--ink); font-size: 20px; font-family: Montserrat, sans-serif; }
.note {
  font-size: 14px;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-top: 10px;
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.room-card { background: #fff; }
.room-card img { width: 100%; height: 220px; object-fit: cover; }
.room-card > div { padding: 18px 4px 8px; }
.caps-inline { font-size: 13px; color: var(--muted); margin: 8px 0; }

/* Table */
.table-band { padding: 20px 0 64px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th, td { text-align: left; padding: 12px 10px; border-bottom: 1px solid #e6e6e6; }
th {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Services — 4-col red icons */
.services { padding: 20px 0 64px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  margin-top: 28px;
}
.svc-grid h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 8px;
}
.svc-grid p { font-size: 14.5px; color: var(--muted); }
.icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.brands {
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Eight items */
.eight {
  background: var(--light);
  padding: 64px 0;
}
.eight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  margin-top: 28px;
}
.eight-grid img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 12px;
}
.eight-grid h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.eight-grid p { font-size: 14.5px; color: var(--muted); }

.covered { padding: 64px 0; background: #fff; }
.covered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.covered-grid h3 { margin-bottom: 10px; }
.covered-grid p { color: var(--muted); margin-bottom: 14px; }
.text-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}
.text-link:hover { text-decoration: underline; }
.partner-line {
  margin-top: 36px;
  font-size: 16px;
}
.partner-line a { color: var(--red); font-weight: 700; text-decoration: none; }

/* Connect */
.connect-band { padding: 72px 0; }
.connect-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.connect-band h2 { font-size: 32px; font-weight: 600; }
.connect-band > .wrap > div > p { margin-bottom: 20px; color: var(--muted); }
.contact-facts { list-style: none; }
.contact-facts li { padding: 8px 0; }
.contact-facts span {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.contact-facts a { color: var(--red); text-decoration: none; }
.intake { display: grid; gap: 14px; }
.intake label {
  display: grid;
  gap: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.intake input, .intake select, .intake textarea {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid #ccc;
  color: var(--ink);
}
.form-note { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Footer — matches aboveav.com */
.site-footer {
  background: var(--footer);
  color: #ddd;
  text-align: center;
  padding: 36px 20px 28px;
  font-size: 14px;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.site-footer nav a { text-decoration: none; color: #fff; font-size: 14px; }
.site-footer .social {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 4px 0 16px;
}
.site-footer .social a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.site-footer .social a:hover { color: var(--red); }
.site-footer .fine {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* ========== Desktop monitors (≥1200) ========== */
@media screen and (min-width: 1200px) {
  .header-inner { width: min(1200px, calc(100% - 64px)); }
  .hero { min-height: 560px; }
}

/* ========== iPad / small laptop (768–1199) ========== */
@media screen and (max-width: 1199px) {
  h1 { font-size: 48px; }
  h2, .section-heading, .mission-band h2, .connect-band h2 { font-size: 28px; }
  .wrap { width: min(1120px, calc(100% - 48px)); }
  .header-inner { width: min(1200px, calc(100% - 32px)); min-height: 84px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 14px; }
  .hero { min-height: 440px; }
  .svc-grid, .eight-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { gap: 48px; padding: 48px 20px; }
  .stat strong { font-size: 44px; }
  .room-copy { padding: 20px 4px 8px; }
}

/* iPad portrait and below: hamburger + stacked feature room */
@media screen and (max-width: 1023px) {
  .nav-toggle { display: block; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 20px;
    gap: 0;
    z-index: 30;
    border-top: 1px solid #222;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    font-size: 16px;
    padding: 14px 8px;
    border-bottom: 1px solid #222;
  }
  .btn-connect {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-self: flex-start;
  }
  .room-feature img { height: 280px; }
  .connect-inner, .covered-grid { grid-template-columns: 1fr; }
  .page-title { padding: 8px 16px 36px; }
}

/* ========== Phones (≤767) ========== */
@media screen and (max-width: 767px) {
  body { font-size: 15px; }
  h1 { font-size: 32px; }
  h2, .section-heading, .mission-band h2, .connect-band h2 { font-size: 24px; }
  h3, .room-copy h3, .room-card h3 { font-size: 20px; }
  .wrap, .header-inner { width: calc(100% - 28px); }
  .logo-mark { height: 40px; }
  .logo-name { font-size: 17px; }
  .logo-sub { font-size: 12px; }
  .header-inner { min-height: 72px; }
  .page-title { padding: 4px 12px 28px; }
  .page-links { gap: 14px; }
  .page-links a { font-size: 13px; }
  .hero { min-height: 360px; }
  .hero-overlay { padding: 48px 16px; }
  .hero-line { font-size: 22px; }
  .quote-band { padding: 36px 18px; }
  .stats {
    flex-direction: column;
    gap: 28px;
    padding: 36px 16px;
  }
  .stat strong { font-size: 40px; }
  .mission-band { padding: 40px 18px; }
  .mission-band p { font-size: 16px; }
  .rooms, .table-band, .services, .eight, .covered, .connect-band {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .room-grid,
  .svc-grid,
  .eight-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .room-card img { height: 200px; }
  .room-feature img { height: 220px; }
  .room-copy { padding: 18px 0 8px; }
  .cap-row { gap: 14px; }
  table { font-size: 13px; min-width: 640px; }
  th, td { padding: 10px 8px; }
  .eight-grid img { width: 48px; height: 48px; }
  .site-footer nav { gap: 14px 18px; }
  .site-footer { padding: 28px 16px 24px; }
}

/* Narrow phones */
@media screen and (max-width: 390px) {
  .logo-name { font-size: 15px; }
  .page-title h1 { font-size: 1.7rem; }
  .hero { min-height: 320px; }
}

@media print {
  @page { size: 1080pt 4940pt; margin: 0; }
  .nav-toggle { display: none !important; }
  .site-header { position: static !important; }
  * {
    break-inside: auto !important;
    page-break-inside: auto !important;
    break-before: auto !important;
    page-break-before: auto !important;
    break-after: auto !important;
    page-break-after: auto !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  a { text-decoration: none; }
}
