:root {
          --bg: #f4efe7;
          --paper: #fffaf3;
          --ink: #16282a;
          --muted: #5d6868;
          --line: rgba(22, 40, 42, 0.12);
          --ocean: #0d3b3f;
          --ocean-soft: #1d6165;
          --sand: #d8ba8e;
          --shell: #fbf5ee;
          --sun: #ffcc8f;
          --rose: #db8f7a;
          --shadow: 0 24px 64px rgba(13, 59, 63, 0.14);
          --radius: 28px;
          --radius-sm: 18px;
          --wrap: min(1180px, calc(100vw - 2rem));
        }

        * {
          box-sizing: border-box;
        }

        html {
          scroll-behavior: smooth;
        }

        body {
          margin: 0;
          font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
          color: var(--ink);
          background:
            radial-gradient(circle at top left, rgba(255, 204, 143, 0.42), transparent 24rem),
            radial-gradient(circle at 86% 14%, rgba(219, 143, 122, 0.22), transparent 18rem),
            linear-gradient(180deg, #fbf5ee 0%, #f4efe7 50%, #f9f3ea 100%);
          line-height: 1.65;
        }

        a {
          color: inherit;
          text-decoration: none;
        }

        img {
          max-width: 100%;
          display: block;
        }

        .topbar {
          position: sticky;
          top: 0;
          z-index: 30;
          display: flex;
          flex-wrap: wrap;
          gap: 0.45rem 0.75rem;
          justify-content: center;
          align-items: center;
          padding: 0.8rem 1rem;
          background: rgba(13, 59, 63, 0.95);
          color: #fff7ef;
          font-size: 0.82rem;
          text-transform: uppercase;
          letter-spacing: 0.12em;
          backdrop-filter: blur(10px);
        }

        .topbar a {
          color: var(--sun);
          font-weight: 700;
        }

        .site-header {
          width: var(--wrap);
          margin: 0.9rem auto 0;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 1rem;
          padding: 0.9rem 1rem;
          border: 1px solid rgba(22, 40, 42, 0.08);
          border-radius: 999px;
          background: rgba(255, 250, 243, 0.78);
          box-shadow: 0 16px 34px rgba(13, 59, 63, 0.08);
          backdrop-filter: blur(12px);
        }

        .brand {
          display: inline-flex;
          flex-direction: column;
          gap: 0.15rem;
          font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
          color: var(--ocean);
        }

        .brand__shell {
          font-size: clamp(1.65rem, 3vw, 2.2rem);
          line-height: 0.9;
          letter-spacing: 0.03em;
        }

        .brand__line {
          font-size: 0.9rem;
          text-transform: uppercase;
          letter-spacing: 0.38em;
          color: var(--muted);
        }

        .nav-toggle {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border: 1px solid var(--line);
          background: rgba(255, 255, 255, 0.78);
          padding: 0.8rem 1rem;
          border-radius: 999px;
          color: var(--ocean);
          font-weight: 700;
        }

        .site-nav {
          display: none;
          flex-direction: column;
          align-items: flex-start;
          gap: 0.9rem;
          position: absolute;
          top: 7rem;
          right: 1rem;
          width: min(18rem, calc(100vw - 2rem));
          padding: 1.25rem;
          border-radius: 22px;
          background: rgba(255, 250, 243, 0.98);
          box-shadow: var(--shadow);
          border: 1px solid rgba(22, 40, 42, 0.08);
        }

        .site-nav.is-open {
          display: flex;
        }

        .site-nav a {
          color: var(--ocean);
          font-weight: 700;
          padding: 0.35rem 0.2rem;
          border-radius: 999px;
        }

        .page-share-shell,
        main,
        .site-footer {
          width: var(--wrap);
          margin: 0 auto;
        }

        .page-share-shell {
          margin: 0.5rem auto 0.85rem;
        }

        .share-row {
          display: flex;
          flex-wrap: wrap;
          gap: 0.7rem;
        }

        .share-row a {
          display: inline-flex;
          padding: 0.72rem 1rem;
          border-radius: 999px;
          background: rgba(255, 255, 255, 0.82);
          border: 1px solid var(--line);
          color: var(--ocean);
          font-weight: 700;
        }

        .home-stage {
          display: grid;
          gap: 1rem;
          margin: 0.95rem auto 1.4rem;
        }

        .home-stage__visual,
        .home-stage__copy,
        .story-tease,
        .story-ledger,
        .destination-tile {
          border: 1px solid rgba(22, 40, 42, 0.08);
          box-shadow: var(--shadow);
        }

        .home-stage__visual {
          position: relative;
          overflow: hidden;
          border-radius: calc(var(--radius) + 10px);
          min-height: 29rem;
          background: #0d3b3f;
        }

        .home-stage__image {
          width: 100%;
          height: 100%;
          min-height: 29rem;
          object-fit: cover;
          filter: saturate(1.04) contrast(1.03);
        }

        .home-stage__wash {
          position: absolute;
          inset: 0;
          background:
            linear-gradient(90deg, rgba(7, 31, 33, 0.08), rgba(7, 31, 33, 0.56)),
            linear-gradient(180deg, rgba(255, 204, 143, 0.14), rgba(7, 31, 33, 0));
        }

        .home-stage__stamp {
          position: absolute;
          top: 1.2rem;
          left: 1.2rem;
          z-index: 1;
          margin: 0;
          padding: 0.65rem 0.8rem;
          border-radius: 999px;
          background: rgba(255, 250, 243, 0.9);
          color: var(--ocean);
          font-size: 0.74rem;
          font-weight: 800;
          letter-spacing: 0.14em;
          text-transform: uppercase;
        }

        .home-stage__quote {
          position: absolute;
          left: 1.2rem;
          bottom: 1.2rem;
          z-index: 1;
          width: min(24rem, calc(100% - 2.4rem));
          padding: 1.05rem 1.1rem;
          border-radius: 24px;
          background: rgba(255, 250, 243, 0.9);
          backdrop-filter: blur(8px);
        }

        .home-stage__quote span {
          display: block;
          margin-bottom: 0.35rem;
          color: var(--ocean-soft);
          font-size: 0.75rem;
          font-weight: 800;
          letter-spacing: 0.14em;
          text-transform: uppercase;
        }

        .home-stage__quote p {
          margin: 0;
          color: var(--ink);
        }

        .home-stage__copy {
          display: grid;
          gap: 1rem;
          align-content: start;
          padding: clamp(1.45rem, 3vw, 2.2rem);
          border-radius: calc(var(--radius) + 10px);
          background:
            radial-gradient(circle at top right, rgba(255, 204, 143, 0.22), transparent 15rem),
            linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 239, 231, 0.92));
        }

        .home-stage__copy h1 {
          font-size: clamp(2.85rem, 7vw, 5.5rem);
          max-width: 10ch;
          line-height: 0.92;
        }

        .home-stage__lede {
          margin: 0;
          font-size: 1.08rem;
          color: var(--muted);
          max-width: 54ch;
        }

        .home-stage__topics {
          display: grid;
          gap: 0.9rem;
          margin-top: 0.25rem;
        }

        .home-stage__topic {
          padding-top: 0.9rem;
          border-top: 1px solid rgba(22, 40, 42, 0.1);
        }

        .home-stage__topic span {
          display: block;
          margin-bottom: 0.35rem;
          color: var(--ocean-soft);
          font-size: 0.76rem;
          font-weight: 800;
          letter-spacing: 0.14em;
          text-transform: uppercase;
        }

        .home-stage__topic p {
          margin: 0;
          color: var(--muted);
        }

        .story-salon,
        .story-salon__lead,
        .story-salon__rail,
        .story-grid,
        .destination-mosaic {
          display: grid;
          gap: 1rem;
        }

        .story-salon {
          align-items: start;
        }

        .story-tease {
          overflow: hidden;
          border-radius: var(--radius);
          background: rgba(255, 255, 255, 0.9);
        }

        .story-tease__media {
          display: block;
        }

        .story-tease__media img {
          width: 100%;
          height: 100%;
          min-height: 15rem;
          object-fit: cover;
        }

        .story-tease__body {
          display: grid;
          gap: 0.65rem;
          padding: 1.2rem;
        }

        .story-tease__eyebrow {
          margin: 0;
          color: var(--ocean-soft);
          font-size: 0.76rem;
          font-weight: 800;
          letter-spacing: 0.16em;
          text-transform: uppercase;
        }

        .story-tease__meta {
          margin: 0;
          color: var(--muted);
          font-size: 0.92rem;
        }

        .story-tease__body p:last-child {
          margin: 0;
          color: var(--muted);
        }

        .story-tease--lead .story-tease__media img {
          min-height: 23rem;
        }

        .story-ledger {
          display: grid;
          gap: 0.9rem;
          padding: 1.2rem;
          border-radius: var(--radius);
          background:
            linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(245, 240, 232, 0.94)),
            radial-gradient(circle at top right, rgba(255, 204, 143, 0.2), transparent 12rem);
        }

        .story-note {
          padding: 1.25rem;
          border: 1px solid rgba(22, 40, 42, 0.08);
          border-radius: var(--radius);
          background: rgba(255, 255, 255, 0.84);
          box-shadow: 0 14px 36px rgba(13, 59, 63, 0.08);
        }

        .story-note h3 {
          margin-bottom: 0.75rem;
        }

        .story-note p {
          color: var(--muted);
        }

        .story-ledger__link {
          display: block;
          padding-top: 0.85rem;
          border-top: 1px solid rgba(22, 40, 42, 0.1);
          color: var(--ocean);
          font-weight: 700;
        }

        .destination-tile {
          position: relative;
          overflow: hidden;
          min-height: 17rem;
          border-radius: calc(var(--radius) + 2px);
          background: #0d3b3f;
          isolation: isolate;
        }

        .destination-tile__media {
          position: absolute;
          inset: 0;
        }

        .destination-tile__media img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.35s ease, filter 0.35s ease;
          filter: saturate(1.03) contrast(1.02);
        }

        .destination-tile::after {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(180deg, rgba(13, 59, 63, 0.05), rgba(13, 59, 63, 0.86));
        }

        .destination-tile__body {
          position: relative;
          z-index: 1;
          display: grid;
          align-content: end;
          min-height: 17rem;
          padding: 1.2rem;
          color: #fff8ef;
        }

        .destination-tile__eyebrow {
          margin: 0 0 0.45rem;
          color: rgba(255, 248, 239, 0.8);
          font-size: 0.76rem;
          font-weight: 800;
          letter-spacing: 0.16em;
          text-transform: uppercase;
        }

        .destination-tile__body h3,
        .destination-tile__body p {
          color: inherit;
        }

        .destination-tile__body p:last-child {
          margin-bottom: 0;
          color: rgba(255, 248, 239, 0.88);
        }

        .destination-tile:hover .destination-tile__media img {
          transform: scale(1.03);
          filter: saturate(1.08) contrast(1.04);
        }

        .hero {
          position: relative;
          overflow: hidden;
          margin: 0.85rem auto 1.25rem;
          padding: clamp(1.7rem, 4vw, 3rem);
          border-radius: calc(var(--radius) + 8px);
          background:
            radial-gradient(circle at 85% 15%, rgba(255, 204, 143, 0.52), transparent 16rem),
            linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(238, 248, 247, 0.94));
          border: 1px solid rgba(22, 40, 42, 0.08);
          box-shadow: var(--shadow);
        }

        .hero::after {
          content: "";
          position: absolute;
          inset: auto -8% -10% auto;
          width: 15rem;
          aspect-ratio: 1;
          border-radius: 50%;
          background: radial-gradient(circle, rgba(13, 59, 63, 0.14), transparent 70%);
        }

        .hero--home {
          display: grid;
          gap: 1.25rem;
        }

        .hero__copy,
        .hero__panel {
          position: relative;
          z-index: 1;
        }

        .section-label,
        .card__eyebrow {
          margin: 0 0 0.65rem;
          font-size: 0.78rem;
          font-weight: 800;
          text-transform: uppercase;
          letter-spacing: 0.16em;
          color: var(--ocean-soft);
        }

        h1,
        h2,
        h3 {
          margin: 0;
          font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
          line-height: 1.05;
          color: var(--ocean);
        }

        h1 {
          font-size: clamp(2.4rem, 6vw, 4.8rem);
          max-width: 13ch;
        }

        h2 {
          font-size: clamp(1.65rem, 3vw, 2.55rem);
        }

        h3 {
          font-size: 1.3rem;
        }

        .hero__lede,
        .article-dek {
          margin: 1rem 0 0;
          font-size: 1.08rem;
          color: var(--muted);
          max-width: 62ch;
        }

        .hero__actions,
        .button-row {
          display: flex;
          flex-wrap: wrap;
          gap: 0.8rem;
          margin-top: 1.35rem;
        }

        .button {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          min-height: 3.25rem;
          padding: 0.95rem 1.25rem;
          border-radius: 999px;
          border: 1px solid transparent;
          font-weight: 800;
          letter-spacing: 0.03em;
        }

        .button-primary {
          background: var(--ocean);
          color: #fffaf1;
          box-shadow: 0 16px 36px rgba(13, 59, 63, 0.24);
        }

        .button-secondary {
          background: rgba(255, 255, 255, 0.78);
          border-color: rgba(13, 59, 63, 0.16);
          color: var(--ocean);
        }

        .hero__signal,
        .hero-stat,
        .feature-card,
        .card,
        .buyer-card,
        .offer-shell,
        .prose-block {
          border: 1px solid rgba(22, 40, 42, 0.08);
          background: rgba(255, 255, 255, 0.82);
          border-radius: var(--radius);
          box-shadow: 0 14px 36px rgba(13, 59, 63, 0.08);
        }

        .hero__signal {
          margin-top: 1.2rem;
          padding: 1rem 1.1rem;
          display: grid;
          gap: 0.35rem;
        }

