@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/eb-garamond-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/eb-garamond-latin-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --deep-marine: #132f46;
  --marine-blue: #1b6e8c;
  --wake-blue: #54a6b8;
  --signal-orange: #ee7832;
  --sun-yellow: #f3c74b;
  --sailcloth: #f7f0e2;
  --ink: #132f46;
  --muted-ink: #506a77;
  --rule: #a8bbc0;
  --font-title: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --content-width: 1280px;
  --header-height: 110px;
  --home-primary-rail: 41.6667%;
  --home-secondary-rail: 58.3333%;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(4rem, 8vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--sailcloth);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body[data-navigation-open] {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.08em;
}

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

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

:focus-visible {
  outline: 3px solid var(--sun-yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--sun-yellow);
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, auto) 1fr 148px;
  min-height: var(--header-height);
  border-top: 8px solid var(--wake-blue);
  border-bottom: 1px solid color-mix(in srgb, var(--deep-marine), transparent 78%);
  background: var(--sailcloth);
}

.header-weather {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.4rem clamp(0.75rem, 2vw, 1.5rem);
  border-left: 1px solid color-mix(in srgb, var(--deep-marine), transparent 82%);
  white-space: nowrap;
}

.weather-widget {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 0.4rem;
}

.weather-place {
  color: var(--muted-ink);
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.weather-readout {
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.header-weather-note {
  margin: 0;
  color: var(--muted-ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: italic;
  line-height: 1.2;
}

.site-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem var(--gutter);
  text-decoration: none;
}

.site-brand-logo {
  display: block;
  width: clamp(10.75rem, 16vw, 12.5rem);
  max-height: 88px;
  object-fit: contain;
}

.site-navigation {
  align-self: stretch;
}

.site-navigation ul {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.1vw, 2rem);
  margin: 0;
  padding: 0 2rem;
  list-style: none;
}

.site-navigation a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal-orange);
  content: '';
  transition: transform 160ms ease;
}

.site-navigation a:hover::after,
.site-navigation a[aria-current='page']::after {
  transform: scaleX(1);
}

.header-inquire {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  background: var(--sun-yellow);
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-inquire:hover {
  background: var(--signal-orange);
}

.nav-toggle {
  display: none;
}

.main-content {
  overflow: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0.014em;
  line-height: 0.98;
  text-wrap: balance;
  text-transform: uppercase;
}

p {
  margin-top: 0;
}

.eyebrow,
.section-label,
.footer-label,
.footer-kicker {
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-action,
.text-action {
  display: inline-flex;
  min-height: 48px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 0;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-action {
  padding: 0.85rem 1.15rem;
  background: var(--signal-orange);
  color: var(--deep-marine);
  box-shadow: 8px 8px 0 var(--sun-yellow);
}

.primary-action:hover {
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0 var(--sun-yellow);
}

.text-action {
  min-height: 40px;
  border-bottom: 3px solid var(--sun-yellow);
}

.text-action-light {
  color: var(--sailcloth);
}

.home-hero,
.home-rates,
.home-experience,
.home-about,
.home-faq {
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
}

.home-hero {
  display: grid;
  min-height: min(720px, calc(100vh - var(--header-height)));
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 7rem) var(--gutter);
  background: var(--marine-blue);
  color: var(--sailcloth);
}

.home-hero-copy .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--sun-yellow);
}

.home-hero-copy h1 {
  max-width: 7ch;
  margin-bottom: 1.75rem;
  font-size: clamp(4.4rem, 8vw, 8rem);
  line-height: 0.96;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 30rem;
  margin-bottom: 2rem;
  color: #e7eeec;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.home-hero-image {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--deep-marine);
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-image picture,
.experience-image picture,
.home-about-image picture,
.gallery-preview picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 150px;
  min-height: 130px;
  align-items: flex-end;
  padding: 1.25rem;
  background: var(--wake-blue);
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-notice {
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter);
  background: var(--sun-yellow);
  color: var(--deep-marine);
  border-top: 5px solid var(--signal-orange);
  border-bottom: 5px solid var(--signal-orange);
}

.home-notice-inner {
  max-width: 62rem;
  margin: 0 auto;
}

.notice-body {
  max-width: 54ch;
  margin: 0 auto;
  text-align: center;
}

.notice-body h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.05;
}

.notice-body p {
  margin: 0 0 0.75rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.45;
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.1rem;
}

.notice-actions .primary-action {
  background: var(--deep-marine);
  color: var(--sailcloth);
  box-shadow: 8px 8px 0 var(--signal-orange);
}

