.home-v3-menu-ctas {
  display: none;
}

.home-v3 {
	--home-v3-bg: var(--livi-bg);
	--home-v3-bg-2: var(--livi-bg);
	--home-v3-bg-3: var(--livi-bg);
  --home-v3-panel: #0a0a0a;
  --home-v3-text: var(--livi-text);
  --home-v3-muted: var(--livi-muted);
  --home-v3-accent: #b98a61;
  --home-v3-rule: var(--livi-rule);
  --home-v3-rule-strong: var(--livi-rule-strong);
  --home-v3-ease-out: var(--livi-ease-out);
  --home-v3-ease-ui: var(--livi-ease-ui);
  --home-v3-fast: var(--livi-motion-fast);
  --home-v3-ui: var(--livi-motion-ui);
  --home-v3-panel-speed: var(--livi-motion-panel);
  --home-v3-reveal: var(--livi-motion-reveal);
  position: relative;
  overflow: hidden;
  color: var(--home-v3-text);
  background: var(--home-v3-bg);
  font-family: "Quicksand", sans-serif;
}

.home-v3 *,
.home-v3 *::before,
.home-v3 *::after {
  box-sizing: border-box;
}

.home-v3 [hidden] {
  display: none !important;
}

.home-v3 .container { padding: 0; }

.home-v3 img,
.home-v3 video {
  display: block;
  max-width: 100%;
}

.home-v3 button,
.home-v3 a,
.home-v3 input,
.home-v3 textarea {
  letter-spacing: 0;
}

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

.home-v3 button:focus-visible,
.home-v3 a:focus-visible,
.home-v3 input:focus-visible,
.home-v3 textarea:focus-visible {
  outline: 2px solid var(--home-v3-text);
  outline-offset: 4px;
}

.home-v3-title {
  max-width: 1100px;
  margin: 0;
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-v3-eyebrow,
.home-v3-panel-label {
  margin: 0;
  color: var(--home-v3-text);
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-v3-copy,
.home-v3-hero__body {
  max-width: 65ch;
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.home-v3-copy p {
  margin: 0;
}

.home-v3-copy p + p {
  margin-top: 20px;
}

.home-v3-accent {
  margin: 0;
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.3;
}

.home-v3-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-block: 128px;
  border-top: 0;
  box-shadow: inset 0 24px 44px -48px rgba(252, 247, 240, 0.82);
  isolation: isolate;
}

.home-v3-intro {
  max-width: 1040px;
  margin-bottom: 64px;
}

.home-v3-intro .home-v3-eyebrow,
.home-v3-process__intro .home-v3-eyebrow,
.home-v3-concierge__copy .home-v3-eyebrow,
.home-v3-why__premise .home-v3-eyebrow,
.home-v3-contact__copy .home-v3-eyebrow {
  margin-bottom: 24px;
}

.home-v3-intro .home-v3-title + .home-v3-copy {
  margin-top: 30px;
}

.home-v3-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
  gap: 96px;
  max-width: none;
  align-items: end;
}

.home-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.home-v3-actions--compact {
  gap: 20px;
}

.home-v3-button,
.home-v3-text-link,
.home-v3-utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: var(--home-v3-text);
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.home-v3-button {
  min-width: 190px;
  padding: 14px 24px;
  border: 1px solid var(--home-v3-rule-strong);
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.3);
  transition: color var(--home-v3-ui) var(--home-v3-ease-ui), background-color var(--home-v3-ui) var(--home-v3-ease-ui), border-color var(--home-v3-ui) var(--home-v3-ease-ui);
}

.home-v3-button--primary {
  color: var(--home-v3-bg);
  border-color: var(--home-v3-text);
  background: var(--home-v3-text);
}

.home-v3-text-link,
.home-v3-utility-link {
  justify-content: flex-start;
  min-width: 0;
  padding: 0;
  border-bottom: 1px solid var(--home-v3-rule-strong);
}

.home-v3-text-link span,
.home-v3-utility-link span {
  margin-left: 12px;
  transition: transform var(--home-v3-fast) var(--home-v3-ease-ui);
}

.home-v3-button.is-disabled,
.home-v3-utility-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

@media (hover: hover) {
  .home-v3-button:not(.is-disabled):hover {
    color: var(--home-v3-bg);
    border-color: var(--home-v3-text);
    background: var(--home-v3-text);
  }

  .home-v3-button--primary:hover {
    color: var(--home-v3-text);
    background: transparent;
  }

  .home-v3-text-link:hover span,
  .home-v3-utility-link:hover span {
    transform: translateX(6px);
  }

  .home-v3-publication .home-v3-button:hover span {
    transform: translateY(5px);
  }
}

/* Hero */
.home-v3-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

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

.home-v3-hero__media {
  z-index: -2;
  background-color: #090909;
}

.home-v3-hero__image,
.home-v3-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-v3-hero__image {
  object-position: center;
}

.home-v3-hero__video {
  opacity: 0.38;
  transform: scale(1.015);
  animation: home-v3-hero-enter 1000ms var(--home-v3-ease-out) forwards;
}

.home-v3-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.home-v3-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-block: 160px 96px;
}

.home-v3-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  text-align: center;
}