.hero__panel {
  display: grid;
  gap: 1rem;
}

.hero__panel--visual,
.hero-stat-grid,
.hero-media-wall,
.hero-media-stack {
  display: grid;
  gap: 1rem;
}

.hero__panel--visual {
  align-content: start;
}

.hero-media-wall {
  grid-template-columns: minmax(0, 1fr);
}

.scene-card,
.panel-note {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22, 40, 42, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(13, 59, 63, 0.08);
  isolation: isolate;
}

.scene-card img {
  width: 100%;
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.scene-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.scene-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.24rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(13, 59, 63, 0.02), rgba(13, 59, 63, 0.84));
  color: #fff8ef;
}

.scene-card__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 248, 239, 0.78);
}

.scene-card strong {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.08rem;
  line-height: 1.05;
}

.scene-card p {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(255, 248, 239, 0.9);
}

.scene-card--primary img {
  min-height: 21rem;
}

.scene-card--secondary img {
  min-height: 10rem;
}

.scene-card--hub-hero img {
  min-height: 19rem;
}

.scene-card--article {
  margin: 1.15rem 0 1.35rem;
}

.scene-card--article img {
  min-height: 20rem;
}

.scene-card--feature img {
  min-height: 22rem;
}

.scene-card--journal img {
  min-height: 16rem;
}

