@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --hah-navy: #082f4f;
  --hah-deep: #061f34;
  --hah-ink: #152a3a;
  --hah-muted: #526b7b;
  --hah-teal: #0b806f;
  --hah-teal-dark: #076457;
  --hah-teal-pale: #e3f2ee;
  --hah-gold: #d5a43b;
  --hah-gold-text: #8a6516;
  --hah-sand: #f4efe6;
  --hah-mist: #f4f8f7;
  --hah-line: #d8e3e6;
  --hah-white: #fff;
  --hah-shadow: 0 22px 60px rgba(6, 31, 52, 0.13);
  --hah-shadow-soft: 0 10px 30px rgba(6, 31, 52, 0.09);
  --hah-container: 1240px;
  --hah-gutter: clamp(1.25rem, 4vw, 3rem);
  --hah-section: clamp(5rem, 9vw, 8.75rem);
  --hah-sticky-offset: 132px;
  --hah-radius: 2px;
  --hah-ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hah-sticky-offset);
}

.hah-main [id] {
  scroll-margin-top: var(--hah-sticky-offset);
}

body {
  margin: 0;
  color: var(--hah-ink);
  background: var(--hah-white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: var(--hah-teal-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--hah-navy);
}

:focus,
:focus-visible {
  outline: 3px solid var(--hah-teal-dark);
  outline-offset: 4px;
}

@supports selector(:focus-visible) {
  :focus:not(:focus-visible) {
    outline: none;
  }
}

::selection {
  color: var(--hah-white);
  background: var(--hah-teal-dark);
}

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

h1,
h2,
h3,
h4 {
  color: var(--hah-navy);
  font-weight: 720;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

.hah-container {
  width: min(calc(100% - (2 * var(--hah-gutter))), var(--hah-container));
  margin-inline: auto;
}

.hah-section {
  padding-block: var(--hah-section);
}

.hah-section--mist {
  background: var(--hah-mist);
}

.hah-section--sand {
  background: var(--hah-sand);
}

.hah-visually-hidden,
.screen-reader-text,
.hah-skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.hah-skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border: 0;
  color: var(--hah-white);
  background: var(--hah-deep);
}

.hah-kicker {
  margin-bottom: 1rem;
  color: var(--hah-teal-dark);
  font-size: 0.77rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hah-kicker--light {
  color: #a9ddd5;
}

.hah-kicker--gold {
  color: #f1c765;
}

.hah-lead {
  color: #385465;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.58;
}

.hah-button,
.wp-element-button,
.hah-utility-actions .hah-approved-fact--primary_phone a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--hah-radius);
  font-size: 0.78rem;
  font-weight: 830;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms var(--hah-ease), background-color 180ms var(--hah-ease), border-color 180ms var(--hah-ease), transform 180ms var(--hah-ease);
}

.hah-button:hover,
.wp-element-button:hover,
.hah-utility-actions .hah-approved-fact--primary_phone a:hover {
  transform: translateY(-2px);
}

.hah-button--primary,
.wp-element-button,
.hah-utility-actions .hah-approved-fact--primary_phone a {
  color: var(--hah-white);
  background: var(--hah-teal);
}

.hah-button--primary:hover,
.wp-element-button:hover,
.hah-utility-actions .hah-approved-fact--primary_phone a:hover {
  color: var(--hah-white);
  background: var(--hah-teal-dark);
}

.hah-button--secondary {
  color: var(--hah-navy);
  border-color: var(--hah-navy);
  background: rgba(255, 255, 255, 0.88);
}

.hah-button--secondary:hover {
  color: var(--hah-white);
  background: var(--hah-navy);
}

.hah-button--outline-light {
  color: var(--hah-white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.hah-button--outline-light:hover {
  color: var(--hah-deep);
  border-color: var(--hah-white);
  background: var(--hah-white);
}

.hah-button--gold {
  color: #031521;
  border-color: #efc76a;
  background: var(--hah-gold);
  box-shadow: inset 0 0 0 1px rgba(6, 31, 52, 0.14);
}

.hah-button--gold:hover {
  color: #031521;
  border-color: #f1cd78;
  background: #f1c765;
}

.hah-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hah-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hah-teal-dark);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
}

.hah-text-link::after {
  content: "\2192";
  font-size: 1.1rem;
  transition: transform 180ms var(--hah-ease);
}

.hah-text-link:hover::after {
  transform: translateX(4px);
}

.hah-text-link--light {
  color: #a9ddd5;
}

.hah-text-link--light:hover {
  color: var(--hah-white);
}

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

.hah-picture {
  display: block;
}

.hah-picture img {
  object-fit: cover;
}