.home-v3-hero__title {
  max-width: 1100px;
  margin-top: 28px;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.06;
}

.home-v3-hero__body {
  width: min(100%, 760px);
  max-width: 760px;
  margin-top: 32px;
  color: rgba(252, 247, 240, 0.88);
}

.home-v3-hero .home-v3-actions {
  justify-content: center;
  margin-top: 40px;
}

.home-v3-hero .home-v3-utility-link {
  align-self: center;
  margin-top: 24px;
}

@keyframes home-v3-hero-enter {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 0.38; transform: scale(1); }
}

/* Strategic direction */
.home-v3-direction {
  min-height: 90svh;
  background: var(--home-v3-bg-2);
}

.home-v3-direction .home-v3-intro {
  margin-bottom: 56px;
}

.home-v3-direction > .container > .home-v3-accent {
  margin-bottom: 36px;
}

.home-v3-formula {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-v3-rule-strong);
  border-bottom: 1px solid var(--home-v3-rule-strong);
}

.home-v3-formula__item {
  min-height: 220px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--home-v3-rule);
  transition: color var(--home-v3-ui) var(--home-v3-ease-ui), background-color var(--home-v3-ui) var(--home-v3-ease-ui);
}

.home-v3-formula__item:last-child {
  border-right: 0;
}

.home-v3-formula__item > span {
  color: var(--home-v3-muted);
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.home-v3-formula__item h3 {
  margin: 46px 0 18px;
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.home-v3-formula__item p {
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (hover: hover) {
  .home-v3-formula__item:hover {
    color: var(--home-v3-bg);
    background: var(--home-v3-text);
  }

  .home-v3-formula__item:hover > span,
  .home-v3-formula__item:hover h3,
  .home-v3-formula__item:hover p {
    color: var(--home-v3-bg);
  }
}

/* Formats */
.home-v3-formats {
  min-height: 100svh;
  background: var(--home-v3-bg-3);
}

.home-v3-formats::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5));
}

.home-v3-format-explorer {
  border-top: 1px solid var(--home-v3-rule-strong);
}

.home-v3-format-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: auto hidden;
  scrollbar-width: thin;
}

.home-v3-tab-controls {
  display: none;
}

.home-v3-format-tab,
.home-v3-destination-tab,
.home-v3-accordion button {
  appearance: none;
  color: var(--home-v3-muted);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0;
  cursor: pointer;
}

.home-v3-format-tab {
  position: relative;
  min-height: 64px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--home-v3-rule);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: normal;
  transition: color var(--home-v3-ui) var(--home-v3-ease-ui), background-color var(--home-v3-ui) var(--home-v3-ease-ui);
}

.home-v3-format-tab::after,
.home-v3-destination-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--home-v3-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--home-v3-ui) var(--home-v3-ease-ui);
}

.home-v3-format-tab.is-active,
.home-v3-destination-tab.is-active {
  color: var(--home-v3-text);
}

.home-v3-format-tab.is-active::after,
.home-v3-destination-tab.is-active::after {
  transform: scaleX(1);
}

@media (hover: hover) {
	.home-v3-format-tab:not(.is-active):hover,
	.home-v3-destination-tab:not(.is-active):hover {
    color: var(--home-v3-text);
  }

  .home-v3-format-tab:not(.is-active):hover,
  .home-v3-destination-tab:not(.is-active):hover {
    background: rgba(252, 247, 240, 0.05);
  }
}

.home-v3-format-panels {
  min-height: 540px;
}

.home-v3-format-panel {
  display: grid;
  grid-template-columns: minmax(460px, 1.16fr) minmax(320px, 0.84fr);
  min-height: 540px;
  border-bottom: 1px solid var(--home-v3-rule-strong);
}

.home-v3-format-panel__media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background-color: #111;
  box-shadow: inset 0 0 0 1px rgba(252, 247, 240, 0.14);
}

.home-v3-format-panel__media::after,
.home-v3-retreat-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-v3-format-panel__media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.38));
}

.home-v3-format-panel__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-v3-format-panel__content {
  display: flex;
  flex-direction: column;
  order: -1;
  padding: 42px 40px;
  border-left: 1px solid var(--home-v3-rule);
  background: rgba(5, 5, 5, 0.86);
}

.home-v3-format-panel__content h3,
.home-v3-flagship h3,
.home-v3-destination-panel__content h3,
.home-v3-contact__form h3 {
  margin: 22px 0 20px;
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}

.home-v3-format-panel__content > p {
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 17px;
  line-height: 1.65;
}

.home-v3-format-panel__best {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--home-v3-rule);
}

.home-v3-format-panel__best span {
  display: block;
  margin-bottom: 10px;
  color: var(--home-v3-text);
  font-size: 12px;
  text-transform: uppercase;
}

.home-v3-format-panel__best p {
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 15px;
  line-height: 1.55;
}

.home-v3-format-panel__content .home-v3-text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Why retreats */
.home-v3-retreat-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: stretch;
}

.home-v3-retreat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-v3-retreat-copy .home-v3-title {
  margin: 24px 0 34px;
}

.home-v3-research {
  margin: 44px 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--home-v3-rule);
  border-bottom: 1px solid var(--home-v3-rule);
}

