:root {
  --black: #080807;
  --black-2: #10100f;
  --charcoal: #171512;
  --ink: #17130f;
  --ivory: #f7f2e9;
  --white: #fffaf2;
  --paper: #fffdf8;
  --muted: #6e665c;
  --muted-light: #c8bcae;
  --line-dark: rgba(255, 250, 242, 0.14);
  --line-light: rgba(26, 21, 17, 0.14);
  --gold: #d28a21;
  --gold-2: #f0b650;
  --deep-gold: #9d5d11;
  --teal: #0f3a3b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1260px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-locked {
  overflow: hidden;
}

main section {
  scroll-margin-top: 96px;
}

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

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

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

button {
  border: 0;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  left: 18px;
  top: 18px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.section-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  padding: 28px clamp(20px, 4.2vw, 78px);
  color: var(--white);
  background: rgba(8, 8, 7, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  padding-block: 17px;
  background: rgba(8, 8, 7, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  color: var(--white);
  line-height: 1;
}

.brand span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(43px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
}

.brand-image {
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 14vw, 220px);
  max-width: 100%;
  line-height: 0;
  overflow: hidden;
}

.brand-image img {
  width: 100%;
  height: auto;
  max-height: 113px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.34));
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--gold-2);
}

.header-cta,
.button,
.outline-link,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  min-width: 176px;
  padding: 0 22px;
  border: 1px solid rgba(240, 182, 80, 0.6);
  color: var(--gold-2);
  background: rgba(8, 8, 7, 0.26);
}

.button {
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
}

.button svg,
.newsletter-form button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button-secondary,
.outline-link {
  border: 1px solid currentColor;
  background: transparent;
}

.button-secondary {
  color: var(--white);
}

.outline-link {
  min-width: 170px;
  padding: 0 22px;
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.outline-link:hover,
.outline-link:focus-visible,
.footer-cta:hover,
.footer-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--black);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.compact {
  min-height: 44px;
  padding-inline: 20px;
}

.nav-toggle {
  display: none;
  position: relative;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 2px;
  background: rgba(8, 8, 7, 0.28);
  color: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -7px);
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, 7px);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(790px, 82svh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.84) 31%, rgba(8, 8, 7, 0.34) 62%, rgba(8, 8, 7, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.8) 0%, rgba(8, 8, 7, 0.06) 38%),
    url("assets/photos/romantic-hero.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 140px;
  background: linear-gradient(0deg, var(--black), rgba(8, 8, 7, 0));
}

.hero-content {
  width: min(760px, calc(100% - 70px));
  margin-left: clamp(24px, 5vw, 78px);
  padding-top: clamp(116px, 16vh, 154px);
  padding-bottom: 52px;
}

.hero-kicker,
.section-label {
  margin: 0 0 20px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.proof-copy h2,
.philosophy h2,
.process h2,
.offers h2,
.plan h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 6vw, 92px);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.92);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-trust {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.74);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: linear-gradient(180deg, #12100e, #080807);
  color: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.experience-card {
  min-height: 276px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 13px;
  padding: 34px 24px 28px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
  transition: background 180ms ease;
}

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

.experience-card svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-card h2 {
  min-height: 42px;
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.32;
  text-transform: uppercase;
}

.experience-card p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 250, 242, 0.73);
  font-size: 13px;
  line-height: 1.58;
}

.experience-card > span {
  position: relative;
  width: 36px;
  height: 14px;
  margin-top: 4px;
  font-size: 0;
}

.experience-card > span::before,
.experience-card > span::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--gold-2);
}

.experience-card > span::before {
  left: 0;
  width: 35px;
  height: 1px;
}

.experience-card > span::after {
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--gold-2);
  border-right: 1px solid var(--gold-2);
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
}

.experience-card:hover,
.experience-card:focus-visible {
  background: rgba(210, 138, 33, 0.08);
}

