:root {
  --brand-primary: #102c46;
  --brand-primary-deep: #0b2034;
  --brand-secondary: #c96d55;
  --brand-secondary-deep: #a95240;
  --brand-ink: #263b4d;
  --brand-sage: #768d7c;
  --surface-primary: #fbfaf7;
  --surface-secondary: #f1eee8;
  --surface-tertiary: #e6ebe7;
  --surface-dark: #102c46;
  --surface-dark-soft: #173b59;
  --text-primary: #1b2a37;
  --text-secondary: #63717a;
  --text-on-dark: #f7f4ee;
  --text-muted-on-dark: #b6c2c9;
  --border-soft: #dfe4e1;
  --border-dark: rgba(255, 255, 255, .16);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(16, 44, 70, .08);
  --shadow-md: 0 18px 50px rgba(16, 44, 70, .14);
  --shadow-lg: 0 28px 75px rgba(16, 44, 70, .18);
  --space-xs: .4rem;
  --space-sm: .75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.75rem;
  --space-2xl: 6.5rem;
  --container: 1180px;
  --header-height: 74px;
  --transition: 180ms ease;
  --z-header: 30;
  --z-reviews: 80;
  --z-dialog: 100;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-primary);
  color: var(--text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 109, 85, .55);
  outline-offset: 3px;
}

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

.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: 200;
  top: -4rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--brand-primary);
  color: white;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

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

h1,
h2,
h3 {
  color: var(--brand-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.85rem);
  line-height: .98;
  margin-bottom: 1.6rem;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: .45rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--brand-secondary-deep);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 5px rgba(201, 109, 85, .12);
}

.eyebrow-light {
  color: #e6b29f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 750;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.button-coral {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(201, 109, 85, .22);
}

.button-coral:hover {
  background: var(--brand-secondary-deep);
  box-shadow: 0 12px 22px rgba(201, 109, 85, .3);
}

.button-outline {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}

.button-outline:hover {
  color: #fff;
  background: var(--brand-primary);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand-primary);
  font-size: .83rem;
  font-weight: 750;
}

.text-button:hover {
  color: var(--brand-secondary-deep);
}

.text-button span {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.text-button:hover span {
  transform: translateX(3px);
}

.site-header {
  position: relative;
  z-index: var(--z-header);
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(16, 44, 70, .08);
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--brand-primary);
}

.brand img {
  flex: 0 0 auto;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .04em;
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark strong,
.brand-wordmark em {
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 800;
}

.brand-wordmark strong {
  color: var(--brand-primary);
}

.brand-wordmark em {
  color: var(--brand-secondary);
}

.brand-wordmark small {
  font-size: .55rem;
  font-weight: 800;
  color: var(--text-secondary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: .78rem;
  font-weight: 650;
  color: var(--text-secondary);
}

.main-nav a {
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--brand-primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: .65rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: white;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--brand-primary);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(3rem, 7vw, 7.5rem) 5.5rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-left: clamp(0px, 2vw, 2rem);
}

.hero-lede {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.25rem;
  color: var(--text-secondary);
  font-size: .7rem;
  font-weight: 650;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.hero-proof b {
  color: var(--brand-secondary-deep);
  font-size: .65rem;
  letter-spacing: .08em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 460px;
}

.hero-image-frame {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 150px 18px 18px 18px;
  box-shadow: var(--shadow-lg);
  background: var(--surface-tertiary);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 44, 70, .04), rgba(16, 44, 70, .25));
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  z-index: 1;
  right: 1.3rem;
  bottom: 1.2rem;
  padding: .4rem .7rem;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: var(--radius-pill);
  color: white;
  background: rgba(16, 44, 70, .35);
  font-size: .68rem;
  backdrop-filter: blur(5px);
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: var(--radius-sm);
  background: rgba(251, 250, 247, .94);
  box-shadow: var(--shadow-md);
}

.floating-note-top {
  top: 2.1rem;
  left: -2rem;
}

.floating-note-bottom {
  right: -1.3rem;
  bottom: 2.5rem;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  background: var(--brand-primary);
  font-size: .9rem;
}

.note-icon-warm {
  background: var(--brand-secondary);
}

.floating-note strong,
.floating-note small {
  display: block;
  line-height: 1.2;
}

.floating-note strong {
  color: var(--brand-primary);
  font-size: .8rem;
}

.floating-note small {
  margin-top: .25rem;
  color: var(--text-secondary);
  font-size: .62rem;
}

