:root {
  --white: #ffffff;
  --clean-white: #fbf7f4;
  --soft-white: #f8f8f6;
  --ink: #080808;
  --ink-soft: #34302d;
  --muted: #6f625a;
  --crimson: #8b0015;
  --dark-crimson: #5e000e;
  --gold: #cba24a;
  --gold-soft: #d6b766;
  --gold-pale: #e8d7ae;
  --copper: #b4640a;
  --line: rgba(203, 162, 74, 0.26);
  --panel-line: rgba(94, 0, 14, 0.12);
  --shadow: 0 16px 34px rgba(8, 8, 8, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

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

.page-shell,
.announcement,
.site-header,
main {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 10vw, 220px);
  min-height: 30px;
  padding: 4px 48px;
  color: var(--white);
  background: linear-gradient(90deg, #4a0007, var(--dark-crimson) 45%, #4a0007);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.announcement svg {
  width: 16px;
  height: 16px;
  color: var(--gold-soft);
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 60px;
  padding: 8px 48px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.14);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  width: 112px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 43px;
  font-weight: 500;
  letter-spacing: 3px;
}

.brand-rule {
  width: 96px;
  height: 1px;
  margin: -1px 0 5px;
  background: var(--gold-soft);
}

.brand-sub {
  color: var(--ink);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 58px);
  min-width: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.book-button,
.primary-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.book-button {
  height: 38px;
  padding: 0 20px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 7px 16px rgba(94, 0, 14, 0.18);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.book-button svg {
  width: 16px;
  height: 16px;
  color: var(--gold-soft);
}

.book-short {
  display: none;
}

.icon-link {
  position: relative;
  display: grid;
  width: 24px;
  height: 38px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.65;
}

.bag-count {
  position: absolute;
  top: 0;
  right: -8px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 9px;
  line-height: 1;
}

.nav-toggle,
.hamburger {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 39%) minmax(0, 61%);
  min-height: 296px;
  overflow: hidden;
  border-bottom: 1px solid rgba(203, 162, 74, 0.14);
  background: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 19px 20px 20px 56px;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 78%, rgba(255, 255, 255, 0));
}

.eyebrow,
.panel-heading h2,
.journey-strip h2,
.moments-strip h2,
.footer-links h2,
.newsletter h2 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--gold);
}

.hero h1,
.booking-band h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 520px;
}

.hero h1 span {
  color: var(--copper);
  font-family: "Jost", Arial, sans-serif;
  font-weight: 300;
}

.hero-text {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.trust-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 584px;
  margin-top: 23px;
}

.trust-chips article {
  min-height: 86px;
  padding: 0 18px;
  text-align: center;
}

.trust-chips article:first-child {
  padding-left: 0;
}

.trust-chips article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.26);
}

.trust-chips svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 11px;
  color: var(--dark-crimson);
}

.trust-chips h2,
.expect-list h3,
.info-list h3 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-chips p,
.expect-list p,
.info-list p,
.panel-heading p {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 30%;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-stat {
  position: absolute;
  right: 44px;
  bottom: 14px;
  z-index: 2;
  width: 152px;
  padding: 13px 12px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.hero-stat span,
.hero-stat small {
  display: block;
  color: var(--ink);
  font-size: 11px;
}

.hero-stat .stars {
  margin: 8px 0 3px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.84fr 1.16fr;
  gap: 28px;
  padding: 0 48px 12px;
  margin-top: -1px;
}

.panel {
  min-width: 0;
  padding: 22px 16px 12px;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 28px rgba(94, 0, 14, 0.03);
}

.panel-heading {
  margin-bottom: 12px;
}

.form-panel {
  padding-bottom: 14px;
}

.consult-options {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 15px;
  border: 0;
}

.option-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  padding: 0 13px;
  border: 1px solid rgba(94, 0, 14, 0.1);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(251, 247, 244, 0.48);
}

.option-row.selected {
  border-color: rgba(94, 0, 14, 0.72);
  background: rgba(251, 247, 244, 0.9);
}

.option-icon {
  color: var(--dark-crimson);
}

.option-icon svg {
  width: 18px;
  height: 18px;
}

.option-row strong,
.option-row em {
  overflow: hidden;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.option-row em {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: none;
}

.option-row input {
  grid-column: 4;
  grid-row: 1;
  appearance: none;
  width: 13px;
  height: 13px;
  margin: 0;
  border: 1px solid rgba(94, 0, 14, 0.28);
  border-radius: 50%;
  background: var(--white);
}

.option-row input:checked {
  border: 4px solid var(--dark-crimson);
}

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

.field-grid input,
.field-grid textarea {
  width: 100%;
  min-height: 31px;
  border: 1px solid rgba(94, 0, 14, 0.12);
  border-radius: 3px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 400;
  outline: none;
}

.field-grid textarea {
  min-height: 58px;
  padding-top: 10px;
  resize: vertical;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: #7f7470;
  opacity: 1;
}

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

.primary-btn {
  width: 100%;
  min-height: 34px;
  margin-top: 12px;
  color: var(--white);
  background: linear-gradient(180deg, #7c0012, var(--dark-crimson));
  box-shadow: 0 8px 18px rgba(94, 0, 14, 0.18);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
}

.primary-btn svg {
  width: 15px;
  height: 15px;
  color: var(--gold-soft);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.secure-note svg {
  width: 13px;
  height: 13px;
  color: var(--dark-crimson);
}

.expect-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.expect-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
}

.expect-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 10px;
  line-height: 1;
}

.recommend-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  margin: 17px 0 0;
  padding: 12px 19px;
  border: 1px solid rgba(203, 162, 74, 0.14);
  border-radius: 6px;
  color: var(--dark-crimson);
  background: linear-gradient(90deg, rgba(251, 247, 244, 0.96), rgba(251, 247, 244, 0.96));
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  line-height: 1.25;
}

.recommend-note span {
  font-family: "Jost", Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
}

.info-list {
  display: grid;
  gap: 17px;
}

.info-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
}

