/* ==========================================================================
   SCUBANINE — deep-ocean theme
   ========================================================================== */

:root {
  --ink:        #04080f;
  --ink-2:      #070d1a;
  --surface:    #0c1526;
  --surface-2:  #111d33;
  --line:       rgba(148, 187, 233, 0.14);
  --line-2:     rgba(148, 187, 233, 0.26);

  --text:       #e9f1fb;
  --muted:      #93a8c4;
  --dim:        #66799a;

  --brand:      #17a3e0;
  --brand-2:    #22d3ee;
  --brand-deep: #0b5f92;
  --coral:      #f0544f;

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --shadow:     0 18px 50px -18px rgba(0, 0, 0, 0.85);
  --shadow-sm:  0 8px 24px -12px rgba(0, 0, 0, 0.8);

  --wrap:       1240px;
  --gap:        clamp(18px, 2.4vw, 30px);
  --sec-y:      clamp(52px, 6.4vw, 86px);

  --font:       "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display:    "Anton", "Noto Sans Thai", var(--font);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .1px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient depth gradient behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -6%, rgba(23, 163, 224, .16), transparent 62%),
    radial-gradient(760px 560px at 92% 8%, rgba(34, 211, 238, .10), transparent 60%),
    linear-gradient(180deg, #04080f 0%, #061020 46%, #04080f 100%);
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; background: var(--surface); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--brand); color: #04080f; }

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--brand); color: #04080f; padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip:focus { left: 12px; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }
.center-btns { justify-content: center; }

/* ---------------------------------------------------------- typography -- */

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.22; font-weight: 700; letter-spacing: -.2px; }
h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.08rem, 1.6vw, 1.3rem); }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--display);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand-2); margin: 0 0 .7em; font-weight: 400;
}
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 66ch; }
.muted { color: var(--muted); }
.h-sm { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 1em; }
.fine { font-size: .82rem; color: var(--dim); margin: 0; }
.empty {
  padding: 42px; text-align: center; color: var(--muted);
  border: 1px dashed var(--line-2); border-radius: var(--radius);
  display: flex; gap: 10px; align-items: center; justify-content: center;
}

.prose p { color: var(--muted); }
.prose-lg p { font-size: 1.06rem; }

.ic { width: 20px; height: 20px; flex: 0 0 auto; }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: .95rem; line-height: 1.2; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap; background: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #03121d; box-shadow: 0 10px 30px -12px rgba(23, 163, 224, .9);
}
.btn-primary:hover { box-shadow: 0 16px 38px -12px rgba(34, 211, 238, .95); }

.btn-ghost { border-color: var(--line-2); color: var(--text); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: var(--brand); background: rgba(23, 163, 224, .12); }

.btn-glass {
  background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .22);
  color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255, 255, 255, .16); }

.btn-sm { padding: 9px 16px; font-size: .87rem; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-go {
  display: inline-flex; align-items: center; gap: 7px; color: var(--brand-2);
  font-weight: 600; font-size: .92rem;
}
.link-go:hover { gap: 11px; }
.link-go .ic, .card-go .ic, .btn .ic { transition: transform .18s ease; }

.chip {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  background: var(--coral); color: #fff; font-size: .76rem; font-weight: 600; letter-spacing: .02em;
}
.chip-soft { background: rgba(23, 163, 224, .16); color: var(--brand-2); border: 1px solid rgba(23, 163, 224, .35); }

/* --------------------------------------------------------------- header -- */

.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(4, 8, 15, .55);
  backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.hdr.is-stuck { background: rgba(4, 8, 15, .93); border-bottom-color: var(--line); }

.hdr-in { display: flex; align-items: center; gap: 18px; min-height: 72px; }

.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; color: var(--brand-2); flex: 0 0 auto; object-fit: contain; }
.brand-mark svg { width: 100%; height: 100%; }
/* The badge is outlined in black, so on the dark header it needs a hair of
   light around it to keep its edge. */
img.brand-mark, img.ftr-mark {
  /* `img` gets a surface background globally — the logo is transparent, so it
     must opt out or it renders inside a grey box. The badge carries its own
     white outline, so it only needs a shadow for depth. */
  background: none;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .55));
}
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-txt strong { font-family: var(--display); font-size: 1.32rem; letter-spacing: .06em; font-weight: 400; }
.brand-txt small { font-size: .66rem; color: var(--dim); letter-spacing: .04em; }