.notice-actions .primary-action:hover {
  box-shadow: 6px 6px 0 var(--signal-orange);
}

.notice-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-marine);
  border: 3px solid var(--deep-marine);
}

.notice-email:hover {
  background: var(--deep-marine);
  color: var(--sun-yellow);
}

.site-footer {
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.footer-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr 0.75fr;
  gap: 2rem;
  align-items: end;
  padding: clamp(3rem, 7vw, 6.5rem) var(--gutter);
  border-bottom: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
}

.footer-kicker {
  margin: 0;
  color: var(--wake-blue);
}

.footer-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: 0.014em;
  line-height: 0.98;
  text-transform: uppercase;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
}

.footer-details > div {
  min-width: 0;
  padding: 2rem var(--gutter);
  border-right: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
}

.footer-details > div:last-child {
  border-right: 0;
}

.footer-details p,
.footer-details address {
  margin: 0;
  font-style: normal;
}

.footer-details a {
  overflow-wrap: anywhere;
}

.footer-label {
  margin-bottom: 0.65rem !important;
  color: var(--sun-yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem var(--gutter);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* The note sits on its own line beneath the weather chip. It still needs room
   beside the nav; below this width it would overlap the navigation, so show
   just the compact weather chip instead. */
@media (max-width: 1200px) {
  .header-weather-note {
    display: none;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: minmax(150px, auto) minmax(0, 1fr) 74px 126px;
  }

  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-left: 1px solid color-mix(in srgb, var(--deep-marine), transparent 78%);
    background: var(--sailcloth);
    color: var(--deep-marine);
    cursor: pointer;
  }

  .nav-toggle-line {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded='true'] .nav-toggle-line:first-of-type {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] .nav-toggle-line:last-of-type {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-navigation {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: var(--deep-marine);
  }

  .site-navigation[data-open] {
    display: block;
  }

  .site-navigation ul {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem var(--gutter);
  }

  .site-navigation li {
    border-bottom: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
  }

  .site-navigation a {
    min-height: 62px;
    color: var(--sailcloth);
    font-size: 1rem;
  }

  .site-navigation a::after {
    display: none;
  }

  .home-hero-copy h1 {
    font-size: clamp(4rem, 8vw, 6.5rem);
  }

  .footer-intro {
    grid-template-columns: 1fr 2fr;
  }

  .footer-intro .text-action {
    grid-column: 2;
  }

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

  .footer-details > div:nth-child(2) {
    border-right: 0;
  }

  .footer-details > div:nth-child(-n + 2) {
    border-bottom: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr 68px;
  }

  .header-weather {
    display: none;
  }

  .site-brand {
    padding-left: 1.25rem;
    justify-content: flex-start;
  }

  .site-brand-logo {
    width: 10.5rem;
    max-height: 84px;
  }

  .header-inquire {
    display: none;
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    min-height: 500px;
    padding: 4rem 1.25rem;
  }

  .home-hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .home-hero-image {
    min-height: 380px;
  }

  .footer-intro {
    grid-template-columns: 1fr;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .footer-intro .text-action {
    grid-column: auto;
  }

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

  .footer-details > div {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

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

/* Shared page structure */

.page-masthead {
  display: grid;
  min-height: 390px;
  align-content: end;
  padding: var(--section-space) var(--gutter) clamp(3rem, 6vw, 5rem);
  background: var(--marine-blue);
  color: var(--sailcloth);
}

.page-masthead .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--sun-yellow);
}

.page-masthead h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
}

.page-masthead > p:last-child {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-space) var(--gutter);
}

.content-section h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

/* Rate ledger */

.rates-ledger {
  background: var(--sailcloth);
  color: var(--deep-marine);
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 86px;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--rule);
}

.rate-row > div {
  display: grid;
  gap: 0.3rem;
}

.rate-label {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.15;
  text-transform: uppercase;
}

.rate-detail {
  color: var(--muted-ink);
  font-size: 0.94rem;
  line-height: 1.2;
}

.rate-row strong {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
}

.inquiry-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  min-height: 82px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem clamp(1.25rem, 3vw, 2.5rem);
  background: var(--sun-yellow);
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.inquiry-bar span:last-child {
  font-size: 1.9rem;
  transition: transform 160ms ease;
}

.inquiry-bar:hover {
  background: var(--signal-orange);
}

.inquiry-bar:hover span:last-child {
  transform: translateX(5px);
}

/* Homepage */

.home-rates {
  display: grid;
  background: var(--deep-marine);
}

