:root {
  --bg: #f6efe4;
  --panel: rgba(255, 251, 246, 0.92);
  --panel-strong: rgba(255, 253, 249, 0.98);
  --ink: #241911;
  --muted: #6f655a;
  --line: rgba(118, 84, 35, 0.1);
  --accent: #bc8540;
  --accent-deep: #8d5b22;
  --green: #2c6b5e;
  --green-deep: #1f4f45;
  --shadow: 0 24px 80px rgba(95, 67, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(188, 133, 64, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(44, 107, 94, 0.08), transparent 26%),
    linear-gradient(180deg, #ecdecb 0%, var(--bg) 42%, #fcf8f2 100%);
  scroll-behavior: smooth;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
}

.landing-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 140px;
}

.site-header {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.site-header__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.brand-lockup {
  display: grid;
  gap: 6px;
}

.brand-lockup strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.site-header__note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(118, 84, 35, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 700;
  text-wrap: balance;
}

.site-nav a.is-active {
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border-color: transparent;
}

.contact-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.contact-ribbon article,
.gallery-card,
.testimonial-card,
.location-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-ribbon article {
  padding: 18px 20px;
}

.contact-ribbon span,
.gallery-card__meta span,
.location-card p,
.testimonial-list cite {
  display: block;
  color: var(--muted);
}

.contact-ribbon strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.royal-hero,
.curated-metrics,
.moment-editorial,
.hosting-story,
.experience-film,
.royal-paths,
.concierge-ribbon {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.royal-hero {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.64fr);
  align-items: end;
  min-height: 78svh;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  background: #1e1a17;
  box-shadow: 0 34px 90px rgba(50, 36, 20, 0.22);
}

.royal-hero__media,
.royal-hero__veil {
  position: absolute;
  inset: 0;
}

.royal-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.royal-hero__veil {
  background:
    linear-gradient(90deg, rgba(19, 15, 12, 0.74) 0%, rgba(19, 15, 12, 0.48) 38%, rgba(19, 15, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 210, 143, 0.08), rgba(19, 15, 12, 0.16));
}

.royal-hero__content,
.royal-hero__aside {
  position: relative;
  z-index: 1;
}

.royal-hero__content {
  display: grid;
  gap: 18px;
  max-width: 42rem;
  color: #fbf3e8;
}

.royal-hero__content .eyebrow {
  color: #dfb172;
}

.royal-hero__content h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  max-width: 8.5ch;
}

.royal-hero__lede {
  margin: 0;
  max-width: 36rem;
  color: rgba(251, 243, 232, 0.86);
  font-size: 1.08rem;
  line-height: 1.8;
}

.royal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.royal-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease;
}

.royal-hero__actions a:first-child {
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}

.royal-hero__actions a.is-secondary {
  color: #fbf3e8;
  border: 1px solid rgba(255, 243, 225, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.royal-hero__actions a:hover {
  transform: translateY(-2px);
}

.royal-hero__aside {
  display: grid;
  gap: 14px;
}

.royal-hero__aside article {
  padding: 18px 20px;
  border: 1px solid rgba(255, 244, 226, 0.14);
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.12);
  backdrop-filter: blur(18px);
  color: #fff5eb;
}

.royal-hero__aside .eyebrow {
  margin-bottom: 8px;
  color: #e3b87a;
}

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

.curated-metrics article,
.concierge-ribbon article,
.hosting-card,
.royal-paths__card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.92);
  box-shadow: var(--shadow);
}

.curated-metrics article {
  padding: 24px;
}

.curated-metrics span,
.concierge-ribbon span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.curated-metrics strong,
.concierge-ribbon strong {
  font-size: 1.16rem;
  line-height: 1.48;
}

.moment-editorial {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
}

.moment-editorial__intro {
  padding: 10px 8px 0 0;
}

.moment-editorial__intro h2,
.hosting-story__lead h2,
.experience-film__copy h2 {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.moment-editorial__intro p,
.hosting-story__lead p,
.experience-film__copy p {
  color: var(--muted);
  line-height: 1.75;
}

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

.editorial-media {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 251, 246, 0.92);
  box-shadow: var(--shadow);
}

.editorial-media--wide {
  grid-column: 1 / -1;
  min-height: 440px;
}

.editorial-media__caption {
  padding: 20px 22px 24px;
}

.editorial-media__caption strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.35;
}

.hosting-story {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.hosting-story__lead {
  padding: 10px 8px 0 0;
}

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

.hosting-card {
  padding: 24px;
}

.hosting-card strong,
.royal-paths__card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.34rem;
  line-height: 1.35;
}