.hotel-search-zone {
  position: relative;
  z-index: 4;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  color: var(--text-on-dark);
  background: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.search-priority {
  margin-top: clamp(.9rem, 2.2vw, 1.75rem);
}

.search-priority .search-zone-head {
  padding-bottom: .9rem;
}

.search-priority .search-zone-help {
  max-width: 33rem;
}

.search-priority .search-form {
  grid-template-columns: minmax(0, 1.45fr) minmax(130px, .9fr) minmax(130px, .9fr) minmax(180px, 1.1fr) auto;
}

.search-priority .guest-field .field-content strong {
  font-size: .78rem;
}

.search-priority .guest-popover {
  right: 1rem;
}

.search-zone-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: .2rem .3rem 1.25rem;
}

.search-zone-head h2 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.search-zone-head .eyebrow {
  margin-bottom: .6rem;
}

.search-zone-help {
  max-width: 27rem;
  margin: 0 0 .2rem;
  color: var(--text-muted-on-dark);
  font-size: .78rem;
  text-align: right;
}

.search-form {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr 1.18fr auto;
  gap: .5rem;
  padding: .5rem;
  border-radius: var(--radius-md);
  background: #fff;
}

.search-field {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  min-height: 65px;
  padding: .7rem .8rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--brand-primary);
  background: #fff;
  text-align: left;
  transition: border-color var(--transition), background var(--transition);
}

.search-field:hover,
.search-field:focus-within {
  border-color: rgba(201, 109, 85, .4);
  background: #fffaf8;
}

.field-icon {
  display: grid;
  place-items: center;
  width: 26px;
  color: var(--brand-secondary);
  font-size: 1.15rem;
}

.field-content {
  display: block;
  min-width: 0;
}

.field-content small {
  display: block;
  margin-bottom: .25rem;
  color: var(--text-secondary);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field-content input,
.field-content strong {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 0;
  outline: 0;
  color: var(--brand-primary);
  background: transparent;
  font-size: .85rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-content input[type="date"] {
  min-width: 126px;
  font-size: .78rem;
}

.guest-field {
  position: relative;
  justify-content: flex-start;
}

.guest-field .field-content {
  flex: 1;
}

.field-chevron {
  color: var(--text-secondary);
  font-size: 1rem;
}

.search-submit {
  min-height: 65px;
  padding-inline: 1.35rem;
  border-radius: var(--radius-sm);
  font-size: .8rem;
}

.search-footnote {
  margin: .85rem .25rem 0;
  color: var(--text-muted-on-dark);
  font-size: .67rem;
}

.search-footnote span {
  display: inline-block;
  margin-right: .3rem;
  color: #a8d1bd;
  font-weight: 800;
}

.guest-popover {
  position: absolute;
  z-index: 5;
  top: calc(100% - 1.2rem);
  right: 12.3rem;
  width: min(300px, calc(100% - 2rem));
  padding: .75rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  background: white;
  box-shadow: var(--shadow-md);
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem .65rem;
  border-bottom: 1px solid var(--border-soft);
}

.guest-row:last-child {
  border-bottom: 0;
}

.guest-row strong,
.guest-row small {
  display: block;
}

.guest-row strong {
  font-size: .8rem;
}

.guest-row small {
  margin-top: .2rem;
  color: var(--text-secondary);
  font-size: .68rem;
}

.counter {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.counter button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--brand-primary);
  background: white;
  font-size: 1.1rem;
  line-height: 1;
}

.counter button:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary-deep);
}

.counter b {
  min-width: 1rem;
  text-align: center;
  font-size: .8rem;
}

.trust-strip {
  margin-top: 3.75rem;
  border-block: 1px solid var(--border-soft);
  background: var(--surface-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid>div {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 92px;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border-soft);
}

.trust-grid>div:first-child {
  padding-left: 0;
}

.trust-grid>div:last-child {
  border-right: 0;
}

.trust-number {
  color: var(--brand-secondary-deep);
  font-family: Georgia, serif;
  font-size: 1.15rem;
}

.trust-grid strong,
.trust-grid small {
  display: block;
}

.trust-grid strong {
  color: var(--brand-primary);
  font-size: .78rem;
}

.trust-grid small {
  margin-top: .18rem;
  color: var(--text-secondary);
  font-size: .68rem;
}

.section {
  padding-block: var(--space-2xl);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 39rem;
  color: var(--text-secondary);
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 2rem;
  max-width: none;
}

.section-heading-split>p {
  margin-bottom: .35rem;
  color: var(--text-secondary);
  font-size: .9rem;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.35rem;
  overflow-x: auto;
  padding-bottom: .3rem;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-label {
  margin-right: .35rem;
  color: var(--text-secondary);
  font-size: .72rem;
  font-weight: 750;
}

.filter-chip {
  flex: 0 0 auto;
  padding: .52rem .78rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  background: transparent;
  font-size: .7rem;
  font-weight: 700;
  transition: all var(--transition);
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--brand-primary);
  color: white;
  background: var(--brand-primary);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 4px 18px rgba(16, 44, 70, .04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.offer-card[hidden] {
  display: none;
}

.offer-image {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: var(--surface-tertiary);
}

.offer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 44, 70, .28));
  pointer-events: none;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.04);
}