.hero-stat {
  padding: 1.15rem;
}

        .hero-stat span {
          display: inline-block;
          font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
          font-size: 2.5rem;
          color: var(--ocean);
          margin-bottom: 0.4rem;
        }

        .content-block {
          margin: 1.25rem auto;
          padding: clamp(1.35rem, 3vw, 2rem);
          border-radius: var(--radius);
          background: rgba(255, 250, 243, 0.74);
          border: 1px solid rgba(22, 40, 42, 0.08);
          box-shadow: 0 18px 42px rgba(13, 59, 63, 0.06);
          backdrop-filter: blur(10px);
        }

        .content-block--split {
          display: grid;
          gap: 1rem;
        }

        .home-copy-stack {
          display: grid;
          gap: 1rem;
          align-content: center;
        }

        .content-block--contrast {
          background: linear-gradient(135deg, rgba(13, 59, 63, 0.98), rgba(23, 87, 92, 0.94));
          color: #fff7ef;
        }

        .content-block--contrast h2,
        .content-block--contrast h3,
        .content-block--contrast .section-label,
        .content-block--contrast a {
          color: inherit;
        }

        .content-block--gallery {
          background:
            linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 239, 231, 0.94)),
            radial-gradient(circle at top right, rgba(255, 204, 143, 0.18), transparent 18rem);
        }

        .section-head {
          display: flex;
          flex-direction: column;
          gap: 0.95rem;
          margin-bottom: 1.2rem;
        }

        .gallery-intro {
          margin: 0;
          max-width: 56ch;
          color: var(--muted);
        }

        .text-link {
          font-weight: 800;
          color: var(--ocean-soft);
          text-transform: uppercase;
          letter-spacing: 0.14em;
          font-size: 0.8rem;
        }

        .feature-grid,
        .card-grid,
        .buyer-grid {
          display: grid;
          gap: 1rem;
        }