.hosting-card p,
.royal-paths__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.experience-film {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
}

.experience-film--stacked {
  grid-template-columns: 1fr;
}

.experience-film__copy {
  padding: 10px 8px 0 0;
  max-width: 34rem;
}

.experience-film--stacked .experience-film__copy {
  max-width: none;
}

.experience-film__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.experience-film__strip--single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.film-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.9);
  box-shadow: var(--shadow);
}

.film-frame--feature {
  min-height: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.royal-paths {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.royal-paths__card {
  display: block;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.royal-paths__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(95, 67, 26, 0.14);
}

.royal-paths__card--feature,
.royal-paths__card--cta {
  background:
    radial-gradient(circle at top right, rgba(188, 133, 64, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(242, 232, 217, 0.92));
}

.concierge-ribbon {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concierge-ribbon article {
  padding: 20px 22px;
}

.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-cover--contain {
  object-fit: contain;
  background: #111;
}

.home-canvas {
  position: relative;
  display: grid;
  gap: 28px;
}

.home-canvas__backdrop {
  position: absolute;
  inset: 120px 0 auto;
  height: 520px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 224, 169, 0.28), transparent 20%),
    radial-gradient(circle at 84% 22%, rgba(44, 107, 94, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(252, 247, 239, 0.78), rgba(236, 223, 204, 0.52));
  filter: blur(10px);
  pointer-events: none;
}

.home-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-marquee span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(118, 84, 35, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-stage,
.experience-band,
.home-editorial,
.signature-runway,
.curated-paths,
.home-contact-ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.home-stage {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
}

.home-stage__copy {
  display: grid;
  gap: 20px;
}

.home-stage__copy h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
  max-width: 8.5ch;
}

.home-stage__lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-stage__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.home-stage__actions a:first-child {
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 18px 38px rgba(44, 107, 94, 0.22);
}

.home-stage__actions a.is-secondary {
  color: var(--ink);
  border: 1px solid rgba(118, 84, 35, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.home-stage__actions a:hover {
  transform: translateY(-2px);
}

.home-stage__promise {
  max-width: 32rem;
  padding: 18px 20px;
  border: 1px solid rgba(118, 84, 35, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.8);
  box-shadow: 0 20px 46px rgba(95, 67, 26, 0.08);
}

.home-stage__promise strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.home-stage__promise p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-stage__visual {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 18px;
}

.dream-card,
.floating-note,
.editorial-block,
.runway-card,
.path-card,
.home-contact-ribbon article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dream-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 252, 247, 0.9);
}

.dream-card--hero {
  grid-column: 1 / -1;
  width: 100%;
  margin-left: 0;
}

.dream-card__image {
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.dream-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 239, 206, 0.5), transparent 18%),
    linear-gradient(180deg, transparent 52%, rgba(15, 12, 9, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.dream-card__image--ceremony {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 214, 145, 0.32), transparent 14%),
    linear-gradient(145deg, rgba(130, 89, 50, 0.92), rgba(40, 89, 76, 0.92));
}

.dream-card__image--night {
  min-height: 230px;
  background:
    radial-gradient(circle at center, rgba(255, 214, 145, 0.36), transparent 18%),
    linear-gradient(145deg, rgba(42, 47, 69, 0.96), rgba(100, 57, 29, 0.88));
}

.dream-card__image--stay {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.2), transparent 24%),
    linear-gradient(145deg, rgba(118, 86, 56, 0.92), rgba(210, 170, 116, 0.9));
}

.media-showcase {
  display: grid;
  gap: 22px;
  margin-bottom: 26px;
}

