@layer reset, base, components, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body,
  h1,
  h2,
  h3,
  p {
    margin: 0;
  }

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

  button,
  input,
  textarea,
  select {
    font: inherit;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
}

@layer base {
  :root {
    --ink: #01477f;
    --ink-deep: #01305a;
    --cream: #f2f6fb;
    --cream-deep: #e4edf7;
    --paper: #ffffff;
    --coral: #de1216;
    --coral-dark: #b00f13;
    --sun: #7fbcf2;
    --gold: #a67c00;
    --sage: #cbe0f5;
    --sky: #e4eefa;
    --line: rgba(1, 71, 127, 0.18);
    --muted: #5a6e85;
    --display: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shadow: 0 28px 70px rgba(1, 71, 127, 0.14);
  }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  ::selection {
    background: var(--coral);
    color: white;
  }

  h1,
  h2,
  h3 {
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(2.7rem, 5vw, 5.25rem);
    line-height: 0.98;
  }

  h2 em,
  h1 em {
    color: var(--coral);
    font-weight: 400;
  }

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

  :focus-visible {
    outline: 3px solid var(--sun);
    outline-offset: 4px;
  }
}

@layer components {
  .skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 200;
    transform: translateY(-200%);
    background: var(--paper);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 800;
  }

  .skip-link:focus {
    transform: translateY(0);
  }

  .site-header {
    align-items: center;
    background: rgba(242, 246, 251, 0.92);
    border-bottom: 1px solid transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    height: 82px;
    padding: 0 4.25vw;
    position: sticky;
    top: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    z-index: 100;
  }

  .site-header.is-scrolled {
    background: rgba(242, 246, 251, 0.97);
    border-color: var(--line);
    box-shadow: 0 12px 35px rgba(1, 48, 90, 0.08);
  }

  .brand {
    align-items: center;
    display: inline-flex;
    width: max-content;
  }

  .brand-logo {
    display: block;
    width: 112px;
  }

  .brand-logo img {
    height: auto;
    width: 100%;
  }

  .brand-logo-footer {
    width: 140px;
  }

  .brand-mark {
    align-items: center;
    background: var(--coral);
    border-radius: 50% 50% 45% 45%;
    display: flex;
    height: 43px;
    justify-content: center;
    transform: rotate(-4deg);
    width: 43px;
  }

  .brand-mark svg {
    fill: var(--cream);
    height: 27px;
    transform: rotate(4deg);
    width: 27px;
  }

  .brand-copy {
    display: flex;
    line-height: 1;
    flex-direction: column;
    text-transform: uppercase;
  }

  .brand-copy strong {
    font-family: var(--display);
    font-size: 1.08rem;
    letter-spacing: 0.02em;
  }

  .brand-copy small {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-top: 0.34rem;
  }

  .desktop-nav {
    align-items: center;
    display: flex;
    gap: clamp(1.1rem, 2vw, 2.35rem);
    justify-content: center;
  }

  .desktop-nav a {
    font-size: 0.79rem;
    font-weight: 750;
    position: relative;
  }

  .desktop-nav a::after {
    background: var(--coral);
    bottom: -0.5rem;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
    width: 100%;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .button {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 999px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 850;
    gap: 0.8rem;
    justify-content: center;
    letter-spacing: 0.035em;
    min-height: 54px;
    padding: 0.9rem 1.55rem;
    text-transform: uppercase;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    width: max-content;
  }

  .button span {
    font-size: 1rem;
    transition: transform 180ms ease;
  }

  .button:hover {
    background: var(--coral);
    box-shadow: 0 12px 28px rgba(222, 18, 22, 0.25);
    transform: translateY(-2px);
  }

  .button:hover span {
    transform: translateX(3px);
  }

  .button-small {
    min-height: 44px;
    padding: 0.65rem 1.15rem;
  }

  .button-light {
    background: var(--cream);
    color: var(--ink);
  }

  .button-coral {
    background: var(--coral);
    color: white;
  }

  .button-coral:hover {
    background: var(--sun);
    color: var(--ink-deep);
  }

  .menu-button,
  .mobile-menu {
    display: none;
  }

  .hero {
    background:
      radial-gradient(circle at 4% 6%, rgba(127, 188, 242, 0.22), transparent 20rem),
      var(--cream);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
    min-height: calc(100svh - 82px);
    overflow: hidden;
    position: relative;
  }

  .hero::before {
    border: 1px solid rgba(1, 71, 127, 0.09);
    border-radius: 50%;
    content: "";
    height: 26rem;
    left: -15rem;
    position: absolute;
    top: 7%;
    width: 26rem;
  }

  .hero-copy {
    align-self: center;
    max-width: 750px;
    min-width: 0;
    padding: 6.5rem 3.5rem 8rem max(5vw, 2.25rem);
    position: relative;
    z-index: 3;
  }

  .eyebrow {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-size: 0.68rem;
    font-weight: 850;
    gap: 0.65rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .eyebrow > span {
    background: var(--coral);
    border-radius: 50%;
    height: 7px;
    width: 7px;
  }

  .eyebrow-light {
    color: rgba(255, 255, 255, 0.68);
  }

  .hero h1 {
    color: var(--ink-deep);
    font-size: clamp(4rem, 6.5vw, 7.5rem);
    line-height: 0.86;
    margin-top: 1.65rem;
    max-width: 770px;
  }

  .hero h1 em {
    display: block;
  }

  .hero h1 > span {
    display: block;
  }

  .hero-intro {
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.7;
    margin-top: 2.15rem;
    max-width: 540px;
  }

  .hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 2.15rem;
  }

  .text-link {
    align-items: center;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 850;
    gap: 0.6rem;
    letter-spacing: 0.035em;
    padding-block: 0.6rem;
    position: relative;
    text-transform: uppercase;
    width: max-content;
  }

  .text-link::after {
    background: currentColor;
    bottom: 0.35rem;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: width 180ms ease;
    width: calc(100% - 1.9rem);
  }

  .text-link:hover::after {
    width: 100%;
  }

  .hero-proof {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
  }

  .proof-avatars {
    display: flex;
  }

  .proof-avatars span {
    align-items: center;
    background: var(--sage);
    border: 3px solid var(--cream);
    border-radius: 50%;
    display: flex;
    font-size: 0.88rem;
    height: 38px;
    justify-content: center;
    margin-left: -0.6rem;
    width: 38px;
  }

  .proof-avatars span:first-child {
    margin-left: 0;
  }

  .proof-avatars span:nth-child(2) {
    background: #dbe7f6;
  }

  .proof-avatars span:nth-child(3) {
    background: #f4a3a5;
  }

  .hero-proof p {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .hero-proof strong {
    color: var(--ink);
    font-size: 0.78rem;
  }

  .stars {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    margin-left: 0.5rem;
  }

  .hero-visual {
    min-height: 610px;
    min-width: 0;
    padding: 1rem 1rem 1rem 0;
    position: relative;
  }

  .hero-image-wrap {
    border-radius: 0 0 0 9rem;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .hero-image-wrap img {
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
    width: 100%;
  }

  .image-shade {
    background: linear-gradient(180deg, transparent 55%, rgba(1, 48, 90, 0.24));
    inset: 0;
    pointer-events: none;
    position: absolute;
  }

  .boarding-pass {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.93);
    border-radius: 1.25rem;
    bottom: 8.5%;
    box-shadow: var(--shadow);
    color: var(--ink-deep);
    left: -4rem;
    padding: 1.25rem;
    position: absolute;
    transform: rotate(-2.5deg);
    width: min(420px, 70%);
    z-index: 3;
  }

  .boarding-pass::after {
    border-top: 2px dashed rgba(1, 71, 127, 0.17);
    bottom: 3.95rem;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
  }

  .pass-label {
    color: var(--coral-dark);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .pass-route {
    align-items: center;
    display: grid;
    grid-template-columns: auto 1fr auto;
    margin: 0.7rem 0 1.35rem;
  }

  .pass-route div:first-child,
  .pass-route div:last-child {
    display: flex;
    flex-direction: column;
  }

  .pass-route div:last-child {
    text-align: right;
  }

  .pass-route strong {
    font-family: var(--display);
    font-size: 2.25rem;
    line-height: 1;
  }

  .pass-route div > span {
    color: var(--muted);
    font-size: 0.62rem;
    margin-top: 0.2rem;
  }

  .route-line {
    border-top: 1px dashed rgba(1, 71, 127, 0.38);
    margin: 0 1rem;
    position: relative;
  }

  .route-line span {
    background: var(--paper);
    color: var(--coral);
    font-size: 1rem !important;
    left: 50%;
    margin: 0 !important;
    padding: 0 0.35rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .pass-meta {
    display: flex;
    font-size: 0.58rem;
    justify-content: space-between;
    letter-spacing: 0.09em;
    padding-top: 0.7rem;
    text-transform: uppercase;
  }

  .pass-meta b {
    font-size: 0.67rem;
    letter-spacing: 0.03em;
  }

  .care-note {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(1, 48, 90, 0.87);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: white;
    display: flex;
    gap: 0.8rem;
    padding: 0.65rem 1.05rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
  }

  .care-note p,
  .reply-note p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.63rem;
    line-height: 1.45;
  }

  .care-note strong,
  .reply-note strong {
    color: white;
    font-size: 0.69rem;
  }

  .pulse-dot {
    background: #89d49e;
    border: 3px solid rgba(137, 212, 158, 0.2);
    background-clip: padding-box;
    border-radius: 50%;
    height: 12px;
    width: 12px;
  }

  .hero-scroll {
    align-items: center;
    bottom: 1.8rem;
    color: var(--muted);
    display: flex;
    font-size: 0.57rem;
    font-weight: 850;
    gap: 0.6rem;
    left: max(5vw, 2.25rem);
    letter-spacing: 0.14em;
    position: absolute;
    text-transform: uppercase;
  }

  .hero-scroll span {
    animation: scrollPulse 1.8s ease infinite;
    border: 1px solid var(--line);
    border-radius: 999px;
    height: 33px;
    position: relative;
    width: 20px;
  }

  .hero-scroll span::after {
    background: var(--coral);
    border-radius: 50%;
    content: "";
    height: 4px;
    left: 7px;
    position: absolute;
    top: 7px;
    width: 4px;
  }

  @keyframes scrollPulse {
    50% { transform: translateY(5px); }
  }

  .trust-strip {
    align-items: center;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    min-height: 88px;
    padding: 1.25rem 5vw;
  }

  .trust-strip > p {
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.92rem;
    font-style: italic;
  }

  .trust-items {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
  }

  .trust-items span {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .trust-items b {
    color: var(--ink);
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 0;
    margin-right: 0.22rem;
  }

  .section {
    margin-inline: auto;
    max-width: 1450px;
    padding: clamp(5rem, 9vw, 9rem) 5vw;
  }

  .section-heading {
    align-items: end;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
  }

  .section-heading h2 {
    margin-top: 1.1rem;
    max-width: 780px;
  }

  .section-heading > p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 400px;
    padding-bottom: 0.55rem;
  }

  .service-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.15fr 1fr 1fr;
    margin-top: 4.5rem;
  }

  .service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    padding: 1.65rem;
    position: relative;
    transition: box-shadow 220ms ease, transform 220ms ease;
  }

  .service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-7px);
  }

  .service-card-featured {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
  }

  .service-card-featured::before {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
    height: 24rem;
    position: absolute;
    right: -12rem;
    top: -15rem;
    width: 24rem;
  }

  .service-number {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.15em;
  }

  .service-card-featured .service-number {
    color: rgba(255, 255, 255, 0.5);
  }

  .service-icon {
    align-items: center;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    height: 74px;
    justify-content: center;
    margin-top: 2.4rem;
    width: 74px;
  }

  .service-card:nth-child(2) .service-icon {
    background: #f7d3d4;
  }

  .service-card:nth-child(3) .service-icon {
    background: #bcd9f6;
  }

  .service-icon svg {
    fill: none;
    height: 35px;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 35px;
  }

  .service-card h3 {
    font-size: clamp(1.75rem, 2.2vw, 2.35rem);
    line-height: 1.05;
    margin-top: 1.6rem;
    max-width: 320px;
  }

  .service-card > p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 390px;
  }

  .service-card-featured > p {
    color: rgba(255, 255, 255, 0.64);
  }

  .service-card > a {
    align-items: center;
    display: flex;
    font-size: 0.7rem;
    font-weight: 850;
    gap: 0.5rem;
    letter-spacing: 0.05em;
    margin-top: auto;
    padding-top: 1.5rem;
    text-transform: uppercase;
  }

  .service-card > a span {
    color: var(--coral);
    font-size: 1rem;
    transition: transform 180ms ease;
  }

  .service-card > a:hover span {
    transform: translateX(5px);
  }

  .card-route {
    align-items: center;
    color: rgba(255, 255, 255, 0.46);
    display: flex;
    font-size: 0.55rem;
    font-weight: 800;
    gap: 0.5rem;
    letter-spacing: 0.1em;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }

  .card-route i {
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    width: 2.5rem;
  }

  .journey {
    background:
      radial-gradient(circle at 8% 110%, rgba(222, 18, 22, 0.25), transparent 29rem),
      radial-gradient(circle at 92% -10%, rgba(127, 188, 242, 0.18), transparent 25rem),
      var(--ink-deep);
    color: white;
    display: grid;
    gap: 9vw;
    grid-template-columns: 0.78fr 1.22fr;
    padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - 1450px) / 2 + 5vw));
    position: relative;
  }

  .journey-intro h2 {
    margin-top: 1.2rem;
  }

  .journey-intro > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.61);
    line-height: 1.8;
    margin-top: 1.8rem;
    max-width: 460px;
  }

  .journey-intro .button {
    margin-top: 2rem;
  }

  .journey-steps {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .journey-steps li {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .journey-steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .journey-steps button {
    align-items: center;
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    display: grid;
    gap: 1rem;
    grid-template-columns: 3rem 1fr 2rem;
    padding: 1.75rem 0;
    text-align: left;
    width: 100%;
  }

  .step-number {
    color: var(--coral);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.1em;
  }

  .step-title {
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.1vw, 2.1rem);
    letter-spacing: -0.03em;
  }

  .step-toggle {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
    display: flex;
    font-size: 1rem;
    height: 29px;
    justify-content: center;
    justify-self: end;
    width: 29px;
  }

  .step-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-left: 4rem;
    transition: max-height 280ms ease, opacity 280ms ease, padding 280ms ease;
  }

  .journey-steps li.active .step-detail {
    max-height: 180px;
    opacity: 1;
    padding-bottom: 1.75rem;
  }

  .step-detail p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 530px;
  }

  .step-detail span {
    color: var(--sun);
    display: block;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-top: 1rem;
    text-transform: uppercase;
  }

  .destinations {
    max-width: 1530px;
  }

  .destination-card {
    background: #bfdcf8;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    min-height: 610px;
    overflow: hidden;
  }

  .destination-copy {
    align-self: center;
    padding: clamp(2.5rem, 6vw, 6rem);
  }

  .destination-copy h2 {
    color: var(--ink-deep);
    margin-top: 1.1rem;
  }

  .destination-copy h2 em {
    color: var(--coral);
  }

  .destination-copy > p:not(.eyebrow) {
    color: rgba(1, 48, 90, 0.7);
    line-height: 1.75;
    margin-top: 1.6rem;
    max-width: 460px;
  }

  .destination-note {
    border-top: 1px solid rgba(1, 48, 90, 0.18);
    color: rgba(1, 48, 90, 0.72);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    max-width: 460px;
    padding-top: 1.2rem;
  }

  .destination-note strong {
    color: var(--ink-deep);
    display: block;
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
  }

  .destination-copy .text-link {
    margin-top: 1.5rem;
  }

  .route-board {
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 40% 45%, #0a5c9e, var(--ink-deep) 70%);
    background-size: 38px 38px, 38px 38px, auto;
    border-radius: 9rem 0 0 9rem;
    min-height: 100%;
    overflow: hidden;
    position: relative;
  }

  .route-board::after {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
    height: 34rem;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 34rem;
  }

  .route-origin {
    align-items: center;
    color: white;
    display: flex;
    gap: 0.75rem;
    left: 17%;
    position: absolute;
    top: 49%;
    z-index: 4;
  }

  .location-pin {
    background: var(--coral);
    border: 5px solid rgba(255, 255, 255, 0.24);
    background-clip: padding-box;
    border-radius: 50%;
    box-shadow: 0 0 0 13px rgba(222, 18, 22, 0.08);
    height: 22px;
    width: 22px;
  }

  .route-origin p {
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1;
  }

  .route-origin small {
    color: rgba(255, 255, 255, 0.55);
    display: block;
    font-family: var(--sans);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 0.35rem;
    text-transform: uppercase;
  }

  .route-path {
    border: 1px dashed rgba(127, 188, 242, 0.55);
    border-bottom: 0;
    border-left: 0;
    border-radius: 50%;
    height: 180px;
    left: 19%;
    position: absolute;
    top: 35%;
    transform: rotate(-13deg);
    width: 57%;
    z-index: 2;
  }

  .path-two {
    height: 270px;
    top: 25%;
    transform: rotate(10deg);
    width: 68%;
  }

  .path-three {
    height: 340px;
    top: 20%;
    transform: rotate(32deg);
    width: 73%;
  }

  .path-four {
    border-bottom: 1px dashed rgba(127, 188, 242, 0.55);
    border-right: 0;
    border-top: 0;
    height: 150px;
    left: 22%;
    top: 26%;
    transform: rotate(4deg);
    width: 26%;
  }

  .path-five {
    height: 230px;
    left: 20%;
    top: 30%;
    transform: rotate(-6deg);
    width: 38%;
  }

  .path-six {
    height: 90px;
    left: 21%;
    top: 44%;
    transform: rotate(-2deg);
    width: 20%;
  }

  .path-seven {
    border-bottom: 1px dashed rgba(127, 188, 242, 0.55);
    border-right: 0;
    border-top: 0;
    height: 130px;
    left: 21%;
    top: 52%;
    transform: rotate(2deg);
    width: 24%;
  }

  .destination-pill {
    background: var(--paper);
    border-radius: 999px;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.16);
    color: var(--ink-deep);
    font-family: var(--display);
    font-size: 0.98rem;
    padding: 0.55rem 0.8rem;
    position: absolute;
    z-index: 5;
  }

  .destination-pill i {
    color: var(--coral-dark);
    font-family: var(--sans);
    font-size: 0.5rem;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.1em;
    margin-left: 0.25rem;
  }

  .pill-one { right: 12%; top: 18%; }
  .pill-two { right: 8%; top: 48%; }
  .pill-three { right: 24%; top: 72%; }
  .pill-four { bottom: 9%; left: 20%; }
  .pill-five { left: 32%; top: 15%; }
  .pill-six { left: 51%; top: 27%; }
  .pill-seven { left: 40%; top: 42%; }
  .pill-eight { left: 38%; top: 74%; }

  .plane {
    color: var(--sun);
    font-size: 1.2rem;
    position: absolute;
    z-index: 4;
  }

  .plane-one { right: 34%; top: 42%; transform: rotate(18deg); }
  .plane-two { right: 28%; top: 63%; transform: rotate(54deg); }

  .story-section {
    align-items: center;
    display: grid;
    gap: clamp(3rem, 7vw, 8rem);
    grid-template-columns: 1.08fr 0.92fr;
  }

  .story-visual {
    min-height: 590px;
    position: relative;
  }

  .story-visual::before {
    background: var(--sage);
    border-radius: 48% 52% 42% 58%;
    content: "";
    inset: 3.5rem 2rem -1.5rem -1.5rem;
    position: absolute;
    transform: rotate(-4deg);
  }

  .story-visual img {
    border-radius: 52% 48% 45% 55%;
    height: 590px;
    object-fit: cover;
    object-position: 62% center;
    position: relative;
    width: 100%;
  }

  .arrival-stamp {
    align-items: center;
    background: var(--cream);
    border: 2px solid var(--coral);
    border-radius: 50%;
    bottom: 1rem;
    color: var(--coral-dark);
    display: flex;
    flex-direction: column;
    height: 138px;
    justify-content: center;
    position: absolute;
    right: -1rem;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(-12deg);
    width: 138px;
  }

  .arrival-stamp::before {
    border: 1px dashed var(--coral);
    border-radius: inherit;
    content: "";
    inset: 6px;
    position: absolute;
  }

  .arrival-stamp strong {
    font-family: var(--display);
    font-size: 1.45rem;
    line-height: 1;
  }

  .arrival-stamp span,
  .arrival-stamp small {
    font-size: 0.48rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
  }

  .story-copy h2 {
    font-size: clamp(2.7rem, 4.4vw, 4.8rem);
    margin-top: 1.3rem;
  }

  .story-copy > p:not(.eyebrow):not(.story-author) {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 1.7rem;
    max-width: 580px;
  }

  .story-route {
    align-items: center;
    display: flex;
    font-family: var(--display);
    font-size: 1.35rem;
    gap: 0.7rem;
    margin-top: 2rem;
    max-width: 420px;
  }

  .story-route i {
    border-top: 1px dashed var(--line);
    flex: 1;
  }

  .story-route b {
    color: var(--coral-dark);
    font-family: var(--sans);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .story-author {
    border-left: 2px solid var(--coral);
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.55;
    margin-top: 1.5rem;
    padding-left: 1rem;
  }

  .story-author strong {
    color: var(--ink);
    font-size: 0.8rem;
  }

  .testimonial-band {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    overflow: hidden;
  }

  .marquee {
    background: var(--coral);
    color: white;
    overflow: hidden;
    transform: rotate(-1deg) scale(1.02);
  }

  .marquee div {
    animation: marquee 24s linear infinite;
    display: flex;
    gap: 2.2rem;
    padding: 0.9rem 0;
    width: max-content;
  }

  .marquee span {
    font-family: var(--display);
    font-size: 1.2rem;
    font-style: italic;
  }

  .marquee b {
    color: var(--sun);
  }

  @keyframes marquee {
    to { transform: translateX(-50%); }
  }

  .testimonials {
    padding-top: clamp(5rem, 8vw, 7.5rem);
  }

  .testimonial-controls {
    display: flex;
    gap: 0.6rem;
  }

  .testimonial-controls button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    height: 44px;
    justify-content: center;
    transition: background 180ms ease, color 180ms ease;
    width: 44px;
  }

  .testimonial-controls button:hover {
    background: var(--ink);
    color: white;
  }

  .testimonial-track {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
  }

  .testimonial-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 1.8rem;
    transition: background 250ms ease, color 250ms ease, transform 250ms ease;
  }

  .testimonial-card.is-current {
    background: var(--ink);
    color: white;
    transform: translateY(-10px);
  }

  .quote-mark {
    color: var(--coral);
    font-family: var(--display);
    font-size: 4rem;
    height: 3.5rem;
    line-height: 1;
  }

  .testimonial-card > p {
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.65vw, 1.6rem);
    font-style: italic;
    line-height: 1.35;
  }

  .testimonial-card footer {
    align-items: center;
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 2rem;
  }

  .pet-avatar {
    align-items: center;
    background: var(--sage);
    border-radius: 50%;
    color: var(--ink);
    display: flex;
    font-family: var(--display);
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .pet-avatar-coral { background: #f4a3a5; }
  .pet-avatar-gold { background: #bcd9f6; }

  .testimonial-card footer p {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
  }

  .testimonial-card footer strong {
    font-size: 0.72rem;
  }

  .testimonial-card footer small {
    color: var(--muted);
    font-size: 0.63rem;
  }

  .testimonial-card.is-current footer small {
    color: rgba(255, 255, 255, 0.55);
  }

  .faq-section {
    display: grid;
    gap: clamp(3rem, 8vw, 9rem);
    grid-template-columns: 0.8fr 1.2fr;
  }

  .faq-heading h2 {
    margin-top: 1.2rem;
  }

  .faq-heading > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 1.5rem;
    max-width: 420px;
  }

  .contact-chip {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    gap: 0.9rem;
    margin-top: 2rem;
    padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  }

  .contact-chip > span {
    align-items: center;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
  }

  .contact-chip p {
    color: var(--muted);
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .contact-chip strong {
    color: var(--ink);
    font-size: 0.7rem;
  }

  .faq-list details {
    border-top: 1px solid var(--line);
    padding: 0;
  }

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

  .faq-list summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-family: var(--display);
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
    justify-content: space-between;
    list-style: none;
    padding: 1.65rem 0;
  }

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

  .faq-list summary span {
    border: 1px solid var(--line);
    border-radius: 50%;
    height: 28px;
    position: relative;
    width: 28px;
  }

  .faq-list summary span::before,
  .faq-list summary span::after {
    background: var(--ink);
    content: "";
    height: 1px;
    left: 8px;
    position: absolute;
    top: 13px;
    width: 10px;
  }

  .faq-list summary span::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
  }

  .faq-list details[open] summary span::after {
    transform: rotate(0);
  }

  .faq-list details p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 620px;
    padding: 0 3.5rem 1.75rem 0;
  }

  .quote-section {
    background:
      radial-gradient(circle at 10% 110%, rgba(127, 188, 242, 0.22), transparent 31rem),
      var(--ink);
    color: white;
    display: grid;
    gap: clamp(3rem, 8vw, 8rem);
    grid-template-columns: 0.84fr 1.16fr;
    padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - 1450px) / 2 + 5vw));
  }

  .quote-intro h2 {
    margin-top: 1.2rem;
    max-width: 610px;
  }

  .quote-intro > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.63);
    line-height: 1.8;
    margin-top: 1.7rem;
    max-width: 500px;
  }

  .reply-note {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    gap: 0.9rem;
    margin-top: 2.5rem;
    max-width: 480px;
    padding-top: 1.5rem;
  }

  .quote-form {
    background: var(--cream);
    border-radius: 1.5rem;
    color: var(--ink);
    padding: clamp(1.4rem, 3vw, 2.5rem);
  }

  .form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .quote-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.64rem;
    font-weight: 850;
    gap: 0.5rem;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    appearance: none;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    color: var(--ink-deep);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    outline: 0;
    padding: 0.95rem 1rem;
    text-transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    width: 100%;
  }

  .quote-form select {
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
  }

  .quote-form input:focus,
  .quote-form select:focus,
  .quote-form textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(222, 18, 22, 0.12);
  }

  .quote-form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .quote-form .button {
    margin-top: 0.5rem;
    width: 100%;
  }

  .form-note {
    color: var(--muted);
    font-size: 0.59rem;
    line-height: 1.5;
    margin-top: 0.8rem;
    text-align: center;
  }

  .site-footer {
    background: var(--ink-deep);
    color: white;
    padding: 4rem 5vw 1.5rem;
  }

  .brand-light .brand-copy small {
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-top {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr auto;
    padding-bottom: 3rem;
  }

  .footer-top > p {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--display);
    font-size: 1.25rem;
    font-style: italic;
  }

  .footer-button {
    border-bottom: 1px solid var(--coral);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    padding-bottom: 0.4rem;
    text-transform: uppercase;
  }

  .footer-button span {
    color: var(--coral);
    margin-left: 0.5rem;
  }

  .footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.3fr 1.3fr 1fr 1fr 0.8fr;
    padding: 3rem 0;
  }

  .footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .footer-label {
    color: var(--coral) !important;
    font-size: 0.57rem !important;
    font-weight: 850;
    letter-spacing: 0.15em;
    margin-bottom: 0.6rem !important;
    text-transform: uppercase;
  }

  .footer-grid p,
  .footer-grid a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.72rem;
    line-height: 1.7;
    width: max-content;
  }

  .footer-grid a:hover {
    color: white;
  }

  .footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    font-size: 0.58rem;
    justify-content: space-between;
    letter-spacing: 0.07em;
    padding-top: 1.5rem;
    text-transform: uppercase;
  }

  .footer-bottom span {
    color: var(--coral);
  }

  .whatsapp-composer {
    background: #f7fafd;
    border: 1px solid rgba(1, 48, 90, 0.12);
    border-radius: 1.2rem;
    bottom: 5.8rem;
    box-shadow: 0 24px 70px rgba(1, 48, 90, 0.24);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: 1.2rem;
    transform: translateY(18px) scale(0.97);
    transform-origin: bottom right;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    width: min(370px, calc(100vw - 2rem));
    z-index: 85;
  }

  .whatsapp-composer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .whatsapp-composer-head {
    align-items: center;
    background: #075e54;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }

  .whatsapp-profile {
    align-items: center;
    display: flex;
    gap: 0.75rem;
  }

  .whatsapp-profile > span {
    align-items: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--ink);
    display: flex;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .whatsapp-profile p {
    display: flex;
    flex-direction: column;
  }

  .whatsapp-profile strong {
    font-size: 0.82rem;
  }

  .whatsapp-profile small {
    align-items: center;
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    font-size: 0.58rem;
    gap: 0.35rem;
    margin-top: 0.14rem;
  }

  .whatsapp-profile i {
    background: #69e78f;
    border-radius: 50%;
    height: 6px;
    width: 6px;
  }

  .whatsapp-composer-head > button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    font-size: 1.45rem;
    height: 36px;
    justify-content: center;
    width: 36px;
  }

  .whatsapp-composer-head > button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }

  .whatsapp-composer-body {
    background:
      radial-gradient(circle at 10% 20%, rgba(7, 94, 84, 0.035) 0 2px, transparent 2.5px) 0 0 / 24px 24px,
      #e8eff8;
    padding: 1rem;
  }

  .whatsapp-greeting {
    background: white;
    border-radius: 0.2rem 0.8rem 0.8rem 0.8rem;
    box-shadow: 0 2px 8px rgba(1, 48, 90, 0.06);
    margin-bottom: 1rem;
    max-width: 86%;
    padding: 0.75rem 0.8rem 0.55rem;
  }

  .whatsapp-greeting p {
    color: #1b3a5c;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .whatsapp-greeting small {
    color: #8496aa;
    display: block;
    font-size: 0.5rem;
    margin-top: 0.25rem;
    text-align: right;
  }

  .whatsapp-composer-body > label {
    color: #4a5f75;
    display: block;
    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
  }

  .whatsapp-composer textarea {
    background: white;
    border: 1px solid rgba(1, 48, 90, 0.14);
    border-radius: 0.75rem;
    color: #1b3a5c;
    font-size: 0.8rem;
    line-height: 1.5;
    min-height: 112px;
    outline: 0;
    padding: 0.8rem;
    resize: vertical;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    width: 100%;
  }

  .whatsapp-composer textarea:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
  }

  .whatsapp-composer textarea.is-empty {
    border-color: var(--coral);
  }

  .whatsapp-compose-meta {
    color: #6d8098;
    display: flex;
    font-size: 0.5rem;
    justify-content: space-between;
    margin: 0.35rem 0 0.75rem;
  }

  .whatsapp-send {
    align-items: center;
    background: #25d366;
    border: 0;
    border-radius: 999px;
    color: #022746;
    cursor: pointer;
    display: flex;
    font-size: 0.68rem;
    font-weight: 900;
    gap: 0.65rem;
    justify-content: center;
    letter-spacing: 0.035em;
    min-height: 47px;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease;
    width: 100%;
  }

  .whatsapp-send:hover {
    background: #55e183;
    transform: translateY(-1px);
  }

  .whatsapp-send svg {
    fill: currentColor;
    height: 19px;
    width: 19px;
  }

  .whatsapp-float {
    align-items: center;
    background: #25d366;
    border: 4px solid var(--cream);
    border-radius: 50%;
    bottom: 1.2rem;
    box-shadow: 0 10px 28px rgba(1, 48, 90, 0.24);
    display: flex;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 1.2rem;
    transition: transform 180ms ease;
    width: 58px;
    z-index: 80;
  }

  .whatsapp-float:hover {
    transform: translateY(-4px) rotate(3deg);
  }

  .whatsapp-float[aria-expanded="true"] {
    background: #075e54;
    transform: rotate(-8deg);
  }

  .whatsapp-float svg {
    fill: white;
    height: 29px;
    width: 29px;
  }

  .whatsapp-dock {
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.9rem;
    position: fixed;
    right: 1.5rem;
    z-index: 80;
  }

  .whatsapp-dock .whatsapp-float {
    border: 0;
    cursor: pointer;
    position: static;
  }

  .whatsapp-composer {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    box-shadow: 0 26px 60px rgba(1, 48, 90, 0.22);
    display: grid;
    gap: 0.85rem;
    opacity: 0;
    padding: 1.1rem;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 180ms ease, transform 180ms ease;
    width: min(21rem, calc(100vw - 3rem));
  }

  .whatsapp-composer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .whatsapp-composer-head {
    align-items: start;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
  }

  .whatsapp-composer-head strong {
    display: block;
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .whatsapp-composer-head span {
    color: var(--muted);
    font-size: 0.72rem;
  }

  .whatsapp-composer-close {
    background: var(--cream);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    height: 30px;
    line-height: 1;
    width: 30px;
  }

  .whatsapp-composer textarea {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    color: var(--ink-deep);
    font-size: 0.86rem;
    line-height: 1.55;
    outline: 0;
    padding: 0.8rem 0.9rem;
    resize: vertical;
    width: 100%;
  }

  .whatsapp-composer textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(222, 18, 22, 0.12);
  }

  .whatsapp-composer textarea.is-empty {
    border-color: var(--coral);
  }

  .whatsapp-composer-foot {
    align-items: center;
    display: flex;
    gap: 0.9rem;
    justify-content: space-between;
  }

  .whatsapp-composer-foot > span {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .whatsapp-composer-foot .button {
    background: #25d366;
    min-height: 42px;
  }

  .whatsapp-composer-foot .button:hover {
    background: #1da851;
  }

  /* Enquiry form: dual send routes */
  .form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  .form-actions .button {
    flex: 1 1 14rem;
    margin-top: 0;
  }

  .button-outline {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
  }

  .button-outline:hover {
    background: var(--cream);
    border-color: var(--ink);
  }

  .form-status {
    border-radius: 0.7rem;
    font-size: 0.82rem;
    line-height: 1.55;
    margin-top: 0.9rem;
    padding: 0.75rem 0.9rem;
  }

  .form-status[data-state="pending"] {
    background: var(--cream-deep);
    color: var(--ink);
  }

  .form-status[data-state="success"] {
    background: #e6f6ec;
    color: #14603a;
  }

  .form-status[data-state="error"] {
    background: #fdecec;
    color: var(--coral-dark);
  }

  .why-card {
    background: var(--ink-deep);
    border: 1px solid var(--ink-deep);
    border-radius: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 1.9rem 1.65rem;
  }

  .why-card h3 {
    font-size: 1.6rem;
    line-height: 1.05;
    max-width: 14ch;
  }

  .why-card ul {
    display: grid;
    gap: 0.7rem;
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
  }

  .why-card li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
    padding-left: 1.6rem;
    position: relative;
  }

  .why-card li::before {
    color: var(--sun);
    content: "✦";
    font-size: 0.7rem;
    left: 0;
    position: absolute;
    top: 0.1rem;
  }

  .why-sign {
    color: var(--sun);
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin-top: auto;
    padding-top: 1.8rem;
  }

  /* Navigation dropdowns */
  .nav-group {
    position: relative;
  }

  .nav-trigger {
    align-items: center;
    background: none;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.79rem;
    font-weight: 750;
    gap: 0.35rem;
    padding: 0;
  }

  .nav-panel a::after {
    content: none;
  }

  .nav-trigger span {
    display: inline-block;
    font-size: 0.62em;
    transition: transform 180ms ease;
  }

  .nav-group.is-open .nav-trigger span {
    transform: rotate(180deg);
  }

  .nav-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 22px 48px rgba(1, 71, 127, 0.16);
    display: grid;
    gap: 0.15rem;
    left: 50%;
    min-width: 15rem;
    opacity: 0;
    padding: 0.6rem;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 0.9rem);
    transform: translate(-50%, -6px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 60;
  }

  .nav-group:hover .nav-panel,
  .nav-group.is-open .nav-panel,
  .nav-group:focus-within .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-panel a {
    border-radius: 0.65rem;
    font-size: 0.82rem;
    font-weight: 650;
    display: block;
    letter-spacing: 0.02em;
    padding: 0.6rem 0.8rem;
    text-transform: none;
    transition: background 150ms ease, color 150ms ease;
  }

  .nav-panel a:hover,
  .nav-panel a[aria-current="page"] {
    background: var(--sky);
    color: var(--ink-deep);
  }

  .mobile-menu-label {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    margin-top: 1.1rem;
    text-transform: uppercase;
  }

  /* Interior page hero */
  .page-hero {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: 1.02fr 0.98fr;
    margin-inline: auto;
    max-width: 1450px;
    padding: clamp(3.5rem, 7vw, 6.5rem) 5vw clamp(3rem, 6vw, 5rem);
  }

  .page-hero h1 {
    font-family: var(--display);
    font-size: clamp(2.9rem, 5.4vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin-top: 1.2rem;
    max-width: 15ch;
  }

  .page-hero h1 em {
    color: var(--coral);
    display: block;
    font-style: italic;
  }

  .page-hero-intro {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1.5rem;
    max-width: 46ch;
  }

  .page-hero .hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.2rem;
  }

  .page-hero-visual {
    border-radius: 9rem 1.75rem 1.75rem 1.75rem;
    min-height: 480px;
    overflow: hidden;
    position: relative;
  }

  .page-hero-visual img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 48%;
    position: absolute;
    width: 100%;
  }

  .page-hero-compact {
    grid-template-columns: 1fr;
  }

  .page-hero-compact .page-hero-copy {
    max-width: 900px;
  }

  /* Numbered feature grid */
  .handle-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4rem;
  }

  .handle-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    padding: 1.6rem 1.5rem 1.8rem;
    transition: box-shadow 220ms ease, transform 220ms ease;
  }

  .handle-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
  }

  .handle-num {
    color: var(--coral-dark);
    display: block;
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.11em;
  }

  .handle-card h3 {
    font-size: 1.32rem;
    line-height: 1.12;
    margin-block: 0.9rem 0.6rem;
  }

  .handle-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
  }

  /* Country grid */
  .country-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 4rem 0 0;
    padding: 0;
  }

  .country-grid li {
    align-items: baseline;
    background: var(--sky);
    border-radius: 1.2rem;
    display: flex;
    gap: 0.9rem;
    justify-content: space-between;
    padding: 1.35rem 1.5rem;
    transition: background 200ms ease;
  }

  .country-grid li:hover {
    background: var(--sage);
  }

  .country-grid strong {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.03em;
  }

  .country-grid span {
    color: var(--coral-dark);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .country-more {
    background: var(--ink) !important;
    color: white;
  }

  .country-more:hover {
    background: var(--ink-deep) !important;
  }

  .country-more span {
    color: var(--sun);
  }

  /* Split feature */
  .split-feature {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: 0.85fr 1.15fr;
  }

  .split-visual {
    border-radius: 1.75rem;
    min-height: 520px;
    overflow: hidden;
    position: relative;
  }

  .split-visual img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 48%;
    position: absolute;
    width: 100%;
  }

  .split-copy h2 {
    margin-block: 1.1rem 1.4rem;
  }

  .split-copy > p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
    max-width: 52ch;
  }

  .tick-list {
    display: grid;
    gap: 0.85rem;
    list-style: none;
    margin: 1.9rem 0 2.2rem;
    padding: 0;
  }

  .tick-list li {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.9rem;
    position: relative;
  }

  .tick-list li::before {
    color: var(--coral);
    content: "✓";
    font-weight: 850;
    left: 0;
    position: absolute;
    top: -0.05rem;
  }

  /* Veterinary services grid */
  .vet-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
  }

  .vet-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    padding: 1.5rem;
    transition: border-color 200ms ease, transform 200ms ease;
  }

  .vet-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
  }

  .vet-card h3 {
    font-size: 1.22rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
  }

  .vet-card p {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .panel-title {
    font-size: 1.9rem;
    margin-bottom: 1.6rem;
  }

  /* CTA band */
  .cta-band {
    margin-inline: auto;
    max-width: 1450px;
    padding: 0 5vw clamp(4rem, 8vw, 7rem);
  }

  .cta-band-inner {
    align-items: center;
    background: var(--ink);
    border-radius: 1.75rem;
    color: white;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr auto;
    padding: clamp(2rem, 4vw, 3.4rem);
  }

  .cta-band-inner h2 {
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    line-height: 1.02;
  }

  .cta-band-inner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 0.9rem;
    max-width: 52ch;
  }

  /* Contact methods */
  .contact-methods {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.6rem;
    max-width: 900px;
  }

  .contact-method {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.3rem;
    display: block;
    padding: 1.5rem;
    transition: border-color 200ms ease, transform 200ms ease;
  }

  .contact-method:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
  }

  .contact-method-label {
    color: var(--coral-dark);
    display: block;
    font-size: 0.56rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
  }

  .contact-method strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(1.02rem, 1.35vw, 1.3rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }

  .contact-method > span:last-child {
    color: var(--muted);
    display: block;
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }

  .desktop-nav a[aria-current="page"] {
    color: var(--coral-dark);
  }

  /* Notice band */
  .notice-band {
    background: #fdecec;
    border-left: 4px solid var(--coral);
    border-radius: 1.4rem;
    margin-inline: auto;
    max-width: 1450px;
    padding: 1.5rem clamp(1.4rem, 3vw, 2.4rem);
    width: calc(100% - 10vw);
  }

  .notice-band p {
    color: rgba(1, 48, 90, 0.86);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-inline: auto;
    max-width: 78ch;
  }

  .notice-band strong {
    color: var(--ink-deep);
  }

  .notice-band-inline {
    margin-top: 2.5rem;
    width: 100%;
  }

  /* Ordered step list */
  .step-list {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 4rem 0 0;
    padding: 0;
  }

  .step-list li {
    border-top: 1px solid var(--line);
    display: grid;
    gap: clamp(1rem, 4vw, 3.5rem);
    grid-template-columns: 5rem 1fr;
    padding: 2rem 0;
  }

  .step-list li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .step-index {
    color: var(--coral-dark);
    font-family: var(--display);
    font-size: 1.6rem;
    letter-spacing: -0.04em;
  }

  .step-list h3 {
    font-size: 1.55rem;
    line-height: 1.1;
    margin-bottom: 0.7rem;
  }

  .step-list p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 62ch;
  }

  .step-when {
    color: var(--ink) !important;
    font-size: 0.58rem !important;
    font-weight: 850;
    letter-spacing: 0.11em;
    margin-top: 0.9rem;
    text-transform: uppercase;
  }

  /* About page */
  .mission-quote {
    border-left: 3px solid var(--coral);
    color: var(--ink-deep);
    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    letter-spacing: -0.025em;
    line-height: 1.35;
    margin: 0 0 1.6rem;
    padding-left: 1.5rem;
  }

  .team-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
  }

  .team-card {
    background: var(--sky);
    border-radius: 1.4rem;
    padding: 1.7rem 1.6rem 2rem;
  }

  .team-role {
    color: var(--coral-dark);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
  }

  .team-card h3 {
    font-size: 1.5rem;
    line-height: 1.12;
  }

  .team-card-wide h3 {
    font-size: 1.12rem;
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.55;
  }

  .proof-split {
    display: grid;
    gap: clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: 1fr 1fr;
  }

  .proof-block h2 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    margin-block: 1rem 1.6rem;
  }

  /* Success stories */
  .journey-gallery.journey-gallery-wide {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3.5rem;
  }

  .story-notes {
    columns: 2;
    column-gap: 3rem;
    margin-top: 3.5rem;
  }

  .story-note {
    break-inside: avoid;
    border-top: 1px solid var(--line);
    margin-bottom: 1.6rem;
    padding-top: 1.1rem;
  }

  .story-note-route {
    font-family: var(--display);
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
  }

  .story-note p:last-child {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.65;
  }

  .story-note-tags {
    color: var(--coral-dark);
    font-size: 0.58rem !important;
    font-weight: 850;
    letter-spacing: 0.11em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  .story-feedback {
    border-left: 2px solid var(--coral);
    font-family: var(--display);
    font-size: 0.98rem;
    letter-spacing: -0.015em;
    line-height: 1.5;
    margin: 0.9rem 0 0;
    padding-left: 0.9rem;
  }

  .story-feedback cite {
    color: var(--muted);
    display: block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-style: normal;
    margin-top: 0.5rem;
  }

  /* Latest blog posts */
  .latest-grid {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4rem;
  }

  .latest-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: box-shadow 220ms ease, transform 220ms ease;
  }

  .latest-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
  }

  .latest-card-image {
    overflow: hidden;
  }

  .latest-card-image img {
    display: block;
    height: 210px;
    object-fit: cover;
    object-position: center 52%;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }

  .latest-card:hover .latest-card-image img {
    transform: scale(1.04);
  }

  .latest-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.4rem 1.4rem 1.5rem;
  }

  .latest-card h3 {
    display: -webkit-box;
    font-size: 1.3rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.16;
    margin-block: 0.65rem 0.55rem;
    min-height: 2.32em;
    overflow: hidden;
  }

  /* one link per card, stretched over the whole surface */
  .latest-card h3 a::after {
    content: "";
    inset: 0;
    position: absolute;
  }

  .latest-card-summary {
    color: var(--muted);
    display: -webkit-box;
    font-size: 0.86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    line-height: 1.65;
    overflow: hidden;
  }

  .latest-card-more {
    border-top: 1px solid var(--line);
    color: var(--coral-dark);
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    margin-top: auto;
    padding-top: 1.1rem;
    text-transform: uppercase;
  }

  .latest-more {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
  }

  .about-band {
    padding-bottom: 0;
  }

  /* Testimonials */
  .rating-card {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 2.4rem;
    max-width: 820px;
    padding: 1.6rem 1.8rem;
  }

  .rating-score {
    border-right: 1px solid var(--line);
    padding-right: 1.6rem;
  }

  .rating-score strong {
    display: block;
    font-family: var(--display);
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .rating-score .stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .rating-card > p {
    color: var(--muted);
    flex: 1 1 15rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .review-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5rem;
  }

  .review-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    padding: 1.8rem;
  }

  .review-card p {
    font-family: var(--display);
    font-size: 1.08rem;
    letter-spacing: -0.015em;
    line-height: 1.5;
  }

  .review-card footer {
    border-top: 1px solid var(--line);
    margin-top: 1.4rem;
    padding-top: 1.1rem;
  }

  .review-card footer strong {
    display: block;
    font-size: 0.88rem;
  }

  .review-card footer small {
    color: var(--muted);
    font-size: 0.75rem;
  }

  /* Full FAQ page */
  .faq-section-full {
    display: block;
  }

  .faq-list-full {
    margin-inline: auto;
    max-width: 940px;
  }

  /* Blog */
  .post-list {
    display: grid;
    gap: 1.2rem;
  }

  .post-card {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    display: grid;
    gap: clamp(1.2rem, 3vw, 2.6rem);
    grid-template-columns: 0.36fr 1fr;
    overflow: hidden;
    padding: 1rem;
    transition: box-shadow 220ms ease, transform 220ms ease;
  }

  .post-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
  }

  .post-card-image {
    border-radius: 1.15rem;
    display: block;
    overflow: hidden;
  }

  .post-card-image img {
    height: 230px;
    object-fit: cover;
    object-position: center 52%;
    width: 100%;
  }

  .post-card-copy {
    padding: 0.5rem clamp(0.5rem, 2vw, 1.6rem) 0.5rem 0;
  }

  .post-card-meta {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .post-card h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.08;
    margin-block: 0.9rem 0.7rem;
    max-width: 24ch;
  }

  .post-card > .post-card-copy > p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    max-width: 58ch;
  }

  .post {
    margin-inline: auto;
    max-width: 1450px;
    padding: clamp(3rem, 6vw, 5rem) 5vw 0;
  }

  .post-header {
    margin-inline: auto;
    max-width: 780px;
  }

  .post-header h1 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.02;
    margin-top: 1.1rem;
  }

  .post-header .eyebrow a {
    border-bottom: 1px solid currentColor;
  }

  .post-summary {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1.4rem;
  }

  .post-meta {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    margin-top: 1.4rem;
    text-transform: uppercase;
  }

  .post-image {
    border-radius: 1.75rem;
    margin: 3rem auto 0;
    max-width: 1100px;
    overflow: hidden;
  }

  .post-image img {
    height: clamp(240px, 34vw, 460px);
    object-fit: cover;
    object-position: center 55%;
    width: 100%;
  }

  .post-body {
    margin: 3.2rem auto 0;
    max-width: 720px;
  }

  .post-body h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    line-height: 1.1;
    margin: 2.8rem 0 1rem;
  }

  .post-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 0.7rem;
  }

  .post-body p {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.15rem;
  }

  .post-body ul,
  .post-body ol {
    display: grid;
    gap: 0.6rem;
    margin: 0 0 1.6rem;
    padding-left: 1.35rem;
  }

  .post-body li {
    line-height: 1.75;
  }

  .post-body a {
    border-bottom: 1px solid var(--coral);
    color: var(--coral-dark);
    font-weight: 600;
  }

  .post-body strong {
    font-weight: 700;
  }

  .post-footer {
    border-top: 1px solid var(--line);
    margin: 3.2rem auto 0;
    max-width: 720px;
    padding: 1.8rem 0 0;
  }

  .post-footer p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
  }

  /* Find us */
  .location-card {
    align-items: stretch;
    display: grid;
    gap: clamp(1.5rem, 4vw, 4rem);
    grid-template-columns: 0.82fr 1.18fr;
  }

  .location-copy {
    align-self: center;
  }

  .location-intro {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 1.5rem;
    max-width: 42ch;
  }

  .location-details {
    display: grid;
    gap: 1.3rem;
    margin: 2rem 0 2.2rem;
  }

  .location-details > div {
    border-top: 1px solid var(--line);
    padding-top: 1.1rem;
  }

  .location-details dt {
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
  }

  .location-details dd {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
  }

  .location-details a {
    border-bottom: 1px solid var(--line);
    transition: border-color 180ms ease;
  }

  .location-details a:hover {
    border-color: var(--coral);
  }

  .map-frame {
    background: var(--sky);
    border: 1px solid var(--line);
    border-radius: 1.75rem;
    min-height: 520px;
    overflow: hidden;
    position: relative;
  }

  .map-frame iframe {
    border: 0;
    display: block;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
  }

  /* Recent journeys */
  .journey-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 4rem;
  }

  .journey-shot {
    border-radius: 1.4rem;
    margin: 0;
    min-height: 400px;
    overflow: hidden;
    position: relative;
  }

  .journey-shot img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 58%;
    position: absolute;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }

  .journey-shot:hover img {
    transform: scale(1.05);
  }

  .journey-shot figcaption {
    background: linear-gradient(transparent, rgba(1, 48, 90, 0.88) 62%);
    bottom: 0;
    color: white;
    inset-inline: 0;
    padding: 3rem 1.1rem 1.15rem;
    position: absolute;
  }

  .journey-shot strong {
    display: block;
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: -0.03em;
  }

  .journey-shot span {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    margin-top: 0.3rem;
    text-transform: uppercase;
  }

  /* Pet hotel */
  .hotel-layout {
    align-items: start;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    grid-template-columns: 1.05fr 0.95fr;
    margin-top: 4.5rem;
  }

  .hotel-collage {
    display: grid;
    gap: 1rem;
    grid-template-areas:
      "main side-a"
      "main side-b";
    grid-template-columns: 1.25fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .hotel-collage figure {
    border-radius: 1.5rem;
    margin: 0;
    overflow: hidden;
    position: relative;
  }

  .hotel-collage img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }

  .hotel-collage figure:hover img {
    transform: scale(1.04);
  }

  .collage-main {
    grid-area: main;
    min-height: 500px;
  }

  .collage-main img {
    object-position: center 45%;
  }

  .collage-main figcaption {
    align-items: center;
    background: rgba(255, 255, 255, 0.93);
    border-radius: 999px;
    bottom: 1rem;
    display: flex;
    gap: 0.7rem;
    inset-inline: 1rem;
    padding: 0.75rem 1.1rem;
    position: absolute;
  }

  .collage-main figcaption p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .collage-main figcaption strong {
    font-family: var(--display);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .collage-side:nth-of-type(2) {
    grid-area: side-a;
  }

  .collage-side:nth-of-type(3) {
    grid-area: side-b;
  }

  .collage-side {
    min-height: 242px;
  }

  .collage-side img {
    object-position: center 45%;
  }

  .collage-side:nth-of-type(2) img {
    object-position: center 38%;
  }

  .collage-side figcaption {
    background: rgba(1, 71, 127, 0.72);
    bottom: 0;
    color: white;
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    padding: 0.7rem 0.9rem;
    position: absolute;
    text-transform: uppercase;
    width: 100%;
  }

  .hotel-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    padding: clamp(1.4rem, 2.6vw, 2.2rem);
  }

  .hotel-includes {
    display: grid;
    gap: 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hotel-includes li {
    display: flex;
    gap: 1rem;
  }

  .include-icon {
    align-items: center;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    flex: none;
    height: 46px;
    justify-content: center;
    width: 46px;
  }

  .include-icon svg {
    fill: none;
    height: 23px;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 23px;
  }

  .hotel-includes strong {
    display: block;
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 0.2rem;
  }

  .hotel-includes p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .hotel-hours {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
    margin-top: 1.9rem;
    padding-top: 1.6rem;
  }

  .hotel-hours strong {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .hours-label {
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
  }

  .hotel-panel .button {
    margin-top: 1.9rem;
    width: 100%;
  }

  .stay-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 1.5rem;
  }

  .stay-card {
    background: var(--sky);
    border-radius: 1.5rem;
    padding: 1.5rem 1.4rem 1.7rem;
    transition: background 220ms ease, transform 220ms ease;
  }

  .stay-card:hover {
    background: var(--sage);
    transform: translateY(-5px);
  }

  .stay-tag {
    color: var(--coral-dark);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .stay-card h3 {
    font-size: 1.35rem;
    margin-block: 0.7rem 0.5rem;
  }

  .stay-card > p:last-child {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .hotel-transfer {
    align-items: center;
    background: var(--ink);
    border-radius: 1.75rem;
    color: white;
    display: grid;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    grid-template-columns: 0.62fr 1fr;
    margin-top: 1.5rem;
    overflow: hidden;
    padding: 1rem;
  }

  .transfer-image {
    border-radius: 1.35rem;
    overflow: hidden;
  }

  .transfer-image img {
    height: 300px;
    object-fit: cover;
    object-position: center 52%;
    width: 100%;
  }

  .transfer-copy {
    padding: 1rem clamp(0.5rem, 2vw, 2rem) 1rem 0;
  }

  .transfer-copy h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
    line-height: 1.08;
    margin-block: 1rem 0.9rem;
    max-width: 22ch;
  }

  .transfer-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 46ch;
  }

  .transfer-copy .eyebrow {
    color: rgba(255, 255, 255, 0.6);
  }

  .transfer-copy .eyebrow > span {
    background: var(--sun);
  }

  .transfer-copy .text-link {
    color: var(--sun);
    margin-top: 0.8rem;
  }
}

