:root {
  --paper: #f4efe7;
  --paper-soft: #faf7f1;
  --ink: #1d211d;
  --muted: #666b64;
  --olive: #566454;
  --brown: #6f5e50;
  --line: rgba(29, 33, 29, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --content: min(1240px, calc(100vw - 48px));
  --page-gutter: max(24px, calc((100vw - 1240px) / 2));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #253d35; color: #fff; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, a, summary { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(18px, env(safe-area-inset-top)) var(--page-gutter) 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.brand__mark circle { fill: currentColor; stroke: none; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }

.brand__type strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: .01em;
}

.brand__type small {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}

.site-nav a:not(.site-nav__cta):hover::after,
.site-nav a:not(.site-nav__cta):focus-visible::after { right: 0; }

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 11px 17px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.site-nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 71px);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: var(--content);
  margin: auto;
  padding: 135px 0 105px;
}

.hero__copy { max-width: 900px; }

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: url("./assets/hero-background.webp") center center / cover no-repeat;
  transform: translateX(-50%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: linear-gradient(90deg, rgba(244, 239, 231, .95) 0%, rgba(244, 239, 231, .82) 46%, rgba(244, 239, 231, .16) 100%);
  transform: translateX(-50%);
}

.hero__noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .11;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--olive);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 6.7vw, 106px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.047em;
}

.hero h1 em { color: #706355; font-weight: 400; }

.hero__lead {
  max-width: 610px;
  margin: 36px 0 0;
  color: #52584f;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 23px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: var(--paper-soft); }
.button--light { background: var(--paper-soft); color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.instagram-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: block;
  background-color: currentColor;
  -webkit-mask: url("./assets/instagram.svg") center / contain no-repeat;
  mask: url("./assets/instagram.svg") center / contain no-repeat;
}

.section {
  width: var(--content);
  margin: auto;
  padding: clamp(76px, 8vw, 120px) 0;
}

.section-heading h2,
.essentials h2,
.faq h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 90px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.04em;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 58px;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 10px;
  color: var(--muted);
}

.collection { padding-top: clamp(85px, 9vw, 130px); }

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(70px, 7vw, 105px) clamp(24px, 3vw, 42px);
}

.theme-card { min-width: 0; }

.theme-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid transparent;
  background: #ddd;
  text-decoration: none;
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.theme-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, color-mix(in srgb, var(--theme-accent) 24%, transparent), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.theme-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.theme-card__visual:hover,
.theme-card__visual:focus-visible {
  border-color: var(--theme-accent);
  box-shadow: 0 24px 65px color-mix(in srgb, var(--theme-accent) 20%, transparent);
  transform: translateY(-3px);
}

.theme-card__visual:hover::after,
.theme-card__visual:focus-visible::after { opacity: 1; }
.theme-card__visual:hover img { transform: scale(1.025); }

.theme-card__open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  padding: 11px 14px 11px 17px;
  background: rgba(250, 247, 241, .93);
  color: #252923;
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.theme-card__visual:hover .theme-card__open,
.theme-card__visual:focus-visible .theme-card__open {
  transform: none;
  opacity: 1;
}

.theme-card__content { padding-top: 22px; }

.theme-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 4.2vw, 62px);
  font-weight: 400;
  line-height: .96;
}

.theme-card h3 a { text-decoration: none; }

.theme-card h3 a:hover {
  color: var(--theme-accent);
}

.theme-card__booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.theme-card__booking > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.theme-card__booking a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.theme-card__booking a i {
  font-style: normal;
  transition: transform .25s ease;
}

.theme-card__booking a:hover,
.theme-card__booking a:focus-visible { color: var(--theme-accent); }
.theme-card__booking a:hover i { transform: translateX(3px); }

