: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.32);
  --shadow: 0 14px 34px rgba(8, 8, 8, 0.1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--clean-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: 1536px;
  margin: 0 auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 360px;
  min-height: 44px;
  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;
  display: grid;
  grid-template-columns: minmax(480px, 0.86fr) minmax(460px, 1.14fr);
  min-height: 470px;
  padding: 28px 48px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 44%, rgba(232, 215, 174, 0.24), transparent 22%),
    linear-gradient(100deg, var(--white), var(--clean-white) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-left: 18px;
}

.hero-label,
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  margin-top: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-label span,
.hero-eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(68px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

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

.hero h1 em::after {
  position: absolute;
  right: 30px;
  bottom: -12px;
  width: 210px;
  height: 20px;
  border-bottom: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.primary-btn,
.outline-btn,
.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 230px;
  height: 54px;
  border-radius: 5px;
  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 9px 20px rgba(139, 0, 21, 0.18);
}

.outline-btn {
  border: 1px solid rgba(139, 0, 21, 0.45);
  color: var(--dark-crimson);
  background: rgba(255, 255, 255, 0.7);
}

.primary-btn svg,
.outline-btn svg,
.gold-btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.micro-benefits {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  gap: 0;
  max-width: 640px;
  margin-top: 22px;
  color: #9B651C;
}

.micro-benefits span {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 16px;
  border-right: 1px solid var(--gold-pale);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.25;
  text-transform: uppercase;
}

.micro-benefits span:first-child {
  padding-left: 0;
}

.micro-benefits span:last-child {
  border-right: 0;
}

.micro-benefits svg {
  width: 24px;
  height: 24px;
}

.micro-strip {
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  align-items: center;
  gap: 26px;
  margin: -8px 64px 16px;
  padding: 18px 30px;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(8, 8, 8, 0.08);
}

.micro-strip p {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.micro-strip strong {
  display: block;
  color: var(--dark-crimson);
  font-style: normal;
  font-weight: 500;
}

.micro-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  color: #9B651C;
}

.micro-items span {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-right: 1px solid var(--gold-pale);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 1.25;
  text-transform: uppercase;
}

.micro-items span:last-child {
  border-right: 0;
}

.micro-items svg {
  width: 28px;
  height: 28px;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.trust-seal {
  position: absolute;
  right: 72px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  padding: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--white);
  background: radial-gradient(circle at 40% 28%, #6F1A21, var(--dark-crimson) 72%);
  box-shadow: 0 12px 24px rgba(8, 8, 8, 0.18);
  text-align: center;
}

.trust-seal span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.trust-seal p {
  margin: -12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.16;
}

.skin-journey {
  display: block;
  margin: 0 64px 16px;
  padding: 20px 28px 18px;
  border: 1px solid rgba(203, 162, 74, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(8, 8, 8, 0.08);
}

.skin-journey h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.journey-title {
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.journey-title em {
  color: var(--ink);
  font-style: normal;
}

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

.process-card,
.journey-row article {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 0 6px;
  text-align: center;
}

.process-card:not(:last-child)::after,
.journey-row article:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: -16px;
  width: 15px;
  height: 1px;
  background: #B4640A;
  content: "";
}

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

.process-card svg,
.journey-row article svg {
  width: 42px;
  height: 42px;
  color: var(--crimson);
}

.process-card h3,
.journey-row article h3 {
  margin: 8px 0 2px;
  color: var(--dark-crimson);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-card p,
.journey-row article p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
}

.services-section,
.gateway-section {
  padding: 14px 48px 18px;
  background: var(--clean-white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  text-align: center;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}

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

.service-card {
  display: grid;
  grid-template-rows: 128px auto auto auto;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(8, 8, 8, 0.08);
  text-align: center;
}

.service-card img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: center;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--crimson);
  box-shadow: 0 6px 14px rgba(8, 8, 8, 0.16);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.service-card h3 {
  margin: 12px 10px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card p {
  margin: 4px 10px 18px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
}

.booking-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 178px;
  margin: 14px 48px 16px;
  padding: 34px 44px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--dark-crimson);
}

.booking-card::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 300px;
  background:
    linear-gradient(90deg, var(--dark-crimson), rgba(94, 0, 14, 0.2)),
    url("assets/crops/booking-floral.png") center / cover;
  content: "";
  opacity: 0.82;
}

.booking-card > * {
  position: relative;
  z-index: 1;
}

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

.booking-card h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.booking-card p {
  max-width: 460px;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.gold-btn {
  min-width: 254px;
  color: var(--dark-crimson);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.7px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.gateway-card,
.film-bridge-card {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(8, 8, 8, 0.1);
}

.gateway-card img,
.film-bridge-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
}

.gateway-card img {
  filter: blur(2px) saturate(0.9);
  transform: scale(1.3);
}

.gateway-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.68), rgba(8, 8, 8, 0.2));
  content: "";
}