.media-showcase__lead h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.media-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.media-showcase__grid--rooms {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.media-frame {
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-frame--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.media-frame--portrait {
  min-height: 560px;
  max-width: 420px;
  width: 100%;
  justify-self: center;
  background: #111;
}

.dream-card__content {
  padding: 20px 22px 24px;
}

.dream-card__content strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.25;
}

.floating-note {
  position: static;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: blur(16px);
  max-width: none;
  animation: none;
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 1rem;
  line-height: 1.4;
}

.mini-gallery {
  position: static;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.experience-band article {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(244, 233, 218, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.experience-band span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-band strong {
  font-size: 1.16rem;
  line-height: 1.48;
}

.home-editorial {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.home-editorial__intro {
  padding: 10px 6px 0 0;
}

.home-editorial__intro h2,
.signature-runway__lead h2,
.curated-paths__intro h2 {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.home-editorial__intro p,
.signature-runway__lead p,
.curated-paths__intro p {
  color: var(--muted);
  line-height: 1.75;
}

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

.editorial-block {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 252, 248, 0.9);
}

.editorial-block--tall,
.editorial-block--accent {
  background:
    radial-gradient(circle at top right, rgba(188, 133, 64, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(241, 231, 216, 0.92));
}

.editorial-block strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.42rem;
  line-height: 1.32;
}

.editorial-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.signature-runway {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.signature-runway__lead {
  padding: 10px 8px 0 0;
}

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

.runway-card {
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 234, 222, 0.92));
}

.runway-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(44, 107, 94, 0.1);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.runway-card h3 {
  margin: 16px 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.runway-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.curated-paths {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}

.curated-paths__intro {
  padding: 10px 8px 0 0;
}

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

.path-card {
  display: block;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 252, 248, 0.92);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.path-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(95, 67, 26, 0.14);
}

.path-card--large,
.path-card--cta {
  background:
    radial-gradient(circle at top right, rgba(188, 133, 64, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(242, 232, 217, 0.92));
}

.path-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.32;
}

.path-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-contact-ribbon {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-contact-ribbon article {
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.9);
}

.home-contact-ribbon span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.home-contact-ribbon strong {
  font-size: 1.08rem;
  line-height: 1.45;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.home-hero,
.pulse-ribbon,
.home-story,
.signature-grid,
.editorial-showcase {
  display: grid;
  gap: 24px;
  margin-bottom: 28px;
}

.home-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: stretch;
}

.home-hero__copy,
.home-hero__visual,
.story-card,
.signature-panel,
.editorial-link-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-hero__copy,
.home-hero__visual {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(250, 243, 233, 0.88));
}

.home-hero__copy {
  position: relative;
  overflow: hidden;
}

.home-hero__copy::before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(188, 133, 64, 0.16), transparent 62%);
  pointer-events: none;
}

.home-hero__copy h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  max-width: 9ch;
}

.home-hero__copy p {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.home-hero__actions,
.home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__actions {
  margin-top: 24px;
}

.home-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, filter 180ms ease;
}

.home-hero__actions a:first-child {
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 18px 34px rgba(44, 107, 94, 0.22);
}

.home-hero__actions a.is-secondary {
  color: var(--ink);
  border: 1px solid rgba(118, 84, 35, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.home-hero__actions a:hover {
  transform: translateY(-1px);
}

.home-hero__tags span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(118, 84, 35, 0.08);
  font-weight: 700;
}

.home-hero__visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
}

.estate-stack {
  display: grid;
  gap: 18px;
}

.estate-frame {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.estate-frame--primary {
  min-height: 100%;
}

.estate-frame__visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.estate-frame--primary .estate-frame__visual {
  min-height: 100%;
}

.estate-frame__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, transparent 46%, rgba(17, 13, 10, 0.16) 100%);
}

.estate-frame__visual--ceremony {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 239, 206, 0.65), transparent 22%),
    radial-gradient(circle at 80% 24%, rgba(255, 222, 156, 0.35), transparent 18%),
    linear-gradient(145deg, rgba(93, 56, 26, 0.78), rgba(44, 107, 94, 0.88));
}

.estate-frame__visual--evening {
  background:
    radial-gradient(circle at center, rgba(255, 216, 146, 0.35), transparent 18%),
    linear-gradient(150deg, rgba(42, 53, 77, 0.92), rgba(108, 65, 29, 0.88));
}

.estate-frame__visual--stay {
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(121, 89, 56, 0.9), rgba(205, 164, 109, 0.88));
}

.estate-frame__caption {
  padding: 18px 18px 20px;
}

.estate-frame__caption strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.estate-frame__caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.pulse-ribbon article {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.95), rgba(244, 234, 219, 0.82));
  box-shadow: var(--shadow);
}

.pulse-ribbon span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-ribbon strong {
  font-size: 1.14rem;
  line-height: 1.45;
}

.home-story {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.home-story__intro {
  padding: 14px 10px 0 4px;
}

.home-story__intro h2,
.signature-grid__lead h2,
.editorial-showcase__copy h2 {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.home-story__intro p,
.signature-grid__lead p,
.editorial-showcase__copy p {
  color: var(--muted);
  line-height: 1.75;
}

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

.story-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 252, 248, 0.9);
}

