:root {
  --navy: #111c2e;
  --navy-soft: #1a2a42;
  --ink: #1c2734;
  --muted: #5d6671;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --gold: #d9b66f;
  --gold-light: #f1d99d;
  --teal: #41665c;
  --line: rgba(28, 39, 52, 0.16);
  --shadow: 0 24px 70px rgba(17, 28, 46, 0.15);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.6vw, 6.3rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.7vw, 4.6rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.eyebrow.light {
  color: var(--gold-light);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: -9999px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: #000;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: rgba(17, 28, 46, 0.97);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1320px, calc(100% - 56px));
  min-height: 104px;
  margin-inline: auto;
}

.brand {
  align-self: stretch;
  display: grid;
  place-items: center;
}

.brand img {
  width: 88px;
  height: 92px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 0.89rem;
  font-weight: 700;
}

.main-nav a,
.nav-links a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.main-nav .nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-light);
}

.nav-links {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(790px, calc(100vh - 104px));
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 48%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 29, 0.9) 0%, rgba(10, 19, 33, 0.74) 48%, rgba(10, 19, 33, 0.24) 82%),
    linear-gradient(0deg, rgba(8, 16, 29, 0.48), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-block: 90px;
}

.hero-body {
  max-width: 760px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.89);
  font-size: clamp(1.1rem, 1.7vw, 1.37rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #142034;
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-light);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(17, 28, 46, 0.28);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: rgba(17, 28, 46, 0.52);
}

.hero-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
}

.fact-bar {
  color: #fff;
  background: var(--teal);
}

.fact-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 86px;
}

.fact-bar span {
  display: grid;
  place-items: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.83rem;
  font-weight: 800;
  text-align: center;
}

.fact-bar span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

.intro-copy > p {
  margin-top: 42px;
  color: var(--muted);
  font-size: 1.12rem;
}

.wifi-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 30px;
  padding: 22px;
  border-left: 3px solid var(--gold);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.wifi-note strong {
  color: var(--gold-light);
}

.wifi-note span {
  font-size: 0.9rem;
  line-height: 1.55;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 74px;
  background: rgba(28, 39, 52, 0.13);
  box-shadow: var(--shadow);
}

.benefit-card {
  min-height: 290px;
  padding: 36px;
  background: var(--paper);
}

.benefit-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.benefit-card h3 {
  font-size: 1.55rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 34px;
  text-align: center;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.property-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 55px rgba(17, 28, 46, 0.09);
}

.property-card > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.property-copy {
  padding: 42px;
}

.property-label {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-copy > p:not(.property-label) {
  color: var(--muted);
}

.property-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.property-facts li {
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line);
  color: #384454;
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.comparison {
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(217, 182, 111, 0.09), transparent 33%),
    var(--navy);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.comparison-grid > div > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.73);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 0 17px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-light);
  content: "✓";
}