.collection__trust {
  margin: clamp(62px, 7vw, 94px) 0 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.collection__trust li {
  position: relative;
  padding: 0 24px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.collection__trust li + li { border-left: 1px solid var(--line); }

.essentials {
  width: 100%;
  max-width: none;
  padding-inline: 24px;
}

.essentials__panel {
  width: min(1400px, 100%);
  margin: auto;
  padding: clamp(50px, 6vw, 82px);
  background: #1d241f;
  color: #f6f1e8;
}

.essentials__heading {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.essentials__mark {
  width: 42px;
  flex: 0 0 42px;
  fill: none;
  stroke: #c7b99b;
  stroke-width: 1.2;
}

.essentials__mark circle {
  fill: #c7b99b;
  stroke: none;
}

.essentials h2 {
  max-width: 690px;
  font-size: clamp(42px, 4.6vw, 66px);
}

.essentials .section-kicker {
  margin-bottom: 10px;
  color: #c7b99b;
}

.essentials__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.essentials__group {
  padding: 29px clamp(22px, 3vw, 44px) 6px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.essentials__group:first-child { padding-left: 0; }
.essentials__group:last-child { padding-right: 0; border-right: 0; }

.essentials__group h3 {
  margin: 0 0 15px;
  color: #f6f1e8;
  font-family: var(--serif);
  font-size: clamp(29px, 2.5vw, 38px);
  font-weight: 400;
}

.essentials__group p {
  margin: 0;
  color: rgba(246, 241, 232, .84);
  font-size: 13px;
  line-height: 1.75;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process { padding-block: clamp(58px, 6vw, 88px); }
.process .section-heading { margin-bottom: clamp(38px, 5vw, 62px); }

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
}

.process-step {
  position: relative;
  padding: 0 clamp(16px, 2.4vw, 34px);
  text-align: center;
}

.process-step__marker {
  position: relative;
  z-index: 1;
  width: 57px;
  height: 57px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 33, 29, .38);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.process-step h3 {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 37px);
  font-weight: 400;
  line-height: 1;
}

.process-step p {
  max-width: 245px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(65px, 9vw, 145px);
}

.faq h2 { font-size: clamp(51px, 5.6vw, 80px); }

.faq__heading > p:last-child {
  max-width: 380px;
  margin: 28px 0 0;
  color: var(--muted);
}

.faq__list { border-top: 1px solid var(--line); }

.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  display: grid;
  grid-template-columns: 1fr 26px;
  align-items: center;
  gap: 25px;
  padding: 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}

.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }

.faq details > p {
  max-width: 690px;
  margin: -3px 48px 28px 0;
  color: var(--muted);
}

.closing-cta {
  width: 100%;
  max-width: none;
  text-align: center;
  background: var(--brown);
  color: #faf7f1;
  padding: clamp(80px, 9vw, 130px) clamp(28px, 8vw, 110px);
}

.closing-cta .section-kicker { color: #eadbc7; }
.closing-cta h2 { max-width: 850px; margin: auto; }

.closing-cta__mark {
  width: 64px;
  margin: 0 auto 38px;
  fill: none;
  stroke: #eadbc7;
  stroke-width: 1;
}

.closing-cta__mark circle { fill: #eadbc7; stroke: none; }

.closing-cta__copy {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(250, 247, 241, .78);
}

.closing-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  margin-top: 34px;
}

.closing-cta__enquire {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #eadbc7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.closing-cta__handle {
  width: max-content;
  display: block;
  margin: 19px auto 0;
  color: #eadbc7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  z-index: 45;
  right: max(22px, var(--page-gutter));
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 33, 29, .28);
  border-radius: 50%;
  background: rgba(250, 247, 241, .94);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(29, 33, 29, .14);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--ink);
  color: var(--paper-soft);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 50px var(--page-gutter) max(45px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.site-footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-footer__links a:hover { color: var(--ink); }

.site-footer__instagram {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
}

.site-footer__instagram:hover {
  color: var(--ink);
  border-color: rgba(29, 33, 29, .4);
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
}

.error-page {
  min-height: 100svh;
  display: grid;
  background:
    radial-gradient(circle at 85% 10%, rgba(86, 100, 84, .09), transparent 34%),
    var(--paper);
}

.error-page__content {
  width: var(--content);
  min-height: 100svh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0 clamp(65px, 9vw, 120px);
}

.error-page__message { max-width: 880px; }

.error-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.045em;
}

.error-page__message > p:not(.section-kicker) {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}

.error-page__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.reveal { opacity: 1; transform: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16, 1, .3, 1);
}