.offer-badge {
  position: absolute;
  z-index: 1;
  left: .75rem;
  bottom: .7rem;
  padding: .35rem .55rem;
  border-radius: var(--radius-pill);
  color: white;
  background: rgba(16, 44, 70, .8);
  font-size: .6rem;
  font-weight: 750;
}

.offer-badge-light {
  color: var(--brand-primary);
  background: rgba(255, 255, 255, .9);
}

.offer-body {
  padding: .95rem;
}

.offer-kicker {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .6rem;
  color: var(--text-secondary);
  font-size: .66rem;
  font-weight: 700;
}

.rating {
  color: var(--brand-secondary-deep);
}

.offer-body h3 {
  margin-bottom: .3rem;
  font-size: 1.2rem;
}

.offer-location {
  margin-bottom: .8rem;
  color: var(--text-secondary);
  font-size: .72rem;
}

.offer-services {
  display: flex;
  flex-wrap: wrap;
  gap: .32rem;
  min-height: 2.4rem;
  margin-bottom: 1rem;
}

.offer-services span {
  padding: .25rem .38rem;
  border-radius: var(--radius-xs);
  color: var(--text-secondary);
  background: var(--surface-secondary);
  font-size: .6rem;
}

.offer-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .7rem;
  border-top: 1px solid var(--border-soft);
}

.offer-price small,
.offer-price strong {
  display: block;
}

.offer-price small {
  color: var(--text-secondary);
  font-size: .6rem;
}

.offer-price strong {
  margin: .08rem 0;
  color: var(--brand-primary);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.offer-price .text-button {
  font-size: .68rem;
  white-space: nowrap;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.comparison-section {
  padding-block: 5.5rem;
  color: var(--text-on-dark);
  background: var(--brand-primary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.comparison-copy h2 {
  color: white;
}

.comparison-copy p:not(.eyebrow) {
  max-width: 29rem;
  margin-bottom: 1.65rem;
  color: var(--text-muted-on-dark);
  font-size: .92rem;
}

.comparison-copy .text-button {
  color: #efc0ad;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}

.comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .73rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem .8rem;
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: #a7b6bf;
  font-size: .68rem;
  font-weight: 650;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  color: #e2e9eb;
  text-align: left;
}

.comparison-table tbody td {
  color: #b6c2c9;
}

.comparison-table .is-recommended {
  color: white;
  background: rgba(201, 109, 85, .17);
}

.comparison-table thead .is-recommended {
  color: #f4b39d;
}

.comparison-table thead span {
  display: block;
  margin-top: .2rem;
  color: #e8aa94;
  font-size: .58rem;
  font-weight: 500;
}

.table-yes {
  color: #a8d1bd;
  font-weight: 800;
}

.table-no {
  color: #8c9aa0;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.35fr .825fr .825fr;
  gap: 1rem;
}

.destination-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-tertiary);
}

.destination-card-large {
  min-height: 470px;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 44, 70, .02) 30%, rgba(16, 44, 70, .76) 100%);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  z-index: 1;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  color: white;
}

.destination-overlay small,
.destination-overlay strong,
.destination-overlay span {
  display: block;
}

