:root {
      --paper: #faf8f2;
      --surface: #ffffff;
      --ink: #20282a;
      --muted: #657172;
      --line: #dfe5df;
      --teal: #0f6466;
      --teal-dark: #0b3f42;
      --olive: #687a4d;
      --clay: #b05a45;
      --gold: #bd9147;
      --sea: #157f8c;
      --shadow: 0 18px 45px rgba(23, 36, 38, .12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
    }

    a {
      color: inherit;
    }

    button,
    select,
    input {
      font: inherit;
    }

    .is-hidden {
      display: none !important;
    }

    .language-screen {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      color: #fff;
      background: #0d3e42;
    }

    .language-screen__image,
    .guide-hero__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .language-screen::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7, 36, 39, .92), rgba(7, 36, 39, .62) 48%, rgba(7, 36, 39, .3)),
        linear-gradient(0deg, rgba(7, 36, 39, .82), rgba(7, 36, 39, 0) 52%);
    }

    .language-inner {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: center;
      min-height: 100svh;
      width: min(1040px, calc(100% - 32px));
      margin: 0 auto;
      padding: 52px 0;
    }

    .kicker {
      margin: 0 0 14px;
      color: #f0d290;
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }

    p {
      overflow-wrap: anywhere;
    }

    .language-title {
      max-width: 760px;
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 500;
      line-height: .95;
    }

    .language-copy {
      max-width: 620px;
      margin: 20px 0 32px;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .language-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      width: min(760px, 100%);
    }

    .language-button {
      min-height: 58px;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 8px;
      color: #fff;
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(12px);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      text-align: left;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .language-button:hover,
    .language-button:focus-visible {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, .2);
      border-color: rgba(255, 255, 255, .7);
      outline: none;
    }

    .language-button small {
      display: block;
      color: rgba(255, 255, 255, .72);
      font-size: .76rem;
    }

    .language-button span:last-child {
      color: #f0d290;
      font-weight: 800;
    }

    .language-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .ghost-link,
    .solid-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 8px;
      padding: 10px 15px;
      font-weight: 800;
      text-decoration: none;
    }

    .ghost-link {
      border: 1px solid rgba(255, 255, 255, .34);
      color: #fff;
      background: rgba(255, 255, 255, .1);
    }

    .solid-link {
      border: 1px solid var(--teal);
      color: #fff;
      background: var(--teal);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px max(18px, calc((100vw - 1120px) / 2));
      border-bottom: 1px solid rgba(223, 229, 223, .88);
      background: rgba(250, 248, 242, .94);
      backdrop-filter: blur(14px);
    }

    .brand {
      min-width: 128px;
      color: var(--teal-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.25rem;
      font-weight: 700;
      text-decoration: none;
      white-space: nowrap;
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .language-select {
      min-height: 40px;
      max-width: 180px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--ink);
      background: #fff;
      padding: 8px 32px 8px 10px;
    }

    .whatsapp-link {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: #fff;
      background: #1c7d5b;
      padding: 8px 12px;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }

    .guide-hero {
      position: relative;
      min-height: 48svh;
      color: #fff;
      overflow: hidden;
      background: #0b3f42;
    }

    .guide-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(4, 28, 31, .88), rgba(4, 28, 31, .48) 54%, rgba(4, 28, 31, .18)),
        linear-gradient(0deg, rgba(4, 28, 31, .78), rgba(4, 28, 31, 0) 60%);
    }

    .guide-hero__content {
      position: relative;
      z-index: 1;
      width: min(1120px, calc(100% - 36px));
      margin: 0 auto;
      padding: 68px 0 54px;
    }

    .guide-hero h1 {
      max-width: 760px;
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.8rem, 7vw, 5.4rem);
      font-weight: 500;
      line-height: .98;
      text-wrap: balance;
    }

    .guide-hero p {
      max-width: 680px;
      margin: 20px 0 0;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(1rem, 2vw, 1.18rem);
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      width: min(1120px, calc(100% - 36px));
      margin: -34px auto 0;
      position: relative;
      z-index: 2;
    }

    .quick-card {
      min-height: 128px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    .quick-card strong {
      display: block;
      color: var(--teal-dark);
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .quick-card p {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: .95rem;
    }

    .quick-card a {
      color: var(--teal);
      font-weight: 800;
      text-decoration: none;
    }

    .jump-nav {
      position: sticky;
      top: 65px;
      z-index: 8;
      width: 100%;
      overflow-x: auto;
      border-bottom: 1px solid var(--line);
      background: rgba(250, 248, 242, .95);
      backdrop-filter: blur(12px);
    }

    .jump-nav__inner {
      display: flex;
      gap: 8px;
      width: min(1120px, calc(100% - 36px));
      margin: 0 auto;
      padding: 12px 0;
    }

    .jump-nav a {
      min-height: 38px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--ink);
      background: #fff;
      padding: 8px 12px;
      font-size: .92rem;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }

    .photo-band {
      width: min(1120px, calc(100% - 36px));
      margin: 26px auto 0;
    }

    .photo-band--inline {
      width: 100%;
      margin: 28px 0 0;
    }

    .photo-band__inner {
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 8px 24px rgba(23, 36, 38, .08);
      padding: clamp(20px, 4vw, 30px);
    }

    .photo-band--inline .photo-band__inner {
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .photo-band h2 {
      margin: 0;
      color: var(--teal-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.55rem, 4vw, 2.1rem);
      font-weight: 600;
      line-height: 1.08;
    }

    .photo-band p:not(.section-kicker) {
      max-width: 760px;
      margin: 10px 0 18px;
      color: var(--muted);
    }

    .photo-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .photo-item {
      position: relative;
      min-height: 0;
      margin: 0;
      overflow: hidden;
      border-radius: 8px;
      background: #dfe5df;
      aspect-ratio: 4 / 3;
    }

    .photo-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    .photo-item img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .photo-item figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 28px 12px 10px;
      color: #fff;
      background: linear-gradient(0deg, rgba(5, 26, 29, .78), rgba(5, 26, 29, 0));
      font-size: .88rem;
      font-weight: 900;
      text-shadow: 0 1px 8px rgba(0, 0, 0, .34);
    }

    .trip-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .trip-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: inherit;
      background: #fffdf8;
      text-decoration: none;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .trip-card:hover,
    .trip-card:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(23, 36, 38, .14);
      outline: none;
    }

    .trip-card__image {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #dfe5df;
    }

    .trip-card__image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .trip-card__time {
      position: absolute;
      left: 10px;
      bottom: 10px;
      border-radius: 999px;
      color: #fff;
      background: rgba(5, 26, 29, .78);
      padding: 6px 10px;
      font-size: .78rem;
      font-weight: 900;
      backdrop-filter: blur(6px);
    }

    .trip-card__body {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 8px;
      padding: 15px;
    }

    .trip-card h3 {
      margin: 0;
      color: var(--ink);
      font-size: 1.04rem;
      line-height: 1.24;
    }

    .trip-card p {
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
    }

    .trip-card__link {
      margin-top: auto;
      color: var(--teal);
      font-size: .86rem;
      font-weight: 900;
      text-decoration: none;
    }

    .trip-card__actions .trip-card__link {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      border: 1px solid rgba(20, 111, 118, .24);
      border-radius: 8px;
      background: rgba(20, 111, 118, .07);
      padding: 7px 10px;
      line-height: 1.1;
    }

    .trip-card__actions .trip-card__link:hover,
    .trip-card__actions .trip-card__link:focus-visible {
      border-color: rgba(20, 111, 118, .5);
      background: rgba(20, 111, 118, .12);
      outline: none;
    }

    .trip-card__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .restaurant-block {
      margin-top: 28px;
      border-top: 1px solid var(--line);
      padding-top: 22px;
    }

    .restaurant-block h3 {
      margin: 0;
      color: var(--teal-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.45rem;
      font-weight: 600;
    }

    .restaurant-block > p {
      max-width: 780px;
      margin: 8px 0 14px;
      color: var(--muted);
    }

    .restaurant-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
    }

    .restaurant-card {
      display: flex;
      min-height: 100%;
      flex-direction: column;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fffdf8;
    }

    .restaurant-card__image {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #dfe5df;
    }

    .restaurant-card__image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .restaurant-card__body {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 8px;
      padding: 15px;
    }

    .restaurant-card small {
      color: var(--teal);
      font-size: .76rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .02em;
    }

    .restaurant-card strong {
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.22;
    }

    .restaurant-card p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .restaurant-card__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .restaurant-card a {
      margin-top: auto;
      border: 1px solid rgba(20, 111, 118, .24);
      border-radius: 8px;
      color: var(--teal);
      background: rgba(20, 111, 118, .07);
      padding: 7px 10px;
      font-size: .86rem;
      font-weight: 900;
      line-height: 1.1;
      text-decoration: none;
    }

    .restaurant-card a:hover,
    .restaurant-card a:focus-visible {
      border-color: rgba(20, 111, 118, .5);
      background: rgba(20, 111, 118, .12);
      outline: none;
    }

    .content-shell {
      width: min(1120px, calc(100% - 36px));
      margin: 36px auto 80px;
    }

    .section-block {
      scroll-margin-top: 128px;
      border-top: 4px solid var(--teal);
      border-radius: 8px;
      background: var(--surface);
      box-shadow: 0 8px 24px rgba(23, 36, 38, .08);
      margin-bottom: 18px;
      padding: clamp(22px, 4vw, 34px);
    }

    .section-block:nth-child(3n + 2) {
      border-top-color: var(--olive);
    }

    .section-block:nth-child(3n + 3) {
      border-top-color: var(--clay);
    }

    .section-kicker {
      margin: 0 0 8px;
      color: var(--gold);
      font-size: .76rem;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .section-block h2 {
      margin: 0 0 12px;
      color: var(--teal-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.65rem, 4vw, 2.35rem);
      font-weight: 600;
      line-height: 1.08;
    }

    .section-lead {
      max-width: 800px;
      margin: 0 0 20px;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .info-item,
    .faq-item {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fffdf8;
      padding: 16px;
    }

    .info-item h3,
    .faq-item h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 1.03rem;
      line-height: 1.25;
    }

    .info-item p,
    .faq-item p {
      margin: 0;
      color: var(--muted);
    }

    .inline-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .inline-list li,
    .check-list li {
      position: relative;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      padding: 11px 12px 11px 34px;
    }

    .inline-list li::before,
    .check-list li::before {
      content: "";
      position: absolute;
      left: 13px;
      top: 1.05em;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--teal);
    }

    .check-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
    }

    .callout {
      border-left: 4px solid var(--clay);
      border-radius: 8px;
      background: #fff6f2;
      margin-top: 16px;
      padding: 14px 16px;
      color: #5b332b;
      font-weight: 700;
    }

    .emergency-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 14px;
    }

    .emergency-grid a {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      padding: 12px;
      color: var(--teal-dark);
      font-weight: 900;
      text-align: center;
      text-decoration: none;
    }

    .emergency-grid small {
      display: block;
      color: inherit;
      opacity: .9;
      font-weight: 700;
    }

    .section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .section-actions a {
      min-height: 42px;
      border: 1px solid rgba(20, 111, 118, .24);
      border-radius: 8px;
      color: var(--teal);
      background: rgba(20, 111, 118, .07);
      padding: 10px 13px;
      font-weight: 900;
      text-decoration: none;
    }

    .section-actions a:hover,
    .section-actions a:focus-visible {
      border-color: rgba(20, 111, 118, .5);
      background: rgba(20, 111, 118, .12);
      outline: none;
    }

    .footer-note {
      border-radius: 8px;
      color: #fff;
      background: var(--teal-dark);
      padding: 24px;
    }

    .footer-note h2 {
      margin: 0 0 10px;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
    }

    .footer-note p {
      margin: 0;
      color: rgba(255, 255, 255, .84);
    }

    .floating-help {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 20;
      border: 0;
      min-height: 46px;
      border-radius: 999px;
      color: #fff;
      background: #1c7d5b;
      box-shadow: 0 12px 30px rgba(12, 61, 44, .28);
      padding: 11px 16px;
      cursor: pointer;
      font-weight: 900;
      text-decoration: none;
    }

    .review-box {
      margin-top: 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fffdf8;
      padding: clamp(18px, 4vw, 26px);
    }

    .review-box h3 {
      margin: 0 0 8px;
      color: var(--teal-dark);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.45rem;
      font-weight: 600;
    }

    .review-box p {
      margin: 0 0 14px;
      color: var(--muted);
    }

    .review-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .review-links a {
      min-height: 40px;
      border: 1px solid rgba(20, 111, 118, .24);
      border-radius: 8px;
      color: var(--teal);
      background: rgba(20, 111, 118, .07);
      padding: 9px 12px;
      font-weight: 900;
      text-decoration: none;
    }

    .assistant-panel {
      position: fixed;
      right: 18px;
      bottom: 78px;
      z-index: 21;
      display: none;
      width: min(380px, calc(100vw - 24px));
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .assistant-panel.is-open {
      display: block;
    }

    .assistant-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: #fff;
      background: var(--teal-dark);
      padding: 12px 14px;
    }

    .assistant-head strong {
      font-size: .96rem;
    }

    .assistant-close {
      border: 0;
      color: inherit;
      background: transparent;
      cursor: pointer;
      font-size: 1.2rem;
      line-height: 1;
    }

    .assistant-messages {
      display: grid;
      max-height: 310px;
      overflow: auto;
      gap: 10px;
      padding: 14px;
    }

    .assistant-message {
      max-width: 88%;
      border-radius: 8px;
      padding: 10px 12px;
      color: var(--ink);
      background: #eef6f3;
      font-size: .92rem;
    }

    .assistant-message--user {
      justify-self: end;
      color: #fff;
      background: var(--teal);
    }

    .assistant-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      border-top: 1px solid var(--line);
      padding: 10px 14px 0;
    }

    .assistant-actions button {
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--teal);
      background: rgba(20, 111, 118, .07);
      padding: 7px 10px;
      cursor: pointer;
      font-size: .82rem;
      font-weight: 800;
    }

    .assistant-form {
      display: flex;
      gap: 8px;
      padding: 12px 14px 14px;
    }

    .assistant-form input {
      min-width: 0;
      flex: 1;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--ink);
      background: #fff;
      padding: 10px 11px;
    }

    .assistant-form button {
      border: 0;
      border-radius: 8px;
      color: #fff;
      background: var(--teal);
      padding: 10px 12px;
      cursor: pointer;
      font-weight: 900;
    }

    /* Skin 1: Coastal Minimal (light, default) */
    body.theme-coastal-minimal {}

    /* Skin 2: Sage & Stone (light) */
    body.theme-sage-stone {
      --paper: #f4f0e6;
      --surface: #fffaf1;
      --ink: #2b3028;
      --muted: #696e61;
      --line: #ddd2c0;
      --teal: #6f7f57;
      --teal-dark: #303b2e;
      --olive: #8a8d5c;
      --clay: #a86d52;
      --gold: #b88947;
      --sea: #6f968d;
      --shadow: 0 18px 48px rgba(55, 52, 41, .13);
    }

    body.theme-sage-stone {
      background:
        radial-gradient(circle at top left, rgba(184, 137, 71, .13), transparent 36rem),
        linear-gradient(180deg, #f8f4ea 0%, var(--paper) 62%, #eee7d9 100%);
      font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    }

    body.theme-sage-stone .language-screen::after {
      background:
        linear-gradient(90deg, rgba(36, 46, 31, .93), rgba(61, 67, 45, .62) 50%, rgba(61, 67, 45, .24)),
        linear-gradient(0deg, rgba(37, 45, 31, .78), rgba(37, 45, 31, 0) 58%);
    }

    body.theme-sage-stone .guide-hero::after {
      background:
        linear-gradient(90deg, rgba(36, 46, 31, .88), rgba(36, 46, 31, .52), rgba(36, 46, 31, .16)),
        linear-gradient(0deg, rgba(36, 46, 31, .72), rgba(36, 46, 31, 0) 60%);
    }

    body.theme-sage-stone .section-block,
    body.theme-sage-stone .quick-card,
    body.theme-sage-stone .photo-band__inner,
    body.theme-sage-stone .trip-card,
    body.theme-sage-stone .restaurant-card,
    body.theme-sage-stone .review-box,
    body.theme-sage-stone .info-item,
    body.theme-sage-stone .faq-item {
      background: #fffaf1;
      border-color: #ded2bf;
    }

    /* Skin 3: Midnight Marina (dark) */
    body.theme-midnight-marina {
      --paper: #071115;
      --surface: #101d22;
      --ink: #f3eee4;
      --muted: #b8c3c2;
      --line: #263d45;
      --teal: #42b7bd;
      --teal-dark: #e8f4f1;
      --olive: #8aa36d;
      --clay: #d9785f;
      --gold: #d6a85f;
      --sea: #3cb8c6;
      --shadow: 0 20px 56px rgba(0, 0, 0, .36);
    }

    body.theme-midnight-marina,
    body.theme-graphite-gold {
      background:
        radial-gradient(circle at 18% 0%, rgba(66, 183, 189, .16), transparent 32rem),
        radial-gradient(circle at 90% 18%, rgba(214, 168, 95, .12), transparent 30rem),
        linear-gradient(180deg, var(--paper) 0%, #0b171b 48%, #091316 100%);
    }

    body.theme-midnight-marina .topbar,
    body.theme-midnight-marina .jump-nav,
    body.theme-graphite-gold .topbar,
    body.theme-graphite-gold .jump-nav {
      border-color: rgba(66, 183, 189, .2);
      background: rgba(7, 17, 21, .88);
    }

    body.theme-midnight-marina .brand,
    body.theme-midnight-marina .language-select,
    body.theme-midnight-marina .jump-nav a,
    body.theme-graphite-gold .brand,
    body.theme-graphite-gold .language-select,
    body.theme-graphite-gold .jump-nav a {
      color: #f3eee4;
    }

    body.theme-midnight-marina .language-select,
    body.theme-midnight-marina .jump-nav a,
    body.theme-graphite-gold .language-select,
    body.theme-graphite-gold .jump-nav a {
      border-color: rgba(66, 183, 189, .26);
      background: rgba(255, 255, 255, .06);
    }

    body.theme-midnight-marina .quick-card,
    body.theme-midnight-marina .section-block,
    body.theme-midnight-marina .photo-band__inner,
    body.theme-midnight-marina .trip-card,
    body.theme-midnight-marina .restaurant-card,
    body.theme-midnight-marina .review-box,
    body.theme-midnight-marina .info-item,
    body.theme-midnight-marina .faq-item,
    body.theme-graphite-gold .quick-card,
    body.theme-graphite-gold .section-block,
    body.theme-graphite-gold .photo-band__inner,
    body.theme-graphite-gold .trip-card,
    body.theme-graphite-gold .restaurant-card,
    body.theme-graphite-gold .review-box,
    body.theme-graphite-gold .info-item,
    body.theme-graphite-gold .faq-item {
      border-color: rgba(66, 183, 189, .18);
      background: rgba(16, 29, 34, .94);
    }

    body.theme-midnight-marina .section-block h2,
    body.theme-midnight-marina .quick-card strong,
    body.theme-midnight-marina .trip-card h3,
    body.theme-midnight-marina .restaurant-card strong,
    body.theme-midnight-marina .review-box h3,
    body.theme-midnight-marina .info-item h3,
    body.theme-midnight-marina .faq-item h3,
    body.theme-midnight-marina .footer-note h2,
    body.theme-graphite-gold .section-block h2,
    body.theme-graphite-gold .quick-card strong,
    body.theme-graphite-gold .trip-card h3,
    body.theme-graphite-gold .restaurant-card strong,
    body.theme-graphite-gold .review-box h3,
    body.theme-graphite-gold .info-item h3,
    body.theme-graphite-gold .faq-item h3,
    body.theme-graphite-gold .footer-note h2 {
      color: #f3eee4;
    }

    body.theme-midnight-marina .section-lead,
    body.theme-midnight-marina .quick-card p,
    body.theme-midnight-marina .trip-card p,
    body.theme-midnight-marina .restaurant-card p,
    body.theme-midnight-marina .review-box p,
    body.theme-midnight-marina .info-item p,
    body.theme-midnight-marina .faq-item p,
    body.theme-graphite-gold .section-lead,
    body.theme-graphite-gold .quick-card p,
    body.theme-graphite-gold .trip-card p,
    body.theme-graphite-gold .restaurant-card p,
    body.theme-graphite-gold .review-box p,
    body.theme-graphite-gold .info-item p,
    body.theme-graphite-gold .faq-item p {
      color: #b8c3c2;
    }

    body.theme-midnight-marina .solid-link,
    body.theme-midnight-marina .floating-help,
    body.theme-midnight-marina .emergency-grid a,
    body.theme-graphite-gold .solid-link,
    body.theme-graphite-gold .floating-help,
    body.theme-graphite-gold .emergency-grid a {
      color: #061113;
      background: #d6a85f;
      box-shadow: 0 12px 30px rgba(214, 168, 95, .22);
    }

    body.theme-midnight-marina .assistant-form input,
    body.theme-graphite-gold .assistant-form input {
      color: #f3eee4;
      background: #12242a;
      border-color: rgba(66, 183, 189, .22);
    }

    body.theme-midnight-marina .assistant-message,
    body.theme-graphite-gold .assistant-message {
      color: #f3eee4;
      background: #12242a;
    }

    /* Skin 4: Graphite Gold (dark) */
    body.theme-graphite-gold {
      --paper: #11100e;
      --surface: #1a1815;
      --ink: #f6efe5;
      --muted: #c8baaa;
      --line: #3a332b;
      --teal: #c79a4b;
      --teal-dark: #f5e5ca;
      --olive: #9b8c6b;
      --clay: #b66b55;
      --gold: #c79a4b;
      --sea: #8aa9a2;
      --shadow: 0 20px 56px rgba(0, 0, 0, .4);
    }

    /* Custom skin: Mediterranean Rustic */
    body.theme-mediterranean-rustic {
      --paper: #f6f0e4;
      --surface: #fffdf7;
      --ink: #2d2922;
      --muted: #71685d;
      --line: #dcc9ad;
      --teal: #2f8584;
      --teal-dark: #58452b;
      --olive: #76824d;
      --clay: #b7653d;
      --gold: #d29a4a;
      --sea: #2f8584;
      --shadow: 0 18px 45px rgba(78, 58, 35, .16);
      background:
        linear-gradient(135deg, rgba(183, 101, 61, .08), transparent 34%),
        linear-gradient(180deg, #f6f0e4 0%, #fbf7ee 52%, #efe5d4 100%);
      color: var(--ink);
    }

    body.theme-mediterranean-rustic h1,
    body.theme-mediterranean-rustic h2,
    body.theme-mediterranean-rustic h3,
    body.theme-mediterranean-rustic .brand,
    body.theme-mediterranean-rustic .language-title {
      font-family: Georgia, "Times New Roman", serif;
      letter-spacing: 0;
    }

    body.theme-mediterranean-rustic .language-screen::after {
      background:
        linear-gradient(90deg, rgba(41, 35, 27, .88), rgba(95, 71, 45, .56) 48%, rgba(95, 71, 45, .18)),
        linear-gradient(0deg, rgba(0, 0, 0, .24), transparent 42%);
    }

    body.theme-mediterranean-rustic .guide-hero::after {
      background:
        linear-gradient(90deg, rgba(45, 35, 24, .84), rgba(77, 58, 37, .50), rgba(47, 133, 132, .14)),
        linear-gradient(0deg, rgba(0, 0, 0, .34), transparent 50%);
    }

    body.theme-mediterranean-rustic .topbar,
    body.theme-mediterranean-rustic .jump-nav {
      background: rgba(255, 253, 247, .9);
      border-color: rgba(183, 101, 61, .18);
    }

    body.theme-mediterranean-rustic .section-block,
    body.theme-mediterranean-rustic .quick-card,
    body.theme-mediterranean-rustic .photo-band__inner,
    body.theme-mediterranean-rustic .trip-card,
    body.theme-mediterranean-rustic .restaurant-card,
    body.theme-mediterranean-rustic .review-box,
    body.theme-mediterranean-rustic .info-item,
    body.theme-mediterranean-rustic .faq-item {
      border-color: rgba(183, 101, 61, .20);
      background: rgba(255, 253, 247, .94);
      box-shadow: 0 16px 42px rgba(78, 58, 35, .13);
    }

    body.theme-mediterranean-rustic .kicker,
    body.theme-mediterranean-rustic .section-kicker,
    body.theme-mediterranean-rustic .restaurant-card small {
      color: var(--clay);
    }

    body.theme-mediterranean-rustic .solid-link,
    body.theme-mediterranean-rustic .floating-help,
    body.theme-mediterranean-rustic .emergency-grid a {
      color: #fffdf7;
      background: linear-gradient(135deg, #b7653d, #8f4e30);
      box-shadow: 0 12px 28px rgba(183, 101, 61, .25);
    }

    body.theme-mediterranean-rustic .ghost-link,
    body.theme-mediterranean-rustic .whatsapp-link,
    body.theme-mediterranean-rustic .jump-nav a,
    body.theme-mediterranean-rustic .language-select,
    body.theme-mediterranean-rustic .trip-card__link,
    body.theme-mediterranean-rustic .restaurant-card a,
    body.theme-mediterranean-rustic .review-links a {
      border-color: rgba(47, 133, 132, .24);
      color: #2f8584;
      background: rgba(255, 255, 255, .66);
    }

    body.theme-mediterranean-rustic .callout {
      border-color: rgba(118, 130, 77, .25);
      background: rgba(118, 130, 77, .10);
      color: #4c5632;
    }

    @media (max-width: 820px) {
      .language-grid,
      .quick-grid,
      .info-grid,
      .trip-grid,
      .restaurant-grid,
      .inline-list,
      .check-list,
      .photo-grid {
        grid-template-columns: 1fr;
      }

      .photo-item:first-child {
        grid-column: auto;
        grid-row: auto;
      }

      .language-title {
        font-size: clamp(3rem, 16vw, 5.4rem);
      }

      .guide-hero h1 {
        font-size: clamp(2.25rem, 10.5vw, 3.45rem);
        line-height: 1.02;
      }

      .topbar {
        align-items: stretch;
        flex-direction: column;
      }

      .topbar-actions {
        width: 100%;
      }

      .language-select {
        flex: 1;
        max-width: none;
      }

      .jump-nav {
        top: 112px;
      }

      .section-block {
        scroll-margin-top: 178px;
      }

      .emergency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 520px) {
      .language-inner,
      .guide-hero__content,
      .quick-grid,
      .photo-band,
      .jump-nav__inner,
      .content-shell {
        width: min(100% - 24px, 1120px);
      }

      .guide-hero {
        min-height: 52svh;
      }

      .whatsapp-link {
        padding-inline: 10px;
      }

      .floating-help {
        right: 12px;
        bottom: 12px;
      }
    }

    @media print {
      .language-screen,
      .topbar,
      .jump-nav,
      .floating-help {
        display: none !important;
      }

      body {
        background: #fff;
      }

      .guide-hero {
        min-height: auto;
        color: #000;
        background: #fff;
      }

      .guide-hero__image,
      .guide-hero::after {
        display: none;
      }

      .quick-grid,
      .content-shell {
        width: 100%;
        margin: 0;
      }

      .section-block,
      .quick-card {
        box-shadow: none;
        break-inside: avoid;
      }
    }


.assistant-whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #1c7d5b;
  padding: 8px 14px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
}

.info-whatsapp-btn {
  display: inline-block;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #1c7d5b;
  padding: 6px 12px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.sukosan-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent, #2a6b8a);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