.nav { display: flex; gap: 2px; margin-inline: auto; flex-wrap: nowrap; }
.nav a {
  padding: 8px 11px; border-radius: 999px; font-size: .89rem; font-weight: 500; color: var(--muted);
  white-space: nowrap; transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav a.is-active { color: var(--brand-2); background: rgba(23, 163, 224, .12); }

.hdr-cta { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; margin-inline-start: auto; }

.langsw {
  display: flex; align-items: center; gap: 2px; padding: 3px;
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255, 255, 255, .03);
  font-size: .8rem; font-weight: 600; line-height: 1;
}
.langsw > * { padding: 6px 10px; border-radius: 999px; }
.langsw-on { background: var(--brand); color: #04121d; }
.langsw a { color: var(--muted); }
.langsw a:hover { color: var(--text); background: rgba(255, 255, 255, .07); }
.burger {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255, 255, 255, .04); cursor: pointer;
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative; height: min(88vh, 780px); min-height: 520px; overflow: hidden;
  background: var(--ink-2);
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility .9s;
  /* Grid (not flex) so the .wrap child is width-constrained by the slide and
     the CTA buttons wrap instead of overflowing on narrow screens. */
  display: grid; align-content: end; padding-bottom: clamp(56px, 9vh, 110px);
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.hero-slide.is-active > img { animation: kb 9s ease-out forwards; }
@keyframes kb { from { transform: scale(1.12); } to { transform: scale(1.0); } }

.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 15, .78) 0%, rgba(4, 8, 15, .18) 32%, rgba(4, 8, 15, .82) 82%, var(--ink) 100%),
    linear-gradient(92deg, rgba(4, 8, 15, .8) 0%, rgba(4, 8, 15, .1) 62%);
}

.hero-copy { position: relative; z-index: 3; min-width: 0; }
.hero-copy h1, .hero-copy .h1 {
  font-size: clamp(2.1rem, 5.6vw, 4.2rem); line-height: 1.08; margin: 0 0 .35em;
  max-width: 17ch; text-shadow: 0 4px 30px rgba(0, 0, 0, .6); font-weight: 700;
}
.hero-sub { color: #cddcf0; font-size: clamp(1rem, 1.7vw, 1.22rem); max-width: 56ch; margin-bottom: 1.6em; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; display: grid; place-items: center; cursor: pointer;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(4, 8, 15, .4); backdrop-filter: blur(8px); color: #fff;
  transition: background .2s ease, border-color .2s ease;
}
.hero-nav:hover { background: rgba(23, 163, 224, .55); border-color: transparent; }
.hero-prev { left: 18px; }
.hero-prev .ic { transform: rotate(180deg); }
.hero-next { right: 18px; }

.hero-dots {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 9px;
}
.hero-dots button {
  width: 30px; height: 4px; border-radius: 4px; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .3); transition: background .2s ease, width .2s ease;
}
.hero-dots button.is-active { background: var(--brand-2); width: 46px; }

.hero-scroll {
  position: absolute; right: 26px; bottom: 26px; z-index: 3; color: rgba(255, 255, 255, .5);
  transform: rotate(90deg); animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(7px); } }

/* -------------------------------------------------------------- sections -- */

.sec { padding-block: var(--sec-y); }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px); flex-wrap: wrap;
}
.sec-head h2 { margin-bottom: .3em; }

.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); }

/* Services */
.sec-services { padding-block: clamp(40px, 5vw, 64px); }
.svc-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.svc {
  position: relative; padding: 30px 26px 26px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(160deg, rgba(17, 29, 51, .9), rgba(12, 21, 38, .6));
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; inset: auto -30% -60% auto; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(23, 163, 224, .22), transparent 68%); opacity: 0; transition: opacity .25s ease;
}
.svc:hover { transform: translateY(-5px); border-color: var(--line-2); }
.svc:hover::after { opacity: 1; }
.svc-ic {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px;
  border-radius: 15px; background: rgba(23, 163, 224, .13); color: var(--brand-2);
  border: 1px solid rgba(23, 163, 224, .3);
}
.svc-ic .ic { width: 26px; height: 26px; }
.svc h2 { font-size: 1.3rem; margin-bottom: .1em; }
.svc-en { font-family: var(--display); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-bottom: .9em; }
.svc p { color: var(--muted); font-size: .94rem; margin: 0; }
.svc-go { position: absolute; top: 26px; right: 24px; color: var(--dim); transition: color .2s ease, transform .2s ease; }
.svc:hover .svc-go { color: var(--brand-2); transform: translateX(4px); }

