/* HappyStay marketing site — visual parity with Google Sites */

:root {
  --color-brand-blue: #5795f6;
  --color-navy: #20284c;
  --color-navy-dark: #1a2038;
  --color-text: #1c1c1c;
  --color-muted: #5f6368;
  --color-bg: #ffffff;
  --color-bg-gray: #f1f3f4;
  --color-hero-overlay: rgba(60, 64, 67, 0.55);
  --font-sans: Roboto, Arial, Helvetica, sans-serif;
  --content-width: 960px;
  --content-wide: 1100px;
  --nav-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-brand-blue);
}

a:hover {
  text-decoration: underline;
}

/* Reusable: add to any target="_blank" link to show the new-tab icon. */
.link-new-tab {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  text-underline-offset: 0.18em;
}

.link-new-tab::after {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  flex-shrink: 0;
  translate: 0 0.08em;
  background: currentColor;
  -webkit-mask: url("/assets/images/icon-new-tab.svg") center / contain no-repeat;
  mask: url("/assets/images/icon-new-tab.svg") center / contain no-repeat;
}

/* Header — dark bar (readable on all pages; matches Sites dark overlay look) */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(32, 40, 76, 0.92);
  backdrop-filter: blur(6px);
}

.site-header--overlay {
  background: rgba(32, 40, 76, 0.72);
}

.site-header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-logo img {
  display: block;
  height: 40px;
  width: auto;
  /* Asset is white mark on black; screen blend keeps white mark on photo/blue */
  mix-blend-mode: screen;
}

.site-logo:hover {
  color: #fff;
  opacity: 0.9;
}

.site-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.site-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-nav-open .site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.site-nav a:hover,
.site-nav a.is-active {
  text-decoration: underline;
  opacity: 1;
}

/* Full-width hero */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #3c4043;
  background-size: cover;
  background-position: center;
}

.hero--home {
  min-height: 560px;
  justify-content: flex-end;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
}

.hero--home::before {
  background: linear-gradient(
    90deg,
    rgba(32, 40, 76, 0.15) 0%,
    rgba(32, 40, 76, 0.45) 45%,
    rgba(32, 40, 76, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  max-width: var(--content-width);
  padding: 64px 24px;
}

.hero__content--home {
  max-width: 520px;
  margin-right: clamp(16px, 8vw, 96px);
  margin-left: auto;
  text-align: center;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 300;
}

.hero__lead strong {
  font-weight: 700;
}

.benefit-card {
  text-align: center;
}

.benefit-card h3 {
  margin: 0 0 8px;
}

.benefit-card__img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  margin: 0 auto 16px;
  border-radius: 4px;
}

.benefit-card__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.benefit-card .phone {
  margin: 0 auto 16px;
}

.phone {
  margin: 0 auto;
  display: block;
}

.phone--lg {
  width: 240px;
}

.phone--md {
  width: 168px;
}

.phone__bezel {
  position: relative;
  background: #111318;
  border-radius: 32px;
  padding: 8px;
  overflow: hidden;
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  display: block;
  width: 28%;
  height: 8px;
  border-radius: 999px;
  background: #0b0b0d;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone__home {
  display: none;
}

.phone__screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.band--dark .phone__bezel {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.feature-grid {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  max-width: 900px;
  text-align: center;
}

.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
}

.feature-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.feature-grid span {
  font-size: 15px;
  line-height: 1.4;
  max-width: 200px;
  color: var(--color-muted);
}

.steps-3 .phone {
  margin: 0 auto 16px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px 28px;
  max-width: var(--content-wide);
  margin: 24px auto 32px;
}

.trust-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: min(220px, 100%);
  min-height: 148px;
  padding: 16px 20px;
  background: #000;
  border-radius: 4px;
  text-decoration: none;
}

.trust-logos__item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 116px;
  object-fit: contain;
}

.trust-logos__item:hover {
  opacity: 0.88;
}

/* Slim variant for the credibility strip directly under the hero. */
.trust-logos--slim {
  gap: 12px 16px;
  margin: 12px auto 0;
}

.trust-logos--slim .trust-logos__item {
  width: min(190px, 100%);
  min-height: 116px;
  padding: 14px 18px;
}

.trust-logos--slim .trust-logos__item img {
  max-height: 88px;
}

.trust-strip__label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.steps-list {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: left;
  line-height: 1.6;
}

/* How-it-works: step + phone screenshot */
.how-step {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 260px);
  gap: 40px;
  align-items: center;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.how-step--reverse {
  grid-template-columns: minmax(180px, 260px) 1fr;
}

