  {{FONTFACE}}

  :root {
    --bg: #FAF7F1;
    --surface: #FFFFFF;
    --band: #F1E8D8;
    --ink: #0B2733;
    --text: #22383F;
    --muted: #5D6F73;
    --line: rgba(11, 39, 51, 0.14);
    --accent: #2761CE;
    --accent-hover: #1F51B0;
    --accent-soft: rgba(39, 97, 206, 0.09);
    --on-accent: #FFFFFF;
    --teal: #14707C;
    --card-shadow: 0 1px 2px rgba(11, 39, 51, 0.05), 0 12px 32px -16px rgba(11, 39, 51, 0.18);
    --dk-ground: #0B2733;
    --dk-surface: #10333F;
    --dk-text: #DCE9EA;
    --dk-muted: #8FA9AD;
    --dk-line: rgba(220, 233, 234, 0.16);
    --dk-accent-text: #8FB4F2;
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --bg: #0A1D24;
      --surface: #102831;
      --band: #0E2730;
      --ink: #F0F5F4;
      --text: #CFDEDF;
      --muted: #93A9AC;
      --line: rgba(220, 233, 234, 0.15);
      --accent: #2E6BD9;
      --accent-hover: #4A82E4;
      --accent-soft: rgba(110, 155, 232, 0.13);
      --on-accent: #FFFFFF;
      --teal: #55B4BF;
      --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 14px 36px -18px rgba(0, 0, 0, 0.55);
      --dk-ground: #071720;
      --dk-surface: #0D242E;
    }
  }
  :root[data-theme="dark"] {
    --bg: #0A1D24;
    --surface: #102831;
    --band: #0E2730;
    --ink: #F0F5F4;
    --text: #CFDEDF;
    --muted: #93A9AC;
    --line: rgba(220, 233, 234, 0.15);
    --accent: #2E6BD9;
    --accent-hover: #4A82E4;
    --accent-soft: rgba(110, 155, 232, 0.13);
    --on-accent: #FFFFFF;
    --teal: #55B4BF;
    --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 14px 36px -18px rgba(0, 0, 0, 0.55);
    --dk-ground: #071720;
    --dk-surface: #0D242E;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
  }

  body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.04rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 { color: var(--ink); text-wrap: balance; margin: 0; }
  h1, h2 { font-family: "Marcellus", Georgia, serif; font-weight: 400; }
  p { margin: 0; }
  a { color: var(--accent); }
  img { max-width: 100%; display: block; }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

  .eyebrow {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
  }

  section { padding: 88px 0; }
  .section-head { max-width: 640px; margin-bottom: 52px; }
  .section-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); line-height: 1.15; margin-bottom: 16px; }
  .lede { color: var(--muted); font-size: 1.08rem; max-width: 58ch; }

  .btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }
  .btn:focus-visible, a:focus-visible, summary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }
  .btn-primary { background: var(--accent); color: var(--on-accent); }
  .btn-primary:hover { background: var(--accent-hover); }
  .btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #FFFFFF; }
  .btn-ghost:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, 0.1); }
  .btn-outline { border-color: var(--line); color: var(--ink); }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

  /* ---------- top bar ---------- */
  .topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 18px 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
  }
  .topbar.scrolled {
    background: var(--surface);
    box-shadow: 0 1px 0 var(--line), 0 8px 24px -18px rgba(11, 39, 51, 0.35);
    padding: 12px 0;
  }
  .topbar-inner { display: flex; align-items: center; gap: 28px; }
  .wordmark {
    font-family: "Marcellus", Georgia, serif;
    font-size: 1.06rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    color: #FFFFFF;
    white-space: nowrap;
  }
  .wordmark .wm-sub { display: block; font-family: "Albert Sans", sans-serif; font-size: 0.56rem; letter-spacing: 0.34em; opacity: 0.75; margin-top: 2px; }
  .topbar.scrolled .wordmark { color: var(--ink); }
  .topnav { display: flex; gap: 22px; margin-left: auto; }
  .topnav a {
    font-size: 0.84rem; font-weight: 500; text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
  }
  .topnav a:hover { color: #FFFFFF; }
  .topbar.scrolled .topnav a { color: var(--muted); }
  .topbar.scrolled .topnav a:hover { color: var(--ink); }
  .lang { display: flex; gap: 4px; align-items: center; font-size: 0.74rem; color: rgba(255, 255, 255, 0.75); }
  .topbar.scrolled .lang { color: var(--muted); }
  .lang span { padding: 3px 7px; border-radius: 3px; white-space: nowrap; }
  .lang .on { background: rgba(255, 255, 255, 0.18); font-weight: 700; }
  .topbar.scrolled .lang .on { background: var(--accent-soft); color: var(--accent); }
  .lang .soon { opacity: 0.55; cursor: default; }
  .topbar .btn { padding: 11px 20px; white-space: nowrap; }
  @media (max-width: 900px) {
    .topnav, .lang { display: none; }
    .topbar-inner { justify-content: space-between; }
  }

  /* ---------- hero ---------- */
  .hero {
    position: relative; min-height: 92vh; display: flex; align-items: flex-end;
    overflow: hidden; padding: 0;
  }
  .hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 40%;
    animation: drift 26s ease-out forwards;
  }
  @keyframes drift { from { transform: scale(1.07); } to { transform: scale(1); } }
  .hero-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7, 26, 35, 0.82) 0%, rgba(7, 26, 35, 0.35) 40%, rgba(7, 26, 35, 0.12) 65%, rgba(7, 26, 35, 0.25) 100%);
  }
  .hero-inner { position: relative; width: 100%; padding-top: 140px; }
  .hero .eyebrow { color: #9FD6DC; }
  .hero h1 {
    color: #FFFFFF;
    font-size: clamp(2.7rem, 6.4vw, 4.6rem);
    line-height: 1.04;
    max-width: 12ch;
    margin-bottom: 22px;
    text-shadow: 0 2px 24px rgba(7, 26, 35, 0.45);
  }
  .hero-sub { color: rgba(255, 255, 255, 0.92); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 52ch; margin-bottom: 34px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
  .hero-strip {
    display: flex; flex-wrap: wrap; gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 18px 0 26px;
  }
  .hero-strip div {
    color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; font-weight: 500;
    padding: 4px 26px 4px 0; margin-right: 26px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-strip div + div { border-left: 1px solid rgba(255, 255, 255, 0.18); padding-left: 26px; margin-left: -26px; }
  @media (max-width: 700px) {
    .hero-strip { flex-direction: column; gap: 10px; }
    .hero-strip div + div { border-left: none; padding-left: 0; margin-left: 0; }
  }

  /* ---------- experience timeline ---------- */
  .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } }
  .t-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: var(--card-shadow); }
  .t-card img { height: 210px; width: 100%; object-fit: cover; }
  .t-body { padding: 24px 26px 30px; }
  .t-time {
    font-family: "Marcellus", Georgia, serif;
    font-size: 0.95rem; color: var(--teal);
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
  }
  .t-body h3 { font-size: 1.22rem; margin-bottom: 10px; }
  .t-body p { color: var(--muted); font-size: 0.97rem; }

  .marine { margin-top: 44px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
  .marine-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 8px; }
  .chip {
    font-size: 0.86rem; font-weight: 500; color: var(--ink);
    border: 1px solid var(--line); border-radius: 100px;
    padding: 6px 15px; background: var(--surface);
  }

  /* ---------- hygiene band ---------- */
  .band { background: var(--band); }
  .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
  @media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
  .split img { border-radius: 6px; box-shadow: var(--card-shadow); }
  .statement h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 20px; }
  .statement > p { max-width: 54ch; margin-bottom: 26px; }
  .ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
  .ticks li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; color: var(--ink); }
  .ticks li::before { content: "—"; color: var(--accent); flex: none; font-weight: 700; }
  .ticks li small { display: block; font-weight: 400; color: var(--muted); font-size: 0.93rem; }

  /* ---------- packages ---------- */
  .pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
  @media (max-width: 900px) { .pack-grid { grid-template-columns: 1fr; } }
  .pack {
    background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
    padding: 34px 30px 30px; display: flex; flex-direction: column;
    box-shadow: var(--card-shadow); position: relative;
  }
  .pack.featured { border-color: var(--accent); border-width: 2px; }
  .pack-flag {
    position: absolute; top: -13px; left: 26px;
    background: var(--accent); color: var(--on-accent);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 3px;
  }
  .pack h3 { font-family: "Marcellus", Georgia, serif; font-weight: 400; font-size: 1.35rem; margin-bottom: 2px; }
  .pack-tag { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
  .price { font-family: "Marcellus", Georgia, serif; font-size: 2.9rem; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
  .price small { font-family: "Albert Sans", sans-serif; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
  .pack ul { list-style: none; margin: 22px 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; flex: 1; }
  .pack ul li { font-size: 0.94rem; display: flex; gap: 10px; }
  .pack ul li::before { content: "·"; color: var(--accent); font-weight: 900; flex: none; }
  .pack ul li.carry { color: var(--muted); font-style: italic; }
  .pack ul li.carry::before { content: "+"; }
  .pack .btn { text-align: center; }
  .pack-note { margin-top: 30px; color: var(--muted); font-size: 0.92rem; max-width: 70ch; }

  /* ---------- tour operators (always dark) ---------- */
  .operators { background: var(--dk-ground); color: var(--dk-text); }
  .operators .eyebrow { color: #6FC4CE; }
  .operators h2, .operators h3 { color: #F4F8F7; }
  .operators .lede { color: var(--dk-muted); }
  .op-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
  @media (max-width: 900px) { .op-grid { grid-template-columns: 1fr; } }
  .op-card { background: var(--dk-surface); border: 1px solid var(--dk-line); border-radius: 6px; padding: 26px 26px 28px; }
  .op-card h3 { font-size: 1.04rem; margin-bottom: 8px; font-weight: 600; font-family: "Albert Sans", sans-serif; }
  .op-card p { color: var(--dk-muted); font-size: 0.93rem; }
  .op-who { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; margin-bottom: 56px; }
  .op-who .marine-label { color: var(--dk-muted); }
  .op-who .chip { background: transparent; border-color: var(--dk-line); color: var(--dk-text); }
  .op-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; counter-reset: step; }
  @media (max-width: 900px) { .op-steps { grid-template-columns: 1fr; } }
  .op-step { border-top: 1px solid var(--dk-line); padding-top: 18px; }
  .op-step::before {
    counter-increment: step; content: counter(step);
    font-family: "Marcellus", Georgia, serif; font-size: 1.6rem; color: #6FC4CE; display: block; margin-bottom: 6px;
  }
  .op-step strong { color: #F4F8F7; display: block; margin-bottom: 6px; font-weight: 600; }
  .op-step p { color: var(--dk-muted); font-size: 0.93rem; }
  .op-cta {
    background: var(--dk-surface); border: 1px solid var(--dk-line); border-radius: 6px;
    padding: 36px 34px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  }
  .op-cta-text strong { display: block; font-family: "Marcellus", Georgia, serif; font-weight: 400; font-size: 1.4rem; color: #F4F8F7; margin-bottom: 6px; }
  .op-cta-text p { color: var(--dk-muted); font-size: 0.9rem; }
  .op-cta-text a { color: var(--dk-accent-text); }

  /* ---------- safety ---------- */
  .callout {
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    padding: 18px 22px; border-radius: 0 6px 6px 0;
    font-size: 0.96rem; color: var(--ink); margin-top: 26px; max-width: 58ch;
  }

  /* ---------- shelly ---------- */
  .shelly { position: relative; overflow: hidden; padding: 120px 0; }
  .shelly-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }
  .shelly-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7, 26, 35, 0.88) 0%, rgba(7, 26, 35, 0.65) 45%, rgba(7, 26, 35, 0.2) 100%); }
  .shelly-inner { position: relative; }
  .shelly .eyebrow { color: #9FD6DC; }
  .shelly h2 { color: #FFFFFF; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; max-width: 18ch; }
  .shelly p.big { color: rgba(255, 255, 255, 0.9); max-width: 54ch; margin-bottom: 36px; }
  .getting { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; }
  @media (max-width: 900px) { .getting { grid-template-columns: 1fr; } }
  .get-card { background: rgba(10, 33, 43, 0.72); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 6px; padding: 20px 22px; backdrop-filter: blur(4px); }
  .get-card strong { color: #FFFFFF; display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.95rem; }
  .get-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.88rem; }

  /* ---------- faq ---------- */
  .faq-list { max-width: 760px; }
  .faq-list details { border-bottom: 1px solid var(--line); }
  .faq-list summary {
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
    padding: 20px 4px; font-weight: 600; color: var(--ink); font-size: 1.02rem;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after { content: "+"; font-family: "Marcellus", Georgia, serif; font-size: 1.3rem; color: var(--teal); flex: none; transition: transform 0.2s ease; }
  .faq-list details[open] summary::after { transform: rotate(45deg); }
  .faq-list details p { padding: 0 4px 22px; color: var(--muted); max-width: 62ch; }

  /* ---------- book ---------- */
  .book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 800px) { .book-grid { grid-template-columns: 1fr; } }
  .book-card { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 36px 34px; box-shadow: var(--card-shadow); }
  .book-card h3 { font-family: "Marcellus", Georgia, serif; font-weight: 400; font-size: 1.4rem; margin-bottom: 10px; }
  .book-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 24px; max-width: 44ch; }
  .book-note { margin-top: 28px; color: var(--muted); font-size: 0.92rem; }
  .book-note a { color: var(--accent); }

  /* ---------- footer ---------- */
  footer { background: var(--dk-ground); color: var(--dk-muted); padding: 64px 0 40px; font-size: 0.9rem; }
  .foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--dk-line); margin-bottom: 28px; }
  .foot-brand .wordmark { color: #F4F8F7; font-size: 1.15rem; }
  .foot-brand p { margin-top: 12px; max-width: 34ch; }
  .foot-col strong { color: #F4F8F7; display: block; margin-bottom: 12px; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
  .foot-col { display: flex; flex-direction: column; gap: 8px; }
  .foot-col a { color: var(--dk-muted); text-decoration: none; }
  .foot-col a:hover { color: #F4F8F7; }
  .foot-fine { display: grid; gap: 10px; font-size: 0.82rem; }
  .foot-fine .ack { color: #7E979B; }

  /* ---------- reveal ---------- */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
  /* ---------- CJK language overrides ---------- */
  html[lang="ja"] body { font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif; line-height: 1.85; }
  html[lang="ko"] body { font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif; line-height: 1.8; }
  html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3,
  html[lang="ja"] .pack h3, html[lang="ja"] .book-card h3, html[lang="ja"] .op-cta-text strong { font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif; }
  html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3,
  html[lang="ko"] .pack h3, html[lang="ko"] .book-card h3, html[lang="ko"] .op-cta-text strong { font-family: "Gowun Batang", "AppleMyungjo", serif; }
  html[lang="ja"] .op-card h3, html[lang="ja"] .op-step strong { font-family: "Noto Sans JP", sans-serif; }
  html[lang="ko"] .op-card h3, html[lang="ko"] .op-step strong { font-family: "Noto Sans KR", sans-serif; }
  html[lang="ja"] .wordmark, html[lang="ko"] .wordmark,
  html[lang="ja"] .price, html[lang="ko"] .price,
  html[lang="ja"] .t-time, html[lang="ko"] .t-time { font-family: "Marcellus", Georgia, serif; }
  html[lang="ja"] .hero h1, html[lang="ko"] .hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); line-height: 1.22; max-width: 16ch; }
  html[lang="ja"] .section-head h2, html[lang="ko"] .section-head h2,
  html[lang="ja"] .statement h2, html[lang="ko"] .statement h2 { line-height: 1.35; }
  html[lang="ja"] .eyebrow, html[lang="ko"] .eyebrow { letter-spacing: 0.22em; }
  html[lang="ja"] .btn, html[lang="ko"] .btn { letter-spacing: 0.14em; }

  .lang a { padding: 3px 7px; border-radius: 3px; white-space: nowrap; color: inherit; text-decoration: none; }
  .lang a:hover { color: #FFFFFF; }
  .topbar.scrolled .lang a:hover { color: var(--ink); }
  .lang a.on { background: rgba(255, 255, 255, 0.18); font-weight: 700; }
  .topbar.scrolled .lang a.on { background: var(--accent-soft); color: var(--accent); }

  .op-resources { margin-top: 22px; font-size: 0.9rem; color: var(--dk-muted); }
  .op-resources a { color: var(--dk-accent-text); }
  html[lang="ko"] body, html[lang="ko"] h1, html[lang="ko"] h2, html[lang="ko"] h3 { word-break: keep-all; overflow-wrap: anywhere; }
  html[lang="ja"] .hero .eyebrow, html[lang="ko"] .hero .eyebrow { font-size: 0.86rem; letter-spacing: 0.18em; text-shadow: 0 1px 12px rgba(7, 26, 35, 0.6); }

  /* ---------- enquiry form ---------- */
  .enq { margin-top: 36px; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 36px 34px; box-shadow: var(--card-shadow); }
  .enq h3 { font-family: "Marcellus", Georgia, serif; font-weight: 400; font-size: 1.4rem; margin-bottom: 6px; }
  .enq .lede { margin-bottom: 26px; font-size: 0.98rem; }
  .enq-kind { display: inline-flex; border: 1px solid var(--line); border-radius: 100px; padding: 3px; margin-bottom: 24px; }
  .enq-kind label { padding: 8px 18px; border-radius: 100px; font-size: 0.86rem; font-weight: 600; cursor: pointer; color: var(--muted); }
  .enq-kind input { position: absolute; opacity: 0; pointer-events: none; }
  .enq-kind input:checked + label { background: var(--accent); color: var(--on-accent); }
  .enq-kind input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }
  .enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
  @media (max-width: 700px) { .enq-grid { grid-template-columns: 1fr; } }
  .enq-grid .full { grid-column: 1 / -1; }
  .enq label.f { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 6px; }
  .enq input[type=text], .enq input[type=email], .enq input[type=tel], .enq select, .enq textarea {
    width: 100%; font: inherit; font-size: 0.98rem; color: var(--ink); background: var(--bg);
    border: 1px solid var(--line); border-radius: 4px; padding: 11px 13px; transition: border-color 0.15s ease;
  }
  .enq input:focus, .enq select:focus, .enq textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
  .enq textarea { min-height: 110px; resize: vertical; }
  .enq .group-only { display: none; }
  .enq.is-group .group-only { display: block; }
  .enq-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
  .enq-foot small { color: var(--muted); font-size: 0.85rem; }
  .enq .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .enq-msg { display: none; margin-top: 18px; padding: 14px 18px; border-radius: 4px; font-size: 0.95rem; }
  .enq-msg.ok { display: block; background: rgba(20, 112, 124, 0.1); color: var(--teal); border-left: 3px solid var(--teal); }
  .enq-msg.err { display: block; background: rgba(180, 83, 9, 0.1); color: #B45309; border-left: 3px solid #B45309; }
  .btn[disabled] { opacity: 0.6; cursor: wait; }
