@import url("https://fonts.googleapis.com/css2?family=Italianno&family=Outfit:wght@300;400;500;600;700&family=Spectral:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

:root {
  --paper: #f8efd9;
  --paper-deep: #f0dfbd;
  --cream: #fffaf0;
  --ink: #30251e;
  --muted: #79685a;
  --wine: #642d31;
  --wine-deep: #40191d;
  --raspberry: #a53f58;
  --orange: #dc762f;
  --lagoon: #337d82;
  --pine: #355e4b;
  --line: rgba(100, 45, 49, 0.16);
  --soft-shadow: 0 24px 70px rgba(73, 36, 27, 0.13);
  --display: "Spectral", Georgia, serif;
  --body: "Outfit", Arial, sans-serif;
  --script: "Italianno", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 12%, rgba(220, 118, 47, 0.11), transparent 22rem),
    radial-gradient(circle at 92% 22%, rgba(51, 125, 130, 0.1), transparent 24rem),
    var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
  padding: 14px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  text-decoration: none;
}

.brand-link img {
  width: 55px;
  height: 55px;
  padding: 7px;
  border-radius: 16px;
  background: var(--wine);
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.brand-name span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-link,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 250, 240, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

.nav-link:hover,
.pill-link:hover {
  border-color: rgba(100, 45, 49, 0.42);
  background: var(--cream);
  transform: translateY(-2px);
}

.pill-link--wine {
  border-color: var(--wine);
  color: var(--cream);
  background: var(--wine);
}

.pill-link--wine:hover {
  color: var(--cream);
  background: var(--wine-deep);
}

.hero {
  position: relative;
  display: grid;
  min-height: 570px;
  margin: 14px 0 68px;
  overflow: hidden;
  border-radius: 34px;
  color: var(--cream);
  background: var(--wine-deep);
  box-shadow: var(--soft-shadow);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(95deg, rgba(43, 16, 19, 0.93) 8%, rgba(65, 22, 26, 0.73) 54%, rgba(65, 22, 26, 0.22));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(720px, 100%);
  padding: clamp(34px, 7vw, 78px);
}

.eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  margin: 11px 0 16px;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 84px);
}

.section-title {
  color: var(--wine);
  font-size: clamp(34px, 5vw, 58px);
}

.script-line {
  color: #ffc173;
  font-family: var(--script);
  font-size: 1.18em;
  font-weight: 400;
  letter-spacing: 0;
}

.hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.hero .pill-link {
  border-color: rgba(255, 250, 240, 0.22);
  color: var(--cream);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(10px);
}

.hero .pill-link:hover {
  background: rgba(255, 250, 240, 0.16);
}

.content-section {
  margin: 0 0 82px;
}

.content-narrow {
  width: min(800px, 100%);
  margin-inline: auto;
}

.lead {
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.35;
}

.body-copy {
  color: var(--muted);
}

.body-copy p {
  margin: 0 0 18px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border: 10px solid rgba(255, 250, 240, 0.74);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--soft-shadow);
}

.photo-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-card__label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  color: var(--cream);
  background: rgba(64, 25, 29, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.quote-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 18px 48px rgba(73, 36, 27, 0.08);
}

.quote-card blockquote {
  margin: 0;
  color: var(--wine);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  line-height: 1.32;
}

.signature {
  margin-top: 20px;
  color: var(--orange);
  font-family: var(--script);
  font-size: 42px;
  line-height: 1;
}

.chapter-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--display);
  font-size: 18px;
  background: rgba(255, 250, 240, 0.55);
}

.transmission {
  padding: clamp(34px, 6vw, 74px);
  border-radius: 34px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(64, 25, 29, 0.98), rgba(100, 45, 49, 0.92)),
    var(--wine);
  box-shadow: var(--soft-shadow);
}

.transmission .section-title {
  color: var(--cream);
}

.transmission .body-copy {
  color: rgba(255, 250, 240, 0.8);
}

.transmission .photo-card {
  border-color: rgba(255, 250, 240, 0.16);
  box-shadow: none;
}

.thanks {
  padding: 48px 22px;
  text-align: center;
}