/* Header */
.hah-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  color: var(--hah-navy);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(8, 47, 79, 0.1);
  box-shadow: 0 8px 26px rgba(6, 31, 52, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hah-header__bar {
  color: #d8eeea;
  background: var(--hah-deep);
  font-size: 0.72rem;
  font-weight: 690;
  letter-spacing: 0.05em;
}

.hah-header__bar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hah-header__bar a {
  color: var(--hah-white);
  text-decoration: none;
}

.hah-header__bar-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hah-header__review-link {
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hah-header__review-link::before {
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  margin-right: 0.5rem;
  content: "";
  background: var(--hah-gold);
  border-radius: 999px;
  vertical-align: 0.05rem;
}

.hah-header__main {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.hah-brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--hah-navy);
  text-decoration: none;
}

.hah-brand:hover {
  color: var(--hah-teal-dark);
}

.hah-brand__mark {
  width: 56px;
  height: auto;
  flex: 0 0 56px;
  overflow: visible;
}

.hah-brand__arch-fill {
  fill: var(--hah-teal-pale);
}

.hah-brand__lake,
.hah-brand__fronds {
  fill: var(--hah-navy);
}

.hah-brand__shore {
  fill: var(--hah-teal);
}

.hah-brand__horizon {
  fill: none;
  stroke: var(--hah-white);
  stroke-width: 1.4;
}

.hah-brand__trunk-outline {
  fill: none;
  stroke: var(--hah-navy);
  stroke-linecap: round;
  stroke-width: 5.4;
}

.hah-brand__trunk {
  fill: none;
  stroke: var(--hah-gold);
  stroke-linecap: round;
  stroke-width: 2.4;
}

.hah-brand__arch-outline {
  fill: none;
  stroke: var(--hah-navy);
  stroke-linejoin: round;
  stroke-width: 3;
}

.hah-brand__copy {
  display: grid;
  gap: 0.14rem;
  line-height: 1;
}

.hah-brand__copy strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.17rem;
  font-weight: 640;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hah-brand__secondary {
  display: grid;
  gap: 0.12rem;
  padding-top: 0.17rem;
  border-top: 2px solid var(--hah-teal);
}

.hah-brand__secondary b {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 610;
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hah-brand__secondary small {
  color: var(--hah-muted);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.12;
  white-space: nowrap;
  text-transform: uppercase;
}

.custom-logo {
  width: auto;
  max-width: 190px;
  max-height: 62px;
}

.hah-primary-navigation {
  justify-self: end;
}

.hah-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.45rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.hah-menu li {
  position: relative;
  margin: 0;
}

.hah-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--hah-navy);
  font-size: 0.75rem;
  font-weight: 760;
  text-decoration: none;
}

.hah-menu a:hover,
.hah-menu .current-menu-item > a {
  color: var(--hah-teal-dark);
}

.hah-menu .sub-menu {
  position: absolute;
  z-index: 5;
  top: calc(100% - 0.2rem);
  left: -1rem;
  display: none;
  min-width: 230px;
  padding: 0.7rem;
  margin: 0;
  list-style: none;
  background: var(--hah-white);
  box-shadow: var(--hah-shadow-soft);
}

.hah-menu li:hover > .sub-menu,
.hah-menu li:focus-within > .sub-menu {
  display: block;
}

.hah-menu .sub-menu a {
  padding: 0.45rem 0.6rem;
}

.hah-button--header {
  min-width: 118px;
  min-height: 46px;
  color: var(--hah-white);
  background: var(--hah-teal);
}

.hah-button--header:hover {
  color: var(--hah-white);
  background: var(--hah-teal-dark);
}

.hah-menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.45rem;
  color: var(--hah-navy);
  border: 0;
  background: transparent;
}

.hah-menu-toggle__label {
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hah-menu-toggle__icon {
  display: grid;
  width: 22px;
  gap: 4px;
}

.hah-menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms var(--hah-ease), opacity 180ms var(--hah-ease);
}

/* Hero */
.hah-home {
  overflow: clip;
}

.hah-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 70px));
  align-items: center;
  overflow: hidden;
  background: #dcebe7;
}

.hah-hero__media,
.hah-hero__veil {
  position: absolute;
  inset: 0;
}

.hah-hero__picture img {
  object-position: 57% 50%;
  transform: scale(1.005);
}

.hah-hero__veil {
  background: linear-gradient(90deg, rgba(250, 252, 250, 0.98) 0%, rgba(250, 252, 250, 0.94) 32%, rgba(250, 252, 250, 0.52) 56%, rgba(250, 252, 250, 0.06) 76%);
}

.hah-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(7rem, 10vw, 9rem);
}

.hah-hero__copy {
  width: min(760px, 62%);
}

