:root {
  --white: #FFFFFF;
  --clean-white: #FBF7F4;
  --soft-white: #F8F8F6;
  --ink: #080808;
  --ink-soft: #34302D;
  --crimson: #8B0015;
  --dark-crimson: #5E000E;
  --gold: #CBA24A;
  --gold-soft: #D6B766;
  --gold-pale: #E8D7AE;
  --line: rgba(203, 162, 74, 0.24);
  --shadow: 0 8px 24px 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 {
  font: inherit;
}

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

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

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

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 360px;
  min-height: 48px;
  border-bottom: 1px solid rgba(203, 162, 74, 0.16);
  color: var(--ink);
  background: var(--clean-white);
  font-size: 14px;
  font-weight: 300;
}

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

.announcement svg {
  width: 18px;
  height: 18px;
  color: #B4640A;
}

.site-header {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 16px 36px 8px;
  background: var(--white);
}

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

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

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

.brand-sub {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

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

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

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.18);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-button svg {
  width: 16px;
  height: 16px;
}

.book-short {
  display: none;
}

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

.icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

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

.hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 31%, rgba(255, 255, 255, 0.76) 45%, rgba(255, 255, 255, 0) 70%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 50%;
  min-width: 620px;
  padding: 96px 36px 52px 48px;
}

.eyebrow,
.benefit-rule h2 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.6px;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.process-card h3,
.promise-title h2,
.booking-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  margin: 18px 0 22px;
  color: var(--ink);
  font-size: clamp(56px, 4.8vw, 70px);
  line-height: 0.96;
}

.hero h1 em {
  display: inline-block;
  color: var(--dark-crimson);
  font-style: italic;
}

.hero h1 span,
.promise-title h2 span {
  color: #B4640A;
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.58em;
  font-weight: 300;
}

.hero-text {
  max-width: 398px;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 28px;
}

.primary-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 244px;
  height: 62px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-btn {
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 8px 18px rgba(139, 0, 21, 0.18);
}

.primary-btn svg,
.light-btn svg {
  width: 18px;
  height: 18px;
}

.contact-block {
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.contact-block small {
  color: var(--ink);
  font-size: 13px;
  font-weight: 300;
}

.contact-block a,
.promise-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-block svg,
.promise-copy svg {
  width: 18px;
  height: 18px;
  color: #B4640A;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 66%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-section {
  padding: 18px 48px 24px;
  background: var(--white);
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.08;
}

.section-heading em,
.promise-title h2 em {
  color: var(--dark-crimson);
  font-style: italic;
}

.section-heading > span {
  position: relative;
  display: block;
  width: 120px;
  height: 24px;
  margin-top: 10px;
}

.section-heading > span::before,
.section-heading > span::after {
  position: absolute;
  top: 12px;
  width: 40px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-heading > span::before {
  left: 0;
}

.section-heading > span::after {
  right: 0;
}

.section-heading > span {
  background: radial-gradient(circle at center, transparent 0 7px, transparent 7px);
}

.section-heading > span::before {
  box-shadow: 60px 0 0 -19px var(--white);
}

.section-heading > span::after {
  box-shadow: -60px 0 0 -19px var(--white);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.process-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 223px;
  right: -17px;
  width: 14px;
  height: 1px;
  background: #B4640A;
  content: "";
}

.process-card:not(:last-child)::before {
  position: absolute;
  top: 219px;
  right: -18px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #B4640A;
  border-right: 1px solid #B4640A;
  content: "";
  transform: rotate(45deg);
}

.process-media {
  position: relative;
  width: 100%;
}

.process-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.process-media span {
  position: absolute;
  right: calc(50% - 18px);
  bottom: -18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--crimson);
  box-shadow: 0 4px 12px rgba(8, 8, 8, 0.18);
  font-size: 16px;
  font-weight: 400;
}

.process-card h3 {
  margin: 36px 0 10px;
  color: var(--dark-crimson);
  font-size: 25px;
  line-height: 1.1;
}

.process-card p {
  min-height: 70px;
  margin: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(203, 162, 74, 0.18);
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.process-card:last-child p {
  border-right: 0;
}

/* Payoff steps (Reveal, Care): subtle end-of-journey emphasis. Gold hairline
   accent above heading + brighter crimson heading. Additive/reversible. */
.process-card.payoff h3 {
  color: var(--crimson);
}

.process-card.payoff h3::before {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto 8px;
  background: var(--gold);
  content: "";
}

.benefits-section {
  padding: 0 48px 36px;
}

.benefit-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.benefit-rule span {
  height: 1px;
  background: rgba(203, 162, 74, 0.32);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(203, 162, 74, 0.14);
}

.benefit-row article {
  display: grid;
  justify-items: center;
  min-height: 138px;
  padding: 0 24px 24px;
  text-align: center;
}

.benefit-row article + article {
  border-left: 1px solid rgba(203, 162, 74, 0.18);
}

.benefit-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-row h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.benefit-row p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.promise-band {
  display: grid;
  grid-template-columns: 390px minmax(280px, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 48px;
  min-height: 210px;
  margin: 0 48px 24px;
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 8px;
  background: var(--clean-white);
}

.promise-band > img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.promise-title h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.08;
}

.promise-title h2 em {
  display: inline-block;
}

.promise-copy {
  padding-right: 40px;
}

.promise-copy p {
  max-width: 380px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

.booking-band {
  display: grid;
  grid-template-columns: 176px 1fr auto 260px;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  margin: 0 48px 32px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--crimson);
}

.booking-band img {
  width: 176px;
  height: 132px;
  object-fit: cover;
}

.booking-band h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 32px;
  line-height: 1.1;
}

.booking-band p {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
}

.light-btn {
  min-width: 240px;
  height: 58px;
  color: var(--dark-crimson);
  background: var(--white);
}

.question {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 15px;
  line-height: 1.5;
}

.question a {
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr 360px;
  gap: 48px;
  padding: 32px 48px 24px;
  overflow: hidden;
  background: var(--clean-white);
}

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

.footer-brand p,
.newsletter p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

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

.socials a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-links h2,
.newsletter h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 300;
}