.thanks .script-line {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.9;
}

.thanks p {
  width: min(660px, 100%);
  margin: 0 auto 24px;
  color: var(--muted);
}

.private-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 16px;
  color: var(--cream);
  background: var(--wine-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.private-banner svg {
  width: 15px;
  height: 15px;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  margin: 14px 0 48px;
  overflow: hidden;
  border-radius: 34px;
  color: var(--cream);
  background: var(--wine);
  box-shadow: var(--soft-shadow);
}

.guide-hero__cover {
  min-height: 470px;
  background: var(--wine-deep);
}

.guide-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-hero__content {
  align-self: center;
  padding: clamp(30px, 6vw, 68px);
}

.guide-hero h1 {
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.guide-hero p {
  color: rgba(255, 250, 240, 0.82);
}

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

.guide-card {
  grid-column: span 6;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 12px 32px rgba(73, 36, 27, 0.06);
}

.guide-card--wide {
  grid-column: span 12;
}

.guide-card--photo {
  position: relative;
  min-height: 380px;
  color: var(--cream);
  background: var(--wine-deep);
}

.guide-card--photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(42, 20, 17, 0.86), rgba(42, 20, 17, 0.08));
}

.guide-card--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card--photo .guide-card__inner {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
}

.guide-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--wine);
  background: rgba(100, 45, 49, 0.1);
}

.guide-icon svg {
  width: 26px;
  height: 26px;
}

.guide-card h2,
.guide-card h3 {
  margin: 15px 0 9px;
  color: var(--wine);
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.guide-card--photo h2,
.guide-card--photo h3 {
  color: var(--cream);
}

.guide-card p {
  margin: 0 0 15px;
  color: var(--muted);
}

.guide-card--photo p {
  color: rgba(255, 250, 240, 0.84);
}

.guide-list,
.guide-links {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.guide-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

.guide-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(100, 45, 49, 0.12);
  border-radius: 14px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: 180ms ease;
}

.guide-links a:hover {
  border-color: rgba(100, 45, 49, 0.34);
  background: var(--cream);
  transform: translateX(3px);
}

.guide-links svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.code-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 15px;
  border-radius: 16px;
  color: var(--cream);
  background: var(--wine);
}