.hah-display-line {
  margin: 0 0 1.3rem;
  color: var(--hah-navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(5rem, 10vw, 9.2rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hah-display-line span {
  display: block;
  white-space: nowrap;
}

.hah-hero h1 {
  width: min(650px, 100%);
  margin: 0 0 1rem;
  color: var(--hah-navy);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hah-hero__lead {
  width: min(620px, 100%);
  margin-bottom: 1.6rem;
  color: #25465b;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

.hah-hero__short-stay {
  margin: 1rem 0 0;
  color: #25465b;
  font-size: 0.94rem;
}

.hah-hero__short-stay a {
  color: var(--hah-teal-dark);
  font-weight: 800;
  text-underline-offset: 0.2em;
}

.hah-hero__caption {
  position: absolute;
  z-index: 2;
  right: var(--hah-gutter);
  bottom: 5.7rem;
  margin: 0;
  padding: 0.35rem 0.55rem;
  color: var(--hah-white);
  background: rgba(6, 31, 52, 0.78);
  font-size: 0.75rem;
  font-weight: 710;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hah-booking-hero {
  position: relative;
  z-index: 10;
  margin: -68px 0 0 !important;
  padding: 0;
}

.hah-booking-hero__inner {
  width: min(calc(100% - (2 * var(--hah-gutter))), 1120px);
  margin: 0 auto !important;
  padding: 0;
}

.hah-booking-search,
.hah-booking-slot {
  display: grid;
  min-height: 136px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  color: var(--hah-ink);
  background: var(--hah-white);
  border-top: 5px solid var(--hah-teal);
  box-shadow: var(--hah-shadow);
}

.hah-booking-search__copy {
  display: grid;
  gap: 0.3rem;
}

.hah-booking-search__copy strong {
  color: var(--hah-navy);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hah-booking-search__copy span {
  color: var(--hah-muted);
  font-size: 0.93rem;
}

.hah-booking-search__form {
  width: 100%;
  grid-column: 1 / -1;
}

.hah-booking-hero .hah-booking-search {
  width: 100%;
}

.hah-booking-hero .hah-booking-search .hah-booking-search__fallback {
  display: grid;
  width: 100%;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 2rem;
}

.hah-booking-hero .hah-booking-search__fallback .hah-booking-search__helper {
  grid-row: 1;
  grid-column: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.hah-booking-hero .hah-booking-search__fallback .hah-booking-search__submit {
  min-width: 190px;
  grid-row: 1;
  grid-column: 2;
}

.hah-booking-search label {
  display: grid;
  gap: 0.35rem;
  color: var(--hah-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hah-booking-search input,
.hah-booking-search select,
.hah-contact-layout input,
.hah-contact-layout select,
.hah-contact-layout textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  color: var(--hah-ink);
  border: 1px solid #aebfc6;
  border-radius: 0;
  background: var(--hah-white);
}

/* Homepage ways-to-stay chooser */
.hah-stay-options {
  position: relative;
  padding-block: clamp(3.5rem, 5vw, 5rem) clamp(2.25rem, 3vw, 3rem);
  background:
    radial-gradient(80rem 22rem at 50% 0%, rgba(11, 128, 111, 0.07), rgba(255, 255, 255, 0) 72%),
    var(--hah-white);
}

.hah-stay-options__heading {
  max-width: 760px;
  margin: 0 auto clamp(1.75rem, 2.6vw, 2.5rem);
  text-align: center;
}

.hah-stay-options__heading .hah-kicker {
  margin-bottom: 0.7rem;
  color: var(--hah-gold-text);
}

.hah-stay-options__heading h2 {
  margin-bottom: 0.85rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3rem, 4.4vw, 3.5rem);
  font-weight: 480;
  letter-spacing: 0.005em;
  line-height: 1.04;
}

.hah-stay-options__heading > p:last-child {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--hah-ink);
  font-size: 1rem;
  line-height: 1.38;
  text-wrap: pretty;
}

.hah-stay-options__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.435fr) minmax(0, 0.565fr);
  gap: clamp(1.75rem, 3vw, 2.25rem);
  align-items: start;
}

.hah-stay-options__featured {
  position: relative;
  display: flex;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--hah-white);
  border: 1px solid var(--hah-line);
  border-radius: var(--hah-radius);
  box-shadow: 0 18px 42px rgba(6, 31, 52, 0.08);
  transition: box-shadow 220ms var(--hah-ease), transform 220ms var(--hah-ease);
}

.hah-stay-options__featured-media {
  aspect-ratio: 2.05 / 1;
  overflow: hidden;
}

.hah-stay-options__featured-media .hah-picture,
.hah-stay-options__featured-media img,
.hah-stay-options__item-media .hah-picture,
.hah-stay-options__item-media img {
  width: 100%;
  height: 100%;
}

.hah-stay-options__featured-media img,
.hah-stay-options__item-media img {
  object-fit: cover;
  transition: transform 300ms var(--hah-ease);
}

.hah-stay-options__featured-media img {
  object-position: 52% 52%;
}

.hah-stay-options__featured-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--hah-sand);
}

.hah-stay-options__accent {
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 1rem;
  background: var(--hah-gold);
}

.hah-stay-options__featured h3,
.hah-stay-options__item-content > h3 {
  color: var(--hah-navy);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 480;
  letter-spacing: 0.005em;
}

.hah-stay-options__featured h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.35rem, 3.2vw, 2.75rem);
  line-height: 1.02;
}

.hah-stay-options__featured p {
  margin-bottom: 1.35rem;
  color: var(--hah-ink);
  font-size: 1rem;
  line-height: 1.45;
}

.hah-stay-options__primary-cta {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  color: var(--hah-white);
  border-color: var(--hah-navy);
  background: var(--hah-navy);
}

.hah-stay-options__primary-cta::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.hah-stay-options__primary-cta:hover {
  color: var(--hah-white);
  border-color: var(--hah-deep);
  background: var(--hah-deep);
  transform: none;
}

.hah-stay-options__featured:hover {
  box-shadow: 0 22px 50px rgba(6, 31, 52, 0.12);
  transform: translateY(-2px);
}

.hah-stay-options__featured:hover .hah-stay-options__featured-media img {
  transform: scale(1.02);
}

.hah-stay-options__featured:focus-within {
  outline: 3px solid var(--hah-teal-dark);
  outline-offset: 4px;
}

.hah-stay-options__list {
  display: grid;
  min-width: 0;
  align-content: start;
}

.hah-stay-options__item {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(175px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(1.25rem, 2vw, 1.65rem);
  align-items: center;
  padding-block: 0.55rem;
  color: var(--hah-ink);
  border-bottom: 1px solid var(--hah-line);
  text-decoration: none;
}

.hah-stay-options__item:first-child {
  padding-top: 0;
}

.hah-stay-options__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hah-stay-options__item-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--hah-radius);
}

.hah-stay-options__item:nth-child(1) img {
  object-position: center 58%;
}

.hah-stay-options__item:nth-child(2) img {
  object-position: center 55%;
}

.hah-stay-options__item:nth-child(3) img {
  object-position: center 48%;
}

.hah-stay-options__item-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.hah-stay-options__item-content > h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 1.85vw, 1.75rem);
  line-height: 1.04;
  text-wrap: balance;
  transition: color 180ms var(--hah-ease);
}

.hah-stay-options__description {
  color: var(--hah-ink);
  font-size: 0.97rem;
  line-height: 1.4;
}