.story-card--feature {
  background:
    radial-gradient(circle at top right, rgba(188, 133, 64, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(243, 233, 219, 0.92));
}

.story-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.signature-grid {
  grid-template-columns: minmax(0, 0.86fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.signature-grid__lead {
  padding: 12px 6px 0 0;
}

.signature-panel {
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 235, 222, 0.9));
}

.signature-panel strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(44, 107, 94, 0.1);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-panel h3 {
  margin: 16px 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.8rem;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.signature-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.editorial-showcase {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
}

.editorial-showcase__copy {
  padding: 10px 8px 0 0;
}

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

.editorial-link-card {
  display: block;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(44, 107, 94, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(243, 234, 221, 0.9));
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.editorial-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(95, 67, 26, 0.14);
}

.editorial-link-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.24rem;
  line-height: 1.35;
}

.editorial-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-banner--immersive {
  background:
    radial-gradient(circle at top right, rgba(188, 133, 64, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(244, 234, 220, 0.9));
}

.journey-bar,
.metric-strip {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.journey-bar {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.88);
  box-shadow: var(--shadow);
}

.journey-bar__meta {
  display: grid;
  gap: 6px;
}

.journey-bar__meta strong {
  font-size: 1.2rem;
}

.journey-bar__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.journey-chip,
.hero-points button,
.quick-pick,
.floating-enquiry-bar__button,
.primary-link,
.secondary-link,
.faq-toggle {
  font: inherit;
}

.journey-chip,
.quick-pick {
  border: 1px solid rgba(118, 84, 35, 0.12);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  text-wrap: balance;
}

.journey-chip:hover,
.quick-pick:hover,
.journey-chip:focus-visible,
.quick-pick:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(44, 107, 94, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.hero-section,
.content-section,
.credibility-section,
.showcase-section,
.faq-section,
.gallery-section,
.trust-section,
.page-hero,
.split-section,
.contact-grid {
  display: grid;
  gap: 24px;
}

.page-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin-bottom: 26px;
}

.page-hero__copy,
.page-hero__panel,
.detail-card,
.metric-card,
.room-card,
.map-panel,
.timeline-card,
.cta-banner {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.page-hero__copy,
.page-hero__panel,
.detail-card,
.metric-card,
.room-card,
.map-panel,
.timeline-card,
.cta-banner {
  padding: 30px;
}

.page-hero__copy h1,
.split-section__copy h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.page-hero__copy h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  max-width: 10ch;
}

.page-hero__copy p,
.page-hero__panel p,
.detail-card p,
.room-card p,
.metric-card p,
.split-section__copy p,
.timeline-card p,
.map-panel p,
.cta-banner p {
  color: var(--muted);
  line-height: 1.7;
}

.page-hero__panel {
  display: grid;
  gap: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip-row span {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(118, 84, 35, 0.08);
  background: var(--panel-strong);
  font-weight: 700;
}

.metric-grid,
.detail-grid,
.room-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card strong,
.detail-card strong,
.room-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.split-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  margin-top: 26px;
}

.split-section__copy {
  padding: 12px 6px 0;
}

.split-section__copy h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  margin-bottom: 14px;
}

.timeline-list,
.feature-list {
  display: grid;
  gap: 16px;
}

.timeline-card strong,
.feature-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visual-card__image {
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 181, 0.45), transparent 28%),
    linear-gradient(135deg, rgba(44, 107, 94, 0.95), rgba(188, 133, 64, 0.84));
}

.visual-card__image--photo {
  background: #ddd3c4;
}

.visual-card__image--warm {
  background:
    linear-gradient(160deg, rgba(229, 209, 175, 0.35), transparent 32%),
    linear-gradient(135deg, rgba(188, 133, 64, 0.9), rgba(108, 67, 31, 0.92));
}

.visual-card__image--room {
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.2), transparent 25%),
    linear-gradient(145deg, rgba(119, 89, 57, 0.9), rgba(215, 176, 122, 0.88));
}

.visual-card__image--portrait {
  aspect-ratio: 9 / 16;
  min-height: 0;
  background: #111;
}

.visual-card__body {
  padding: 20px;
}

.visual-card__body strong {
  display: block;
  margin-bottom: 8px;
}

.visual-card__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.visual-grid--real .visual-card--wide {
  grid-column: 1 / -1;
}

.visual-grid--real .visual-card--wide .visual-card__image {
  aspect-ratio: 16 / 9;
}