.destination-overlay small {
  margin-bottom: .28rem;
  color: #e9c0b2;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.destination-overlay strong {
  margin-bottom: .35rem;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.destination-overlay span {
  color: #e1e8e9;
  font-size: .72rem;
}

.category-section {
  padding-block: 5.5rem;
  background: var(--brand-primary-deep);
}

.section-heading-light h2 {
  color: white;
}

.section-heading-light p:not(.eyebrow) {
  color: var(--text-muted-on-dark);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: var(--border-dark);
}

.category-grid a {
  position: relative;
  min-height: 150px;
  padding: 1.35rem;
  color: white;
  background: var(--brand-primary-deep);
  transition: background var(--transition);
}

.category-grid a:hover {
  background: var(--surface-dark-soft);
}

.category-index {
  display: block;
  margin-bottom: 1.6rem;
  color: #df9a83;
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.category-grid strong,
.category-grid small {
  display: block;
}

.category-grid strong {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.category-grid small {
  margin-top: .32rem;
  color: var(--text-muted-on-dark);
  font-size: .7rem;
}

.category-arrow {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  color: #df9a83;
  font-size: 1.15rem;
}

.editorial-callout {
  display: grid;
  grid-template-columns: 4px 1fr 150px;
  align-items: center;
  gap: 2rem;
  padding-block: 5.5rem;
}

.editorial-rule {
  align-self: stretch;
  border-radius: 4px;
  background: var(--brand-secondary);
}

.editorial-callout h2 {
  max-width: 44rem;
  margin-bottom: .85rem;
}

.editorial-callout p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--text-secondary);
}

.editorial-mark {
  justify-self: end;
  color: var(--brand-primary);
  font-family: Georgia, serif;
  font-size: 5.4rem;
  line-height: .7;
  letter-spacing: -.15em;
  opacity: .13;
}

.editorial-mark span {
  color: var(--brand-secondary);
}

.faq-section {
  padding-top: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem 2.5rem;
  border-top: 1px solid var(--border-soft);
}

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

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  color: var(--brand-primary);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-grid summary span {
  color: var(--brand-secondary);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-grid details[open] summary span {
  transform: rotate(45deg);
}

.faq-grid details p {
  max-width: 35rem;
  margin: -.25rem 2rem 1.1rem 0;
  color: var(--text-secondary);
  font-size: .78rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: var(--space-2xl);
  padding: 2rem 2.25rem;
}

.hotel-search-zone-small h2 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.hotel-search-zone-small .eyebrow {
  margin-bottom: .55rem;
}

.site-footer {
  padding-top: 4rem;
  color: var(--text-muted-on-dark);
  background: var(--brand-primary-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.brand-light .brand-wordmark strong {
  color: white;
}

.brand-light .brand-wordmark small {
  color: #91a3ad;
}

.footer-brand p {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: #9bacb4;
  font-size: .76rem;
}

.site-footer h2 {
  margin: 0 0 1rem;
  color: #df9a83;
  font-family: inherit;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: .65rem;
  color: #c0cbd0;
  font-size: .75rem;
}

.site-footer a:not(.brand):hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid var(--border-dark);
  color: #8fa1aa;
  font-size: .65rem;
}

dialog.booking-dialog {
  width: min(760px, calc(100% - 2rem));
  max-height: min(760px, calc(100dvh - 2rem));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  background: var(--surface-primary);
  box-shadow: var(--shadow-lg);
}

dialog.booking-dialog::backdrop {
  background: rgba(7, 24, 38, .62);
  backdrop-filter: blur(4px);
}

.dialog-shell {
  padding: 1.35rem;
}

.dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-head .eyebrow {
  margin-bottom: .55rem;
}

.dialog-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--brand-primary);
  background: white;
  font-size: 1.55rem;
  line-height: 1;
}

.dialog-close:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary-deep);
}

.dialog-description {
  margin: .8rem 0 1rem;
  color: var(--text-secondary);
  font-size: .78rem;
}

.affiliate-frame-wrap {
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.affiliate-frame-wrap iframe {
  display: block;
  width: 900px;
  max-width: 100%;
  height: 200px;
  border: 0;
}

.affiliate-placeholder {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 200px;
  color: var(--text-secondary);
  font-size: .75rem;
}

.loader-orb {
  width: 18px;
  height: 18px;
  border: 2px solid #e8c2b5;
  border-top-color: var(--brand-secondary);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.dialog-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  margin-top: 1rem;
}

.dialog-links a {
  padding: .7rem .8rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--brand-primary);
  font-size: .72rem;
  font-weight: 700;
}

.dialog-links a:hover {
  border-color: var(--brand-secondary);
  background: #fff7f3;
}

.dialog-links a span {
  float: right;
  color: var(--brand-secondary-deep);
}

.dialog-disclosure {
  margin: .85rem 0 0;
  color: var(--text-secondary);
  font-size: .64rem;
}