.home-v3-research p {
  margin: 0;
  color: var(--home-v3-text);
  font-size: 15px;
  line-height: 1.65;
}

.home-v3-research cite {
  display: block;
  margin-top: 16px;
  color: var(--home-v3-muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.home-v3-retreat-copy .home-v3-accent {
  font-size: 25px;
}

.home-v3-retreat-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-color: #111;
  box-shadow: inset 0 0 0 1px rgba(252, 247, 240, 0.16);
}

.home-v3-retreat-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-v3-retreat-visual::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.48) 100%);
}

.home-v3-flagship {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 78%);
  padding: 38px 40px;
  z-index: 2;
  border-top: 1px solid var(--home-v3-rule-strong);
  border-left: 1px solid var(--home-v3-rule-strong);
  background: rgba(5, 5, 5, 0.9);
}

.home-v3-flagship h3 {
  margin-top: 16px;
}

.home-v3-flagship > p:not(.home-v3-panel-label) {
  margin: 0 0 22px;
  color: var(--home-v3-muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-v3-flagship ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 30px;
  color: var(--home-v3-text);
  font-size: 13px;
  line-height: 1.45;
}

/* Selected work */
.home-v3-selected-work .home-v3-intro {
  max-width: 1080px;
}

.home-v3-selected-work {
	background: var(--livi-bg);
}

.home-v3-selected-work .home-v3-intro .home-v3-copy {
  max-width: 780px;
}

/* Destinations */
.home-v3-destinations .home-v3-intro {
  max-width: 980px;
}

.home-v3-destinations {
  background: var(--home-v3-bg-2);
}

.home-v3-destination-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  gap: 88px;
  align-items: start;
}

.home-v3-destination-explorer > .home-v3-panel-label {
  margin-bottom: 14px;
}

.home-v3-destination-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 34px;
  overflow: auto hidden;
  scrollbar-width: thin;
}

.home-v3-destination-tab {
  position: relative;
  min-height: 52px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--home-v3-rule);
  font-size: 13px;
  text-transform: uppercase;
}

.home-v3-destination-panels {
  min-height: 590px;
}

.home-v3-destination-panel {
  border: 1px solid var(--home-v3-rule);
}

.home-v3-destination-panel__media {
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.home-v3-destination-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: home-v3-panel-media var(--home-v3-panel-speed) var(--home-v3-ease-out);
}

.home-v3-destination-panel__content {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 16px 36px;
  padding: 28px 32px;
}

.home-v3-destination-panel__content h3 {
  grid-row: 1 / span 2;
  margin: 0;
  font-size: 34px;
}

.home-v3-destination-panel__content p {
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-v3-destination-panel__content .home-v3-text-link {
  justify-self: start;
}

.home-v3-publication {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-v3-publication > img,
.home-v3-publication__fallback {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 28px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(252, 247, 240, 0.18);
  transition: transform var(--home-v3-ui) var(--home-v3-ease-ui), box-shadow var(--home-v3-ui) var(--home-v3-ease-ui);
}

@media (hover: hover) {
  .home-v3-publication:hover > img {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.56), inset 0 0 0 1px rgba(252, 247, 240, 0.22);
  }
}

.home-v3-publication__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid var(--home-v3-rule-strong);
  color: var(--home-v3-text);
  background: #111;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.12;
  text-align: center;
}

.home-v3-publication > p:not(.home-v3-panel-label) {
  margin: 12px 0 24px;
  color: var(--home-v3-muted);
  font-size: 15px;
  line-height: 1.55;
}

.home-v3-publication .home-v3-button {
  align-self: stretch;
}

@keyframes home-v3-panel-media {
  from { opacity: 0; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

/* Concierge */
.home-v3-concierge {
  align-items: stretch;
  background-color: #050505;
}

.home-v3-concierge-bg,
.home-v3-why-bg,
.home-v3-process-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.home-v3-concierge-bg img,
.home-v3-why-bg img,
.home-v3-process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-v3-concierge-bg img {
  object-position: right center;
}

.home-v3-concierge::before,
.home-v3-why::before,
.home-v3-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.home-v3-concierge::before {
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.76) 44%, rgba(5, 5, 5, 0.36) 100%);
}

/* Let the concierge image dissolve before the next scene begins. */
.home-v3-concierge::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, .82) 68%, #050505 100%);
}

.home-v3-concierge > .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto 1fr auto;
  gap: 64px 96px;
  align-items: start;
  z-index: 1;
}

.home-v3-concierge__copy {
  grid-row: 1 / span 2;
  max-width: 520px;
}

.home-v3-concierge__copy .home-v3-title {
  margin-bottom: 30px;
}

.home-v3-concierge__copy > p:not(.home-v3-eyebrow) {
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 17px;
  line-height: 1.65;
}

.home-v3-concierge__copy > p + p {
  margin-top: 22px;
}

.home-v3-concierge__copy .home-v3-button {
  margin-top: 38px;
}

.home-v3-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 78px;
}

.home-v3-journey::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--home-v3-rule-strong);
  transform-origin: left;
}

.home-v3-js .home-v3-concierge:not(.is-visible) .home-v3-journey::before {
  transform: scaleX(0);
}