.sec-alt { background: linear-gradient(180deg, transparent, rgba(11, 95, 146, .09) 22%, rgba(11, 95, 146, .09) 78%, transparent); }

/* Cards */
.card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card-media { position: relative; display: block; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
/* Poster cards show the full 4:5 artwork; the copy below stays compact so the
   card does not become unmanageably tall. */
.card-poster .card-media img { aspect-ratio: 4 / 5; }
.card-poster .card-sum {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 1.1em;
}
.card:hover .card-media img { transform: scale(1.06); }
.card-media .chip { position: absolute; top: 14px; left: 14px; }
.card-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.card-meta {
  display: flex; align-items: center; gap: 8px; color: var(--brand-2);
  font-size: .82rem; font-weight: 500; margin-bottom: .6em;
}
.card-meta .ic { width: 16px; height: 16px; }
.card h3 { font-size: 1.16rem; margin-bottom: .5em; line-height: 1.35; }
.card h3 a:hover { color: var(--brand-2); }
.card-sum { color: var(--muted); font-size: .93rem; margin-bottom: 1.3em; flex: 1; }
.card-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.price { display: flex; flex-direction: column; line-height: 1.15; }
.price small { color: var(--dim); font-size: .74rem; }
.price strong { font-size: 1.5rem; color: #fff; font-weight: 700; }
.price strong::before { content: "฿"; font-size: .7em; opacity: .65; margin-right: 2px; }
.price-ask { font-size: 1.05rem !important; color: var(--brand-2) !important; }
.price-ask::before { content: none !important; }
.card-go { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--brand-2); font-weight: 600; }
.card:hover .card-go .ic { transform: translateX(4px); }

/* Stats */
.sec-stats { padding-block: clamp(30px, 4vw, 46px); }
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px;
  padding: 30px 22px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(120deg, rgba(23, 163, 224, .1), rgba(12, 21, 38, .55));
  text-align: center;
}
.stats strong { display: block; font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--brand-2); font-weight: 400; letter-spacing: .02em; }
.stats span { color: var(--muted); font-size: .88rem; }

/* Why */
.why-grid { gap: 18px; }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why { padding: 26px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(12, 21, 38, .55); }
.why-ic {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 14px;
  border-radius: 12px; background: rgba(34, 211, 238, .1); color: var(--brand-2);
}
.why h3 { font-size: 1.05rem; margin-bottom: .4em; }
.why p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Promotions */
.pcard {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--surface); transition: transform .24s ease, border-color .24s ease;
}
.pcard:hover { transform: translateY(-5px); border-color: var(--line-2); }
.pcard-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.pcard-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.pcard h3 { margin: 0; font-size: 1.12rem; }
.pcard p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Gallery / masonry */
.masonry { columns: 4 200px; column-gap: 14px; }
.masonry-lg { columns: 3 280px; column-gap: 16px; }
.mfig {
  break-inside: avoid; margin: 0 0 14px; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); display: block; width: 100%; padding: 0; background: none; cursor: zoom-in;
}
.mfig img { width: 100%; transition: transform .5s ease, opacity .3s ease; }
.mfig:hover img { transform: scale(1.05); opacity: .88; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; max-width: 900px; }
.faq-i { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12, 21, 38, .55); overflow: hidden; }
.faq-i[open] { border-color: var(--line-2); }
.faq-i summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 20px; cursor: pointer; font-weight: 600; list-style: none; font-size: 1rem;
}
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i summary .ic { color: var(--brand-2); transition: transform .22s ease; transform: rotate(90deg); }
.faq-i[open] summary .ic { transform: rotate(-90deg); }
.faq-a { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; }

/* CTA */
.cta-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.cta-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.cta-list li { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.cta-list .ic { color: var(--brand-2); }
.cta-list a:hover { color: var(--brand-2); }
.cta-form {
  padding: clamp(22px, 3vw, 34px); border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(160deg, rgba(17, 29, 51, .85), rgba(8, 14, 26, .8));
  box-shadow: var(--shadow);
}

.strip {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  padding: clamp(28px, 4vw, 46px); border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(11, 95, 146, .5), rgba(12, 21, 38, .7));
  border: 1px solid var(--line-2);
}
.strip h2 { margin-bottom: .25em; }
.strip p { color: var(--muted); margin: 0; }
.strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ------------------------------------------------------------ page heads -- */