/* Styles shared by generated local category pages. */
.local-page .local-hero {
  padding-block: 3.5rem 4.5rem;
  background: var(--surface-secondary);
}

.local-page .local-hero-inner {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 3rem;
  align-items: start;
}

.local-page .local-hero h1 {
  max-width: 47rem;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
}

.local-page .local-hero-lede {
  max-width: 37rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.local-page .local-hero-art {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--surface-tertiary);
}

.local-page .local-hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
  margin-bottom: 1.35rem;
  color: var(--text-secondary);
  font-size: .68rem;
}

.breadcrumbs a:hover {
  color: var(--brand-secondary-deep);
}

.local-results {
  padding-block: 4.5rem;
}

.local-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.local-results-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.local-results-head p {
  max-width: 25rem;
  margin-bottom: .2rem;
  color: var(--text-secondary);
  font-size: .78rem;
}

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

.local-offer {
  display: grid;
  grid-template-columns: minmax(170px, .72fr) 1fr;
}

.local-offer .offer-image {
  height: 100%;
  min-height: 235px;
  aspect-ratio: auto;
}

.local-offer .offer-body {
  padding: 1.25rem;
}

.local-offer .offer-services {
  min-height: 1rem;
}

.local-offer .offer-price {
  margin-top: .8rem;
}

.local-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  align-items: start;
  padding-block: 5rem;
  background: var(--surface-secondary);
}

.local-split>.container {
  display: contents;
}

.local-split-copy {
  grid-column: 1;
  margin-left: max(1.5rem, calc((100vw - var(--container)) / 2));
}

.local-split-content {
  grid-column: 2;
  margin-right: max(1.5rem, calc((100vw - var(--container)) / 2));
}

.local-split-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.local-split-copy p {
  color: var(--text-secondary);
  font-size: .9rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.service-list div {
  padding: .9rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: white;
}

.service-list strong {
  display: block;
  color: var(--brand-primary);
  font-size: .78rem;
}

.service-list span {
  display: block;
  margin-top: .3rem;
  color: var(--text-secondary);
  font-size: .67rem;
}

.order66 {
  font-family: Arial, Verdana, Helvetica;
  font-size: 12px;
  position: absolute;
  left: -7500px
}

.order666 {
  padding-block: 5rem;
}

.order666 h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
}

.order666 h2,
.order666 h3 {
  max-width: 50rem;
  margin-bottom: .5rem;
  font-family: Georgia, serif;
}

.order666 h2 {
  color: var(--brand-secondary-deep);
  font-size: 1.25rem;
}

.order666 h3 {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.order666 h4 {
  margin: 2rem 0 .7rem;
  color: var(--brand-primary);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.order666 h1,
.order666 h2,
.order666 h3,
.order666 h4 {
  overflow-wrap: anywhere;
}

.order666 p {
  max-width: 56rem;
  color: var(--text-secondary);
  font-size: .88rem;
}

.faq-local {
  background: var(--surface-primary);
}

.reviews-drawer-trigger {
  position: fixed;
  z-index: var(--z-reviews);
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  width: 3.65rem;
  padding: .85rem .55rem 1rem;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .22);
  border-right: 0;
  border-radius: .9rem 0 0 .9rem;
  color: white;
  background: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.reviews-drawer-trigger:hover {
  background: var(--brand-secondary-deep);
}

.reviews-drawer-trigger-count {
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}

.reviews-drawer-trigger-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.review-drawer-open {
  overflow: hidden;
}

dialog.reviews-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(430px, 100vw);
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  color: var(--text-on-dark);
  background: var(--brand-primary-deep);
  box-shadow: var(--shadow-lg);
}

dialog.reviews-drawer::backdrop {
  background: rgba(7, 24, 38, .42);
  backdrop-filter: blur(2px);
}

.reviews-drawer-shell {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem;
  overflow: hidden;
}

.reviews-drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-drawer-head .eyebrow {
  margin-bottom: .55rem;
}

.reviews-drawer h2 {
  max-width: 19rem;
  margin-bottom: 0;
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

.reviews-drawer .review-disclaimer {
  max-width: 36rem;
  margin: .9rem 0 0;
  color: var(--text-muted-on-dark);
  font-size: .72rem;
}

.review-carousel {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: 0;
  margin-block: 1rem;
  overflow: hidden;
  touch-action: pan-y;
}

.review-track {
  display: flex;
  width: 100%;
  transition: transform 360ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 245px;
  padding: 1rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
}

.review-card[aria-hidden="true"] {
  visibility: hidden;
}

.review-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: .45rem;
  margin-bottom: .75rem;
}

.review-card strong {
  color: white;
  font-size: .74rem;
}

.review-card .review-score {
  color: #f1b19b;
  font-size: .7rem;
  font-weight: 800;
}

.review-card p {
  min-height: 7.6rem;
  margin-bottom: .7rem;
  color: #d4dfe2;
  font-size: .78rem;
  line-height: 1.55;
}

.review-card footer {
  padding-top: .6rem;
  border-top: 1px solid var(--border-dark);
  color: #98abb3;
  font-size: .61rem;
}

.review-carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: .5rem;
}