.proof-band {
  background: linear-gradient(90deg, #fffaf2 0%, #f8f2e8 58%, #fffdf8 100%);
  color: var(--ink);
  padding: 62px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.12fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.proof-copy,
.quote-card,
.access-list {
  min-height: 210px;
}

.proof-copy {
  display: grid;
  align-content: center;
}

.proof-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.proof-copy p:not(.section-label) {
  margin: 16px 0 24px;
  color: var(--muted);
}

.quote-card {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 0 42px;
  border-left: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.35;
  text-align: center;
}

.quote-card > span {
  color: var(--gold);
  font-size: 52px;
  line-height: 0.7;
}

.quote-card cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.access-list {
  display: grid;
  align-content: center;
}

.access-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.access-list li {
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 10px;
  align-items: center;
}

.access-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.dark-rail {
  background: var(--black);
  color: var(--white);
  border-block: 1px solid var(--line-dark);
}

.rail-inner {
  width: min(var(--max), calc(100% - 64px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 34px;
}

.rail-inner span {
  color: rgba(255, 250, 242, 0.68);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destinations,
.journal {
  background: var(--paper);
  color: var(--ink);
  padding: 44px 0 70px;
}

.section-heading {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  margin: 0;
  color: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading a {
  position: relative;
  padding-right: 32px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading a::before,
.section-heading a::after {
  content: "";
  position: absolute;
  top: 50%;
}

.section-heading a::before {
  right: 0;
  width: 23px;
  height: 1px;
  background: currentColor;
}

.section-heading a::after {
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.destination-grid {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.destination-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.destination-card img,
.property-card img,
.journal-grid img,
.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card img,
.property-card img {
  filter: saturate(0.92) contrast(0.98);
  transition: transform 500ms ease, filter 500ms ease;
}

.destination-card::after,
.property-card::after,
.journal-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 66%;
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.82), rgba(8, 8, 7, 0));
}

.destination-card:hover img,
.property-card:hover img,
.journal-grid article:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.02);
}

.destination-card h3,
.destination-card p {
  position: absolute;
  z-index: 1;
  left: 18px;
  margin: 0;
  text-transform: uppercase;
}

.destination-card h3 {
  bottom: 36px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.destination-card p {
  bottom: 17px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.properties {
  background: var(--black);
  color: var(--white);
  padding: 34px 0 28px;
}

.section-heading-dark {
  color: var(--white);
}

.property-grid {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.property-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--charcoal);
}

.property-card > div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.property-card p {
  margin: 0 0 6px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.property-card h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 21px;
  font-weight: 550;
}

.property-card span {
  display: block;
  min-height: 43px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.property-card strong {
  display: block;
  margin-top: 12px;
  color: var(--gold-2);
  font-size: 13px;
}

.favorite-button {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 242, 0.55);
  background: rgba(8, 8, 7, 0.22);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.favorite-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.favorite-button.is-active {
  border-color: var(--gold-2);
  background: var(--gold-2);
  color: var(--black);
}

.favorite-button.is-active svg {
  fill: currentColor;
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(420px, 1fr);
  min-height: 430px;
  background: linear-gradient(90deg, var(--paper), #f5eee4);
  color: var(--ink);
}

.philosophy-copy {
  display: grid;
  align-content: center;
  padding: clamp(48px, 6vw, 78px) clamp(26px, 6vw, 100px);
}

.philosophy h2 {
  max-width: 430px;
  font-size: clamp(42px, 4.2vw, 70px);
}

.philosophy p:not(.section-label) {
  max-width: 440px;
  margin: 18px 0 24px;
  color: var(--muted);
}

.philosophy-media {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.philosophy-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 7, 0.26), rgba(8, 8, 7, 0.02));
  pointer-events: none;
}

.process {
  background: var(--ivory);
  color: var(--ink);
  padding: 56px 0 58px;
  text-align: center;
}

.section-label.center {
  margin-bottom: 12px;
}

.process h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 72px 1fr;
  gap: 14px 16px;
  align-items: center;
  text-align: left;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -22px;
  width: 42px;
  height: 1px;
  background: rgba(210, 138, 33, 0.35);
}

.process-list span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-list svg {
  width: 72px;
  height: 72px;
  padding: 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  fill: none;
  stroke: var(--deep-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-list p {
  grid-column: 3;
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.offers {
  background: var(--paper);
  color: var(--ink);
  padding: 82px 0;
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: start;
}

.offers h2 {
  font-size: clamp(38px, 4.6vw, 72px);
}

.offers-intro p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.offer-list article {
  min-height: 158px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.offer-list h3,
.journal-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.offer-list h3 {
  font-size: 27px;
  line-height: 1.08;
}

.offer-list p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.journal {
  padding-top: 0;
}

.journal-grid {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journal-grid article {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.journal-grid img {
  position: absolute;
  inset: 0;
  transition: transform 500ms ease;
}

.journal-grid p,
.journal-grid h3 {
  position: relative;
  z-index: 2;
  margin-left: 24px;
  margin-right: 24px;
}

.journal-grid p {
  margin-top: 230px;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journal-grid h3 {
  max-width: 430px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 35px);
  line-height: 1.08;
}

.plan {
  position: relative;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
  padding: clamp(70px, 8vw, 110px) 0;
  overflow: hidden;
}

.plan-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.76) 44%, rgba(8, 8, 7, 0.88) 100%),
    url("assets/photos/romantic-dinner.png");
  background-size: cover;
  background-position: center;
}

.plan::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 16% 18%, rgba(210, 138, 33, 0.18), transparent 34%);
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(440px, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.plan h2 {
  max-width: 620px;
  font-size: clamp(42px, 5.2vw, 78px);
}

.plan h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.plan-copy p:not(.section-label) {
  max-width: 570px;
  margin: 22px 0 26px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3.5vw, 38px);
  border: 1px solid var(--line-dark);
  background: rgba(8, 8, 7, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inquiry-form label,
.inquiry-form fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: 2px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
  outline: 0;
}

.inquiry-form input,
.inquiry-form select {
  height: 48px;
  padding: 0 13px;
}

.inquiry-form textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder,
.newsletter-form input::placeholder {
  color: rgba(255, 250, 242, 0.44);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.newsletter-form input:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(210, 138, 33, 0.22);
}

.inquiry-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inquiry-form legend {
  width: 100%;
  margin-bottom: 0;
}

.inquiry-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  font-size: 11px;
  cursor: pointer;
}

.inquiry-form input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--gold);
}

.inquiry-form .button {
  width: min(100%, 360px);
}

.form-status,
.newsletter-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer {
  background: linear-gradient(180deg, #10100f, #080807);
  color: var(--white);
  padding: 54px 0 26px;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.65fr 0.75fr 0.92fr 1.05fr;
  gap: 36px;
}

.footer-brand {
  width: clamp(168px, 14vw, 220px);
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 242, 0.74);
  font-size: 13px;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contact p,
.newsletter-form p {
  margin: 0 0 8px;
}

.footer-cta {
  width: fit-content;
  min-height: 38px;
  margin: 2px 0 6px;
  padding: 0 15px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
}

.newsletter-form {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
}

.newsletter-form label {
  display: block;
}

.newsletter-form input {
  height: 44px;
  padding: 0 54px 0 14px;
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 72px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
}

.legal {
  width: min(var(--max), calc(100% - 64px));
  margin: 32px auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 250, 242, 0.52);
}

.subpage-hero {
  position: relative;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.subpage-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.82) 38%, rgba(8, 8, 7, 0.28) 100%),
    var(--page-image);
  background-position: center;
  background-size: cover;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 150px;
  background: linear-gradient(0deg, var(--black), rgba(8, 8, 7, 0));
}

.subpage-hero-content {
  width: min(760px, calc(100% - 70px));
  margin-left: clamp(24px, 5vw, 78px);
  padding-top: clamp(126px, 17vh, 166px);
  padding-bottom: 62px;
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.7vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.subpage-hero p:not(.hero-kicker) {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.56;
}

.hero-experiences {
  --page-image: url("assets/photos/romantic-dinner.png");
}

.hero-destinations {
  --page-image: url("assets/photos/coastal-road.png");
}

.hero-villas {
  --page-image: url("assets/photos/terrace-coast.png");
}

.hero-honeymoons {
  --page-image: url("assets/photos/romantic-hero.png");
}

.hero-about {
  --page-image: url("assets/photos/romantic-dinner.png");
}

.hero-journal {
  --page-image: url("assets/photos/alpine-escape.png");
}

.page-intro {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(58px, 7vw, 90px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.intro-grid h2,
.editorial-split h2,
.comparison-grid h2,
.timeline-section h2,
.cta-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.intro-grid h2 {
  font-size: clamp(38px, 4.8vw, 72px);
}

.intro-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.58;
}

.detail-section,
.destination-directory,
.journal-page,
.timeline-section,
.comparison-section,
.values-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(64px, 7.5vw, 104px) 0;
}

.section-inner .section-heading.flush {
  width: 100%;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

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

.detail-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 500ms ease;
}

.detail-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background: linear-gradient(0deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0));
}

.detail-card:hover img {
  transform: scale(1.035);
}

.detail-card > div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
}