.how-step--reverse .how-step__media {
  order: -1;
}

.how-step__text h3 {
  margin-top: 0;
  font-size: 1.35rem;
  font-weight: 500;
}

.how-step__text p {
  color: var(--color-muted);
  margin: 0 0 12px;
}

.how-step__media {
  justify-self: center;
}

.how-step__media .phone {
  width: min(240px, 100%);
}

.faq-kicker {
  text-align: center;
  margin: 0 0 32px;
}

.quote-block {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.band--center .square-list {
  display: inline-block;
  text-align: left;
  margin: 16px auto 0;
}

/* Full-width content bands */
.band {
  width: 100%;
  padding: 48px 24px;
}

.band--white {
  background: var(--color-bg);
}

.band--gray {
  background: var(--color-bg-gray);
}

.band--dark {
  background: var(--color-navy);
  color: #fff;
}

.band--dark h2,
.band--dark h3,
.band--dark p,
.band--dark li {
  color: #fff;
}

.band--center {
  text-align: center;
}

.band--tight {
  padding: 24px;
}

.band__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.band__inner.problems {
  max-width: 640px;
}

.band .problems h2 {
  text-align: left;
}

.problems-list {
  margin: 4px 0 0;
}

.problems-list li {
  padding-top: 8px;
  padding-bottom: 8px;
}

.problems-summary {
  margin: 24px 0 0;
  text-align: left;
  font-weight: 500;
}

.problems .btn-row {
  justify-content: flex-start;
}

.band__inner--wide {
  max-width: var(--content-wide);
}

.band h1 {
  font-size: 2.08rem;
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.25;
}

.band h2 {
  font-size: 2.08rem;
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.25;
  text-align: center;
}

.band h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.35;
}

.band p {
  margin: 0 0 16px;
}

.band p:last-child {
  margin-bottom: 0;
}

/* Legacy page-main wrapper (home and other pages) */
.page-main {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.page-main.page-main--flush {
  max-width: none;
  padding: 0;
}

.section {
  margin-bottom: 48px;
}

.section h2 {
  font-size: 2.08rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 16px;
}

.section h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 24px 0 12px;
}

.section--center {
  text-align: center;
}

/* Two-column split bands */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.split--reverse .split__media {
  order: 2;
}

.split--reverse .split__body {
  order: 1;
}

.split__media > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.split__media--app {
  display: flex;
  justify-content: center;
}

.split__body h2 {
  text-align: left;
  font-size: 2.08rem;
  font-weight: 400;
}

.split__body h3 {
  margin-top: 20px;
}

/* Three-column benefits (hotel / guest) */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--content-wide);
  margin: 32px auto 0;
  text-align: center;
}

.cols-3 h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.cols-3 p {
  font-size: 15px;
  line-height: 1.55;
}

/* Card rows: equal-width cards, incomplete trailing row stays centred */
.cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: var(--content-wide);
  margin: 32px auto 0;
  text-align: center;
}

.cards-row > * {
  flex: 0 1 330px;
  max-width: 100%;
}

.cards-row--wide > * {
  flex: 0 1 460px;
}

.cards-row h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.cards-row p {
  font-size: 15px;
  line-height: 1.55;
}

/* Staff-side screenshots — laptop mockups already carry their own frame */
.shots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
  max-width: var(--content-wide);
  margin: 32px auto 0;
}

.shots figure {
  flex: 0 1 480px;
  max-width: 100%;
  margin: 0;
}

.shots figcaption {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted);
}

/* Three steps with numbered images */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--content-wide);
  margin: 32px auto 0;
  text-align: center;
}

.steps-3 p {
  font-size: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-navy);
  color: #f9f9f9 !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-navy-dark);
}

/* Buttons use a 14px font, so the new-tab icon needs a larger relative size. */
.btn.link-new-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.btn.link-new-tab::after {
  width: 1.15em;
  height: 1.15em;
  translate: 0;
}

.btn--outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--color-navy) !important;
  border: 2px solid var(--color-navy);
}

.btn--ghost:hover {
  background: rgba(32, 40, 76, 0.06);
}

.btn-row {
  text-align: center;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Video — aspect-ratio (not padding-bottom %) so height follows the wrap width */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  margin: 0 auto;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Lists with square bullets (Google Sites style) */
.square-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.square-list li {
  padding: 4px 0 4px 1.25em;
  position: relative;
}

.square-list + p {
  margin-top: 16px;
}

.square-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: inherit;
}

/* Guest reviews */
.reviews {
  max-width: var(--content-width);
  margin: 0 auto;
}