.home-rates-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) var(--gutter);
  background: var(--wake-blue);
  color: var(--deep-marine);
}

.home-rates-intro .section-label {
  margin-bottom: 1.25rem;
}

.home-rates-intro h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.home-rates-intro p:last-child {
  margin-bottom: 0;
}

.rates-ledger-home {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.rates-ledger-home .rate-row {
  min-height: 116px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  padding: 1.5rem clamp(1.5rem, 3vw, 3rem);
  border-right: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
}

.rates-ledger-home .rate-detail {
  color: #bdced2;
}

.rates-ledger-home .rate-row strong {
  color: var(--sun-yellow);
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.rates-ledger-home .inquiry-bar {
  grid-column: auto;
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  letter-spacing: 0.06em;
}

.home-experience {
  display: grid;
  min-height: 680px;
}

.experience-image {
  position: relative;
  min-height: 580px;
  margin: 0;
  background: var(--deep-marine);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-image figcaption,
.home-about-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem;
  background: var(--signal-orange);
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
}

.experience-copy .section-label,
.home-gallery-heading .section-label,
.home-faq-heading .section-label,
.home-final-cta .section-label {
  margin-bottom: 1.35rem;
  color: var(--signal-orange);
}

.experience-copy h2,
.home-gallery-heading h2,
.home-faq-heading h2,
.home-final-cta h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
}

.experience-copy > p:not(.section-label) {
  max-width: 37rem;
  font-size: 1.22rem;
}

.editorial-list {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}

.editorial-list li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.65rem;
}

.editorial-list li::before {
  color: var(--signal-orange);
  content: '-';
  font-family: var(--font-title);
  font-weight: 600;
}

.experience-note {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  background: var(--signal-orange);
  color: var(--deep-marine);
}

.experience-note .section-label {
  margin-bottom: 1.1rem;
}

.experience-note h2 {
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
}

.experience-note > p {
  margin: 0;
  font-size: 1.2rem;
}

.dark-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  background: var(--deep-marine);
  color: var(--sailcloth);
  font-family: var(--font-title);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.dark-action:hover {
  background: var(--marine-blue);
}

.home-about {
  display: grid;
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.home-about-copy {
  padding: var(--section-space) var(--gutter);
}

.home-about-copy .section-label {
  margin-bottom: 1.4rem;
  color: var(--wake-blue);
}

.home-about-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.home-about-copy p:not(.section-label) {
  max-width: 47rem;
  color: #dce6e7;
}

.home-about-image {
  position: relative;
  min-height: 680px;
  margin: 0;
}

.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
}

.home-gallery-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
  background: var(--sun-yellow);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  background: var(--sailcloth);
}

.gallery-preview {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--deep-marine);
}

.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-preview:hover img {
  transform: scale(1.02);
}

.home-review {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: var(--section-space) var(--gutter);
  background: var(--marine-blue);
  color: var(--sailcloth);
}

.home-review .section-label {
  margin-bottom: 1.2rem;
  color: var(--sun-yellow);
}

.home-review h2 {
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
}

.home-review figure {
  margin: 0;
}

.home-review blockquote {
  margin: 0 0 1.5rem;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1.25;
}

.home-review figcaption {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-faq {
  display: grid;
}

.home-faq-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
  background: var(--wake-blue);
}

.home-faq-heading h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.home-faq-list {
  padding: clamp(2.2rem, 5vw, 5rem) var(--gutter);
}

.home-faq-list details {
  border-bottom: 1px solid var(--rule);
}

.home-faq-list summary {
  display: grid;
  grid-template-columns: 3rem 1fr;
  min-height: 76px;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

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

.home-faq-list summary span {
  color: var(--signal-orange);
  font-size: 0.72rem;
  font-weight: 600;
}

.home-faq-list details p {
  padding-left: 3rem;
}

.home-final-cta {
  padding: var(--section-space) var(--gutter);
  background: var(--sailcloth);
}

.home-final-cta h2 {
  max-width: 10ch;
}

.home-final-cta > p:not(.section-label) {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

/* Rates and requirements */

.rates-masthead {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
  min-height: 560px;
}

.rates-masthead-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-space) var(--gutter);
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.rates-masthead-copy .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--sun-yellow);
}

.rates-masthead-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 5.5vw, 6.25rem);
}

.rates-masthead-copy > p:last-child {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
}

.rates-masthead-image {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--deep-marine);
}

.rates-masthead-image picture,
.rates-masthead-image img {
  width: 100%;
  height: 100%;
}