.gateway-card span,
.gateway-card p,
.gateway-card b {
  position: relative;
  z-index: 1;
}

.gateway-card {
  display: grid;
  align-content: center;
  padding: 22px 58px 20px 24px;
}

.gateway-card span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.gateway-card p {
  margin: 7px 0 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.15;
}

.gateway-card b {
  position: absolute;
  right: 16px;
  top: calc(50% - 20px);
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--crimson);
  background: var(--white);
}

.gateway-card b svg {
  width: 20px;
  height: 20px;
}

.film-bridge-card {
  display: grid;
  align-content: center;
  padding: 18px 22px;
  border: 1px solid var(--gold);
  color: var(--dark-crimson);
  background: var(--white);
}

.film-bridge-card::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(203, 162, 74, 0.5);
  border-radius: 6px;
  content: "";
}

.film-bridge-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 62%, rgba(255, 255, 255, 0.35) 100%);
  content: "";
}

.film-bridge-card img {
  opacity: 0.48;
  filter: saturate(0.7);
}

.film-bridge-card small,
.film-bridge-card span,
.film-bridge-card p {
  position: relative;
  z-index: 1;
}

.film-bridge-card small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.film-bridge-card span {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.film-bridge-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3;
}

.bottom-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 48px 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(203, 162, 74, 0.24);
  border-bottom: 1px solid rgba(203, 162, 74, 0.18);
  background: var(--clean-white);
}

.bottom-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 22px;
  border-right: 1px solid rgba(203, 162, 74, 0.2);
}

.bottom-benefits article:last-child {
  border-right: 0;
}

.bottom-benefits svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.bottom-benefits h3 {
  margin: 0;
  color: #9B651C;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.bottom-benefits p {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25;
}

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

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

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

.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  color: var(--crimson);
}

.socials a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(139, 0, 21, 0.2);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 400;
}

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

.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: 8px;
  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-static {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 240px;
  height: 40px;
  margin-top: 24px;
  padding: 0 12px 0 16px;
  border: 1px solid rgba(52, 48, 45, 0.16);
  border-radius: 4px;
  color: rgba(52, 48, 45, 0.62);
  background: var(--white);
  font-size: 13px;
  font-weight: 300;
}

.newsletter-static svg {
  width: 20px;
  height: 20px;
  color: var(--crimson);
}

.newsletter img {
  position: absolute;
  right: -12px;
  bottom: -28px;
  width: 208px;
  height: 176px;
  object-fit: cover;
  opacity: 0.48;
}

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

  .hero {
    grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
    padding-right: 32px;
    padding-left: 32px;
  }

  .skin-journey,
  .micro-strip,
  .booking-card,
  .bottom-benefits {
    margin-right: 24px;
    margin-left: 24px;
  }

  .services-section,
  .gateway-section,
  .site-footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gateway-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .bottom-benefits article {
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.16);
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .booking-card {
    grid-template-columns: 1fr auto;
  }

  .text-link {
    grid-column: 2;
  }

  .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 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px 34px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media img {
    min-height: 320px;
  }

  .trust-seal {
    right: 40px;
    bottom: 40px;
  }

  .skin-journey {
    border-radius: 8px;
    text-align: center;
  }

  .micro-strip {
    grid-template-columns: 1fr;
    border-radius: 8px;
    text-align: center;
  }

  .micro-items {
    grid-template-columns: 1fr;
  }

  .micro-items span {
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.18);
    padding: 12px 0;
  }

  .micro-items span:last-child {
    border-bottom: 0;
  }

  .journey-title {
    font-size: 30px;
  }

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

  .process-card,
  .journey-row article {
    padding-bottom: 36px;
  }

  .process-card:not(:last-child)::after,
  .journey-row article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 10px;
    left: 50%;
    width: 1px;
    height: 18px;
  }

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

  .booking-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .text-link {
    grid-column: auto;
  }

  .bottom-benefits {
    grid-template-columns: 1fr;
  }

  .bottom-benefits article {
    border-bottom: 1px solid rgba(203, 162, 74, 0.16);
  }
}