.review-control,
.review-pause {
  min-width: 38px;
  min-height: 38px;
  padding: .45rem .65rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-xs);
  color: white;
  background: rgba(255, 255, 255, .08);
}

.review-control:hover,
.review-pause:hover {
  border-color: #e6b29f;
  background: rgba(201, 109, 85, .3);
}

.review-pause {
  min-width: 64px;
  font-size: .68rem;
  font-weight: 750;
}

.review-status {
  color: var(--text-muted-on-dark);
  font-size: .68rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .review-track {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(var(--container), calc(100% - 2rem));
  }

  .hero {
    grid-template-columns: .9fr 1.1fr;
    gap: 2.5rem;
  }

  .hero-visual,
  .hero-image-frame,
  .hero-image-frame img {
    min-height: 390px;
  }

  .floating-note-top {
    left: -1rem;
  }

  .floating-note-bottom {
    right: -.6rem;
  }

  .search-priority .search-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .search-priority .search-destination,
  .search-priority .search-submit {
    grid-column: span 2;
  }

  .search-priority .guest-field .field-content strong {
    font-size: .72rem;
  }

  .search-form {
    grid-template-columns: repeat(4, 1fr);
  }

  .search-destination {
    grid-column: span 2;
  }

  .search-submit {
    grid-column: span 2;
  }

  .guest-popover {
    right: 1rem;
  }

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

@media (max-width: 767px) {
  :root {
    --space-2xl: 4rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    min-height: 64px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-wordmark strong,
  .brand-wordmark em {
    font-size: .9rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: .75rem;
    left: .75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--surface-primary);
    box-shadow: var(--shadow-md);
  }

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

  .main-nav a {
    padding: .8rem;
    border-radius: var(--radius-sm);
  }

  .main-nav a:hover {
    background: var(--surface-secondary);
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding-block: 3.25rem 4.2rem;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-lede {
    font-size: .98rem;
  }

  .search-priority {
    margin-top: .75rem;
    padding: 1rem;
  }

  .search-priority .search-zone-head {
    display: block;
    padding-bottom: .8rem;
  }

  .search-priority .search-zone-help {
    margin-top: .65rem;
    text-align: left;
  }

  .search-priority .search-form {
    grid-template-columns: 1fr;
  }

  .search-priority .search-destination,
  .search-priority .search-submit {
    grid-column: auto;
  }

  .search-priority .search-submit {
    width: 100%;
  }

  .search-priority .guest-field .field-content strong {
    font-size: .8rem;
  }

  .search-priority .guest-popover {
    right: .8rem;
    left: .8rem;
  }

  .hero-proof {
    gap: .65rem .9rem;
  }

  .hero-visual,
  .hero-image-frame,
  .hero-image-frame img {
    min-height: 340px;
  }

  .hero-image-frame {
    border-radius: 100px 14px 14px 14px;
  }

  .floating-note {
    padding: .55rem .65rem;
  }

  .floating-note-top {
    top: 1rem;
    left: .8rem;
  }

  .floating-note-bottom {
    right: .8rem;
    bottom: 1rem;
  }

  .search-zone-head {
    display: block;
  }

  .search-zone-help {
    margin-top: .7rem;
    text-align: left;
  }

  .search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: .4rem;
  }

  .search-destination,
  .search-submit {
    grid-column: 1 / -1;
  }

  .search-field {
    min-height: 60px;
    padding: .55rem;
  }

  .field-content input[type="date"] {
    min-width: 0;
    max-width: 100%;
  }

  .search-submit {
    min-height: 56px;
  }

  .guest-popover {
    top: calc(100% - 3.2rem);
    right: .8rem;
    left: .8rem;
    width: auto;
  }

  .trust-grid {
    display: block;
  }

  .trust-grid>div,
  .trust-grid>div:first-child {
    min-height: 70px;
    padding: .75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .trust-grid>div:last-child {
    border-bottom: 0;
  }

  .section-heading-split,
  .comparison-grid {
    display: block;
  }

  .section-heading-split>p {
    margin-top: 1rem;
  }

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

  .offer-card-featured {
    grid-row: auto;
  }

  .offer-image {
    aspect-ratio: 1.55;
  }

  .comparison-section {
    padding-block: 4rem;
  }

  .comparison-table-wrap {
    margin-top: 2.25rem;
  }

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

  .destination-card,
  .destination-card-large {
    min-height: 250px;
  }

  .destination-card-large {
    grid-column: span 2;
  }

  .destination-overlay strong {
    font-size: 1.7rem;
  }

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

  .category-grid strong {
    font-size: 1.1rem;
  }

  .category-grid a {
    min-height: 145px;
    padding: 1rem;
  }

  .category-index {
    margin-bottom: 1.15rem;
  }

  .category-arrow {
    top: 1rem;
    right: 1rem;
  }

  .editorial-callout {
    grid-template-columns: 4px 1fr;
    gap: 1rem;
    padding-block: 4rem;
  }

  .editorial-mark {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .final-cta {
    display: block;
    padding: 1.5rem;
  }

  .final-cta .button {
    width: 100%;
    margin-top: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: .3rem;
  }

  dialog.booking-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100dvh - 1rem);
    border-radius: var(--radius-md);
  }

  .dialog-shell {
    padding: 1rem;
  }

  .dialog-links {
    grid-template-columns: 1fr;
  }

  .affiliate-frame-wrap {
    min-height: 320px;
  }

  .affiliate-frame-wrap iframe {
    width: 320px;
    height: 320px;
  }

  .local-page .local-hero-inner,
  .local-split {
    display: block;
  }

  .local-page .local-hero {
    padding-block: 2.75rem 3.5rem;
  }

  .local-page .local-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .local-page .local-hero-inner>div+div {
    margin-top: 2rem;
  }

  .local-results {
    padding-block: 3.5rem;
  }

  .local-results-head {
    display: block;
  }

  .local-results-head p {
    margin-top: .8rem;
  }

  .local-offers {
    grid-template-columns: 1fr;
  }

  .local-offer {
    display: block;
  }

  .local-offer .offer-image {
    min-height: 220px;
  }

  .local-split {
    padding-block: 3.5rem;
  }

  .local-split-copy,
  .local-split-content {
    margin-inline: auto;
  }

  .local-split-content {
    margin-top: 2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .order666 {
    padding-block: 3.5rem;
  }

  .reviews-drawer-trigger {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    flex-direction: row;
    gap: .55rem;
    padding: .7rem .85rem;
    transform: none;
    border-radius: var(--radius-pill);
  }

  .reviews-drawer-trigger-label {
    writing-mode: initial;
    transform: none;
    font-size: .62rem;
  }

  dialog.reviews-drawer {
    inset: auto 0 0;
    width: 100%;
    height: 85dvh;
    max-height: 85dvh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .reviews-drawer-shell {
    padding: 1rem;
  }

  .reviews-drawer h2 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .review-card {
    min-height: 225px;
  }

  .review-card p {
    min-height: 7rem;
    font-size: .76rem;
  }
}

@media (max-width: 380px) {
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .search-destination,
  .search-submit {
    grid-column: auto;
  }

  .search-field {
    min-height: 56px;
  }

  .destination-grid {
    display: block;
  }

  .destination-card,
  .destination-card-large {
    min-height: 280px;
    margin-bottom: .75rem;
  }

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

  .category-grid a {
    min-height: 125px;
  }
}

.simple-hero {
  padding-block: 5.5rem 4.5rem;
  background: var(--surface-secondary);
}

.simple-hero-compact {
  padding-block: 4rem 3.5rem;
}

.simple-hero h1 {
  max-width: 52rem;
  margin-bottom: 1rem;
}

.simple-hero p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.simple-content {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 5rem;
  padding-block: 6rem;
}

.simple-content-narrow {
  display: block;
  max-width: 820px;
}

.sitemap-content {
  padding-block: var(--space-xl);
}

.sitemap-content section+section {
  margin-top: var(--space-xl);
}

.sitemap-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.sitemap-content h3 {
  margin-top: var(--space-lg);
}

.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm) var(--space-lg);
  padding: 0;
  list-style: none;
}

.sitemap-links li {
  min-width: 0;
}

.sitemap-links a {
  display: block;
  padding: var(--space-sm);
  border-bottom: 1px solid var(--border-soft);
  color: var(--brand-primary);
  overflow-wrap: anywhere;
}

.sitemap-links a:hover {
  background: var(--surface-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sitemap-back,
.sitemap-xml-link a {
  display: inline-block;
  margin-block: var(--space-md);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sitemap-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-block: var(--space-lg);
}

.sitemap-pagination a,
.sitemap-pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-xs);
}

.sitemap-pagination a {
  border: 1px solid var(--border-soft);
}

.sitemap-pagination a:hover {
  background: var(--surface-secondary);
}

.sitemap-pagination [aria-current="page"] {
  background: var(--brand-primary);
  color: var(--text-on-dark);
}

.sitemap-page h1 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .sitemap-links {
    grid-template-columns: minmax(0, 1fr);
  }
}