.rates-masthead-image img {
  object-fit: cover;
}

.rates-pricing,
.requirements-section {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
}

.rates-pricing-intro,
.requirements-heading,
.requirements-copy {
  padding: var(--section-space) var(--gutter);
  background: var(--sailcloth);
}

.rates-pricing-intro .section-label {
  margin-bottom: 1.2rem;
  color: var(--signal-orange);
}

.rates-pricing-intro h2,
.requirements-heading h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
}

.rates-ledger-page {
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.rates-ledger-page .rate-row {
  min-height: 116px;
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  border-bottom-color: rgb(247 240 226 / 18%);
}

.rates-ledger-page .rate-detail {
  color: #bdced2;
}

.rates-ledger-page .rate-row strong {
  color: var(--sun-yellow);
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.rates-ledger-page .inquiry-bar {
  font-size: clamp(0.76rem, 1.25vw, 0.94rem);
}

.requirements-section {
  border-top: 1px solid var(--rule);
  background: var(--sailcloth);
}

.requirements-heading .section-label {
  margin-bottom: 1.2rem;
  color: var(--marine-blue);
}

.requirements-copy {
  border-left: 1px solid var(--rule);
}

.requirements-copy p {
  max-width: 44rem;
  font-size: 1.2rem;
}

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

.policy-ledger {
  padding: var(--section-space) var(--gutter);
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.policy-ledger > header {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.policy-ledger > header .section-label {
  color: var(--wake-blue);
}

.policy-ledger > header h2 {
  max-width: 13ch;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(2.2rem, 4vw, 4rem) 0;
  border-top: 1px solid color-mix(in srgb, var(--sailcloth), transparent 78%);
}

.policy-heading {
  padding-right: clamp(0rem, 2vw, 2rem);
}

.policy-number {
  margin: 0 0 1.25rem;
  color: var(--signal-orange);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.policy-content {
  max-width: 760px;
}

.policy-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.policy-section p,
.policy-section li {
  color: #d8e2e4;
}

.policy-section a {
  color: var(--sun-yellow);
}

@media (max-width: 1050px) {
  .experience-note {
    grid-template-columns: 1fr 1fr;
  }

  .experience-note .dark-action {
    grid-column: 2;
    width: fit-content;
  }

  .home-review {
    grid-template-columns: 1fr 1.5fr;
  }

  .home-review .text-action {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .home-hero,
  .home-rates,
  .home-experience,
  .home-about,
  .home-faq,
  .rates-masthead,
  .rates-pricing,
  .requirements-section,
  .policy-ledger > header,
  .policy-section {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    order: -1;
  }

  .experience-image,
  .home-about-image {
    min-height: 480px;
  }

  .experience-note,
  .home-review {
    grid-template-columns: 1fr;
  }

  .experience-note .dark-action,
  .home-review .text-action {
    grid-column: auto;
  }

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

  .home-gallery-heading {
    min-height: 360px;
  }

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

  .rates-masthead-image {
    min-height: 360px;
  }

  .requirements-copy {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
}

@media (max-width: 560px) {
  .rates-ledger-home .rate-row {
    min-height: 108px;
    gap: 1rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .rates-ledger-home .rate-row strong {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }

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

  .home-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-review blockquote {
    font-size: 1.55rem;
  }

  .rate-row {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .inquiry-bar {
    min-height: 98px;
  }
}

/* Gallery */

.gallery-masthead {
  display: grid;
  grid-template-columns: minmax(0, var(--home-primary-rail)) minmax(0, var(--home-secondary-rail));
  min-height: 620px;
}

.gallery-masthead > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--section-space) var(--gutter);
  background: var(--marine-blue);
  color: var(--sailcloth);
}

.gallery-masthead .eyebrow {
  margin-bottom: 1.4rem;
  color: var(--sun-yellow);
}

.gallery-masthead h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.gallery-masthead p:last-child {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  font-size: 1.25rem;
}

.gallery-masthead figure {
  min-height: 520px;
  margin: 0;
  background: var(--deep-marine);
}

.gallery-masthead picture,
.gallery-masthead img {
  width: 100%;
  height: 100%;
}

.gallery-masthead img {
  object-fit: cover;
}

.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.2vw, 1rem);
  padding: clamp(0.6rem, 1.2vw, 1rem) var(--gutter) var(--section-space);
  background: var(--sailcloth);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--deep-marine);
  cursor: zoom-in;
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.gallery-focus-upper img {
  object-position: 50% 35%;
}

.gallery-focus-center img {
  object-position: 50% 50%;
}

.gallery-focus-lower img {
  object-position: 50% 65%;
}

@media (max-width: 1050px) {
  .gallery-editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .gallery-editorial {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gallery-lightbox {
  width: min(1180px, calc(100vw - 2rem));
  max-width: none;
  height: min(860px, calc(100vh - 2rem));
  max-height: none;
  padding: 0;
  border: 0;
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.gallery-lightbox::backdrop {
  background: rgb(9 25 38 / 88%);
}

.lightbox-toolbar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgb(247 240 226 / 20%);
}

.lightbox-toolbar p {
  margin: 0;
  color: var(--wake-blue);
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-toolbar button,
.lightbox-stage > button {
  min-width: 48px;
  min-height: 48px;
  border: 0;
  background: var(--sun-yellow);
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 1rem;
  height: calc(100% - 66px);
  align-items: center;
  padding: 1rem;
}

.lightbox-stage figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.8rem;
  height: 100%;
  margin: 0;
  min-height: 0;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-stage figcaption {
  text-align: center;
}

/* Frequently asked questions */

.faq-masthead,
.reviews-masthead {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  min-height: 480px;
  padding: var(--section-space) var(--gutter) clamp(3rem, 6vw, 5rem);
  background: var(--marine-blue);
  color: var(--sailcloth);
}

.faq-masthead .eyebrow,
.reviews-masthead .eyebrow {
  margin-bottom: 1.45rem;
  color: var(--sun-yellow);
}

.faq-masthead h1,
.reviews-masthead h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 8vw, 7.7rem);
}

.faq-masthead > p,
.reviews-masthead > p {
  margin: 0;
  font-size: 1.25rem;
}

.faq-page-layout {
  display: grid;
  grid-template-columns: 36% 64%;
}

.faq-page-layout > aside {
  padding: var(--section-space) var(--gutter);
  background: var(--wake-blue);
  color: var(--deep-marine);
}

.faq-page-layout > aside .section-label {
  margin-bottom: 1.3rem;
}

.faq-page-layout > aside h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.faq-page-layout > aside p:not(.section-label) {
  max-width: 28rem;
}

.faq-disclosures {
  padding: clamp(2rem, 5vw, 5rem) var(--gutter);
}

.faq-disclosures details {
  border-bottom: 1px solid var(--rule);
}

.faq-disclosures summary {
  display: grid;
  grid-template-columns: 3rem 1fr 1.5rem;
  min-height: 82px;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-disclosures summary span {
  color: var(--signal-orange);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
}

.faq-disclosures summary strong {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-disclosures summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-disclosures summary i::before,
.faq-disclosures summary i::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--marine-blue);
  content: '';
}

.faq-disclosures summary i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-disclosures details[open] summary i::after {
  transform: rotate(0);
}

.faq-disclosures details > div {
  max-width: 47rem;
  padding: 0 2.5rem 1.8rem 4rem;
}

/* Reviews */

.reviews-editorial {
  background: var(--sailcloth);
}

.review-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 8px solid var(--sailcloth);
}

.review-entry-with-image {
  grid-template-columns: 58% 42%;
}

.review-quote {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
  background: var(--marine-blue);
  color: var(--sailcloth);
}

.review-entry:nth-child(even) .review-quote {
  background: var(--sailcloth);
  color: var(--deep-marine);
}

.review-entry:nth-child(3n) .review-quote {
  background: var(--wake-blue);
  color: var(--deep-marine);
}

.review-number {
  margin-bottom: 1.5rem;
  color: var(--sun-yellow);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.review-entry:nth-child(even) .review-number,
.review-entry:nth-child(3n) .review-number {
  color: var(--signal-orange);
}

.review-quote blockquote {
  max-width: 54rem;
  margin: 0 0 2rem;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-style: italic;
  line-height: 1.26;
}

.review-quote > p {
  margin: 0;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-entry > figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--deep-marine);
}

.review-entry > figure picture,
.review-entry > figure img {
  width: 100%;
  height: 100%;
}

.review-entry > figure img {
  object-fit: cover;
}

@media (max-width: 840px) {
  .gallery-masthead,
  .faq-masthead,
  .reviews-masthead,
  .faq-page-layout,
  .review-entry-with-image {
    grid-template-columns: 1fr;
  }

  .gallery-masthead figure {
    min-height: 430px;
  }

  .review-entry > figure {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .lightbox-stage {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 0.35rem;
    padding: 0.5rem;
  }

  .faq-masthead,
  .reviews-masthead {
    min-height: 430px;
  }

  .faq-disclosures {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .faq-disclosures summary {
    grid-template-columns: 2rem 1fr 1.2rem;
    gap: 0.6rem;
  }

  .faq-disclosures details > div {
    padding-right: 1rem;
    padding-left: 2.6rem;
  }

  .review-quote {
    min-height: 360px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* Contact and inquiry */

.contact-layout {
  display: grid;
  grid-template-columns: 36% 64%;
  min-height: calc(100vh - 82px);
}

.contact-intro {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding: var(--section-space) var(--gutter) calc(var(--section-space) + 1rem);
  overflow: hidden;
  background: var(--deep-marine);
  color: var(--sailcloth);
}

.contact-intro::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 16px;
  background: var(--signal-orange);
  box-shadow: inset 36% 0 0 var(--sun-yellow), inset 70% 0 0 var(--wake-blue);
  content: '';
}

.contact-intro .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--sun-yellow);
}

.contact-intro h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(4rem, 7vw, 7rem);
}

.contact-intro > div > p:last-child {
  max-width: 33rem;
  color: #dce6e7;
  font-size: 1.2rem;
}

.contact-intro dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid rgb(247 240 226 / 24%);
}

.contact-intro dt {
  margin-bottom: 0.45rem;
  color: var(--wake-blue);
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-intro dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-form-panel {
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background: var(--sailcloth);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 5px solid var(--marine-blue);
}

.form-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.form-heading p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.form-heading p span {
  color: var(--signal-orange);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem 2rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field > label,
.form-choice-group legend {
  color: var(--deep-marine);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-field > label span {
  color: var(--signal-orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #8ea5ab;
  border-radius: 0;
  background: transparent;
  color: var(--deep-marine);
}

.form-field input,
.form-field select {
  min-height: 48px;
}

.form-field textarea {
  min-height: 104px;
  padding: 0.75rem 0;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--marine-blue);
  outline: 0;
  box-shadow: 0 3px 0 var(--sun-yellow);
}

.form-field input[aria-invalid='true'],
.form-field select[aria-invalid='true'],
.form-field textarea[aria-invalid='true'] {
  border-bottom-color: #a43824;
}

.form-field ::placeholder {
  color: #71858b;
  opacity: 1;
}

.form-choice-group {
  min-width: 0;
  margin: 0;
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 2px solid #8ea5ab;
}

.form-choice-group legend {
  margin-bottom: 1rem;
}

.form-choice-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.6rem;
}

.form-choice-group label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.form-choice-group input {
  width: 18px;
  height: 18px;
  margin: 0;
  border-radius: 0;
  accent-color: var(--marine-blue);
}

.field-error {
  margin: 0.25rem 0 0;
  color: #8b2f20;
  font-size: 0.94rem;
  font-weight: 500;
}

.form-error-summary,
.form-status {
  margin-bottom: 2rem;
  padding: 1.3rem 1.4rem;
  border-left: 8px solid var(--signal-orange);
  background: #f2ded4;
  color: var(--deep-marine);
}

.form-status-success {
  border-left-color: var(--marine-blue);
  background: #d7e8e5;
}

.form-status h2,
.form-error-summary h2 {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}

.form-status p,
.form-error-summary ul {
  margin-bottom: 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.3rem;
}

.cf-turnstile {
  width: 100%;
  margin-top: 2rem;
}

.form-submit-row p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.94rem;
}

.form-submit-row button {
  min-width: 200px;
  min-height: 54px;
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 0;
  background: var(--signal-orange);
  color: var(--deep-marine);
  box-shadow: 8px 8px 0 var(--sun-yellow);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-submit-row button:hover {
  transform: translate(2px, 2px);
  box-shadow: 6px 6px 0 var(--sun-yellow);
}

.form-submit-row button:disabled {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    min-height: 620px;
  }
}

@media (max-width: 650px) {
  .contact-intro,
  .contact-form-panel {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .contact-intro {
    min-height: 570px;
  }

  .contact-intro dl,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-heading,
  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit-row button {
    width: calc(100% - 8px);
  }
}

/* Error pages */

.error-page {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-space) var(--gutter);
  background: var(--wake-blue);
  color: var(--deep-marine);
}

.error-page .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--signal-orange);
}

.error-page h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 8vw, 8rem);
}

.error-page > p:not(.eyebrow) {
  max-width: 42rem;
  font-size: 1.25rem;
}

.error-page > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}