.home-v3-concierge.is-visible .home-v3-journey::before {
  transform: scaleX(1);
  transition: transform 900ms var(--home-v3-ease-out) 160ms;
}

.home-v3-journey li {
  position: relative;
  min-height: 240px;
  padding: 0 24px 24px;
  border-left: 1px solid var(--home-v3-rule);
}

.home-v3-journey li:first-child {
  border-left: 0;
  padding-left: 0;
}

.home-v3-journey li > span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 14px;
  color: var(--home-v3-text);
  background: #050505;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1;
}

.home-v3-journey h3 {
  margin: 34px 0 18px;
  color: var(--home-v3-text);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.home-v3-journey p {
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 13px;
  line-height: 1.55;
}

.home-v3-concierge__closing {
  grid-column: 1 / -1;
  max-width: 1180px;
  margin: 0;
  padding-top: 42px;
  border-top: 1px solid var(--home-v3-rule-strong);
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.35;
}

/* Why LIVI */
.home-v3-why {
}

.home-v3-why::before {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.82) 48%, rgba(10, 10, 10, 0.56) 100%);
}

/* Start the texture softly instead of exposing a hard section boundary. */
.home-v3-why::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, .9) 13%, rgba(5, 5, 5, 0) 35%);
}

.home-v3-why__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: 112px;
  align-items: start;
}

.home-v3-why__premise .home-v3-title {
  margin-bottom: 34px;
}

.home-v3-accordion {
  border-top: 1px solid var(--home-v3-rule-strong);
}

.home-v3-accordion__item {
  border-bottom: 1px solid var(--home-v3-rule-strong);
}

.home-v3-accordion__item h3 {
  margin: 0;
}

.home-v3-accordion button {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 102px;
  padding: 22px 0;
  text-align: left;
}

.home-v3-accordion button > span {
  color: var(--home-v3-muted);
  font-family: "Playfair Display", serif;
  font-size: 38px;
}

.home-v3-accordion button strong {
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.home-v3-accordion button b {
  justify-self: end;
  color: var(--home-v3-text);
  font-size: 28px;
  font-weight: 300;
  transition: transform var(--home-v3-fast) var(--home-v3-ease-ui);
}

.home-v3-accordion button[aria-expanded="true"] b {
  color: var(--home-v3-accent);
  transform: rotate(180deg);
}

@media (hover: hover) {
  .home-v3-accordion button:hover strong,
  .home-v3-accordion button:hover b {
    color: var(--home-v3-accent);
  }
}

.home-v3-accordion__panel {
  padding: 0 56px 34px 106px;
}

.home-v3-accordion__panel p {
  max-width: 58ch;
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Approach */
.home-v3-process {
  align-items: stretch;
  background-color: #050505;
}

.home-v3-process::before {
  background: rgba(5, 5, 5, 0.78);
}

.home-v3-process > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 96px;
}

.home-v3-process__intro {
  max-width: 590px;
}

.home-v3-process__heading,
.home-v3-process__support {
  min-width: 0;
}

.home-v3-process__intro .home-v3-title {
  margin-bottom: 30px;
}

.home-v3-process__intro .home-v3-button {
  margin-top: 34px;
}

.home-v3-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-v3-rule-strong);
}

.home-v3-process__steps li {
  min-height: 250px;
  padding: 28px 30px 0;
  border-left: 1px solid var(--home-v3-rule);
}

.home-v3-process__steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.home-v3-process__steps span {
  color: var(--home-v3-text);
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1;
}