.simple-intro h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.simple-intro p:not(.eyebrow),
.simple-content-narrow>p:not(.legal-updated) {
  color: var(--text-secondary);
  font-size: .9rem;
}

.simple-content-narrow h2 {
  margin-top: 2.5rem;
  font-size: 1.7rem;
}

.simple-content-narrow h2:first-of-type {
  margin-top: 1rem;
}

.simple-content-narrow .inline-link {
  color: var(--brand-secondary-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-bottom: 1rem;
  color: var(--brand-secondary-deep);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--border-soft);
}

.values-grid article {
  min-height: 220px;
  padding: 1.25rem;
  background: var(--surface-primary);
}

.values-grid article>span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--brand-secondary-deep);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.values-grid h3 {
  font-size: 1.15rem;
}

.values-grid p {
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: .73rem;
}

.method-band {
  padding-block: 5rem;
  color: var(--text-on-dark);
  background: var(--brand-primary);
}

.method-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

.method-grid h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.method-grid ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.method-grid li {
  counter-increment: method;
  padding: 1.1rem 0 1.1rem 2.3rem;
  border-top: 1px solid var(--border-dark);
}

.method-grid li::before {
  content: "0" counter(method);
  display: block;
  margin-left: -2.3rem;
  margin-bottom: .55rem;
  color: #df9a83;
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .1em;
}