.phead { position: relative; padding-block: clamp(58px, 9vw, 110px); overflow: hidden; }
.phead-img { min-height: 340px; display: flex; align-items: center; }
.phead-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phead-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 15, .72), rgba(4, 8, 15, .82) 60%, var(--ink) 100%);
}
.phead-in { position: relative; z-index: 1; }
.phead h1 { margin-bottom: .35em; }

.crumbs { border-bottom: 1px solid var(--line); background: rgba(4, 8, 15, .5); }
.crumbs ol { list-style: none; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin: 0; padding: 13px 0; font-size: .84rem; color: var(--dim); }
.crumbs a:hover { color: var(--brand-2); }
.crumbs .sep .ic { width: 13px; height: 13px; display: block; }
.crumbs li[aria-current] { color: var(--muted); max-width: 46ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------------------------------------------------------- product page -- */

.phero { position: relative; min-height: min(66vh, 560px); display: flex; align-items: flex-end; padding-block: clamp(48px, 8vw, 90px); overflow: hidden; }
.phero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 15, .6) 0%, rgba(4, 8, 15, .35) 35%, rgba(4, 8, 15, .9) 88%, var(--ink) 100%);
}
.phero-in { position: relative; z-index: 1; }
.phero-in .chip { margin-bottom: 14px; }
.phero h1 { max-width: 20ch; text-shadow: 0 4px 26px rgba(0, 0, 0, .55); }
.phero-sub { color: #cddcf0; font-size: clamp(1rem, 1.6vw, 1.18rem); margin-bottom: 1.2em; }
.phero-facts { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.phero-facts li {
  display: flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: 999px;
  background: rgba(4, 8, 15, .5); border: 1px solid rgba(255, 255, 255, .18);
  font-size: .87rem; backdrop-filter: blur(8px);
}
.phero-facts .ic { width: 16px; height: 16px; color: var(--brand-2); }

.plyt {
  display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: clamp(28px, 4vw, 54px);
  padding-block: clamp(40px, 6vw, 72px); align-items: start;
}
.psum { font-size: 1.1rem; color: var(--text); margin-bottom: 1.6em; line-height: 1.75; }

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin: 0 0 42px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
/* Inset shadow draws the divider lines, so a partly filled last row stays blank
   instead of showing a stripe of the grid-gap colour. */
.facts > div { padding: 17px 19px; box-shadow: inset -1px -1px 0 var(--line); }
.facts dt { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--dim); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em; }
.facts dt .ic { width: 15px; height: 15px; color: var(--brand-2); }
.facts dd { margin: 0; font-weight: 600; font-size: .96rem; }

.blk { margin-bottom: clamp(38px, 5vw, 60px); }
.blk h2 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-bottom: .8em; padding-bottom: .5em; border-bottom: 1px solid var(--line); }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); }
.ticks .ic { color: var(--brand-2); margin-top: 4px; width: 17px; height: 17px; }

.itin { list-style: none; padding: 0; margin: 0; counter-reset: d; }
.itin > li { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 20px; padding-bottom: 26px; position: relative; }
.itin > li::before {
  content: ""; position: absolute; left: 51px; top: 34px; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--line-2), transparent);
}
.itin > li:last-child { padding-bottom: 0; }
.itin > li:last-child::before { display: none; }
.itin-day span {
  display: inline-grid; place-items: center; width: 104px; height: 34px; border-radius: 999px;
  background: rgba(23, 163, 224, .14); border: 1px solid rgba(23, 163, 224, .34);
  color: var(--brand-2); font-family: var(--display); font-size: .82rem; letter-spacing: .1em; font-weight: 400;
}
.itin-body h3 { font-size: 1.05rem; margin-bottom: .5em; }
.itin-body ul { margin: 0; padding-left: 19px; color: var(--muted); font-size: .93rem; display: grid; gap: 5px; }
.itin-body li::marker { color: var(--brand); }