.hah-stay-options__link-label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 1rem;
  padding-block: 0.3rem;
  color: var(--hah-teal-dark);
  border-bottom: 2px solid var(--hah-gold);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.35;
}

.hah-stay-options__item:hover .hah-stay-options__item-content > h3 {
  color: var(--hah-teal-dark);
}

.hah-stay-options__item:hover img {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .hah-stay-options__featured-media img,
  .hah-stay-options__item-media img {
    transition: none;
  }
}

@media (max-width: 1050px) {
  .hah-stay-options__grid {
    grid-template-columns: 1fr;
  }

  .hah-stay-options__featured {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

  .hah-stay-options__featured-media {
    min-height: 340px;
    aspect-ratio: auto;
  }

  .hah-stay-options__item {
    grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
    padding-block: 1rem;
  }
}

/* Story */
.hah-stay-options + .hah-story {
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.hah-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hah-story__copy {
  padding-left: clamp(0rem, 3vw, 2rem);
}

.hah-story__copy p:not(.hah-kicker) {
  max-width: 540px;
}

.hah-collage {
  position: relative;
  min-height: 620px;
}

.hah-collage figure {
  margin: 0;
}

.hah-collage__primary {
  position: absolute;
  inset: 0 16% 9% 0;
}

.hah-collage__primary .hah-picture,
.hah-collage__secondary .hah-picture {
  display: block;
  height: 100%;
}

.hah-collage__primary figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  color: var(--hah-white);
  background: var(--hah-deep);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hah-collage__secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 38%;
  border: 10px solid var(--hah-white);
  box-shadow: var(--hah-shadow-soft);
}

/* Audience paths */
.hah-section-heading {
  max-width: 820px;
  margin-bottom: clamp(2.3rem, 5vw, 4rem);
}

.hah-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 3rem;
}

.hah-section-heading--split > p {
  color: var(--hah-muted);
  font-size: 1.05rem;
}

.hah-paths__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hah-path-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: var(--hah-white);
  border-bottom: 4px solid var(--hah-teal);
  box-shadow: 0 8px 26px rgba(6, 31, 52, 0.06);
}

.hah-path-card__media {
  min-height: 430px;
}

.hah-path-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.6rem, 2.4vw, 2.15rem);
  overflow-wrap: anywhere;
}

.hah-path-card__content h3 {
  max-width: 16ch;
  margin: 0.65rem 0 1rem;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.hah-path-card__content p:not(.hah-path-card__label) {
  color: var(--hah-muted);
}

.hah-path-card__content .hah-text-link {
  margin-top: auto;
}

.hah-card-grid {
  display: grid;
  gap: 1.25rem;
}

.hah-card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.hah-info-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--hah-ink);
  border: 1px solid var(--hah-line);
  background: var(--hah-white);
  text-decoration: none;
  transition: transform 180ms var(--hah-ease), box-shadow 180ms var(--hah-ease), border-color 180ms var(--hah-ease);
}

.hah-info-card:hover {
  color: var(--hah-ink);
  border-color: rgba(11, 128, 111, 0.45);
  box-shadow: var(--hah-shadow-soft);
  transform: translateY(-5px);
}

.hah-section-action {
  margin: 2rem 0 0;
}

.hah-new-homes .hah-home-sites__media {
  box-shadow: 18px 18px 0 var(--hah-teal-pale);
}

.hah-info-card h3 {
  margin: auto 0 0.8rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.hah-info-card p {
  color: var(--hah-muted);
}

.hah-info-card .hah-text-link {
  margin-top: 1rem;
}

/* Waterfront and long stays */
.hah-waterfront {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  min-height: 700px;
  background: var(--hah-deep);
}

.hah-waterfront__media {
  min-height: 620px;
}

.hah-waterfront__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
  color: #d7e5eb;
}

.hah-waterfront__content h2 {
  color: var(--hah-white);
}

.hah-waterfront__content > p:not(.hah-kicker) {
  max-width: 520px;
}

.hah-check-list {
  width: 100%;
  padding: 0;
  margin: 1.3rem 0 2rem;
  list-style: none;
}

.hah-check-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hah-check-list li::before {
  position: absolute;
  top: 0.8rem;
  left: 0;
  color: #79c3b8;
  content: "\2713";
  font-weight: 800;
}