.visual-card--portrait {
  max-width: 440px;
  justify-self: center;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: start;
  margin-top: 26px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.map-panel {
  min-height: 100%;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.inline-links a,
.cta-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-wrap: balance;
}

.inline-links a {
  border: 1px solid rgba(118, 84, 35, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.cta-banner a {
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 16px 32px rgba(44, 107, 94, 0.22);
}

.hero-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  margin-bottom: 26px;
}

.hero-copy,
.hero-panel,
.info-card,
.benefit-card,
.form-card,
.credibility-card,
.showcase-card,
.faq-card,
.gallery-card,
.testimonial-card,
.location-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.info-card,
.form-card,
.credibility-card,
.faq-card,
.testimonial-card,
.location-card {
  padding: 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.info-card h2,
.form-heading h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  max-width: 10ch;
}

.hero-text,
.info-card p,
.form-heading p,
.benefit-card p,
.hero-panel__card p,
.form-footnote {
  color: var(--muted);
  line-height: 1.65;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points button,
.hero-panel__stats article,
.benefit-card,
.trust-strip article,
.showcase-card {
  border-radius: 22px;
  background: var(--panel-strong);
  border: 1px solid rgba(118, 84, 35, 0.08);
}

.hero-points button {
  padding: 12px 14px;
  font-weight: 700;
  border-width: 1px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-points button:hover,
.hero-points button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(44, 107, 94, 0.22);
  background: rgba(255, 255, 255, 0.98);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
  text-wrap: balance;
}

.primary-link {
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 16px 32px rgba(44, 107, 94, 0.22);
}

.secondary-link {
  color: var(--ink);
  border: 1px solid rgba(118, 84, 35, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.primary-link:hover,
.secondary-link:hover,
.primary-link:focus-visible,
.secondary-link:focus-visible {
  transform: translateY(-1px);
}

.hero-panel__card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(188, 133, 64, 0.1), rgba(44, 107, 94, 0.08));
}

.hero-panel__card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.6rem;
}

.hero-panel__stats {
  display: grid;
  gap: 12px;
}

.hero-panel__stats article {
  padding: 16px 18px;
}

.hero-panel__stats span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-panel__stats strong {
  font-size: 1rem;
}

.trust-strip {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.trust-strip article {
  padding: 16px 18px;
}

.trust-strip strong,
.showcase-card span,
.credibility-value {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.trust-strip span,
.credibility-card p,
.showcase-card p,
.faq-list p,
.process-list p,
.hero-panel__promise p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-panel__promise {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 230, 215, 0.7));
}

.hero-panel__promise h3,
.credibility-card--feature h2,
.showcase-copy h2,
.faq-card h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-panel__promise h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-strip article {
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 251, 246, 0.88);
  box-shadow: var(--shadow);
}

.metric-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-strip strong {
  font-size: 1.15rem;
  line-height: 1.4;
}

.gallery-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  margin-bottom: 26px;
}

.gallery-copy {
  padding: 10px 6px 0;
}

.gallery-copy h2 {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.gallery-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card--hero {
  grid-column: 1 / -1;
}

.gallery-card__visual {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 181, 0.45), transparent 28%),
    linear-gradient(135deg, rgba(44, 107, 94, 0.95), rgba(188, 133, 64, 0.84));
}

.gallery-card--hero .gallery-card__visual {
  aspect-ratio: 16 / 10;
}

.gallery-card__visual--evening {
  background:
    radial-gradient(circle at center, rgba(255, 230, 170, 0.35), transparent 22%),
    linear-gradient(140deg, rgba(92, 59, 27, 0.95), rgba(44, 107, 94, 0.88));
}

.gallery-card__visual--dining {
  background:
    linear-gradient(160deg, rgba(229, 209, 175, 0.35), transparent 32%),
    linear-gradient(135deg, rgba(188, 133, 64, 0.9), rgba(108, 67, 31, 0.92));
}

.gallery-card__visual--rooms {
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.2), transparent 25%),
    linear-gradient(145deg, rgba(119, 89, 57, 0.9), rgba(215, 176, 122, 0.88));
}

.gallery-card__meta {
  padding: 18px 20px 20px;
}

.gallery-card__meta strong {
  display: block;
  margin-bottom: 8px;
}

.credibility-section {
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  margin-bottom: 26px;
}

.credibility-card--feature h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.credibility-card {
  display: grid;
  align-content: start;
}

.content-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: start;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.benefit-card {
  padding: 20px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.process-card {
  margin-top: 18px;
}

.process-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.process-list strong,
.faq-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.form-heading {
  margin-bottom: 18px;
}

.form-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.form-quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

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

.enquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(118, 84, 35, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 0;
  border-color: rgba(188, 133, 64, 0.36);
  box-shadow: 0 0 0 4px rgba(188, 133, 64, 0.08);
}

.full-span {
  grid-column: 1 / -1;
}

.submit-btn {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 800;
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 16px 32px rgba(44, 107, 94, 0.22);
  cursor: pointer;
}

.submit-btn:hover {
  filter: brightness(1.03);
}

.submit-btn.is-loading {
  opacity: 0.9;
  cursor: wait;
}

.form-footnote {
  margin: 16px 0 0;
  font-size: 0.95rem;
}

.assurance-panel {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(118, 84, 35, 0.09);
}

.assurance-panel strong {
  display: block;
  margin-bottom: 10px;
}

.assurance-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  margin-top: 26px;
}

