
  :root {
    --bg: #FBFAF6;            /* warm off-white */
    --bg-2: #F4F1E8;          /* parchment */
    --bg-3: #ECE7D7;
    --ink: #1A1714;           /* near-black warm */
    --ink-2: #3A332C;
    --muted: #6B6259;
    --muted-2: #8B8278;
    --line: rgba(26,23,20,0.10);
    --line-2: rgba(26,23,20,0.18);
    --blood: #8B1A1A;
    --blood-bright: #B0202A;
    --blood-deep: #5A0D0D;
    --gold: #A07A2C;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.6;
  }
  body { overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
  ::selection { background: var(--blood); color: var(--bg); }

  .gothic { font-family: "UnifrakturMaguntia", serif; font-weight: 400; }
  .serif { font-family: "Cormorant Garamond", serif; }

  .eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blood);
  }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

  /* === NAV === */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    background: rgba(251,250,246,0.85);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s, padding .3s;
  }
  .nav.scrolled { border-bottom-color: var(--line); }
  .nav-inner {
    max-width: 1240px; margin: 0 auto; padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 56px; width: auto; }
  .nav-wordmark {
    font-family: "UnifrakturMaguntia", serif;
    font-size: 22px; line-height: 1; color: var(--ink);
  }
  .nav-tag {
    font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-top: 4px;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-link {
    font-size: 13px; font-weight: 500;
    color: var(--ink-2);
    transition: color .2s;
  }
  .nav-link:hover { color: var(--blood); }
  .nav-right { display: flex; align-items: center; gap: 14px; }

  .lang-toggle {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 3px;
    background: var(--bg);
  }
  .lang-toggle button {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
    padding: 6px 12px; border-radius: 999px;
    color: var(--muted);
    transition: all .2s;
  }
  .lang-toggle button.active {
    background: var(--ink);
    color: var(--bg);
  }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px;
    font-size: 13px; letter-spacing: 0.04em; font-weight: 600;
    border-radius: 2px;
    transition: all .2s ease;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--blood);
    color: #fff;
    border: 1px solid var(--blood);
  }
  .btn-primary:hover {
    background: var(--blood-deep);
    border-color: var(--blood-deep);
    transform: translateY(-1px);
  }
  .btn-ink {
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
  }
  .btn-ink:hover { background: var(--ink-2); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-2);
  }
  .btn-ghost:hover {
    border-color: var(--ink);
    background: var(--bg-2);
  }

  /* === HERO === */
  .hero {
    position: relative;
    padding: 140px 40px 80px;
    background: var(--bg);
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1240px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-text { max-width: 600px; position: relative; z-index: 2; }
  .hero-portrait {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-portrait img {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(26,23,20,0.18));
  }
  .hero-boat-strip {
    margin: 64px auto 0;
    max-width: 1240px;
    aspect-ratio: 21/7;
    overflow: hidden;
    position: relative;
  }
  .hero-boat-strip img { width: 100%; height: 100%; object-fit: cover; }
  .hero-boat-strip .tag {
    position: absolute; bottom: 20px; left: 20px;
    padding: 10px 16px;
    background: rgba(251,250,246,0.95);
    backdrop-filter: blur(10px);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    color: var(--ink);
    border-left: 2px solid var(--blood);
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blood);
  }
  .hero-eyebrow span { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }

  .hero-title {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(56px, 7.5vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .hero-title .accent {
    font-family: "UnifrakturMaguntia", serif;
    font-weight: 400;
    color: var(--blood);
    letter-spacing: 0;
    font-size: 1.18em;
    line-height: 0.9;
  }

  .hero-h2 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.4;
    color: var(--blood);
    margin-bottom: 22px;
    letter-spacing: 0.005em;
    max-width: 540px;
    text-wrap: balance;
  }

  .hero-sub {
    font-size: 18px; line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 36px;
    max-width: 520px;
  }

  .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

  .hero-meta {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    max-width: 540px;
  }
  .hero-meta-item .num {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 36px; line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .hero-meta-item .lbl {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }

  .hero-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 60px -20px rgba(26,23,20,0.25);
  }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; }
  .hero-img-tag {
    position: absolute; bottom: 24px; left: 24px;
    padding: 10px 16px;
    background: rgba(251,250,246,0.95);
    backdrop-filter: blur(10px);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    color: var(--ink);
    border-left: 2px solid var(--blood);
  }


  .booking-crest {
    width: 160px; height: auto;
    margin: 0 auto 32px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  }

  /* === SECTION === */
  section {
    padding: 120px 40px;
  }
  .section-inner { max-width: 1240px; margin: 0 auto; }

  .section-head {
    margin-bottom: 72px;
    max-width: 760px;
  }
  .section-head .eyebrow { display: block; margin-bottom: 16px; }
  .section-title {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .section-title .accent {
    font-family: "UnifrakturMaguntia", serif;
    font-weight: 400;
    color: var(--blood);
    letter-spacing: 0;
    font-size: 1.1em;
    line-height: 0.9;
  }
  .section-lead {
    font-size: 18px; line-height: 1.6;
    color: var(--muted);
    max-width: 600px;
  }

  /* === PILLARS === */
  .pillars-section { background: var(--bg); }
  .pillars {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .pillar {
    padding: 36px 0 0;
    border-top: 2px solid var(--ink);
  }
  .pillar .num {
    font-family: "UnifrakturMaguntia", serif;
    font-size: 28px; color: var(--blood);
    margin-bottom: 20px;
    line-height: 1;
  }
  .pillar h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 24px; line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .pillar p {
    font-size: 15px; line-height: 1.65;
    color: var(--ink-2);
  }

  /* === BOAT SPECS === */
  .boat-section { background: var(--bg-2); }
  .boat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .boat-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
  }
  .boat-img img { width: 100%; height: 100%; object-fit: cover; }

  .boat-text > p {
    font-size: 17px; line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 32px;
    max-width: 480px;
  }
  .specs {
    display: grid; grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
  }
  .spec {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px;
  }
  .spec:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
  .spec:nth-child(even) { padding-left: 24px; }
  .spec .lbl {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); font-weight: 600;
  }
  .spec .val {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px; color: var(--ink); font-weight: 500;
    text-align: right;
  }

  /* === AMENITIES === */
  .amenities-section { background: var(--bg); }
  .amenities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
  }
  .amenity {
    background: var(--bg-2);
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 10px;
    min-height: 150px;
    transition: background .25s;
  }
  .amenity:hover { background: var(--bg); }
  .amenity .ico { width: 28px; height: 28px; color: var(--blood); margin-bottom: 6px; }
  .amenity .name {
    font-size: 15px; font-weight: 600; color: var(--ink);
    line-height: 1.3;
  }
  .amenity .sub {
    font-size: 13px; line-height: 1.5;
    color: var(--muted);
  }

  /* === MOODS === */
  .moods-section { background: var(--bg-2); }
  .mood-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .mood-card {
    position: relative;
    background: var(--bg-2);
    overflow: hidden;
    transition: transform .3s;
  }
  .mood-card-img {
    aspect-ratio: 5/4;
    overflow: hidden;
    background: var(--bg-3);
  }
  .mood-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
  }
  .mood-card:hover .mood-card-img img { transform: scale(1.04); }
  .mood-body { padding: 32px; }
  .mood-body .eyebrow { display: block; margin-bottom: 14px; }
  .mood-body h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 32px; line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .mood-body p {
    font-size: 15px; line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 20px;
  }
  .tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag {
    padding: 6px 12px;
    border: 1px solid var(--line-2);
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
    color: var(--ink-2);
    background: var(--bg);
  }

  /* === VIDEOS === */
  .videos-section { background: var(--bg-3); }
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  .video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }
  .video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
  @media (max-width: 980px) {
    .videos-grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* === HOST === */
  .host-section { background: var(--bg-2); }
  .host-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
  }
  .host-img {
    aspect-ratio: 3/4;
    overflow: hidden;
  }
  .host-img img { width: 100%; height: 100%; object-fit: cover; }
  .host-content blockquote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 32px;
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--blood);
  }
  .host-credentials {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .host-credentials .item .lbl {
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
    color: var(--blood); margin-bottom: 6px;
  }
  .host-credentials .item .val {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 19px; color: var(--ink); line-height: 1.2;
    letter-spacing: -0.01em;
  }

  /* === GALLERY === */
  .gallery-section { background: var(--bg); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 130px;
    gap: 12px;
  }
  .g-tile {
    position: relative; overflow: hidden;
    background: var(--bg-3);
  }
  .g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
  .g-tile:hover img { transform: scale(1.04); }
  .g-1 { grid-column: span 5; grid-row: span 3; }
  .g-2 { grid-column: span 4; grid-row: span 2; }
  .g-3 { grid-column: span 3; grid-row: span 2; }
  .g-4 { grid-column: span 4; grid-row: span 2; }
  .g-5 { grid-column: span 3; grid-row: span 3; }
  .g-6 { grid-column: span 5; grid-row: span 2; }
  .g-7 { grid-column: span 4; grid-row: span 2; }

  /* === BOOKING === */
  .booking-section {
    background: var(--ink);
    color: var(--bg);
    text-align: center;
  }
  .booking-section .section-head { margin-left: auto; margin-right: auto; text-align: center; }
  .booking-inner { max-width: 800px; margin: 0 auto; position: relative; }
  .booking-section .section-title { color: var(--bg); }
  .booking-section .section-title .accent { color: #E94555; }
  .booking-section .section-lead { color: rgba(251,250,246,0.7); margin: 0 auto 36px; }
  .price-block {
    margin: 8px auto 36px;
    padding: 28px 32px;
    border: 1px solid rgba(251,250,246,0.16);
    border-radius: 2px;
    max-width: 560px;
    text-align: center;
  }
  .price-block .from-lbl {
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
    color: #E94555; margin-bottom: 10px;
  }
  .price-block .amt {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: clamp(48px, 6vw, 72px);
    color: var(--bg);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .price-block .amt sup {
    font-size: 0.4em;
    font-weight: 500;
    margin-right: 4px;
    vertical-align: 0.5em;
    color: rgba(251,250,246,0.6);
  }
  .price-block .note {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(251,250,246,0.78);
    margin-top: 14px;
  }
  .booking-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
  .booking-section .btn-ghost { color: var(--bg); border-color: rgba(251,250,246,0.3); }
  .booking-section .btn-ghost:hover { border-color: var(--bg); background: rgba(251,250,246,0.05); }
  .booking-section .btn-ink { background: #fff; color: var(--ink); border-color: #fff; }
  .booking-section .btn-ink:hover { background: var(--bg); }

  .contact-row {
    padding-top: 36px;
    border-top: 1px solid rgba(251,250,246,0.12);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .contact-row .item .lbl {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
    color: #E94555; margin-bottom: 8px;
  }
  .contact-row .item .val {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px; color: var(--bg);
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .contact-row .item a.val:hover { color: #E94555; border-bottom-color: rgba(233,69,85,0.5); }

  /* Languages display */
  .lang-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .lang-block .lbl {
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
    color: var(--blood); margin-bottom: 16px;
  }
  .lang-list { display: flex; flex-direction: column; gap: 10px; }
  .lang-row { display: grid; grid-template-columns: 28px 1fr 36px; align-items: center; gap: 14px; }
  .lang-row .flag { font-size: 18px; line-height: 1; }
  .lang-row .name { font-family: "Cormorant Garamond", serif; font-size: 17px; color: var(--ink); }
  .lang-row .pct { font-family: "Playfair Display", serif; font-weight: 600; font-size: 14px; color: var(--blood); text-align: right; }
  .lang-bar { grid-column: 2 / 3; height: 2px; background: rgba(0,0,0,0.06); position: relative; margin-top: 4px; }
  .lang-bar .fill { position: absolute; inset: 0 auto 0 0; background: var(--blood); }
  .lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
  }
  .lang-item { display: grid; grid-template-columns: 24px 1fr auto; gap: 12px; align-items: center; }
  .lang-item .flag { font-size: 18px; }
  .lang-item .name { font-family: "Cormorant Garamond", serif; font-size: 17px; color: var(--ink); }
  .lang-item .track { grid-column: 2 / 4; height: 2px; background: rgba(0,0,0,0.08); position: relative; }
  .lang-item .track .fill { position: absolute; inset: 0 auto 0 0; background: var(--blood); }
  .lang-item .pct { font-family: "Playfair Display", serif; font-weight: 600; font-size: 13px; color: var(--blood); }

  /* === FOOTER === */
  footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 40px 40px 28px;
  }
  .footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }
  .footer-brand { display: flex; align-items: center; gap: 12px; }
  .footer-brand img { height: 88px; }
  .footer-brand .name { font-family: "UnifrakturMaguntia", serif; font-size: 20px; color: var(--ink); }
  .footer-brand .tag { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 3px; font-weight: 600; }
  .footer-meta {
    display: flex; gap: 24px;
    font-size: 12px; color: var(--muted); font-weight: 500;
  }
  .footer-meta a:hover { color: var(--ink); }
  .footer-addr {
    color: var(--muted-2);
    text-decoration: none;
    transition: color .2s;
    text-align: right;
    max-width: 60%;
  }
  .footer-addr:hover { color: var(--blood); }
  .footer-bottom {
    max-width: 1240px; margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: var(--muted-2);
  }

  /* Responsive */
  @media (max-width: 980px) {
    .container, section, .nav-inner, .hero { padding-left: 20px; padding-right: 20px; }
    section { padding-top: 80px; padding-bottom: 80px; }
    .hero { padding-top: 110px; padding-bottom: 60px; }
    .nav-links { display: none; }
    .nav-tag-desktop { display: none; }
    .nav-logo img { height: 44px; }
    .nav-wordmark { font-size: 18px; }
    .nav-right { gap: 8px; }
    .nav-right .btn { padding: 10px 14px; font-size: 12px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: clamp(44px, 11vw, 72px); word-break: break-word; }
    .hero-h2 { font-size: 15px; }
    .hero-sub { font-size: 16px; }
    .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .hero-meta-item .num { font-size: 26px; }
    .hero-meta-item .lbl { font-size: 10px; letter-spacing: 0.14em; }
    .pillars { grid-template-columns: 1fr; gap: 32px; }
    .boat-grid { grid-template-columns: 1fr; gap: 40px; }
    .specs { grid-template-columns: 1fr; }
    .spec:nth-child(odd) { border-right: 0; padding-right: 0; }
    .spec:nth-child(even) { padding-left: 0; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .mood-grid { grid-template-columns: 1fr; }
    .mood-body { padding: 24px; }
    .mood-body h3 { font-size: 26px; }
    .host-grid { grid-template-columns: 1fr; gap: 32px; }
    .host-credentials { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .lang-grid { grid-template-columns: 1fr; gap: 12px; }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
    .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7 { grid-column: span 6; grid-row: span 2; }
    .contact-row { grid-template-columns: 1fr; gap: 24px; }
    .booking-actions { flex-direction: column; align-items: stretch; }
    .booking-actions .btn { justify-content: center; }
    .price-block { padding: 22px 18px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .footer-meta { flex-wrap: wrap; gap: 14px 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
    .footer-addr { text-align: left; max-width: 100%; }
    .section-head { margin-bottom: 48px; }
    .section-title { font-size: clamp(30px, 7vw, 44px); }
    .section-lead { font-size: 16px; }
  }
  @media (max-width: 480px) {
    .container, section, .nav-inner, .hero { padding-left: 16px; padding-right: 16px; }
    .nav-inner { padding-top: 12px; padding-bottom: 12px; }
    .nav-logo img { height: 38px; }
    .nav-wordmark { font-size: 16px; }
    .lang-toggle button { padding: 5px 9px; font-size: 10px; }
    .hero { padding-top: 96px; }
    .hero-cta { gap: 8px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-meta { gap: 12px; }
    .hero-meta-item .num { font-size: 22px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 90px; }
    .price-block .amt { font-size: 44px; }
    .booking-section .section-title { font-size: clamp(28px, 8vw, 40px); }
  }