.home-v3-process__steps h3 {
  margin: 24px 0 18px;
  color: var(--home-v3-text);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.home-v3-process__steps p {
  max-width: 30ch;
  margin: 0;
  color: var(--home-v3-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Desktop process composition: heading and supporting decision copy share a row. */
@media (min-width: 1200px) {
  .home-v3-hero__content {
    justify-content: center;
  }

  .home-v3-process {
    min-height: 0;
    padding-block: 96px;
  }

  .home-v3-process > .container {
    grid-template-rows: auto auto;
    gap: 64px;
  }

  .home-v3-process__intro {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
    gap: 72px;
    align-items: start;
    max-width: none;
  }

  .home-v3-process__support {
    max-width: 560px;
    padding-top: 48px;
  }

  .home-v3-process__support .home-v3-button {
    margin-top: 34px;
  }

  .home-v3-process__steps {
    grid-column: 1 / -1;
  }
}

/* Contact */
.home-v3-contact {
  min-height: 100svh;
  padding-bottom: 96px;
}

.home-v3-contact__layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(520px, 1.15fr);
  gap: 88px;
  align-items: start;
}

.home-v3-contact__copy {
  padding-right: 72px;
  border-right: 1px solid var(--home-v3-rule-strong);
}

.home-v3-contact__copy .home-v3-title {
  margin-bottom: 30px;
}

.home-v3-contact__copy .home-v3-actions {
  margin-top: 38px;
}

.home-v3-contact__copy .home-v3-utility-link {
  margin-top: 24px;
}

.home-v3-contact__formats {
  margin: 48px 0 0;
  color: var(--home-v3-muted);
  font-size: 13px;
  line-height: 1.65;
}

.home-v3-contact__form h3 {
  margin: 0 0 32px;
  font-size: 44px;
}

.home-v3-contact .contact__form {
  width: 100%;
  max-width: none;
  padding: 0;
}

.home-v3-contact .contact__form .anchor {
  top: -120px;
}

.home-v3-contact .contact__form input,
.home-v3-contact .contact__form textarea {
  min-height: 52px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-color: var(--home-v3-rule-strong);
  border-radius: 0;
  font-size: 16px;
  transition: border-color var(--home-v3-fast) var(--home-v3-ease-ui);
}

.home-v3-contact .contact__form input:focus,
.home-v3-contact .contact__form textarea:focus {
  border-color: var(--home-v3-text);
}

.home-v3-contact .contact__form textarea {
  min-height: 190px;
}

.home-v3-contact .contact__submit input {
  min-width: 220px;
  min-height: 52px;
  padding-inline: 28px;
  border-radius: 2px;
}

.home-v3 + .footer {
  border-top: 1px solid rgba(252, 247, 240, 0.28);
  background: #050505;
}

/* Motion */
.home-v3-js .home-v3-hero [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--home-v3-reveal) var(--home-v3-ease-out), transform var(--home-v3-reveal) var(--home-v3-ease-out);
}

.home-v3-js .home-v3-hero [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-v3-js .home-v3-hero [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.home-v3-js .home-v3-hero [data-reveal]:nth-child(3) { transition-delay: 160ms; }
.home-v3-js .home-v3-hero [data-reveal]:nth-child(4) { transition-delay: 240ms; }

.home-v3-js [data-reveal-scene] > .container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--home-v3-reveal) var(--home-v3-ease-out), transform var(--home-v3-reveal) var(--home-v3-ease-out);
}

.home-v3-js [data-reveal-scene].is-visible > .container {
  opacity: 1;
  transform: translateY(0);
}

/* 1440 desktop */
@media (max-width: 1599px) {
  .home-v3 .container {
    width: calc(100% - 112px);
    max-width: 1240px;
  }

  .home-v3-section {
    padding-block: 108px;
  }

  .home-v3-title {
    font-size: 52px;
  }

  .home-v3-hero__title {
    font-size: 64px;
  }

  .home-v3-copy,
  .home-v3-hero__body {
    font-size: 16px;
  }

  .home-v3-intro--split {
    gap: 64px;
  }

  .home-v3-format-panels,
  .home-v3-format-panel,
  .home-v3-format-panel__media {
    min-height: 470px;
  }

  .home-v3-retreat-grid {
    gap: 54px;
  }

  .home-v3-retreat-visual {
    min-height: 650px;
  }

  .home-v3-destination-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 56px;
  }

  .home-v3-destination-panels {
    min-height: 520px;
  }

  .home-v3-concierge > .container {
    gap: 52px 64px;
  }

  .home-v3-why__layout {
    gap: 72px;
  }

  .home-v3-contact__layout {
    grid-template-columns: minmax(360px, 0.82fr) minmax(470px, 1.18fr);
    gap: 64px;
  }

  .home-v3-contact__copy {
    padding-right: 54px;
  }
}

/* Compact desktop destination composition */
@media (min-width: 1200px) {
  .home-v3-destinations {
    align-items: stretch;
    min-height: 100svh;
    padding-block: 64px;
  }

  .home-v3-destinations > .container {
    display: grid;
    grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
    gap: 52px;
    align-items: center;
  }

  .home-v3-destinations .home-v3-intro {
    max-width: none;
    margin: 0;
  }

  .home-v3-destination-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 32px;
    align-items: center;
  }

  .home-v3-destination-tabs {
    margin-bottom: 18px;
  }

  .home-v3-destination-panels {
    min-height: 0;
  }

  .home-v3-destination-panel__content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 22px;
  }

  .home-v3-destination-panel__content h3 {
    grid-row: auto;
    font-size: 28px;
  }

  .home-v3-publication > img,
  .home-v3-publication__fallback {
    margin-bottom: 16px;
  }

  .home-v3-publication > p:not(.home-v3-panel-label) {
    margin: 8px 0 16px;
    font-size: 13px;
  }

  .home-v3-publication .home-v3-button {
    min-width: 0;
    padding-inline: 14px;
    font-size: 11px;
  }
}