.line-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--copper);
}

.line-icon svg {
  width: 29px;
  height: 29px;
}

.question-box {
  margin-top: 17px;
  padding: 14px 18px;
  border: 1px solid rgba(203, 162, 74, 0.14);
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(251, 247, 244, 0.96), rgba(251, 247, 244, 0.96));
}

.question-box p {
  margin: 0 0 8px;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
}

.question-box a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(94, 0, 14, 0.28);
  border-radius: 3px;
  padding: 3px 12px;
  color: var(--dark-crimson);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.journey-gallery {
  display: grid;
  grid-template-columns: 0.98fr 1fr;
  gap: 0;
  padding: 0 48px 10px;
}

.journey-strip,
.moments-strip {
  min-width: 0;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.journey-strip {
  padding: 14px 20px 15px;
}

.journey-strip ol {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.journey-strip li {
  position: relative;
  min-width: 0;
}

.journey-strip li + li::before {
  position: absolute;
  top: 10px;
  left: -12px;
  color: var(--dark-crimson);
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.journey-strip span {
  display: block;
  color: var(--dark-crimson);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.journey-strip strong {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.moments-strip {
  margin-left: -1px;
  padding: 13px 20px 8px;
}

.strip-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
}

.strip-heading a {
  color: var(--dark-crimson);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-heading a::after {
  content: " →";
}

.photo-row {
  display: grid;
  grid-template-columns: 1.12fr 0.86fr 1.08fr 1.08fr 0.98fr;
  gap: 10px;
}

.photo-row img {
  width: 100%;
  height: 72px;
  border-radius: 4px;
  object-fit: cover;
}

.booking-band {
  display: grid;
  grid-template-columns: 184px 1fr auto 278px;
  align-items: center;
  gap: 24px;
  min-height: 56px;
  margin: 0 48px 12px;
  overflow: hidden;
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(90deg, #5a0009, var(--dark-crimson));
  box-shadow: 0 12px 24px rgba(94, 0, 14, 0.14);
}

.booking-band img {
  width: 184px;
  height: 56px;
  object-fit: cover;
}

.booking-band h2 {
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}

.booking-band p {
  margin: 2px 0 0;
  font-size: 13px;
  line-height: 1.25;
}

.light-btn {
  min-height: 32px;
  padding: 0 28px;
  color: var(--dark-crimson);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.callout {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.callout span,
.callout a {
  display: block;
}

.callout a {
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 360px;
  gap: 48px;
  min-height: 128px;
  padding: 12px 48px 14px;
  overflow: hidden;
  background: var(--clean-white);
}

.footer-brand .brand {
  margin-bottom: 8px;
}

.footer-brand p,
.newsletter p {
  max-width: 176px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.socials {
  display: flex;
  gap: 13px;
  margin-top: 13px;
  color: var(--ink);
}

.socials a {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.footer-links h2,
.newsletter h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 2px;
}

.footer-links a {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
}

.newsletter {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid rgba(203, 162, 74, 0.22);
}

.newsletter form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 180px;
  height: 30px;
  margin-top: 13px;
  overflow: hidden;
  border: 1px solid rgba(52, 48, 45, 0.14);
  border-radius: 3px;
  background: var(--white);
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.newsletter input {
  width: 100%;
  border: 0;
  padding: 0 38px 0 12px;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  outline: none;
}

.newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border: 0;
  color: var(--dark-crimson);
  background: transparent;
  cursor: pointer;
}

.newsletter img {
  position: absolute;
  right: -48px;
  bottom: -38px;
  width: 236px;
  height: 114px;
  object-fit: cover;
  opacity: 0.92;
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 400;
}

.legal p {
  margin: 0;
}

.legal nav {
  display: flex;
  gap: 30px;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-location svg {
  width: 13px;
  height: 13px;
}

@media (min-width: 1537px) {
  .page-shell,
  .announcement,
  .site-header,
  main {
    max-width: 1920px;
  }

  .hero {
    grid-template-columns: minmax(575px, 38%) minmax(0, 62%);
    min-height: 356px;
  }

  .hero-copy {
    padding-left: 72px;
    padding-top: 34px;
  }

  .consultation-grid,
  .journey-gallery,
  .site-header,
  .site-footer {
    padding-right: 64px;
    padding-left: 64px;
  }

  .booking-band {
    margin-right: 64px;
    margin-left: 64px;
  }
}

@media (max-width: 1280px) {
  .announcement {
    gap: 24px;
    padding-inline: 24px;
  }

  .site-header {
    grid-template-columns: 132px 1fr;
    padding: 10px 24px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 28px;
    white-space: normal;
  }

  .header-actions {
    justify-content: flex-end;
  }

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

  .hero-copy {
    padding: 32px 24px 24px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 78%, rgba(255, 255, 255, 0));
  }

  .hero-media {
    height: 350px;
  }

  .consultation-grid {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .info-panel {
    grid-column: 1 / -1;
  }

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

  .journey-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 24px 16px;
  }

  .moments-strip {
    margin-left: 0;
  }

  .booking-band {
    grid-template-columns: 150px 1fr auto;
    margin-right: 24px;
    margin-left: 24px;
  }

  .booking-band img {
    width: 150px;
  }

  .callout {
    grid-column: 2 / 4;
    padding: 0 0 12px;
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 160px 1fr;
    padding-right: 24px;
    padding-left: 24px;
  }

  .newsletter {
    grid-column: 1 / -1;
    padding: 20px 0 0;
    border-top: 1px solid rgba(203, 162, 74, 0.22);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .announcement {
    justify-content: center;
    min-height: 56px;
    padding: 6px 12px;
    flex-wrap: wrap;
    gap: 4px 14px;
    overflow-x: visible;
    font-size: 11px;
    line-height: 1.2;
  }

  .site-header {
    display: grid;
    grid-template-columns: 116px 1fr auto;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-main {
    font-size: 39px;
  }

  .brand-rule {
    width: 88px;
  }

  .hamburger {
    display: grid;
    justify-self: end;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(94, 0, 14, 0.14);
    border-radius: 4px;
  }

  .hamburger span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 3px 0;
    background: var(--dark-crimson);
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    order: 4;
    padding: 8px 0 4px;
    gap: 0;
    border-top: 1px solid rgba(203, 162, 74, 0.18);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .nav-toggle:checked ~ .main-nav {
    display: block;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
  }

  .header-actions .icon-link {
    display: none;
  }

  .book-button {
    height: 36px;
    padding: 0 15px;
  }

  .book-button svg,
  .book-full {
    display: none;
  }

  .book-short {
    display: inline;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 24px 16px 18px;
  }

  .hero h1 {
    font-size: 41px;
    max-width: 350px;
  }

  .hero-text {
    max-width: 350px;
    font-size: 14px;
  }

  .trust-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 0;
    margin-top: 20px;
  }

  .trust-chips article {
    padding: 0 12px;
  }

  .trust-chips article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-media {
    height: 282px;
  }

  .hero-media::before {
    width: 18%;
  }

  .hero-stat {
    right: 16px;
    bottom: 12px;
    width: 132px;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .field-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .option-row {
    grid-template-columns: 24px minmax(0, 1fr) 16px;
  }

  .option-row em {
    display: none;
  }

  .option-row input {
    grid-column: 3;
  }

  .journey-gallery {
    padding: 0 16px 16px;
  }

  .journey-strip ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
  }

  .journey-strip li + li::before {
    display: none;
  }

  .strip-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .photo-row {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .photo-row img {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 16px 16px;
    padding: 0 18px 20px;
  }

  .booking-band img {
    width: calc(100% + 36px);
    height: 74px;
    margin: 0 -18px;
  }

  .booking-band h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .light-btn {
    width: 100%;
  }

  .callout {
    grid-column: auto;
    padding-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 22px 16px 18px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
  }

  .newsletter {
    min-height: 150px;
  }

  .newsletter img {
    right: -76px;
    bottom: -28px;
  }

  .legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .legal nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 38px;
  }

  .trust-chips h2 {
    font-size: 9px;
  }

  .trust-chips p {
    font-size: 11px;
  }

  .panel {
    padding-right: 12px;
    padding-left: 12px;
  }

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