.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .site-nav { gap: 20px; }
  .site-nav a:nth-child(3) { display: none; }
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  :root {
    --content: min(calc(100% - 36px), 760px);
    --page-gutter: 18px;
  }

  .site-nav > a:not(.site-nav__cta) { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 145px;
  }

  .hero__copy { max-width: 760px; }
  .hero h1 { font-size: clamp(67px, 13vw, 105px); }

  .theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 26px;
  }

  .theme-card__open { opacity: 1; transform: none; }

  .essentials__panel {
    padding-inline: clamp(34px, 6vw, 60px);
  }

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

  .essentials__group,
  .essentials__group:first-child,
  .essentials__group:last-child {
    padding: 28px 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .essentials__group:last-child { border-bottom: 0; }

  .faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq__heading { max-width: 620px; }

}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 32px);
    --page-gutter: 16px;
  }

  html { scroll-padding-top: 76px; }
  .site-header { padding-top: max(14px, env(safe-area-inset-top)); }
  .brand { gap: 8px; }
  .brand__mark { width: 31px; height: 31px; }
  .brand__type strong { font-size: 22px; }
  .brand__type small { font-size: 6px; letter-spacing: .2em; }

  .site-nav__cta {
    padding: 9px 12px;
    font-size: 7px !important;
    letter-spacing: .08em !important;
  }

  .hero {
    min-height: calc(100svh - 60px);
    padding: 72px 0 68px;
    gap: 42px;
  }

  .hero::before { background-position: 64% center; }

  .hero::after {
    background: linear-gradient(90deg, rgba(244, 239, 231, .96) 0%, rgba(244, 239, 231, .88) 58%, rgba(244, 239, 231, .55) 100%);
  }

  .hero h1 {
    font-size: clamp(57px, 17.4vw, 78px);
    line-height: .86;
  }

  .hero__lead { margin-top: 26px; font-size: 15px; }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .section { padding: 70px 0; }

  .section-heading h2,
  .essentials h2,
  .faq h2,
  .closing-cta h2 {
    font-size: clamp(47px, 13.5vw, 66px);
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading > p { margin-top: 20px; }
  .collection { padding-top: 78px; }

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

  .theme-card__visual { aspect-ratio: 4 / 5; }
  .theme-card__open {
    right: 8px;
    bottom: 8px;
    padding: 9px 10px;
    font-size: 7px;
  }
  .theme-card__content { padding-top: 13px; }
  .theme-card h3 { font-size: clamp(30px, 9vw, 39px); }
  .theme-card__booking {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
  }
  .theme-card__booking a { font-size: 7px; }

  .collection__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
    padding: 0;
  }

  .collection__trust li {
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 13px 10px;
    line-height: 1.45;
  }

  .collection__trust li + li { border-left: 0; }
  .collection__trust li:nth-child(even) { border-left: 1px solid var(--line); }
  .collection__trust li:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .essentials { padding-inline: 0; }
  .essentials__panel { padding: 50px 24px; }
  .essentials__heading { gap: 18px; }
  .essentials__mark { width: 34px; flex-basis: 34px; }
  .essentials__group h3 { margin-bottom: 17px; }

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

  .process-grid::before {
    top: 28px;
    right: auto;
    bottom: 28px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .process-step,
  .process-step + .process-step {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 20px;
    padding: 0 0 34px;
    text-align: left;
  }

  .process-step:last-child { padding-bottom: 0; }
  .process-step__marker { grid-row: 1 / span 2; margin: 0; }
  .process { padding-block: 52px; }
  .process .section-heading { margin-bottom: 23px; }
  .process-step h3 {
    grid-column: 2;
    margin: 2px 0 7px;
    font-size: 34px;
  }

  .process-step p {
    grid-column: 2;
    max-width: 360px;
    margin: 0;
  }

  .faq { gap: 40px; }
  .faq__heading > p:last-child { margin-top: 20px; }
  .faq summary { padding: 23px 0; font-size: 25px; }
  .faq details > p { margin: -2px 36px 24px 0; font-size: 14px; }

  .closing-cta {
    width: 100%;
    padding: 72px 24px;
  }

  .closing-cta__copy { font-size: 14px; }

  .site-footer__links {
    gap: 12px 19px;
  }

  .back-to-top {
    right: 16px;
    bottom: max(18px, env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .error-page__content { padding-top: 22px; }
  .error-page h1 { font-size: clamp(57px, 17vw, 76px); }

  .error-page__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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

  .js .reveal { opacity: 1; transform: none; }
}

/* Homepage refresh: retain Wedsmint's paper, ink, olive and serif identity. */
[hidden] { display: none !important; }
button { font-family: inherit; cursor: pointer; }
.hero__copy { max-width: 780px; }
.hero h1 { line-height: .94; }
.hero__lead { max-width: 535px; margin-top: 28px; }
.hero__details { max-width: 500px; margin: 18px 0 0; color: var(--brown); font-size: 12px; }
.hero__details span { padding-inline: 5px; }
.hero__actions { margin-top: 28px; }
.collection .section-heading { margin-bottom: 32px; }
.collection__occasions { display: flex; flex-wrap: wrap; gap: 9px 15px; margin: 0 0 42px; color: var(--olive); font-size: 12px; }
.collection__occasions span { color: var(--brown); }
.theme-card { scroll-margin-top: 100px; }
.theme-card__popular { position: absolute; top: 14px; left: 14px; z-index: 3; border-radius: 2px; padding: 7px 12px; background: var(--paper-soft); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 2px 12px #1d211d14; }
.theme-card__open { opacity: 1; transform: none; background: var(--paper-soft); backdrop-filter: none; }
.theme-card__booking a { min-height: 44px; }
.collection__more { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 54px; }
.collection__more p { margin: 0; color: var(--muted); font-size: 12px; }
.button--outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--ink); color: var(--paper-soft); }
.collection__trust { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 54px; }
.collection__note { margin: 12px 0 0; text-align: center; color: var(--muted); font-size: 11px; }
.reviews { border-top: 1px solid var(--line); }
.reviews__summary { flex-shrink: 0; padding-bottom: 4px; }
.reviews__summary strong { display: block; font-family: var(--serif); font-size: 58px; font-weight: 400; line-height: 1; }
.reviews__summary strong span { font-family: var(--sans); font-size: 16px; color: var(--muted); }
.reviews__summary p { margin: 10px 0 0; font-size: 12px; color: var(--muted); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.review-card { min-width: 0; display: flex; flex-direction: column; margin: 0; padding: 30px; background: var(--paper-soft); border-top: 2px solid var(--olive); }
.review-card__stars { color: var(--brown); font-size: 15px; letter-spacing: 3px; }
.review-card blockquote { flex: 1; margin: 22px 0 28px; overflow-wrap: anywhere; }
.review-card blockquote p { margin: 0; font-size: 15px; line-height: 1.85; white-space: pre-line; }
.review-card figcaption { display: flex; flex-direction: column; align-items: flex-start; padding-top: 19px; border-top: 1px solid var(--line); overflow-wrap: anywhere; }
.review-card figcaption strong { font-size: 13px; font-weight: 700; }
.review-card__event { color: var(--muted); font-size: 12px; }
.review-card__theme { margin-top: 12px; font-size: 11px; color: var(--brown); }
.review-card__theme a { display: inline-flex; align-items: center; min-height: 44px; gap: 8px; text-underline-offset: 4px; }
@media (max-width: 980px) {
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .hero h1 { font-size: clamp(57px, 16vw, 78px); }
  .hero__details { max-width: 300px; font-size: 11px; }
  .collection__occasions { gap: 7px 10px; margin-bottom: 30px; font-size: 11px; }
  .theme-card__popular { top: 8px; left: 8px; padding: 5px 8px; font-size: 8px; }
  .collection__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews__grid { grid-template-columns: 1fr; gap: 18px; }
  .reviews__summary { margin-top: 28px; }
  .review-card { padding: 26px; }
}

.review-card__theme > span { display: inline-flex; align-items: center; min-height: 44px; }


@media (max-width: 680px) {
  .hero__actions .text-link {
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper-soft);
    justify-content: center;
    letter-spacing: .13em;
  }
}

.hero__media {
  display: none;
}

@media (min-width: 981px) {
  .hero {
    grid-template-columns:
      minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(24px, 4vw, 64px);
    padding-block: clamp(64px, 6vw, 96px);
  }

  .hero__media {
    display: block;
    width: min(100%, 520px);
    justify-self: end;
  }

  .hero__video {
    display: block;
    width: 100%;
    pointer-events: none;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
}


/* WEDSMINT PREVIEW MODAL & BADGE STYLING */

.wedsmint-demo-badge {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9998;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.wedsmint-preview-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  border: none;
  border-radius: 999px;
  padding: 14px 21px;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wedsmint-preview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.wedsmint-cta-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wedsmint-cta-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.wedsmint-cta-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.wedsmint-cta-card {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  padding: 38px 28px 28px;
  border-radius: 22px;
  background: #f8f5ef;
  color: #171717;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  transform: translateY(15px) scale(0.97);
  transition: transform 0.3s ease;
}

.wedsmint-cta-modal.is-open .wedsmint-cta-card {
  transform: translateY(0) scale(1);
}

.wedsmint-cta-close {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #222;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.wedsmint-cta-eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.wedsmint-cta-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 500;
}

.wedsmint-cta-card p {
  margin: 0 auto 25px;
  max-width: 310px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #666;
}

.wedsmint-instagram-btn {
  display: block;
  padding: 14px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.wedsmint-instagram-btn:hover {
  transform: translateY(-1px);
}



/* MOBILE RESPONSIVENESS ENHANCEMENTS */

@media (max-width: 480px) {
  .theme-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .theme-card h3 {
    font-size: 26px !important;
  }
  
  .hero h1 {
    font-size: clamp(42px, 14vw, 62px) !important;
  }
  
  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
    justify-content: center;
  }
  
  .wedsmint-preview-cta {
    bottom: 16px !important;
    right: 16px !important;
    padding: 12px 18px !important;
    font-size: 12px !important;
  }

  .wedsmint-cta-card {
    padding: 30px 20px 22px !important;
  }

  .wedsmint-cta-card h3 {
    font-size: 22px !important;
  }
}