@media (min-width: 1600px) {
  .home-v3-direction .home-v3-intro {
    margin-bottom: 72px;
  }

  .home-v3-direction > .container > .home-v3-accent {
    margin-bottom: 44px;
  }

  .home-v3-formula__item {
    min-height: 286px;
    padding: 38px 36px 42px;
  }

  .home-v3-formula__item h3 {
    margin-top: 68px;
    font-size: 36px;
  }

  .home-v3-format-panels,
  .home-v3-format-panel,
  .home-v3-format-panel__media {
    min-height: 640px;
  }

  .home-v3-format-panel__content {
    padding: 56px 52px;
  }

  .home-v3-format-panel__content h3 {
    font-size: 46px;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .home-v3 .container {
    width: calc(100% - 72px);
    max-width: none;
  }

  .home-v3-section {
    min-height: 0;
    padding-block: 96px;
  }

  .home-v3-title {
    font-size: 46px;
  }

  .home-v3-hero__title {
    font-size: 56px;
  }

  .home-v3-intro--split,
  .home-v3-retreat-grid,
  .home-v3-destination-layout,
  .home-v3-why__layout,
  .home-v3-contact__layout {
    grid-template-columns: 1fr;
  }

  .home-v3-destinations > .container {
    display: block;
  }

  .home-v3-intro--split {
    gap: 28px;
  }

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

  .home-v3-formula__item:nth-child(2) {
    border-right: 0;
  }

  .home-v3-formula__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--home-v3-rule);
  }

  .home-v3-format-tabs {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
  }

  .home-v3-format-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  }

  .home-v3-retreat-copy {
    max-width: 720px;
  }

  .home-v3-destination-layout {
    gap: 72px;
  }

  .home-v3-publication {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: 18px 40px;
    align-items: start;
  }

  .home-v3-publication > img,
  .home-v3-publication__fallback {
    grid-row: 1 / span 4;
    margin: 0;
  }

  .home-v3-concierge {
    background-size: cover;
  }

  .home-v3-concierge > .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .home-v3-concierge__copy {
    grid-row: auto;
  }

  .home-v3-journey {
    margin-top: 0;
  }

  .home-v3-concierge__closing {
    grid-column: auto;
  }

  .home-v3-why__premise {
    max-width: 680px;
  }

  .home-v3-process > .container {
    gap: 72px;
  }

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

  .home-v3-process__steps li:nth-child(3) {
    border-left: 0;
  }

  .home-v3-process__steps li:nth-child(-n+2) {
    border-bottom: 1px solid var(--home-v3-rule);
  }

  .home-v3-contact__copy {
    padding: 0 0 64px;
    border-right: 0;
    border-bottom: 1px solid var(--home-v3-rule-strong);
  }
}

@media (max-width: 899px) {
  .home-v3-format-panels,
  .home-v3-format-panel,
  .home-v3-format-panel__media {
    min-height: 0;
  }

  .home-v3-format-panel {
    grid-template-columns: 1fr;
  }

  .home-v3-format-panel__media {
    aspect-ratio: 16 / 10;
  }

  .home-v3-format-panel__content {
    order: 0;
    min-height: 420px;
    border-top: 1px solid var(--home-v3-rule);
    border-left: 0;
  }

}