.inex { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.inex-col { padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(12, 21, 38, .55); }
.inex-col h3 { display: flex; align-items: center; gap: 9px; font-size: 1rem; margin-bottom: .8em; }
.inex-in h3 { color: #4ade80; }
.inex-ex h3 { color: #fb9c96; }
.inex-col ul { margin: 0; padding-left: 19px; color: var(--muted); font-size: .92rem; display: grid; gap: 7px; }
.blk-terms .prose p { font-size: .92rem; }

/* Price box */
.pbox { position: sticky; top: 92px; }
.pbox-in {
  padding: 26px 24px; border-radius: var(--radius-lg); border: 1px solid var(--line-2);
  background: linear-gradient(160deg, rgba(17, 29, 51, .95), rgba(8, 14, 26, .92));
  box-shadow: var(--shadow);
}
.pbox-from { display: flex; flex-direction: column; line-height: 1.1; margin-bottom: 18px; }
.pbox-from small { color: var(--dim); font-size: .8rem; }
.pbox-from strong { font-size: 2.4rem; color: #fff; font-weight: 700; margin: 4px 0; }
.prices { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.prices li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; background: rgba(12, 21, 38, .9); }
.pr-name { display: flex; flex-direction: column; font-weight: 600; font-size: .93rem; }
.pr-name small { font-weight: 400; color: var(--dim); font-size: .76rem; line-height: 1.4; margin-top: 2px; }
.pr-val { font-weight: 700; color: var(--brand-2); white-space: nowrap; }
.pbox-alt { display: grid; gap: 9px; margin-top: 10px; }
.pbox-note { display: flex; gap: 8px; align-items: center; margin: 16px 0 0; font-size: .82rem; color: var(--dim); }
.pbox-note .ic { width: 15px; height: 15px; }

.sec-pgal { padding-top: 0; }
.pgal { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.pgal-i { padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; background: none; }
.pgal-i img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .45s ease, opacity .3s ease; }
.pgal-i:hover img { transform: scale(1.07); opacity: .9; }
.masonry .pgal-i img { aspect-ratio: auto; }

.sec-enq { background: linear-gradient(180deg, transparent, rgba(11, 95, 146, .12)); }
.enq-head { margin-bottom: 30px; max-width: 720px; }

/* --------------------------------------------------------------- contact -- */

.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.chan { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.chan li { display: flex; gap: 14px; align-items: flex-start; padding: 15px 17px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(12, 21, 38, .55); }
.chan-ic { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 11px; background: rgba(23, 163, 224, .12); color: var(--brand-2); }
.chan-txt { display: flex; flex-direction: column; min-width: 0; }
.chan-txt small { color: var(--dim); font-size: .76rem; }
.chan-txt a, .chan-txt span { font-weight: 600; word-break: break-word; }
.chan-txt a:hover { color: var(--brand-2); }

/* ------------------------------------------------------------------ form -- */

.cform { display: grid; gap: 16px; }
.fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: .85rem; color: var(--muted); font-weight: 500; }
.field em { color: var(--coral); font-style: normal; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-2); background: rgba(4, 8, 15, .55); color: var(--text);
  font-family: inherit; font-size: .95rem; transition: border-color .18s ease, background .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #4c5f7e; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: rgba(4, 8, 15, .8); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--coral); }
.field textarea { resize: vertical; min-height: 108px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.cform-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.fmsg { margin: 0; font-size: .93rem; padding: 0; }
.fmsg.ok { color: #4ade80; padding: 13px 16px; border-radius: var(--radius-sm); background: rgba(74, 222, 128, .1); border: 1px solid rgba(74, 222, 128, .3); }
.fmsg.err { color: #fb9c96; padding: 13px 16px; border-radius: var(--radius-sm); background: rgba(240, 84, 79, .1); border: 1px solid rgba(240, 84, 79, .3); }

/* --------------------------------------------------------------- lightbox -- */

.lb {
  position: fixed; inset: 0; z-index: 120; display: none;
  background: rgba(2, 5, 10, .95); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.lb.is-open { display: flex; }
.lb img { max-width: 96vw; max-height: 84vh; object-fit: contain; border-radius: 8px; }
.lb-cap { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; color: var(--muted); font-size: .88rem; padding: 0 60px; }
.lb-btn {
  position: absolute; width: 46px; height: 46px; display: grid; place-items: center; cursor: pointer;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .08); color: #fff;
}
.lb-btn:hover { background: rgba(255, 255, 255, .18); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev .ic { transform: rotate(180deg); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ----------------------------------------------------------------- video -- */

.vid { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid var(--line); }
.vid::before { content: ""; display: block; padding-top: 56.25%; }
.vid iframe, .vid video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.sec-pvid .vid { box-shadow: var(--shadow); }

/* Background clip on a hero slide — sits over the still, under the shade. */
.hero-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; border: 0; }
.hero-vid-yt { overflow: hidden; pointer-events: none; }
.hero-vid-yt iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; border: 0;
}
.hero-slide .hero-shade { z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-vid { display: none; } }

/* ---------------------------------------------------------------- footer -- */

.ftr { border-top: 1px solid var(--line); background: rgba(4, 8, 15, .7); margin-top: clamp(40px, 6vw, 80px); padding-top: clamp(44px, 6vw, 70px); }
.ftr-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); padding-bottom: 44px; }
.ftr-id { display: flex; align-items: center; gap: 13px; margin-bottom: .6em; }
.ftr-mark { width: 56px; height: 56px; flex: 0 0 auto; object-fit: contain; color: var(--brand-2); }
.ftr-mark svg { width: 100%; height: 100%; }
.ftr-logo { font-family: var(--display); font-size: 1.6rem; letter-spacing: .07em; display: block; font-weight: 400; }
.ftr-brand p { color: var(--muted); font-size: .91rem; max-width: 44ch; }
.ftr h3 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-bottom: 1.2em; font-weight: 600; }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ftr ul a { color: var(--muted); font-size: .92rem; }
.ftr ul a:hover { color: var(--brand-2); }
.ftr-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .9rem; }
.ftr-contact .ic { width: 17px; height: 17px; color: var(--brand); margin-top: 3px; flex: 0 0 auto; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line-2); color: var(--muted); transition: all .18s ease;
}
.social a:hover { color: var(--brand-2); border-color: var(--brand); background: rgba(23, 163, 224, .1); }
.ftr-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line);
  color: var(--dim); font-size: .84rem;
}
.ftr-admin:hover { color: var(--brand-2); }
/* Leave room so the floating contact dock never sits on top of footer text. */
@media (min-width: 701px) { .ftr-bottom { padding-bottom: 88px; } }