.detail-card p,
.article-grid p,
.values-grid p,
.insight-grid p {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-card h3,
.comparison-list h3,
.values-grid h3,
.article-grid h3,
.insight-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.detail-card h3 {
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 48px);
}

.detail-card span,
.article-grid span,
.values-grid span {
  display: block;
  max-width: 520px;
  margin-top: 13px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 15px;
  line-height: 1.52;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(340px, 0.82fr);
  background: var(--ivory);
  color: var(--ink);
}

.editorial-split.dark {
  background: var(--black);
  color: var(--white);
}

.editorial-split figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.editorial-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-split > div {
  display: grid;
  align-content: center;
  padding: clamp(46px, 6vw, 90px);
}

.editorial-split h2 {
  font-size: clamp(38px, 4.4vw, 68px);
}

.editorial-split p:not(.section-label) {
  max-width: 560px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.editorial-split.dark p:not(.section-label) {
  color: rgba(255, 250, 242, 0.76);
}

.cta-band {
  background: linear-gradient(90deg, #16130f, #080807);
  color: var(--white);
  padding: clamp(52px, 6vw, 82px) 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-grid h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.cta-grid p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 18px;
}

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

.destination-grid.directory .destination-card {
  min-height: 360px;
}

.insight-band {
  background: var(--black);
  color: var(--white);
  padding: clamp(48px, 6vw, 76px) 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
}

.insight-grid article {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: 30px;
  background: var(--black);
}

.insight-grid h3 {
  color: var(--white);
  font-size: clamp(26px, 2.7vw, 40px);
}

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

.properties.expanded {
  padding-top: clamp(64px, 7.5vw, 104px);
  padding-bottom: clamp(64px, 7.5vw, 104px);
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 90px);
}

.comparison-grid h2,
.timeline-section h2 {
  font-size: clamp(38px, 4.8vw, 72px);
}

.comparison-grid > div > p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.comparison-list {
  display: grid;
  gap: 16px;
}

.comparison-list article,
.values-grid article {
  padding: 28px;
  border: 1px solid var(--line-light);
  background: #fffaf2;
}

.comparison-list h3,
.values-grid h3 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.comparison-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.timeline-section {
  text-align: center;
}

.process-list.spacious {
  margin-top: 54px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.values-grid span {
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-grid article {
  display: grid;
  align-content: start;
  background: #fffaf2;
  border: 1px solid var(--line-light);
}

.article-grid img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.article-grid p,
.article-grid h3,
.article-grid span {
  margin-left: 22px;
  margin-right: 22px;
}

.article-grid p {
  margin-top: 22px;
}

.article-grid h3 {
  color: var(--ink);
  font-size: clamp(25px, 2.4vw, 36px);
}

.article-grid span {
  margin-bottom: 24px;
  color: var(--muted);
}

.plan-page {
  padding-top: clamp(150px, 14vw, 190px);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open {
    align-items: start;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-cta {
    display: flex;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px 0 8px;
  }

  .site-header.nav-open .header-cta {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .experience-strip,
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-card:nth-child(3n) {
    border-right: 0;
  }

  .proof-grid,
  .offers-grid,
  .plan-layout,
  .footer-inner,
  .property-grid-expanded,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card {
    border-right: 0;
  }

  .access-list {
    grid-column: 1 / -1;
    min-height: 0;
  }

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

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

  .process-list li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .section-inner,
  .section-heading,
  .destination-grid,
  .property-grid,
  .journal-grid,
  .rail-inner,
  .footer-inner,
  .legal {
    width: min(100% - 36px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-image:
      linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.78) 46%, rgba(8, 8, 7, 0.3) 100%),
      linear-gradient(0deg, rgba(8, 8, 7, 0.86) 0%, rgba(8, 8, 7, 0.08) 42%),
      url("assets/photos/romantic-hero.png");
    background-position: 59% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: 132px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 67px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .experience-strip,
  .destination-grid,
  .proof-grid,
  .philosophy,
  .offers-grid,
  .plan-layout,
  .footer-inner,
  .journal-grid,
  .intro-grid,
  .detail-grid,
  .detail-grid.three,
  .editorial-split,
  .cta-grid,
  .destination-grid.directory,
  .insight-grid,
  .comparison-grid,
  .values-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
  }

  .subpage-hero-content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-top: 132px;
    padding-bottom: 54px;
  }

  .subpage-hero h1 {
    font-size: clamp(42px, 12vw, 66px);
  }

  .subpage-hero p:not(.hero-kicker) {
    font-size: 17px;
  }

  .subpage-hero .button {
    width: 100%;
  }

  .experience-card {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-copy,
  .quote-card,
  .access-list {
    min-height: 0;
  }

  .quote-card {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .destination-card {
    min-height: 360px;
  }

  .destination-grid.directory .destination-card {
    min-height: 330px;
  }

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

  .property-card {
    min-height: 380px;
  }

  .philosophy-media {
    min-height: 330px;
  }

  .editorial-split figure {
    min-height: 330px;
  }

  .detail-card {
    min-height: 380px;
  }

  .process-list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

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

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

  .inquiry-form .button {
    width: 100%;
  }

  .newsletter-form button {
    top: 72px;
  }

  .legal {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 17px 18px;
  }

  .brand {
    width: auto;
  }

  .brand strong {
    font-size: 42px;
  }

  .brand span {
    font-size: 11px;
  }

  .footer-brand {
    width: 176px;
  }

  .hero-kicker,
  .section-label {
    font-size: 10px;
  }

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

  .rail-inner {
    justify-content: flex-start;
  }

  .destination-card {
    min-height: 315px;
  }

  .property-card {
    min-height: 350px;
  }

  .philosophy-copy {
    padding: 46px 22px;
  }

  .process-list li {
    grid-template-columns: auto 62px 1fr;
  }

  .process-list svg {
    width: 62px;
    height: 62px;
    padding: 15px;
  }

  .plan {
    padding-block: 60px;
  }

  .inquiry-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