.reviews blockquote {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.6;
}

.trust-logos + blockquote,
.trust-logos + .quote-block {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.trust-logos + blockquote footer,
.trust-logos + .quote-block footer {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-card {
  background: var(--color-bg);
  padding: 32px 24px;
  text-align: center;
  border-radius: 4px;
}

.contact-card h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 12px;
}

.contact-card__title--calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-card__title--calendar::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("/assets/images/icon-calendar.svg") center / contain no-repeat;
  mask: url("/assets/images/icon-calendar.svg") center / contain no-repeat;
}

.contact-card p {
  margin: 0;
}

.contact-card a {
  word-break: break-word;
}

/* Cost calculator (breakfast page) */
.calc {
  max-width: var(--content-width);
  margin: 32px auto 0;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid #e0e3e7;
  border-radius: 12px;
  text-align: left;
}

.calc h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

.calc__modes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 20px;
}

.calc__mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #d5d9de;
  border-radius: 999px;
  font-size: 14px;
  color: var(--color-muted);
  cursor: pointer;
}

.calc__mode:has(input:checked) {
  border-color: var(--color-brand-blue);
  color: var(--color-text);
  font-weight: 500;
}

.calc__mode input {
  margin: 0;
  accent-color: var(--color-brand-blue);
}

.calc__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.calc__field--wide {
  grid-column: 1 / -1;
}

.calc__field label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--color-muted);
}

.calc__field output {
  font-weight: 700;
  color: var(--color-text);
}

.calc__field input[type="range"] {
  width: 100%;
  height: 24px;
  margin: 0;
  accent-color: var(--color-brand-blue);
  cursor: pointer;
}

.calc__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #e8eaed;
  text-align: center;
}

/* Column layout keeps the values on one line even when a label wraps. */
.calc__result {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc__result dt {
  font-size: 13px;
  color: var(--color-muted);
}

.calc__result dd {
  margin: 4px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.calc__result--accent dd {
  color: var(--color-brand-blue);
}

.calc__payback {
  margin: 24px 0 0;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.calc__note {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
}

/* Slim contact line on non-contact pages */
.contact-band {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-bg-gray);
}

.contact-band h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.contact-band p {
  margin: 8px 0;
}

/* Footer */
.site-footer {
  flex-shrink: 0;
  background: var(--color-navy);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer__links {
  margin-bottom: 12px;
}

.site-footer__links a {
  color: #fff;
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer a {
  color: #fff;
}

.site-footer__copy {
  margin: 0;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 16px;
  background: rgba(26, 32, 56, 0.96);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.cookie-consent__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-consent__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__text a {
  color: #fff;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-consent__btn {
  border: 0;
  border-radius: 4px;
  padding: 10px 18px;
  font: inherit;
  cursor: pointer;
}

.cookie-consent__btn--primary {
  background: var(--color-brand-blue);
  color: #fff;
}

.cookie-consent__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.legal-copy h2 {
  margin-top: 32px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

/* FAQ and misc */
.faq-item {
  margin-bottom: 32px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e8eaed;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  margin: 20px 0 8px;
}

@media (max-width: 900px) {
  .split,
  .cols-3,
  .steps-3,
  .two-col,
  .benefits-grid,
  .feature-grid,
  .contact-cards,
  .calc__fields {
    grid-template-columns: 1fr;
  }

  .shots {
    max-width: 520px;
  }

  .calc__results {
    grid-template-columns: 1fr 1fr;
  }

  .how-step,
  .how-step--reverse {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
  }

  .how-step--reverse .how-step__media {
    order: unset;
  }

  .how-step__media {
    justify-self: stretch;
    display: flex;
    justify-content: center;
  }

  .how-step__media .phone {
    width: min(220px, 100%);
    margin: 0 auto;
  }

  .split--reverse .split__media,
  .split--reverse .split__body {
    order: unset;
  }

  .hero--home {
    justify-content: center;
    min-height: 480px;
  }

  .hero__content--home {
    margin-right: auto;
    max-width: var(--content-width);
  }

  .site-nav-toggle {
    display: flex;
  }

  #site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(32, 40, 76, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  }

  .site-header.is-nav-open #site-nav {
    display: block;
  }

  .site-nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 8px;
    font-size: 16px;
    white-space: normal;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav li:last-child a {
    border-bottom: 0;
  }

  body.has-nav-open {
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    padding: 0 16px;
  }

  .hero {
    min-height: 280px;
  }

  .band {
    padding: 32px 16px;
  }
}