.feature-card,
.card,
.buyer-card {
  padding: 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover,
.card:hover,
.buyer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(13, 59, 63, 0.11);
  border-color: rgba(13, 59, 63, 0.16);
}

.card {
  overflow: hidden;
}

.card__media {
  display: block;
  margin: -1.2rem -1.2rem 0;
}

.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journal-grid {
  display: grid;
  gap: 1rem;
}

.card--story {
  display: grid;
  gap: 0.6rem;
}

.card--story .card__eyebrow,
.card--hub .card__eyebrow {
  margin-top: 0.8rem;
}

.card--hub {
  display: grid;
  gap: 0.7rem;
}

.card__meta,
.article-meta {
  display: flex;
          flex-wrap: wrap;
          gap: 0.45rem;
          align-items: center;
          color: var(--muted);
          font-size: 0.92rem;
        }

        .article-meta span {
          font-size: 0.88rem;
        }

        .bullet-list {
          margin: 0;
          padding-left: 1.15rem;
        }

        .bullet-list li + li {
          margin-top: 0.55rem;
        }

.offer-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.panel-note {
  padding: 1.1rem;
}

.offer-form {
  display: grid;
  gap: 1rem;
        }

        .offer-form label {
          display: grid;
          gap: 0.45rem;
          font-weight: 700;
        }

        .offer-form input,
        .offer-form textarea {
          width: 100%;
          border-radius: 20px;
          border: 1px solid rgba(22, 40, 42, 0.14);
          padding: 1rem 1.05rem;
          font: inherit;
          color: var(--ink);
          background: #fffdf9;
        }

        .offer-form textarea {
          resize: vertical;
          min-height: 9rem;
        }

        .offer-form__wide {
          grid-column: 1 / -1;
        }

        .form-status {
          margin-bottom: 0.85rem;
          padding: 0.9rem 1rem;
          border-radius: 18px;
          background: rgba(44, 116, 70, 0.16);
          color: #d7ffe4;
          font-weight: 700;
        }

        .form-status--error {
          background: rgba(177, 51, 51, 0.22);
          color: #ffe5e0;
        }

        .prose-block {
          padding: 1.25rem;
        }

        .prose-block h2 + p,
        .article-copy section + section {
          margin-top: 1rem;
        }

        .article-shell {
          padding: clamp(1.35rem, 3vw, 2rem);
          border-radius: calc(var(--radius) + 2px);
          background: rgba(255, 255, 255, 0.88);
          border: 1px solid rgba(22, 40, 42, 0.08);
          box-shadow: var(--shadow);
        }

        .article-shell .article-dek {
          margin-bottom: 1.1rem;
        }

        .article-copy {
          display: grid;
          gap: 1.05rem;
        }

        .article-copy p {
          margin: 0;
          color: var(--muted);
        }

        .site-footer {
          margin: 1.5rem auto 2rem;
          padding: 1.5rem clamp(1.2rem, 3vw, 2rem);
          border-radius: calc(var(--radius) + 6px);
          background: rgba(13, 59, 63, 0.96);
          color: #f7efe6;
        }

        .footer-mark {
          margin: 0 0 0.35rem;
          letter-spacing: 0.22em;
          font-size: 0.78rem;
          text-transform: uppercase;
          color: var(--sun);
        }

        .footer-copy {
          margin: 0;
          max-width: 54ch;
          color: rgba(247, 239, 230, 0.82);
        }

        .footer-grid {
          display: grid;
          gap: 1.2rem;
          margin-top: 1.2rem;
        }

        .footer-grid h2 {
          font-size: 0.92rem;
          text-transform: uppercase;
          letter-spacing: 0.12em;
          margin-bottom: 0.7rem;
          color: var(--sun);
        }

        .footer-grid a {
          display: block;
          color: rgba(247, 239, 230, 0.92);
        }

        .footer-grid a + a {
          margin-top: 0.45rem;
        }

        .footer-meta {
          margin: 1.2rem 0 0;
          color: rgba(247, 239, 230, 0.74);
          font-size: 0.9rem;
        }