/* Mobile */
@media (max-width: 767px) {
  .home-v3 .container {
    width: calc(100% - 44px);
  }

  .home-v3-section {
    padding-block: 84px;
  }

  .home-v3-title,
  .home-v3-hero__title {
    font-size: 38px;
    line-height: 1.1;
    text-wrap: wrap;
  }

  .home-v3-eyebrow,
  .home-v3-panel-label {
    font-size: 11px;
  }

  .home-v3-copy,
  .home-v3-hero__body {
    font-size: 15px;
    line-height: 1.6;
  }

  .home-v3-accent {
    font-size: 24px;
  }

  .home-v3-intro {
    margin-bottom: 48px;
  }

  .home-v3-button,
  .home-v3-text-link,
  .home-v3-utility-link {
    min-height: 46px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .home-v3-button {
    width: 100%;
    min-width: 0;
  }

  .home-v3-hero__content {
    min-height: 100svh;
    padding-block: 132px 72px;
  }

  .home-v3-hero__title {
    margin-top: 24px;
  }

  .home-v3-hero__image {
    object-position: 60% center;
  }

  .home-v3-hero__body {
    margin-top: 24px;
  }

  .home-v3-hero .home-v3-actions {
    width: 100%;
    margin-top: 34px;
  }

  .home-v3-hero .home-v3-utility-link {
    margin-top: 18px;
  }

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

  .home-v3-formula__item,
  .home-v3-formula__item:nth-child(2) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-v3-rule);
  }

  .home-v3-formula__item:last-child {
    border-bottom: 0;
  }

  .home-v3-formula__item h3 {
    margin: 20px 0 12px;
    font-size: 26px;
  }

  .home-v3-format-tabs,
  .home-v3-destination-tabs {
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .home-v3-format-tabs::-webkit-scrollbar,
  .home-v3-destination-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-v3-format-tabs {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
  }

  .home-v3-format-tab,
  .home-v3-destination-tab {
    scroll-snap-align: start;
  }

  .home-v3-tab-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 12px 0 18px;
  }

  .home-v3-tab-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--home-v3-rule-strong);
    border-radius: 0;
    color: var(--home-v3-text);
    background: transparent;
  }

  .home-v3-tab-control[data-tab-scroll="-1"] svg {
    transform: rotate(180deg);
  }

  .home-v3-format-tab {
    min-height: 58px;
  }

  .home-v3-format-panels,
  .home-v3-format-panel,
  .home-v3-format-panel__media {
    min-height: 0;
  }

  .home-v3-format-panel {
    grid-template-columns: 1fr;
  }

  .home-v3-format-panel__media {
    aspect-ratio: 4 / 3;
  }

  .home-v3-format-panel__media img {
    object-position: 58% center;
  }

  .home-v3-format-panel__content {
    min-height: 430px;
    padding: 30px 24px;
    border-top: 1px solid var(--home-v3-rule);
    border-left: 0;
  }

  .home-v3-format-panel__content h3,
  .home-v3-flagship h3,
  .home-v3-destination-panel__content h3,
  .home-v3-contact__form h3 {
    font-size: 30px;
  }

  .home-v3-retreat-grid {
    gap: 48px;
  }

  .home-v3-retreat-visual {
    display: flex;
    align-items: flex-end;
    min-height: 720px;
  }

  .home-v3-retreat-visual__image {
    object-position: center 42%;
  }

  .home-v3-flagship {
    position: relative;
    width: 100%;
    padding: 28px 22px;
    border-left: 0;
  }

  .home-v3-flagship ul {
    grid-template-columns: 1fr;
  }

  .home-v3-actions--compact {
    align-items: stretch;
  }

  .home-v3-destination-tabs {
    grid-template-columns: repeat(5, minmax(128px, 1fr));
  }

  .home-v3-destination-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-v3-destination-explorer {
    min-width: 0;
  }

  .home-v3-destination-panels {
    min-height: 0;
  }

  .home-v3-destination-panel__media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-v3-destination-panel__media img {
    object-position: center;
  }

  .home-v3-destination-panel__content {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .home-v3-destination-panel__content h3 {
    grid-row: auto;
  }

  .home-v3-publication {
    display: flex;
    align-items: center;
  }

  .home-v3-publication > img,
  .home-v3-publication__fallback {
    width: min(100%, 260px);
    margin: 0 auto 28px;
    object-position: center;
  }

  .header .home-v3-menu-ctas {
    display: grid;
    width: min(300px, calc(100vw - 20px));
    gap: 8px;
    margin: 10px 0 0 auto;
    padding: 14px;
    border: 1px solid rgba(252, 247, 240, 0.24);
    background: rgba(5, 5, 5, 0.92);
  }

  .header .home-v3-menu-ctas a {
    display: block;
    padding: 11px 12px;
    border: 1px solid rgba(252, 247, 240, 0.42);
    color: #fcf7f0;
    font-family: "Quicksand", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .header .home-v3-menu-ctas a.home-v3-menu-ctas__primary {
    color: #050505;
    background: #fcf7f0;
  }

  .home-v3-concierge {
    background-position: center bottom;
  }

  .home-v3-concierge-bg img {
    object-position: 68% center;
  }

  .home-v3-concierge > .container {
    gap: 54px;
  }

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

  .home-v3-journey::before {
    top: 0;
    bottom: 0;
    left: 28px;
    width: 1px;
    height: auto;
    transform-origin: top;
  }

  .home-v3-js .home-v3-concierge:not(.is-visible) .home-v3-journey::before {
    transform: scaleY(0);
  }

  .home-v3-concierge.is-visible .home-v3-journey::before {
    transform: scaleY(1);
  }

  .home-v3-journey li,
  .home-v3-journey li:first-child {
    min-height: 0;
    padding: 0 0 42px 68px;
    border-left: 0;
  }

  .home-v3-journey li > span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 10px 0 0;
    font-size: 36px;
  }

  .home-v3-journey h3 {
    margin-top: 0;
  }

  .home-v3-concierge__closing {
    font-size: 27px;
  }

  .home-v3-why__layout {
    gap: 56px;
  }

  .home-v3-accordion button {
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 84px;
  }

  .home-v3-accordion button > span {
    font-size: 28px;
  }

  .home-v3-accordion button strong {
    font-size: 21px;
  }

  .home-v3-accordion__panel {
    padding: 0 20px 28px 60px;
  }

  .home-v3-process {
    background-position: center;
  }

  .home-v3-why-bg img,
  .home-v3-process-bg img {
    object-position: 60% center;
  }

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

  .home-v3-process__steps li,
  .home-v3-process__steps li:first-child,
  .home-v3-process__steps li:nth-child(3) {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--home-v3-rule);
  }

  .home-v3-process__steps li:last-child {
    border-bottom: 0;
  }

  .home-v3-process__steps span {
    font-size: 48px;
  }

  .home-v3-contact__layout {
    gap: 56px;
  }

  .home-v3-contact__copy {
    padding-bottom: 52px;
  }

  .home-v3-contact__copy .home-v3-actions {
    align-items: stretch;
  }

  .home-v3-contact .contact__form input,
  .home-v3-contact .contact__form textarea {
    font-size: 15px;
  }

  .home-v3-contact .contact__submit input {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .home-v3 .container {
    width: calc(100% - 40px);
  }

  .home-v3-title,
  .home-v3-hero__title {
    font-size: 34px;
  }

  .home-v3-hero__body,
  .home-v3-copy {
    font-size: 14px;
  }

  .home-v3-format-tabs {
    grid-template-columns: repeat(5, minmax(156px, 1fr));
  }

  .home-v3-retreat-visual {
    min-height: 680px;
  }

  .home-v3-accordion button strong {
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .home-v3 .container {
    width: calc(100% - 40px);
  }

  .home-v3-title,
  .home-v3-hero__title {
    font-size: 32px;
  }

  .home-v3-button {
    padding-inline: 16px;
  }
}

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

  .home-v3-js .home-v3-hero [data-reveal],
  .home-v3-js [data-reveal-scene] > .container {
    opacity: 1;
    transform: none;
  }

  .home-v3-js .home-v3-concierge .home-v3-journey::before {
    transform: none;
  }
}