.gallery {
  padding-bottom: 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.gallery-grid img {
  width: 100%;
  height: clamp(270px, 29vw, 460px);
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(17, 28, 46, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recurring {
  background: var(--cream);
}

.recurring-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: center;
  padding: clamp(42px, 6vw, 84px);
  color: #fff;
  background: var(--teal);
  box-shadow: var(--shadow);
}

.recurring-panel p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.recurring-action {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.recurring-action small {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
}

.location-photo {
  position: relative;
  padding: 0 0 34px 34px;
}

.location-photo::before {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 0;
  height: 74%;
  background: var(--gold);
  content: "";
}

.location-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.location-grid p:not(.eyebrow) {
  color: var(--muted);
}

.location-grid address,
.site-footer address {
  margin: 26px 0;
  font-style: normal;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 10px;
  color: var(--teal);
  content: "+";
  font-family: Inter, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 730px;
  padding: 0 52px 24px 0;
  color: var(--muted);
}

.enquiry {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 182, 111, 0.06), transparent 36%),
    var(--navy);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.enquiry-intro {
  position: sticky;
  top: 140px;
}

.enquiry-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.direct-contact h3 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.direct-contact a {
  color: var(--gold-light);
  overflow-wrap: anywhere;
  font-weight: 700;
}

.corporate-form {
  padding: clamp(28px, 4vw, 54px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.corporate-form fieldset {
  margin: 0 0 38px;
  padding: 0;
  border: 0;
}

.corporate-form legend {
  width: 100%;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.field {
  display: grid;
  gap: 7px;
  align-content: start;
}

.field > span,
.check-field > span {
  font-size: 0.82rem;
  font-weight: 800;
}

.field em {
  color: #a42c32;
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #adb4bd;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(65, 102, 92, 0.22);
  outline-offset: 0;
}

.field [aria-invalid="true"] {
  border-color: #b02f36;
  background: #fff8f8;
}

.span-2 {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1.2em;
  color: #9e252c;
  font-size: 0.76rem;
  line-height: 1.35;
}

.check-field,
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-field {
  align-self: end;
  min-height: 48px;
  padding: 13px 0;
}

.check-field input,
.consent-field input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.consent-field {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.consent-field a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-error {
  display: block;
  margin-left: 30px;
}

.form-note {
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid var(--teal);
  color: #17372f;
  background: #e9f6f0;
  font-weight: 700;
}

.form-status.is-error {
  border-left-color: #a42c32;
  color: #6f1f24;
  background: #fff0f0;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.75);
  background: #0b1321;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 70px;
}

.footer-grid > div:first-child img {
  width: 92px;
  height: 112px;
  object-fit: contain;
}

.footer-grid p,
.footer-grid address {
  margin: 14px 0;
  font-size: 0.84rem;
}

.footer-grid strong {
  color: #fff;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  color: var(--gold-light);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.72rem;
}

.mobile-cta {
  display: none;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  color: #fff;
  background: var(--navy);
  text-align: center;
}

.error-page main {
  display: grid;
  justify-items: center;
}

.error-page h1 {
  margin-top: 24px;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 18px;
    width: calc(100% - 36px);
  }

  .brand img {
    width: 76px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.8rem;
  }

  .nav-links {
    font-size: 0.69rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-card > img {
    height: 310px;
  }

  .enquiry-grid {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-shell {
    grid-template-columns: 80px 1fr auto;
    min-height: 88px;
  }

  .brand img {
    width: 70px;
    height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    color: var(--gold-light);
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 800;
  }

  .main-nav {
    position: absolute;
    top: 88px;
    right: 18px;
    display: none;
    width: min(330px, calc(100vw - 36px));
    padding: 16px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .nav-links {
    grid-row: 1;
    grid-column: 2;
    justify-self: start;
    justify-items: start;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-block: 74px;
  }

  .fact-bar .container {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact-bar span:nth-child(4),
  .fact-bar span:nth-child(5) {
    grid-column: span 1;
  }

  .intro-grid,
  .comparison-grid,
  .location-grid,
  .faq-grid,
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .intro-copy > p {
    margin-top: 0;
  }

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

  .property-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .property-card > img {
    height: 100%;
    min-height: 480px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recurring-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .recurring-action {
    justify-items: start;
  }

  .enquiry-intro {
    position: static;
  }

  .direct-contact {
    margin-top: 34px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 68px 0;
  }

  .nav-shell {
    grid-template-columns: 68px 1fr auto;
    gap: 10px;
    width: calc(100% - 24px);
  }

  .brand img {
    width: 64px;
  }

  .nav-links {
    gap: 0;
    font-size: 0.63rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 16, 29, 0.93), rgba(8, 16, 29, 0.6));
  }

  .hero-content {
    align-self: end;
    padding-block: 70px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .fact-bar .container {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .fact-bar span {
    min-height: 70px;
    padding: 14px 10px;
  }

  .fact-bar span:last-child {
    grid-column: 1 / -1;
  }

  .wifi-note {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .benefit-card {
    min-height: auto;
    padding: 30px;
  }

  .benefit-card > span {
    margin-bottom: 24px;
  }

  .property-card {
    display: block;
  }

  .property-card > img {
    height: 290px;
    min-height: 0;
  }

  .property-copy {
    padding: 30px 24px;
  }

  .property-facts {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid img {
    height: 310px;
  }

  .recurring-panel {
    width: calc(100% - 24px);
    padding: 34px 24px;
  }

  .location-photo {
    padding: 0 0 20px 20px;
  }

  .faq-list summary {
    padding-right: 38px;
    font-size: 1.15rem;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .corporate-form {
    margin-inline: -4px;
    padding: 28px 20px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: block;
    padding: 8px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(17, 28, 46, 0.98);
  }

  .mobile-cta a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--gold);
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .nav-links a:last-child {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .eyebrow {
    font-size: 0.69rem;
  }

  .gallery-grid img {
    height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .mobile-cta,
  .form-submit {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 28px 0;
  }
}