/* ------------------------------------------------------------------ dock -- */

.dock {
  position: fixed; z-index: 95; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 10px;
}
.dock-btn {
  display: flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; color: #fff; box-shadow: 0 12px 32px -10px rgba(0, 0, 0, .8);
  transition: transform .18s ease;
}
.dock-btn:hover { transform: translateY(-2px); }
.dock-call { background: #14532d; background: linear-gradient(135deg, #0f766e, #14b8a6); }
.dock-line { background: linear-gradient(135deg, #06903b, #06c755); }
.dock-book { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #03121d; }

/* --------------------------------------------------------------- 404 etc -- */

.sec-404 { padding-block: clamp(80px, 14vw, 170px); }
.sec-404 .hero-btns { margin-top: 28px; }

/* -------------------------------------------------------------- responsive -- */

@media (max-width: 1080px) {
  .plyt { grid-template-columns: 1fr; }
  .pbox { position: static; }
  .pbox-in { max-width: 520px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
}

@media (max-width: 1400px) {
  .brand-txt small { display: none; }
}

@media (max-width: 520px) {
  .langsw { font-size: .74rem; }
  .langsw > * { padding: 5px 7px; }
}

@media (max-width: 1240px) {
  .nav {
    position: fixed; inset: 72px 0 auto; margin: 0; padding: 16px 20px 26px;
    flex-direction: column; gap: 2px; align-items: stretch; flex-wrap: wrap;
    background: rgba(4, 8, 15, .98); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .22s ease;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 14px; border-radius: 12px; font-size: 1rem; }
  .burger { display: flex; }
  .hide-sm { display: none; }
  .cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
}


@media (max-width: 700px) {
  body { font-size: 15.5px; }
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .hero { height: auto; min-height: 0; }
  .hero-track { position: relative; height: min(78vh, 620px); }
  .hero-slide { padding-bottom: 64px; }
  .hero-dots { bottom: 16px; }
  .hero-scroll { display: none; }
  .brand-txt small { display: none; }
  .masonry { columns: 2 140px; column-gap: 10px; }
  .mfig { margin-bottom: 10px; }
  .itin > li { grid-template-columns: 1fr; gap: 10px; }
  .itin > li::before { display: none; }
  .strip { flex-direction: column; align-items: flex-start; }
  .card-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dock { right: 12px; bottom: 12px; left: 12px; flex-direction: row; justify-content: center; }
  .dock-btn { flex: 1; justify-content: center; padding: 13px 10px; }
  .ftr-bottom { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .lb-cap { padding: 0 20px; }
}

@media (max-width: 420px) {
  .dock-btn span { display: none; }
  .dock-btn { padding: 14px; }
}