.code-card small {
  display: block;
  color: rgba(255, 250, 240, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.code-card strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.copy-code {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.25);
  border-radius: 999px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-card {
  background:
    linear-gradient(135deg, rgba(51, 125, 130, 0.1), rgba(255, 250, 240, 0.76)),
    var(--cream);
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 10px;
  color: var(--lagoon);
}

.price strong {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

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

.address-group {
  padding: 18px;
  border-radius: 18px;
  background: rgba(100, 45, 49, 0.06);
}

.address-group h3 {
  margin: 0 0 10px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.address-group a {
  display: block;
  margin: 7px 0;
  color: var(--wine);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.concierge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 20px 0 72px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 28px;
  color: var(--cream);
  background: var(--wine-deep);
}

.concierge h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.concierge p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.concierge .pill-link {
  border-color: rgba(255, 250, 240, 0.28);
  color: var(--cream);
  background: rgba(255, 250, 240, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .page-shell {
    width: min(100% - 24px, 680px);
  }

  .masthead {
    min-height: 78px;
  }

  .brand-link img {
    width: 48px;
    height: 48px;
  }

  .brand-name span,
  .masthead .nav-link {
    display: none;
  }

  .masthead .pill-link {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .hero {
    min-height: 520px;
    margin-bottom: 48px;
    border-radius: 24px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(43, 16, 19, 0.96) 7%, rgba(65, 22, 26, 0.56) 72%, rgba(65, 22, 26, 0.22));
  }

  .story-grid,
  .guide-hero {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 25px;
  }

  .story-grid .photo-card {
    order: -1;
  }

  .photo-card img {
    min-height: 250px;
  }

  .transmission {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .guide-hero {
    border-radius: 24px;
  }

  .guide-hero__cover {
    min-height: 290px;
  }

  .guide-card {
    grid-column: span 12;
    padding: 21px;
    border-radius: 20px;
  }

  .guide-card--photo {
    min-height: 310px;
  }

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

  .concierge {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

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

/* Private travel guide */
.private-guide-page {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(220, 118, 47, 0.09), transparent 22rem),
    radial-gradient(circle at 94% 18%, rgba(51, 125, 130, 0.08), transparent 24rem),
    #f7f2ea;
}

.stay-guide-main {
  width: min(1080px, calc(100% - 36px));
}

.stay-masthead {
  min-height: 82px;
}

.stay-hero {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: flex-end;
  margin: 10px 0 82px;
  overflow: hidden;
  border-radius: 32px;
  color: var(--cream);
  background: var(--wine-deep);
  box-shadow: var(--soft-shadow);
}

.stay-hero__image,
.stay-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stay-hero__image {
  object-fit: cover;
}

.stay-hero__veil {
  background:
    linear-gradient(90deg, rgba(49, 17, 20, 0.94), rgba(73, 31, 33, 0.68) 58%, rgba(73, 31, 33, 0.16)),
    linear-gradient(0deg, rgba(42, 19, 18, 0.78), transparent 56%);
}

.stay-hero__content {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
  padding: clamp(28px, 6vw, 68px);
}

.stay-hero h1 {
  max-width: 680px;
  margin: 14px 0 16px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.stay-hero .script-line {
  display: block;
  margin-top: 7px;
  color: #f0b169;
  font-family: var(--script);
  font-size: 1.08em;
  font-weight: 400;
  letter-spacing: 0;
}

.stay-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.stay-hero__shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.stay-shortcut {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 16px;
  color: var(--cream);
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(16px);
  text-decoration: none;
  transition: 180ms ease;
}

.stay-shortcut:hover {
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(255, 250, 240, 0.18);
  transform: translateY(-3px);
}

.stay-shortcut__icon {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine-deep);
  background: rgba(255, 250, 240, 0.88);
  font-family: var(--display);
  font-size: 20px;
}

.stay-shortcut strong,
.stay-shortcut small {
  display: block;
  line-height: 1.2;
}

.stay-shortcut strong {
  font-size: 13px;
}

.stay-shortcut small {
  margin-top: 3px;
  color: rgba(255, 250, 240, 0.63);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-section {
  scroll-margin-top: 24px;
  margin: 0 0 88px;
}

.stay-section__head {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin: 0 0 28px;
}

.stay-section__head h2,
.stay-info-card h2,
.stay-concierge h2 {
  margin: 7px 0 0;
  color: var(--wine-deep);
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.stay-section__head p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stay-utility-grid,
.stay-partner-grid,
.stay-address-groups,
.stay-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stay-utility-card,
.stay-info-card,
.stay-address-group,
.stay-partner {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 36px rgba(73, 36, 27, 0.055);
}

.stay-utility-card,
.stay-info-card {
  padding: 26px;
}

.stay-utility-card__top,
.stay-address-group__head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.stay-round-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: rgba(100, 45, 49, 0.09);
  font-family: var(--display);
  font-size: 22px;
}

.stay-kicker {
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stay-utility-card h3,
.stay-partner h3,
.stay-address-group h3 {
  margin: 15px 0 8px;
  color: var(--wine-deep);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.stay-check-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.stay-check-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.stay-check-list li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

.stay-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.stay-action-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(100, 45, 49, 0.18);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

.stay-action-link:hover {
  border-color: var(--wine);
  transform: translateY(-2px);
}

.stay-action-link--solid {
  border-color: var(--wine);
  color: var(--cream);
  background: var(--wine);
}

.stay-action-link--solid:hover {
  color: var(--cream);
  background: var(--wine-deep);
}

.stay-partner-grid {
  margin-top: 18px;
}

.stay-partner {
  overflow: hidden;
}

.stay-partner--feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
}

.stay-partner__visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--wine-deep);
}

.stay-partner__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(43, 19, 17, 0.58), transparent 72%);
}

.stay-partner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.stay-partner:hover .stay-partner__visual img {
  transform: scale(1.035);
}

.stay-photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(64, 25, 29, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stay-partner__body {
  padding: 26px;
}

.stay-partner__title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.stay-partner__title h3 {
  margin-top: 8px;
}

.stay-partner p,
.stay-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stay-time-chip {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--pine);
  background: rgba(53, 94, 75, 0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-code-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  color: var(--cream);
  background: var(--wine);
}

.stay-code-card small,
.stay-code-card strong {
  display: block;
}

.stay-code-card small {
  color: rgba(255, 250, 240, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stay-code-card strong {
  margin-top: 3px;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.stay-destination-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.stay-destination {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(100, 45, 49, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.28);
}

.stay-destination strong,
.stay-destination small {
  display: block;
  line-height: 1.2;
}

.stay-destination strong {
  color: var(--wine-deep);
  font-size: 14px;
}

.stay-destination small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.stay-destination a {
  flex: 0 0 auto;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.stay-partner--coach {
  background:
    linear-gradient(135deg, rgba(51, 125, 130, 0.12), transparent 72%),
    rgba(255, 250, 240, 0.86);
}

.stay-fitness-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.stay-fitness-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--lagoon);
  background: rgba(51, 125, 130, 0.1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.stay-coach-bottom {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-top: 18px;
}

.stay-coach-bottom .price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stay-coach-bottom .price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.stay-address-group {
  padding: 22px;
}

.stay-address-group h3 {
  margin: 3px 0 0;
  font-size: 27px;
}

.stay-address-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.stay-spot-card {
  position: relative;
  display: flex;
  min-height: 158px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 14px;
  color: var(--cream);
  background: var(--wine-deep);
  text-decoration: none;
  isolation: isolate;
}

.stay-spot-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(42, 18, 17, 0.84), rgba(42, 18, 17, 0.04) 78%);
}

.stay-spot-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.stay-spot-card:hover img {
  transform: scale(1.06);
}

.stay-spot-card__content {
  display: flex;
  width: 100%;
  gap: 6px;
  flex-direction: column;
  padding: 12px;
}

.stay-spot-card strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1;
}

.stay-spot-card small {
  color: rgba(255, 250, 240, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-personal-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 15px;
  color: var(--muted);
  background: rgba(220, 118, 47, 0.09);
  font-size: 15px;
}

.stay-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stay-experience-grid a {
  position: relative;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--cream);
  background: var(--wine-deep);
  text-decoration: none;
  transition: 180ms ease;
  isolation: isolate;
}

.stay-experience-grid a::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgba(42, 18, 17, 0.88), rgba(42, 18, 17, 0.06) 76%);
}

.stay-experience-grid img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 340ms ease;
}

.stay-experience-grid a:hover {
  border-color: rgba(100, 45, 49, 0.36);
  transform: translateY(-4px);
}

.stay-experience-grid a:hover img {
  transform: scale(1.045);
}

.stay-experience-grid__content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.stay-experience-grid em {
  color: #f0b169;
  font-family: var(--display);
  font-size: 34px;
  font-style: normal;
}

.stay-experience-grid strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.stay-experience-grid small {
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-info-grid {
  align-items: stretch;
}

.stay-info-card h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.stay-info-card .guide-links {
  margin-top: 17px;
}

.stay-concierge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  scroll-margin-top: 24px;
  margin: 0 0 38px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  color: var(--cream);
  background:
    radial-gradient(circle at 90% 20%, rgba(220, 118, 47, 0.22), transparent 18rem),
    var(--wine-deep);
}

.stay-concierge h2 {
  color: var(--cream);
}

.stay-concierge p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.stay-concierge__actions {
  display: grid;
  gap: 9px;
}

.stay-action-link--cream {
  border-color: var(--cream);
  color: var(--wine-deep);
  background: var(--cream);
}

.stay-action-link--ghost {
  border-color: rgba(255, 250, 240, 0.3);
  color: var(--cream);
  background: rgba(255, 250, 240, 0.07);
}

.stay-footer {
  margin-bottom: 14px;
}

.stay-tabbar {
  display: none;
}

@media (max-width: 820px) {
  .private-guide-page {
    padding-bottom: 82px;
  }

  .private-banner {
    padding: 7px 10px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .stay-guide-main {
    width: min(100% - 24px, 680px);
  }

  .stay-masthead {
    min-height: 70px;
  }

  .stay-masthead .brand-link img {
    width: 44px;
    height: 44px;
  }

  .stay-masthead .brand-name strong {
    font-size: 15px;
  }

  .stay-masthead__help {
    display: none;
  }

  .stay-masthead .pill-link {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .stay-hero {
    min-height: 550px;
    margin: 4px 0 62px;
    border-radius: 22px;
  }

  .stay-hero__veil {
    background:
      linear-gradient(0deg, rgba(43, 16, 19, 0.96) 5%, rgba(65, 22, 26, 0.75) 68%, rgba(65, 22, 26, 0.2)),
      linear-gradient(90deg, rgba(49, 17, 20, 0.3), transparent);
  }

  .stay-hero__content {
    padding: 24px 17px 18px;
  }

  .stay-hero h1 {
    margin: 9px 0 10px;
    font-size: clamp(45px, 14vw, 68px);
  }

  .stay-hero p {
    font-size: 15px;
    line-height: 1.45;
  }

  .stay-hero__shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
  }

  .stay-shortcut {
    min-height: 58px;
    padding: 8px;
    border-radius: 13px;
  }

  .stay-shortcut__icon {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .stay-shortcut strong {
    font-size: 12px;
  }

  .stay-shortcut small {
    font-size: 8px;
  }

  .stay-section {
    margin-bottom: 62px;
    scroll-margin-top: 10px;
  }

  .stay-section__head {
    display: block;
    margin-bottom: 18px;
  }

  .stay-section__head h2,
  .stay-concierge h2 {
    font-size: 40px;
  }

  .stay-section__head p {
    margin-top: 11px;
    font-size: 15px;
  }

  .stay-utility-grid,
  .stay-partner-grid,
  .stay-address-groups,
  .stay-info-grid,
  .stay-partner--feature,
  .stay-experience-grid,
  .stay-concierge {
    grid-template-columns: 1fr;
  }

  .stay-utility-card,
  .stay-info-card,
  .stay-partner__body,
  .stay-address-group {
    padding: 18px;
  }

  .stay-utility-card h3,
  .stay-partner h3 {
    font-size: 27px;
  }

  .stay-action-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .stay-partner__visual {
    min-height: 190px;
  }

  .stay-partner--feature .stay-partner__visual {
    min-height: 220px;
  }

  .stay-partner__title {
    display: block;
  }

  .stay-time-chip {
    display: inline-block;
    margin-bottom: 10px;
  }

  .stay-code-card {
    padding: 12px;
  }

  .stay-code-card small {
    font-size: 8px;
  }

  .stay-code-card strong {
    font-size: 13px;
  }

  .stay-destination {
    padding: 10px;
  }

  .stay-coach-bottom {
    display: block;
  }

  .stay-coach-bottom .stay-action-link {
    margin-top: 14px;
  }

  .stay-address-group h3 {
    font-size: 25px;
  }

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

  .stay-spot-card {
    min-height: 176px;
  }

  .stay-spot-card strong {
    font-size: 25px;
  }

  .stay-experience-grid a {
    min-height: 210px;
    padding: 17px;
  }

  .stay-concierge {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .stay-concierge__actions {
    margin-top: 3px;
  }

  .stay-footer {
    display: none;
  }

  .stay-tabbar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 5px;
    border: 1px solid rgba(100, 45, 49, 0.14);
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 16px 42px rgba(56, 26, 25, 0.18);
    backdrop-filter: blur(18px);
  }

  .stay-tabbar a {
    display: grid;
    gap: 2px;
    min-height: 51px;
    place-items: center;
    border-radius: 13px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1;
    text-decoration: none;
    transition: 180ms ease;
  }

  .stay-tabbar strong {
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .stay-tabbar a.is-active,
  .stay-tabbar a:hover {
    color: var(--wine);
    background: rgba(100, 45, 49, 0.08);
  }
}