.showcase-copy {
  padding: 10px 6px 0;
}

.showcase-copy h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  margin-bottom: 14px;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
}

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

.showcase-card {
  padding: 22px;
}

.trust-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
  margin-top: 26px;
}

.testimonial-card h2,
.location-card h2 {
  margin: 0 0 14px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

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

.testimonial-list blockquote {
  margin: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(118, 84, 35, 0.08);
  color: var(--ink);
  line-height: 1.7;
}

.testimonial-list cite {
  margin-top: 10px;
  font-style: normal;
}

.location-map {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  min-height: 220px;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(239, 230, 216, 0.9)),
    linear-gradient(135deg, rgba(188, 133, 64, 0.1), rgba(44, 107, 94, 0.08));
  border: 1px solid rgba(118, 84, 35, 0.09);
}

.location-map span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.location-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(118, 84, 35, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
}

.faq-section {
  margin-top: 26px;
}

.faq-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

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

.faq-list > div {
  padding: 18px 18px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(118, 84, 35, 0.08);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.03rem;
  text-align: left;
  cursor: pointer;
}

.faq-toggle::after {
  content: "+";
  color: var(--accent-deep);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-toggle[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding-top: 10px;
}

.faq-answer.is-open {
  display: block;
}

.floating-enquiry-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(44, 107, 94, 0.16);
  border-radius: 22px;
  background: rgba(36, 25, 17, 0.92);
  color: #fff8f0;
  box-shadow: 0 24px 60px rgba(36, 25, 17, 0.28);
  backdrop-filter: blur(18px);
  z-index: 20;
}

.floating-enquiry-bar strong {
  display: block;
  font-size: 1rem;
}

.floating-enquiry-bar .eyebrow {
  margin-bottom: 4px;
  color: #e8c48f;
}