@layer utilities {
  .sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

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

  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .reveal[data-delay="1"] { transition-delay: 90ms; }
  .js .reveal[data-delay="2"] { transition-delay: 180ms; }
  .js .reveal[data-delay="3"] { transition-delay: 270ms; }

  .js .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  [hidden] {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .journey-gallery.journey-gallery-wide,
  .review-grid,
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .handle-grid,
  .vet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .desktop-nav {
    gap: 1.2rem;
  }

  .stay-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-nav a,
  .nav-trigger {
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  }

  .hero-copy {
    padding-left: 4vw;
    padding-right: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  .boarding-pass {
    left: -2rem;
  }
}

@media (max-width: 980px) {
  .latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-split {
    grid-template-columns: 1fr;
  }

  .journey-gallery.journey-gallery-wide,
  .review-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-notes {
    columns: 1;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .post-card-image img {
    height: 220px;
  }

  .post-card-copy {
    padding: 0 1rem 1rem;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    border-radius: 5rem 1.5rem 1.5rem 1.5rem;
    min-height: 380px;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-visual {
    min-height: 380px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

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

  .location-card {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 420px;
  }

  .why-card {
    min-height: 0;
  }

  .hotel-layout {
    grid-template-columns: 1fr;
  }

  .hotel-transfer {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 1.75rem;
  }

  .transfer-image img {
    height: 260px;
  }

  .transfer-copy {
    padding: 0 1rem 0.5rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 74px;
    padding-inline: 1.35rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 43px;
    justify-content: center;
    width: 43px;
    z-index: 102;
  }

  .menu-button span:not(.sr-only) {
    background: var(--ink);
    height: 1.5px;
    transition: transform 180ms ease;
    width: 17px;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    background: var(--cream);
    display: block;
    inset: 74px 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    transition: max-height 350ms ease, opacity 250ms ease;
  }

  .mobile-menu.is-open {
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(1, 48, 90, 0.13);
    max-height: calc(100svh - 74px);
    opacity: 1;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.35rem 2rem;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.7rem;
    padding: 0.75rem 0;
  }

  .mobile-menu a:last-child {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 999px;
    color: white;
    display: flex;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 850;
    justify-content: center;
    letter-spacing: 0.05em;
    margin-top: 1.25rem;
    min-height: 50px;
    text-transform: uppercase;
  }

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

  .hero-copy {
    padding: 5rem 5vw 4rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 11vw, 7rem);
    max-width: 800px;
  }

  .hero-visual {
    min-height: 620px;
    padding: 0 1.2rem 1.2rem;
  }

  .hero-image-wrap {
    border-radius: 7rem 1.5rem 1.5rem 1.5rem;
  }

  .boarding-pass {
    bottom: 3.5rem;
    left: 3rem;
  }

  .hero-scroll {
    display: none;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .trust-items {
    gap: 1.5rem 2.2rem;
  }

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

  .service-card-featured {
    grid-column: 1 / -1;
  }

  .journey,
  .quote-section {
    gap: 4rem;
    grid-template-columns: 1fr;
    padding-inline: 5vw;
  }

  .destination-card {
    grid-template-columns: 1fr;
  }

  .route-board {
    border-radius: 7rem 7rem 0 0;
    min-height: 520px;
  }

  .story-section {
    gap: 5rem;
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: auto;
  }

  .faq-section {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .latest-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .step-list li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .journey-gallery.journey-gallery-wide,
  .review-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .rating-score {
    border-right: 0;
    padding-right: 0;
  }

  .notice-band {
    border-radius: 1.2rem;
    width: calc(100% - 2.5rem);
  }

  .handle-grid,
  .vet-grid,
  .country-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .page-hero-visual {
    border-radius: 3.5rem 1.2rem 1.2rem 1.2rem;
    min-height: 320px;
  }

  .map-frame {
    border-radius: 1.2rem;
    min-height: 340px;
  }

  .journey-gallery {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  .journey-shot {
    min-height: 280px;
  }

  .destination-note {
    max-width: none;
  }

  .hotel-layout {
    margin-top: 3rem;
  }

  .hotel-collage {
    grid-template-areas:
      "main main"
      "side-a side-b";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .collage-main {
    min-height: 340px;
  }

  .collage-side {
    min-height: 168px;
  }

  .hotel-hours {
    grid-template-columns: 1fr;
  }

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

  h2 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .hero-copy {
    padding: 4rem 1.25rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.5rem);
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    flex-wrap: wrap;
  }

  .stars {
    margin-left: 0;
  }

  .hero-visual {
    min-height: 510px;
    padding-inline: 0.65rem;
  }

  .hero-image-wrap {
    border-radius: 4.5rem 1.2rem 1.2rem 1.2rem;
  }

  .hero-image-wrap img {
    object-position: 61% center;
  }

  .boarding-pass {
    bottom: 2rem;
    left: 1.3rem;
    padding: 1rem;
    width: calc(100% - 2.6rem);
  }

  .pass-route strong {
    font-size: 1.75rem;
  }

  .care-note {
    right: 1rem;
    top: 1rem;
  }

  .trust-strip {
    padding: 1.5rem 1.25rem;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .section {
    padding: 5rem 1.25rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-heading > p {
    font-size: 0.88rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .service-card-featured {
    grid-column: auto;
  }

  .service-card {
    min-height: 385px;
  }

  .journey,
  .quote-section {
    padding: 5rem 1.25rem;
  }

  .journey-steps button {
    grid-template-columns: 2rem 1fr 2rem;
  }

  .step-detail {
    padding-left: 3rem;
  }

  .destination-card {
    border-radius: 1.4rem;
  }

  .destination-copy {
    padding: 3rem 1.5rem;
  }

  .route-board {
    border-radius: 4rem 4rem 0 0;
    min-height: 420px;
  }

  .route-origin {
    left: 12%;
  }

  .destination-pill {
    font-size: 0.82rem;
  }

  .pill-one { right: 6%; top: 6%; }
  .pill-two { right: 4%; top: 33%; }
  .pill-three { right: 7%; top: 62%; }
  .pill-four { bottom: 6%; left: 8%; }
  .pill-five { left: 6%; top: 8%; }
  .pill-six { left: 34%; top: 20%; }
  .pill-seven { left: 8%; top: 30%; }
  .pill-eight { left: 30%; top: 62%; }

  .story-section {
    gap: 4rem;
  }

  .story-visual img {
    height: 460px;
  }

  .story-visual::before {
    inset: 2rem 1rem -1rem -0.5rem;
  }

  .arrival-stamp {
    bottom: -1.5rem;
    right: -0.3rem;
  }

  .testimonial-controls {
    align-self: flex-end;
  }

  .testimonial-track {
    display: flex;
    margin-right: -1.25rem;
    overflow-x: auto;
    padding: 0.75rem 1.25rem 1.5rem 0;
    scroll-snap-type: x mandatory;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .testimonial-card.is-current {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    border-radius: 1.2rem;
  }

  .footer-top {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .whatsapp-composer {
    bottom: 5.3rem;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .pass-meta {
    gap: 1rem;
  }

  .care-note {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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