.hah-long-stay {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  color: #d9e6ec;
  background: var(--hah-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hah-long-stay__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hah-long-stay h2 {
  margin-bottom: 0;
  color: var(--hah-white);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 520;
  letter-spacing: 0.005em;
}

/* Home sites and rates */
.hah-home-sites__grid,
.hah-local__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hah-home-sites__media {
  height: clamp(520px, 45vw, 620px);
  min-height: 0;
  overflow: hidden;
  box-shadow: -28px 28px 0 var(--hah-teal-pale);
}

.hah-home-sites__media > img,
.hah-local__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hah-home-sites__content {
  max-width: 560px;
}

.hah-home-sites__content h2 {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 520;
  letter-spacing: 0.005em;
  text-wrap: pretty;
}

.hah-rates__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hah-rates__booking .hah-booking-search,
.hah-rates__booking .hah-booking-slot {
  min-height: 220px;
  box-shadow: var(--hah-shadow-soft);
}

.hah-rates__booking .hah-booking-slot {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 1.25rem;
}

.hah-rates__booking .hah-booking-slot__intro {
  max-width: 42rem;
  margin-bottom: 0;
}

.hah-rates__booking .hah-booking-slot__title {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}

.hah-rates__booking .hah-booking-slot > .hah-booking-search {
  min-height: 0;
  padding: 1.25rem 0 0;
  border-top-width: 2px;
  box-shadow: none;
}

.hah-approved-fact--rv_seasonal_offer,
.hah-seasonal-offer {
  position: relative;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  border: 1px solid #b98519;
  border-left: 6px solid var(--hah-gold);
  border-radius: 14px;
  color: var(--hah-deep);
  background: #fff8e7;
  box-shadow: var(--hah-shadow-soft);
}

.hah-approved-fact--rv_seasonal_offer {
  margin-block: 1.25rem;
  font-weight: 650;
  line-height: 1.65;
}

.hah-seasonal-offer {
  margin-block: 1.5rem;
}

.hah-seasonal-offer .hah-kicker {
  margin-bottom: 0.55rem;
  color: #684600;
}

.hah-seasonal-offer .hah-approved-fact--rv_seasonal_offer {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* FAQ and local */
.hah-faq-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
}

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

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

.hah-faq-list summary,
.hah-prose summary {
  position: relative;
  min-height: 68px;
  padding: 1.25rem 3rem 1.25rem 0;
  color: var(--hah-navy);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
}

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

.hah-faq-list summary::after,
.hah-prose summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--hah-line);
  content: "+";
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.hah-faq-list details[open] summary::after,
.hah-prose details[open] summary::after {
  content: "\2212";
}

.hah-faq-list details p,
.hah-prose details p {
  max-width: 680px;
  padding: 0 3rem 1.3rem 0;
  color: var(--hah-muted);
}

.hah-local__media {
  height: clamp(460px, 40vw, 520px);
  min-height: 0;
  overflow: hidden;
}

.hah-link-list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--hah-line);
}

.hah-link-list li {
  margin: 0;
  border-bottom: 1px solid var(--hah-line);
}

.hah-link-list a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  color: var(--hah-navy);
  font-weight: 720;
  text-decoration: none;
}

.hah-link-list a:hover {
  color: var(--hah-teal-dark);
}

/* Final CTA */
.hah-final-cta {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: var(--hah-deep);
}

.hah-final-cta__media,
.hah-final-cta__veil {
  position: absolute;
  inset: 0;
}

.hah-final-cta__media img {
  object-position: 50% 58%;
}

.hah-final-cta__veil {
  background: rgba(6, 31, 52, 0.7);
}

.hah-final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  color: var(--hah-white);
  text-align: center;
}

.hah-final-cta h2 {
  color: var(--hah-white);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 530;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hah-final-cta .hah-button-row {
  justify-content: center;
}

/* Interior pages */
.hah-page-context {
  padding-block: 0.85rem;
  background: var(--hah-white);
  border-bottom: 1px solid var(--hah-line);
}

.hah-page-context .hah-breadcrumbs {
  margin: 0;
}

.hah-interior-hero {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--hah-mist);
  border-bottom: 1px solid var(--hah-line);
}

.hah-interior-hero__inner {
  max-width: 1080px;
  margin-inline: auto;
}

.hah-interior-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.7rem, 9vw, 8rem);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hah-interior-hero p {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--hah-muted);
  font-size: 1.15rem;
}

.hah-breadcrumbs {
  margin-bottom: 1.5rem;
}

.hah-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  color: var(--hah-muted);
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  list-style: none;
  text-transform: uppercase;
}

.hah-breadcrumbs li + li::before {
  margin-right: 0.5rem;
  content: "/";
}

.hah-breadcrumbs a {
  color: var(--hah-teal-dark);
}

.hah-page-content,
.hah-post-list {
  width: min(calc(100% - (2 * var(--hah-gutter))), 900px);
  padding-block: var(--hah-section);
  margin-inline: auto;
}

.hah-page-content--self-headed {
  width: 100%;
  padding-block: 0;
}

.hah-page-content--self-headed > .alignfull {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.hah-page-hero {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: var(--hah-mist);
  border-bottom: 1px solid var(--hah-line);
}

.hah-page-hero > .hah-container {
  max-width: 1080px;
}

.hah-page-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.7rem, 9vw, 8rem);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hah-page-hero .hah-lede {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--hah-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.hah-page-hero--utility {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.hah-page-hero--utility h1 {
  max-width: 1000px;
  font-size: clamp(3rem, 5.84vw, 5.25rem);
  line-height: 0.95;
}

.hah-page-hero--utility + .hah-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.hah-utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hah-utility-actions > * {
  margin: 0;
}

.hah-page-content--self-headed .hah-section--tint {
  background: var(--hah-mist);
}

.hah-page-content--self-headed .hah-section--booking {
  background: var(--hah-sand);
}

.hah-page-content--self-headed .hah-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.hah-page-content--self-headed .hah-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hah-page-content--self-headed .hah-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--hah-white);
  border: 1px solid var(--hah-line);
  box-shadow: var(--hah-shadow-soft);
}

.hah-page-content--self-headed .hah-section .hah-container > h2:first-child,
.hah-page-content--self-headed .hah-card > h2:first-child {
  margin-top: 0;
}

.hah-prose > * {
  max-width: 760px;
  margin-inline: auto;
}

.hah-prose > .alignwide {
  max-width: 1100px;
}

.hah-prose > .alignfull {
  max-width: none;
}

.hah-client-review-index {
  max-width: 1100px !important;
}

.hah-client-review-index > .wp-block-columns {
  gap: 1rem;
}

.hah-client-review-index > .wp-block-columns > .wp-block-column {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--hah-white);
  border: 1px solid var(--hah-line);
  box-shadow: var(--hah-shadow-soft);
}