.floating-enquiry-bar__button {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 18px;
  color: #f7fbf9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

body.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

body.js-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 112px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(35, 32, 25, 0.94);
  color: #f8f2ea;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .royal-hero,
  .curated-metrics,
  .moment-editorial,
  .hosting-story,
  .experience-film,
  .royal-paths,
  .concierge-ribbon,
  .moment-editorial__gallery,
  .hosting-story__cards,
  .experience-film__strip {
    grid-template-columns: 1fr;
  }

  .royal-hero {
    min-height: auto;
    padding: 28px;
  }

  .home-stage {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-canvas__backdrop {
    inset: 80px 0 auto;
    height: 380px;
  }

  .home-stage,
  .experience-band,
  .home-editorial,
  .signature-runway,
  .curated-paths,
  .home-contact-ribbon,
  .signature-runway__track,
  .home-editorial__grid,
  .curated-paths__grid {
    grid-template-columns: 1fr;
  }

  .home-stage__visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .dream-card--hero {
    width: 100%;
    margin-left: 0;
  }

  .floating-note,
  .mini-gallery {
    position: static;
    animation: none;
  }

  .mini-gallery {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero,
  .pulse-ribbon,
  .home-story,
  .signature-grid,
  .editorial-showcase,
  .media-showcase__grid,
  .page-hero,
  .site-header__row,
  .contact-ribbon,
  .journey-bar,
  .journey-bar__actions,
  .metric-strip,
  .hero-section,
  .gallery-section,
  .content-section,
  .credibility-section,
  .showcase-section,
  .trust-section,
  .split-section,
  .contact-grid,
  .benefit-grid,
  .enquiry-form,
  .showcase-grid,
  .faq-list,
  .gallery-grid,
  .metric-grid,
  .detail-grid,
  .room-grid,
  .package-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .home-story__cards,
  .editorial-showcase__grid,
  .home-hero__visual,
  .media-showcase__grid--rooms {
    grid-template-columns: 1fr;
  }

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

  .site-header__note {
    max-width: none;
  }

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

  .site-nav {
    justify-content: flex-start;
  }

  .journey-bar__actions {
    justify-content: flex-start;
  }

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

  .cta-banner a {
    align-self: flex-start;
  }
}

@media (max-width: 720px) {
  .landing-shell {
    width: min(100% - 24px, 1200px);
    padding: 16px 0 116px;
  }

  .royal-hero,
  .curated-metrics,
  .moment-editorial,
  .hosting-story,
  .experience-film,
  .royal-paths,
  .concierge-ribbon,
  .home-stage,
  .experience-band,
  .home-editorial,
  .signature-runway,
  .curated-paths,
  .home-contact-ribbon,
  .home-hero,
  .pulse-ribbon,
  .home-story,
  .signature-grid,
  .editorial-showcase,
  .contact-ribbon,
  .journey-bar,
  .metric-strip,
  .hero-section,
  .gallery-section,
  .content-section,
  .credibility-section,
  .showcase-section,
  .trust-section,
  .split-section,
  .visual-grid,
  .media-showcase,
  .page-hero {
    gap: 18px;
    margin-bottom: 20px;
  }

  .site-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .brand-lockup strong {
    font-size: clamp(1.75rem, 7.6vw, 2.2rem);
    max-width: 8.2ch;
  }

  .site-header__note {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    text-align: center;
    line-height: 1.2;
    font-size: 0.96rem;
  }

  .home-canvas {
    gap: 18px;
  }

  .royal-hero {
    min-height: auto;
    padding: 20px;
    border-radius: 26px;
  }

  .royal-hero__content h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.8rem);
    max-width: 7.2ch;
    line-height: 0.9;
  }

  .royal-hero__lede {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .royal-hero__aside {
    gap: 10px;
  }

  .royal-hero__aside article,
  .curated-metrics article,
  .hosting-card,
  .royal-paths__card,
  .concierge-ribbon article,
  .contact-ribbon article,
  .gallery-card__meta,
  .detail-card,
  .timeline-card,
  .room-card,
  .metric-card,
  .package-card,
  .visual-card__body {
    padding: 18px;
  }

  .royal-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .royal-hero__actions a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .editorial-media,
  .editorial-media--wide,
  .film-frame {
    min-height: 200px;
  }

  .home-marquee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-marquee span {
    min-width: 0;
  }

  .home-stage__copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    max-width: 7.1ch;
    line-height: 0.9;
  }

  .home-stage__lede,
  .home-hero__copy p,
  .page-hero__copy p,
  .hero-text,
  .site-header__note {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .home-stage__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-stage__actions a {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .dream-card__image {
    min-height: 220px;
  }

  .media-frame,
  .media-frame--wide {
    min-height: 200px;
  }

  .dream-card__content,
  .editorial-block,
  .runway-card,
  .path-card,
  .home-contact-ribbon article {
    padding: 18px;
  }

  .home-hero__copy,
  .home-hero__visual,
  .story-card,
  .signature-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .home-hero__copy h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.4rem);
    line-height: 0.92;
  }

  .home-hero__copy p {
    max-width: none;
  }

  .home-hero__actions,
  .home-hero__tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero__actions a {
    width: 100%;
  }

  .hero-copy,
  .hero-panel,
  .info-card,
  .form-card,
  .credibility-card,
  .testimonial-card,
  .location-card,
  .journey-bar {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.94;
  }

  .hero-panel__card strong {
    font-size: 1.35rem;
  }

  .form-heading h2 {
    font-size: 1.85rem;
  }

  .site-header {
    margin-bottom: 16px;
  }

  .contact-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-cta-row,
  .form-quick-picks,
  .journey-bar__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-link,
  .secondary-link,
  .journey-chip,
  .quick-pick,
  .floating-enquiry-bar__button {
    width: 100%;
  }

  .cta-banner a,
  .primary-link,
  .secondary-link,
  .floating-enquiry-bar__button {
    white-space: normal;
    text-align: center;
  }

  .gallery-card__visual,
  .gallery-card__visual--evening,
  .gallery-card__visual--dining,
  .gallery-card__visual--rooms,
  .visual-card__image,
  .visual-card__image--warm,
  .visual-card__image--room {
    min-height: 200px;
  }

  .moment-editorial__intro h2,
  .hosting-story__lead h2,
  .experience-film__copy h2,
  .gallery-copy h2,
  .split-section__copy h2,
  .media-showcase__lead h2,
  .page-hero__copy h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 0.98;
  }

  .gallery-copy,
  .split-section__copy,
  .showcase-copy,
  .media-showcase__lead {
    padding: 0;
  }

  .page-hero__copy,
  .page-hero__panel,
  .detail-card,
  .metric-card,
  .room-card,
  .map-panel,
  .timeline-card,
  .cta-banner {
    padding: 22px;
  }

  .chip-row,
  .hero-points,
  .trust-strip,
  .benefit-grid,
  .timeline-list,
  .process-list {
    gap: 12px;
  }

  .floating-enquiry-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 12px 12px 14px;
    border-radius: 18px;
  }

  .floating-enquiry-bar strong {
    font-size: 0.98rem;
  }

  .toast {
    right: 12px;
    left: 12px;
    bottom: 108px;
  }
}