.newsletter {
  position: relative;
  min-height: 208px;
  padding-left: 32px;
  border-left: 1px solid rgba(203, 162, 74, 0.24);
}

.newsletter-field {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  height: 40px;
  margin-top: 24px;
  border: 1px solid rgba(52, 48, 45, 0.16);
  border-radius: 4px;
  color: rgba(52, 48, 45, 0.72);
  background: var(--white);
  font-size: 13px;
  font-weight: 300;
}

.newsletter-field span {
  padding-left: 16px;
}

.newsletter-field svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  color: var(--crimson);
  stroke-width: 1.8;
}

.newsletter img {
  position: absolute;
  right: -16px;
  bottom: -24px;
  width: 208px;
  height: 176px;
  object-fit: cover;
}

.footer-bridge {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-bridge::before,
.footer-bridge::after {
  width: min(120px, 18vw);
  height: 1px;
  background: var(--gold-pale);
  content: "";
}

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

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

@media (max-width: 1320px) {
  .announcement {
    gap: 96px;
  }

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

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

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

  .process-section,
  .benefits-section,
  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .promise-band,
  .booking-band {
    margin-right: 24px;
    margin-left: 24px;
  }

  .promise-band {
    grid-template-columns: 320px 1fr 360px;
    gap: 32px;
  }

  .booking-band {
    grid-template-columns: 144px 1fr auto;
  }

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

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

  .site-footer {
    grid-template-columns: 200px 1fr;
  }

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

@media (max-width: 980px) {
  .announcement {
    gap: 12px;
    padding: 8px 16px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 47%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 40px 24px;
  }

  .hero-image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 43%;
  }

  .process-row,
  .benefit-row {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding-bottom: 42px;
  }

  .process-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 50%;
    width: 1px;
    height: 20px;
  }

  .process-card:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: 11px;
    left: calc(50% - 4px);
    transform: rotate(135deg);
  }

  .process-media img {
    aspect-ratio: 1.5;
  }

  .process-card p {
    width: min(100%, 440px);
    min-height: 0;
    border-right: 0;
  }

  .benefit-row article {
    min-height: 0;
    padding: 20px 24px;
  }

  .benefit-row article + article {
    border-top: 1px solid rgba(203, 162, 74, 0.18);
    border-left: 0;
  }

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

  .promise-title,
  .promise-copy {
    padding: 28px 24px 0;
  }

  .promise-copy {
    padding-bottom: 28px;
  }

  .promise-band > img {
    min-height: 216px;
  }

  .booking-band {
    grid-template-columns: 128px 1fr;
    padding-right: 24px;
  }

  .light-btn,
  .question {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .announcement {
    min-height: 40px;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    max-width: 100vw;
    gap: 16px;
    padding: 16px;
    overflow: visible;
    padding-top: 16px;
  }

  main {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

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

  .header-actions {
    position: absolute;
    top: 20px;
    right: auto;
    left: min(72vw, 272px);
    margin-left: 0;
    gap: 8px;
  }

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

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 100%;
    width: 100%;
    max-width: calc(100vw - 32px);
    gap: 8px 16px;
    min-width: 0;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 1.4px;
    overflow-x: visible;
    scrollbar-width: none;
    white-space: normal;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    display: inline-block;
  }

  .book-button {
    min-width: 80px;
    padding: 0;
  }

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

  .book-short {
    display: inline;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero h1 {
    font-size: 53px;
  }

  .hero-text {
    max-width: 332px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 22px;
  }

  .primary-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-image {
    height: 38%;
  }

  .process-section,
  .benefits-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .benefit-rule {
    gap: 12px;
  }

  .promise-band,
  .booking-band {
    margin-right: 16px;
    margin-left: 16px;
  }

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

  .booking-band img {
    width: calc(100% + 40px);
    height: 96px;
    margin: 0 -20px;
  }

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

  .light-btn,
  .question {
    grid-column: auto;
  }

  .light-btn {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 24px;
  }

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

  .newsletter {
    min-height: 256px;
  }

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

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