.hah-client-review-index > .wp-block-columns h3 {
  margin-top: 0;
}

.hah-client-review-index > .wp-block-columns ul {
  padding-left: 1.2rem;
}

.hah-prose h2 {
  margin-top: 4rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hah-prose h3 {
  margin-top: 2.5rem;
}

.hah-prose p,
.hah-prose li {
  color: #304c5e;
}

.hah-prose li + li {
  margin-top: 0.5rem;
}

.hah-prose figure {
  margin-block: 2.5rem;
}

.hah-prose figcaption {
  color: var(--hah-muted);
  font-size: 0.8rem;
}

.hah-commercial-layout,
.hah-faq-page,
.hah-contact-layout {
  display: grid;
  gap: 1.5rem;
}

.hah-contact-layout form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--hah-mist);
}

.hah-contact-layout textarea {
  min-height: 160px;
}

.hah-post-card {
  padding-block: 2rem;
  border-bottom: 1px solid var(--hah-line);
}

.hah-post-card h2 {
  margin-bottom: 0.6rem;
  font-size: 2rem;
}

.hah-post-card h2 a {
  color: var(--hah-navy);
  text-decoration: none;
}

.hah-blog-hero {
  overflow: hidden;
  background: linear-gradient(135deg, var(--hah-mist), var(--hah-white));
  border-bottom: 1px solid var(--hah-line);
}

.hah-blog-hero__grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.hah-blog-hero h1 {
  max-width: 850px;
  margin-bottom: 1.35rem;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3.7rem, 7.8vw, 7.4rem);
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hah-blog-hero .hah-lede {
  max-width: 720px;
  color: #365666;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hah-blog-hero__media {
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: var(--hah-teal-pale);
  box-shadow: 22px 22px 0 var(--hah-teal-pale), var(--hah-shadow-soft);
}

.hah-blog-hero__media picture,
.hah-blog-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hah-blog-hero__media img {
  object-fit: cover;
}

.hah-blog-grid,
.hah-blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.hah-blog-card,
.hah-blog-post-card {
  min-width: 0;
  margin: 0;
  background: var(--hah-white);
  border: 1px solid var(--hah-line);
  box-shadow: var(--hah-shadow-soft);
  transition: transform 180ms var(--hah-ease), box-shadow 180ms var(--hah-ease);
}

.hah-blog-card:hover,
.hah-blog-card:focus-within,
.hah-blog-post-card:hover,
.hah-blog-post-card:focus-within {
  box-shadow: 0 20px 46px rgba(6, 31, 52, 0.14);
  transform: translateY(-4px);
}

.hah-blog-card__link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hah-blog-card__media,
.hah-blog-post-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hah-mist);
}

.hah-blog-card__media picture,
.hah-blog-card__media img,
.hah-blog-post-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hah-blog-card__media img,
.hah-blog-post-card__media img {
  object-fit: cover;
  transition: transform 260ms var(--hah-ease);
}

.hah-blog-card:hover .hah-blog-card__media img,
.hah-blog-card:focus-within .hah-blog-card__media img,
.hah-blog-post-card:hover .hah-blog-post-card__media img,
.hah-blog-post-card:focus-within .hah-blog-post-card__media img {
  transform: scale(1.025);
}