.method-grid li strong,
.method-grid li span {
  display: block;
}

.method-grid li strong {
  color: white;
  font-size: .8rem;
}

.method-grid li span {
  margin-top: .25rem;
  color: var(--text-muted-on-dark);
  font-size: .68rem;
}

.notice-box {
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--brand-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-secondary);
}

.notice-box strong {
  display: block;
  color: var(--brand-primary);
  font-size: .8rem;
}

.notice-box p {
  margin: .4rem 0 0;
  color: var(--text-secondary);
  font-size: .75rem;
}

.contact-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 5rem;
  padding-block: 6rem;
}

.contact-aside h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-aside>p:not(.eyebrow) {
  color: var(--text-secondary);
  font-size: .9rem;
}

.contact-note {
  display: grid;
  gap: .3rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--surface-secondary);
}

.contact-note strong {
  color: var(--brand-primary);
  font-size: .75rem;
}

.contact-note span {
  color: var(--text-secondary);
  font-size: .7rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.contact-form label span {
  display: block;
  margin-bottom: .42rem;
  color: var(--brand-primary);
  font-size: .72rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .78rem .85rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  background: var(--surface-primary);
  font-size: .82rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-secondary);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(201, 109, 85, .12);
}

.contact-form .button {
  width: fit-content;
}

.form-message {
  min-height: 1.2rem;
  margin: 0;
  color: var(--brand-sage);
  font-size: .72rem;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  text-align: center;
  background: var(--surface-secondary);
}

.error-page .container {
  max-width: 680px;
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page p:not(.eyebrow) {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .simple-hero {
    padding-block: 3.5rem 3rem;
  }

  .simple-content,
  .contact-section,
  .method-grid {
    display: block;
    padding-block: 4rem;
  }

  .simple-intro {
    margin-bottom: 2.5rem;
  }

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

  .values-grid article {
    min-height: auto;
  }

  .values-grid article>span {
    margin-bottom: 1.2rem;
  }

  .method-grid ol {
    margin-top: 2rem;
  }

  .contact-aside {
    margin-bottom: 2.5rem;
  }

  .contact-form {
    padding: 1rem;
  }
}

@media (max-width: 380px) {
  .method-grid ol {
    grid-template-columns: 1fr;
  }
}