@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 {
    padding: 24px 16px 30px;
  }

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

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

  .hero-actions {
    gap: 12px;
  }

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

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

  .micro-benefits span {
    padding: 10px 12px 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(203, 162, 74, 0.18);
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .trust-seal {
    right: 22px;
    bottom: 26px;
    width: 132px;
    height: 132px;
    padding: 18px;
  }

  .trust-seal span {
    font-size: 22px;
  }

  .trust-seal p {
    font-size: 14px;
  }

  .skin-journey,
  .micro-strip,
  .booking-card,
  .bottom-benefits {
    margin-right: 16px;
    margin-left: 16px;
  }

  .services-section,
  .gateway-section {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .service-card {
    grid-template-rows: 178px auto auto auto;
  }

  .service-card img {
    height: 178px;
  }

  .gateway-card,
  .film-bridge-card {
    min-height: 142px;
  }

  .booking-card::after {
    width: 180px;
  }

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

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

  .newsletter {
    min-height: 250px;
  }

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

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

@media (max-width: 390px) {
  .announcement {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .announce-item {
    justify-content: center;
    max-width: 100%;
    white-space: nowrap;
    text-align: center;
  }

  .announce-item svg {
    flex: 0 0 auto;
  }

  .hero-label,
  .hero-eyebrow {
    gap: 12px;
    font-size: 10px;
    letter-spacing: 3px;
  }

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

  .journey-title {
    font-size: 27px;
  }
}

.micro-strip {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 26px;
  margin: -8px 64px 16px;
  padding: 18px 28px;
  border: 1px solid rgba(203, 162, 74, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(8, 8, 8, 0.08);
}

.micro-strip p {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  font-style: italic;
  line-height: 1;
}

.micro-strip strong {
  display: block;
  color: var(--dark-crimson);
  font-style: normal;
  font-weight: 500;
}

.micro-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.micro-items span {
  display: grid;
  min-height: 54px;
  justify-items: center;
  align-items: center;
  border-left: 1px solid var(--gold-pale);
  color: #9B651C;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.micro-items svg {
  width: 27px;
  height: 27px;
  margin-bottom: 4px;
}

.skin-journey:has(.journey-row) {
  display: block;
  margin: 0 64px 18px;
  padding: 0;
}

.skin-journey h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.journey-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(203, 162, 74, 0.26);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.05);
}

.journey-row article {
  position: relative;
  display: grid;
  min-height: 96px;
  justify-items: center;
  align-content: center;
  padding: 14px 12px;
  text-align: center;
}

.journey-row article + article {
  border-left: 1px solid var(--gold-pale);
}

.journey-row article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -7px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid var(--dark-crimson);
  border-right: 1.5px solid var(--dark-crimson);
  background: var(--white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.journey-row svg {
  width: 30px;
  height: 30px;
  margin-bottom: 7px;
  color: var(--crimson);
}

.journey-row h3 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.journey-row p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 980px) {
  .micro-strip {
    grid-template-columns: 1fr;
    margin-right: 24px;
    margin-left: 24px;
    border-radius: 24px;
  }

  .micro-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 0;
  }

  .skin-journey:has(.journey-row) {
    margin-right: 24px;
    margin-left: 24px;
  }

  .journey-row {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .journey-row article + article {
    border-top: 1px solid var(--gold-pale);
    border-left: 0;
  }

  .journey-row article:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -7px;
    transform: translateX(50%) rotate(135deg);
  }
}

@media (max-width: 860px) {
  .micro-strip,
  .skin-journey:has(.journey-row) {
    margin-right: 16px;
    margin-left: 16px;
  }

  .micro-items {
    grid-template-columns: 1fr;
  }

  .micro-items span {
    min-height: 44px;
    border-top: 1px solid var(--gold-pale);
    border-left: 0;
  }
}

.booking-card > img {
  display: none;
}

@media (max-width: 860px) {
  .main-nav a:last-child {
    flex: 0 0 100%;
  }

  .trust-seal {
    right: 16px;
    bottom: 30px;
    width: 118px;
    height: 118px;
  }

  .trust-seal p {
    width: 86px;
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  .main-nav .nav-book {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: nowrap;
  }
}