/* Shared LIVI scale and rhythm */
.home-v3-title,
.home-v3-hero__title {
  letter-spacing: var(--livi-display-tracking);
  line-height: var(--livi-display-leading);
}
.home-v3-title { font-size: var(--livi-type-section); }
.home-v3-hero__title { font-size: clamp(44px, 4.2vw, 68px); }

.home-v3-section {
  min-height: var(--livi-scene-min);
  padding-block: var(--livi-scene-pad-y);
  border-block: 0;
  box-shadow: none;
}

.home-v3-hero,
.home-v3-hero__content,
.home-v3-formats,
.home-v3-contact {
  min-height: var(--livi-scene-min);
}

.home-v3-hero__content { padding-block: 132px 64px; }
.home-v3-hero__image { object-position: center; transform: scale(1.025); }
.home-v3-hero__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .68) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .12) 50%, rgba(0, 0, 0, .42) 100%);
}

.home-v3-formats::before {
  display: none;
}

/* Keep the hero copy optically centred below the global header on desktop. */
@media (min-width: 1200px) {
  .home-v3-hero__copy {
    transform: translateY(clamp(20px, 4vh, 44px));
  }
}

.home-v3-flagship > p.home-v3-flagship__byline {
  margin: -8px 0 18px;
  color: var(--home-v3-text);
  font-family: var(--livi-font-body);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-v3 + .footer { border-top: 0; }

@media (max-width: 1199px) {
  .home-v3-section { min-height: 0; }
}

@media (max-width: 767px) {
  .home-v3-title,
  .home-v3-hero__title { font-size: 38px; }
  .home-v3-hero,
  .home-v3-hero__content { min-height: 760px; }
  .home-v3-hero__content { padding-block: 118px 64px; }
  .home-v3-hero__image { object-position: 69% center; transform: scale(1.06); }
}

/* Selected work: reuse the canonical case-preview layout from Formats. */
.home-v3-selected-work > .container {
  width: min(var(--livi-content-max), calc(100% - var(--livi-page-pad) - var(--livi-page-pad)));
  max-width: none;
  margin-inline: auto;
  padding-inline: var(--livi-case-inline-inset);
}

.home-v3-selected-work .home-v3-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: 18px clamp(48px, 7vw, 118px);
  align-items: end;
  max-width: none;
  margin-bottom: 48px;
}

.home-v3-selected-work .home-v3-intro .home-v3-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.home-v3-selected-work .home-v3-intro .home-v3-title {
  max-width: 820px;
}

.home-v3-selected-work .home-v3-intro .home-v3-copy {
  justify-self: end;
  max-width: 42ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .home-v3-selected-work .home-v3-intro {
    display: block;
  }

  .home-v3-selected-work .home-v3-intro .home-v3-eyebrow {
    margin-bottom: 17px;
  }

  .home-v3-selected-work .home-v3-intro .home-v3-copy {
    margin-top: 24px;
  }

}

/* Keep the first-screen actions at the lower edge without relying on
 * viewport-positioned controls. The copy remains centred in the free space. */
.home-v3-hero,
.home-v3-hero__content {
  min-height: 100svh;
}

.home-v3-hero__content {
  align-items: stretch;
  box-sizing: border-box;
  padding-block: 132px 48px;
}

.home-v3-hero__copy {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: calc(100svh - 180px);
}

.home-v3-hero__intro,
.home-v3-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.home-v3-hero__intro {
  justify-content: center;
  padding-bottom: clamp(28px, 6vh, 78px);
}

.home-v3-hero__cta .home-v3-actions {
  margin-top: 0;
}

.home-v3-hero__cta .home-v3-utility-link {
  align-self: center;
  margin-top: 24px;
}

.home-v3-retreat-visual__image {
  object-position: 60% center;
}

@media (min-width: 1200px) {
  .home-v3-hero__copy {
    transform: none;
  }

  .home-v3-contact__layout {
    grid-template-columns: minmax(420px, 1.07fr) minmax(400px, .93fr);
  }
}

@media (max-width: 767px) {
  .home-v3-hero__content {
    padding-block: 118px 42px;
  }

  .home-v3-hero__copy {
    min-height: 600px;
  }

  .home-v3-hero__intro {
    padding-bottom: 28px;
  }

  .home-v3-hero__cta .home-v3-utility-link {
    margin-top: 18px;
  }
}

/* Featured service: retain the Dolce image as a full-bleed section background. */
.home-v3-retreats {
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.home-v3-retreats__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}

.home-v3-retreats__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 37%, rgba(5, 5, 5, 0.48) 67%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.7) 100%);
}

.home-v3-retreats__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.home-v3-retreats > .container {
  position: relative;
  z-index: 2;
}

.home-v3-retreat-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.home-v3-retreat-visual::before {
  content: none;
}

.home-v3-flagship {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(520px, 100%);
}

@media (max-width: 1199px) {
  .home-v3-retreats {
    min-height: 100svh;
  }
}

@media (max-width: 767px) {
  .home-v3-retreats__image {
    object-position: 64% center;
  }
}