@media (max-width: 540px) {
  .landing-shell {
    width: min(100% - 18px, 1200px);
    padding: 12px 0 108px;
  }

  .site-header__row {
    gap: 12px;
  }

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

  .site-nav a {
    min-height: 46px;
    font-size: 0.98rem;
    padding: 0 8px;
  }

  .site-header__note {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .royal-hero,
  .home-hero__copy,
  .home-hero__visual,
  .hero-copy,
  .hero-panel,
  .info-card,
  .form-card,
  .credibility-card,
  .testimonial-card,
  .location-card,
  .journey-bar,
  .cta-banner,
  .page-hero__panel,
  .hero-panel__card,
  .visual-card,
  .gallery-card,
  .detail-card,
  .timeline-card,
  .room-card,
  .metric-card,
  .package-card {
    border-radius: 20px;
  }

  .royal-hero {
    padding: 18px;
  }

  .royal-hero__content,
  .home-stage__copy,
  .hero-copy {
    gap: 14px;
  }

  .royal-hero__content h1,
  .home-stage__copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.1rem);
    max-width: 6.8ch;
  }

  .home-hero__copy h1,
  .hero-copy h1 {
    font-size: clamp(2rem, 9.6vw, 2.7rem);
  }

  .page-hero__copy h1,
  .gallery-copy h2,
  .split-section__copy h2,
  .showcase-copy h2,
  .media-showcase__lead h2,
  .testimonial-card h2,
  .location-card h2,
  .faq-card h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
    line-height: 1;
    max-width: none;
  }

  .brand-lockup strong {
    max-width: none;
  }

  .contact-ribbon strong,
  .curated-metrics strong,
  .concierge-ribbon strong,
  .hosting-card strong,
  .royal-paths__card strong,
  .visual-card__body strong {
    font-size: 1.02rem;
  }

  .curated-metrics strong,
  .experience-band strong,
  .pulse-ribbon strong,
  .metric-strip strong {
    font-size: 1.02rem;
    line-height: 1.4;
  }

  .gallery-card__visual,
  .gallery-card__visual--evening,
  .gallery-card__visual--dining,
  .gallery-card__visual--rooms,
  .visual-card__image,
  .visual-card__image--warm,
  .visual-card__image--room,
  .media-frame,
  .media-frame--wide,
  .editorial-media,
  .editorial-media--wide,
  .film-frame {
    min-height: 180px;
  }

  .contact-ribbon article,
  .gallery-card__meta,
  .detail-card,
  .timeline-card,
  .room-card,
  .metric-card,
  .visual-card__body,
  .hero-copy,
  .hero-panel,
  .info-card,
  .form-card,
  .credibility-card,
  .testimonial-card,
  .location-card,
  .journey-bar,
  .cta-banner {
    padding: 16px;
  }

  .cta-banner h2,
  .hero-panel__promise h3,
  .form-heading h2 {
    font-size: 1.6rem;
    line-height: 1.02;
  }

  .home-marquee {
    grid-template-columns: 1fr;
  }

  .home-marquee span,
  .chip-row span,
  .journey-chip,
  .quick-pick,
  .hero-points button,
  .inline-links a,
  .location-actions a,
  .cta-banner a,
  .primary-link,
  .secondary-link,
  .site-nav a {
    overflow-wrap: anywhere;
  }

  .chip-row span,
  .hero-points button {
    width: 100%;
  }

  .hero-panel__stats article,
  .trust-strip article,
  .benefit-card,
  .showcase-card,
  .faq-list > div {
    padding: 14px 16px;
  }

  .journey-bar__meta strong {
    font-size: 1.04rem;
    line-height: 1.35;
  }

  .gallery-card__meta span,
  .visual-card__body p,
  .timeline-card p,
  .detail-card p,
  .room-card p,
  .metric-card p,
  .showcase-card p,
  .testimonial-list blockquote,
  .faq-list p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .journey-chip,
  .quick-pick {
    min-height: 48px;
  }

  .floating-enquiry-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
    width: auto;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .floating-enquiry-bar > div {
    display: none;
  }

  .floating-enquiry-bar__button {
    min-height: 44px;
  }

  .toast {
    bottom: 84px;
  }
}