.hah-blog-card__body,
.hah-blog-post-card__body {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.hah-blog-card__body small {
  color: var(--hah-teal-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hah-blog-card__body strong,
.hah-blog-post-card h3 {
  margin: 0;
  color: var(--hah-navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 570;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-transform: uppercase;
}

.hah-blog-post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hah-blog-card__body > span,
.hah-blog-post-card__body > p:not(.hah-entry-meta) {
  color: #365666;
  line-height: 1.6;
}

.hah-blog-card__body em {
  margin-top: 0.3rem;
  color: var(--hah-teal-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: underline;
  text-transform: uppercase;
}

.hah-blog-page .hah-section--tint {
  background: var(--hah-mist);
}

.hah-blog-empty {
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
  background: var(--hah-white);
  border-left: 5px solid var(--hah-teal);
  box-shadow: var(--hah-shadow-soft);
}

.hah-blog-empty h3 {
  margin-top: 0;
}

.hah-not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  background: var(--hah-mist);
}

.hah-not-found__inner {
  max-width: 760px;
  padding-block: 5rem;
  text-align: center;
}

.hah-not-found__inner .hah-button-row {
  justify-content: center;
}

/* Footer */
.hah-site-footer {
  padding-top: clamp(4rem, 8vw, 7rem);
  color: #c8d9e1;
  background: var(--hah-deep);
}

.hah-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 4rem;
}

.hah-site-footer .hah-brand {
  color: var(--hah-white);
}

.hah-site-footer .hah-brand__copy small {
  color: #a8bec9;
}

.hah-site-footer .hah-brand__secondary {
  border-top-color: var(--hah-teal);
}

.hah-site-footer .hah-brand__arch-outline {
  stroke: var(--hah-white);
}

.hah-footer__brand p {
  max-width: 330px;
  margin-top: 1.5rem;
}

.hah-site-footer h2 {
  margin: 0 0 1.15rem;
  color: var(--hah-white);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hah-site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hah-site-footer li + li {
  margin-top: 0.65rem;
}

.hah-site-footer nav a,
.hah-footer__contact > a:not(.hah-button) {
  display: inline-block;
  padding-block: 0.12rem;
  color: #c8d9e1;
  text-decoration: none;
}

.hah-site-footer nav a:hover,
.hah-footer__contact > a:not(.hah-button):hover {
  color: var(--hah-white);
}

.hah-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hah-footer__contact .hah-button {
  margin-top: 1.3rem;
}

.hah-footer__bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9db2bd;
  font-size: 0.72rem;
}

.hah-footer__bottom p {
  margin: 0;
}

.hah-footer__bottom nav {
  display: flex;
  gap: 1rem;
}

.hah-mobile-actions {
  display: none;
}

/* WordPress admin bar */
.admin-bar .hah-site-header {
  top: 32px;
}

@media (max-width: 1160px) {
  .hah-header__main {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .hah-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hah-primary-navigation {
    position: fixed;
    z-index: 100;
    inset: 116px 0 auto;
    display: none;
    max-height: calc(100svh - 116px);
    padding: 1.5rem var(--hah-gutter) 2rem;
    overflow-y: auto;
    background: var(--hah-white);
    box-shadow: var(--hah-shadow);
  }

  .hah-primary-navigation.is-open {
    display: block;
  }

  .admin-bar .hah-primary-navigation {
    top: 148px;
  }

  .hah-primary-navigation .hah-menu {
    display: grid;
    gap: 0;
  }

  .hah-primary-navigation .hah-menu > li {
    border-bottom: 1px solid var(--hah-line);
  }

  .hah-primary-navigation .hah-menu a {
    min-height: 54px;
    font-size: 0.9rem;
  }

  .hah-menu .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0.75rem 1rem;
    box-shadow: none;
  }

  .hah-path-card {
    grid-template-columns: 1fr;
  }

  .hah-path-card__media {
    min-height: 360px;
  }

  .hah-path-card__content .hah-text-link {
    margin-top: 1rem;
  }

  .hah-waterfront {
    grid-template-columns: 1fr 1fr;
  }

  .hah-long-stay__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hah-long-stay__inner .hah-button {
    grid-column: 2;
    justify-self: start;
  }

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

@media (max-width: 900px) {
  .hah-hero {
    min-height: 760px;
  }

  .hah-hero__veil {
    background: linear-gradient(90deg, rgba(250, 252, 250, 0.98) 0%, rgba(250, 252, 250, 0.9) 55%, rgba(250, 252, 250, 0.35) 100%);
  }

  .hah-hero__copy {
    width: min(680px, 82%);
  }

  .hah-story__grid,
  .hah-home-sites__grid,
  .hah-local__grid,
  .hah-rates__grid,
  .hah-faq-preview__grid {
    grid-template-columns: 1fr;
  }

  .hah-collage {
    min-height: 580px;
  }

  .hah-section-heading--split {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hah-card-grid--three {
    grid-template-columns: 1fr;
  }

  .hah-info-card {
    min-height: 240px;
  }

  .hah-waterfront {
    grid-template-columns: 1fr;
  }

  .hah-waterfront__media {
    min-height: 500px;
  }

  .hah-long-stay__inner {
    grid-template-columns: 1fr;
  }

  .hah-long-stay__inner .hah-button {
    grid-column: auto;
  }

  .hah-home-sites__media {
    min-height: 540px;
    box-shadow: -18px 18px 0 var(--hah-teal-pale);
  }

  .hah-new-homes .hah-home-sites__media {
    box-shadow: 18px 18px 0 var(--hah-teal-pale);
  }

  .hah-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .hah-footer__contact {
    grid-column: 1 / -1;
  }

  .hah-blog-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hah-blog-hero__media {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  :root {
    --hah-section: 4.5rem;
    --hah-gutter: 1.15rem;
  }

  html {
    --hah-sticky-offset: 84px;
    scroll-behavior: auto;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  body.hah-is-booking-journey {
    padding-bottom: 0;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .hah-header__bar {
    display: none;
  }

  .hah-header__main {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .hah-brand__mark {
    width: 48px;
    flex-basis: 48px;
  }

  .hah-brand__copy strong {
    font-size: 1.02rem;
  }

  .hah-brand__secondary {
    gap: 0.08rem;
    padding-top: 0.14rem;
  }

  .hah-brand__secondary b {
    font-size: 0.78rem;
  }

  .hah-brand__secondary small {
    font-size: 0.45rem;
    letter-spacing: 0.025em;
  }

  .hah-button--header {
    display: none;
  }

  .hah-primary-navigation {
    inset: 72px 0 auto;
    max-height: calc(100svh - 72px - 60px);
  }

  .hah-blog-hero__grid {
    padding-block: 3.5rem;
  }

  .hah-blog-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .hah-blog-hero__media {
    min-height: 320px;
    box-shadow: 10px 10px 0 var(--hah-teal-pale), var(--hah-shadow-soft);
  }

  .hah-blog-grid,
  .hah-blog-post-grid {
    grid-template-columns: 1fr;
  }

  .admin-bar .hah-primary-navigation {
    top: 118px;
  }

  .hah-hero {
    min-height: min(720px, calc(100svh - 72px));
    align-items: end;
  }

  .hah-hero__picture img {
    object-position: 60% 50%;
  }

  .hah-hero__veil {
    background: linear-gradient(180deg, rgba(249, 251, 249, 0.9) 0%, rgba(249, 251, 249, 0.74) 48%, rgba(249, 251, 249, 0.97) 100%);
  }

  .hah-hero__inner {
    padding-block: 3.5rem 5rem;
  }

  body.admin-bar .hah-hero__inner {
    padding-bottom: 6.5rem;
  }

  .hah-hero__copy {
    width: 100%;
  }

  .hah-display-line {
    margin-bottom: 1.2rem;
    font-size: clamp(4.2rem, 19vw, 5.8rem);
    line-height: 0.8;
  }

  .hah-hero h1 {
    font-size: 1.35rem;
  }

  .hah-hero__lead {
    font-size: 0.96rem;
  }

  .hah-hero__caption {
    display: none;
  }

  .hah-hero .hah-button-row,
  .hah-final-cta .hah-button-row {
    display: grid;
  }

  .hah-booking-hero {
    margin-top: -34px !important;
  }

  .hah-booking-hero__inner {
    width: calc(100% - (2 * var(--hah-gutter)));
  }

  .hah-booking-search,
  .hah-booking-slot {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.3rem;
    box-shadow: var(--hah-shadow-soft);
  }

  .hah-booking-hero .hah-booking-search .hah-booking-search__fallback {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hah-booking-hero .hah-booking-search__fallback .hah-booking-search__helper,
  .hah-booking-hero .hah-booking-search__fallback .hah-booking-search__submit {
    grid-column: 1;
  }

  .hah-booking-hero .hah-booking-search__fallback .hah-booking-search__helper {
    grid-row: 1;
  }

  .hah-booking-hero .hah-booking-search__fallback .hah-booking-search__submit {
    width: 100%;
    grid-row: 2;
  }

  .hah-page-content--self-headed .hah-grid--two {
    grid-template-columns: 1fr;
  }

  .hah-stay-options {
    padding-block: 3.25rem;
  }

  .hah-stay-options__heading {
    margin-bottom: 2rem;
  }

  .hah-stay-options__heading h2 {
    font-size: clamp(2.65rem, 11vw, 3.25rem);
  }

  .hah-stay-options__heading > p:last-child {
    font-size: 0.95rem;
  }

  .hah-stay-options__featured {
    display: flex;
  }

  .hah-stay-options__featured-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hah-stay-options__featured-content {
    padding: 1.5rem;
  }

  .hah-stay-options__featured h3 {
    font-size: clamp(2.25rem, 10vw, 2.7rem);
  }

  .hah-stay-options__item {
    grid-template-columns: minmax(130px, 0.36fr) minmax(0, 0.64fr);
    gap: 1rem;
  }

  .hah-stay-options__item-content > h3 {
    font-size: clamp(1.55rem, 6.6vw, 1.9rem);
  }

  .hah-stay-options__description,
  .hah-stay-options__link-label {
    font-size: 0.92rem;
  }

  .hah-stay-options__link-label {
    margin-top: 0.75rem;
  }

  .hah-story__copy {
    padding-left: 0;
  }

  .hah-collage {
    min-height: 430px;
  }

  .hah-collage__primary {
    inset: 0 8% 10% 0;
  }

  .hah-collage__secondary {
    width: 44%;
    height: 34%;
    border-width: 6px;
  }

  .hah-paths__grid {
    grid-template-columns: 1fr;
  }

  .hah-path-card__media {
    min-height: 300px;
  }

  .hah-path-card__content {
    padding: 1.5rem;
  }

  .hah-info-card {
    min-height: 230px;
    padding: 1.5rem;
  }

  .hah-waterfront__media {
    min-height: 330px;
  }

  .hah-waterfront__content {
    padding: 3rem var(--hah-gutter) 4rem;
  }

  .hah-long-stay__inner {
    gap: 1.5rem;
  }

  .hah-home-sites__media,
  .hah-local__media {
    height: clamp(300px, 72vw, 380px);
    min-height: 0;
  }

  .hah-home-sites__media {
    box-shadow: -10px 10px 0 var(--hah-teal-pale);
  }

  .hah-new-homes .hah-home-sites__media {
    box-shadow: 10px 10px 0 var(--hah-teal-pale);
  }

  .hah-rates__booking .hah-booking-search,
  .hah-rates__booking .hah-booking-slot {
    min-height: 0;
  }

  .hah-final-cta {
    min-height: 500px;
  }

  .hah-final-cta h2 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }

  .hah-interior-hero {
    padding-block: 4rem;
  }

  .hah-interior-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .hah-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .hah-footer__brand,
  .hah-footer__contact {
    grid-column: 1 / -1;
  }

  .hah-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 1.3rem;
  }

  .hah-mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(60px + env(safe-area-inset-bottom));
    grid-template-columns: 1.35fr 0.65fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--hah-white);
    box-shadow: 0 -8px 26px rgba(6, 31, 52, 0.15);
  }

  .hah-mobile-actions a {
    display: grid;
    min-height: 60px;
    place-items: center;
    color: var(--hah-navy);
    font-size: 0.78rem;
    font-weight: 830;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hah-mobile-actions__primary {
    color: var(--hah-white) !important;
    background: var(--hah-teal);
  }
}

@media (max-width: 782px) {
  .admin-bar .hah-site-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .hah-stay-options__item {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 0.9rem;
    padding-block: 1rem;
  }

  .hah-stay-options__item:first-child {
    padding-top: 0;
  }

  .hah-stay-options__item-media {
    height: 100%;
    min-height: 112px;
    aspect-ratio: auto;
  }

  .hah-stay-options__item-content > h3 {
    font-size: clamp(1.5rem, 6.4vw, 1.8rem);
  }

  .hah-stay-options__description,
  .hah-stay-options__link-label {
    font-size: 0.96rem;
  }
}

@media (max-width: 360px) {
  .hah-stay-options__item {
    grid-template-columns: 1fr;
  }

  .hah-stay-options__item-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@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;
  }
}

@media print {
  .hah-site-header,
  .hah-site-footer,
  .hah-mobile-actions,
  .hah-button,
  .hah-booking-search {
    display: none !important;
  }

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

  a {
    color: #000;
    text-decoration: underline;
  }
}