@media (min-width: 760px) {
  .home-stage {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: stretch;
  }

  .story-salon {
    grid-template-columns: minmax(0, 1.14fr) minmax(18rem, 0.86fr);
  }

  .story-tease--rail {
    grid-template-columns: 10.25rem minmax(0, 1fr);
  }

  .story-tease--rail .story-tease__media img {
    min-height: 100%;
  }

  .story-grid,
  .destination-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero--home {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.85fr);
    align-items: stretch;
  }

  .hero-media-wall {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
  }

  .hero-media-stack {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .hero-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
          }

          .feature-grid,
          .card-grid,
          .buyer-grid,
          .footer-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
          }

          .content-block--split {
            grid-template-columns: repeat(2, minmax(0, 1fr));
          }

          .offer-form {
            grid-template-columns: repeat(2, minmax(0, 1fr));
          }
        }

        @media (min-width: 980px) {
          .nav-toggle {
            display: none;
          }

          .story-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
          }

          .destination-mosaic {
            grid-template-columns: 1.15fr 0.95fr 0.9fr;
            grid-template-areas:
              "cabo maldives adults"
              "cabo mexico villas";
          }

          .destination-tile--cabo {
            grid-area: cabo;
            min-height: 34rem;
          }

          .destination-tile--maldives {
            grid-area: maldives;
          }

          .destination-tile--adults {
            grid-area: adults;
          }

          .destination-tile--mexico {
            grid-area: mexico;
          }

          .destination-tile--villas {
            grid-area: villas;
          }

          .site-nav {
            position: static;
            width: auto;
            padding: 0;
            box-shadow: none;
            background: transparent;
            border: 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 1rem 1.25rem;
          }

          .site-nav a {
            position: relative;
          }

          .site-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.2rem;
            width: 100%;
            height: 2px;
            background: rgba(13, 59, 63, 0.25);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.22s ease;
          }

          .site-nav a:hover::after {
            transform: scaleX(1);
          }

          .feature-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
          }

          .card-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
          }

  .card-grid--hubs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .buyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .journal-grid {
    grid-template-columns: 1.15fr 0.85fr 0.9fr 1.1fr;
    align-items: end;
  }

  .scene-card--journal:nth-child(2) {
    transform: translateY(1.6rem);
  }

  .scene-card--journal:nth-child(3) {
    transform: translateY(-0.8rem);
  }
}

        @media (prefers-reduced-motion: no-preference) {
          .hero,
          .content-block,
          .site-footer,
          .card,
          .feature-card,
          .buyer-card {
            animation: fadeUp 0.55s ease both;
          }

          @keyframes fadeUp {
            from {
              opacity: 0;
              transform: translateY(14px);
            }
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }
        }
