/* Public site — Coastal night */
:root {
  --p-bg0: #060d12;
  --p-bg1: #0b161e;
  --p-ink: #f2f6f4;
  --p-muted: #8fa39b;
  --p-line: rgba(242, 246, 244, 0.1);
  --p-accent: #2bb8a8;
  --p-accent-ink: #041a16;
  --p-gold: #c4a574;
  --p-warn: #c4a574;
  --p-danger: #e07a6a;
  --p-panel: rgba(10, 20, 28, 0.78);
  --p-radius: 14px;
  --p-font-display: "Fraunces", "Sora", Georgia, serif;
  --p-font-body: "Sora", sans-serif;
  --p-pad: 1.15rem;
  --p-safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

html {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

html, body {
  min-height: 100%;
  color-scheme: dark;
  overflow-x: hidden;
  max-width: 100%;
}

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

.pub-body {
  font-family: var(--p-font-body);
  color: var(--p-ink);
  background:
    radial-gradient(720px 420px at 12% -8%, rgba(43, 184, 168, 0.1), transparent 55%),
    radial-gradient(560px 380px at 100% 8%, rgba(196, 165, 116, 0.06), transparent 50%),
    linear-gradient(168deg, var(--p-bg0), var(--p-bg1) 52%, #08141b);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a { color: var(--p-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Fixed header */
.pub-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  width: auto;
  max-width: none;
  transform: none;
  z-index: 9999;
  padding: 0.65rem 0.75rem 0.65rem 0.95rem;
  background: rgba(6, 13, 18, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pub-header.is-scrolled {
  background: rgba(6, 13, 18, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.36);
}

.pub-body:not(.pub-home) .pub-main {
  padding-top: 5.5rem;
}

.pub-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  justify-self: start;
}
.pub-brand:hover { text-decoration: none; }
.pub-brand img {
  border-radius: 9px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.pub-brand strong {
  display: block;
  font-family: var(--p-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #d4b483;
  /* Decorative brand shimmer — kept on even if OS reduce-motion is on,
     because a near-invisible / disabled effect is worse than a soft pulse here. */
  animation: pub-brand-shine 2.8s ease-in-out infinite;
}
@keyframes pub-brand-shine {
  0%, 100% {
    color: #b8955c;
    text-shadow: 0 0 0 rgba(232, 201, 138, 0);
  }
  35% {
    color: #fff0c8;
    text-shadow: 0 0 14px rgba(232, 201, 138, 0.55);
  }
  55% {
    color: #e8c98a;
    text-shadow: 0 0 6px rgba(196, 165, 116, 0.35);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pub-brand strong {
    animation-duration: 5.5s;
  }
}


.pub-brand small {
  display: block;
  margin-top: 0.12rem;
  color: var(--p-gold);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pub-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  justify-self: end;
}

.pub-nav {
  display: none;
  align-items: center;
  gap: 1.45rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.pub-nav a {
  position: relative;
  color: rgba(238, 245, 242, 0.88);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.2rem 0;
  transition: color 0.15s ease;
}
.pub-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 1px;
  background: var(--p-accent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.pub-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.pub-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.pub-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.4rem 0.85rem;
  border-radius: 9px;
  background: var(--p-accent);
  color: var(--p-accent-ink) !important;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.pub-header-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 215, 196, 0.28);
  text-decoration: none !important;
}

.pub-header .lang-switcher select {
  min-height: 38px;
  border-radius: 9px;
  padding: 0.35rem 0.5rem;
  font-size: 0.82rem;
}

.pub-main-flush {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.pub-hero-screen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 5.5rem var(--p-pad) 2rem;
  overflow: hidden;
}
.pub-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pub-hero-fallback {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 215, 196, 0.2), transparent 55%),
    linear-gradient(135deg, #0a1620 0%, #134e5e 42%, #1a7a6d 70%, #0d1b24 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Crect fill='%230d1b24' width='800' height='600'/%3E%3Cpath fill='%231a3a44' d='M0 380c80-40 160-60 240-50s160 40 240 30 160-50 240-40v230H0z'/%3E%3Cpath fill='%2300d7c433' d='M0 420c100-30 200-20 300 0s200 20 300-10 140-20 200-10v200H0z'/%3E%3C/svg%3E") center/cover;
}
.pub-hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}
.pub-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 13, 18, 0.5) 0%, rgba(6, 13, 18, 0.18) 38%, rgba(6, 13, 18, 0.82) 100%),
    linear-gradient(95deg, rgba(6, 13, 18, 0.88) 0%, rgba(6, 13, 18, 0.4) 48%, rgba(6, 13, 18, 0.08) 100%);
}
.pub-hero-media.is-fallback .pub-hero-img {
  display: none !important;
}
.pub-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 34rem;
  color: #fff;
}
.pub-hero-content .pub-eyebrow {
  color: var(--p-gold);
  text-shadow: none;
}
.pub-hero-content h1 {
  color: #fff;
  font-family: var(--p-font-display);
  font-size: clamp(1.85rem, 7vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
}
.pub-hero-content .pub-lead {
  color: rgba(242, 246, 244, 0.86);
  font-size: 1.05rem;
  max-width: 30rem;
  line-height: 1.5;
}
.pub-btn-on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
}
.pub-btn-on-dark:hover {
  border-color: var(--p-gold);
  color: var(--p-gold);
}
.pub-benefit-pills {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pub-benefit-pills li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 165, 116, 0.35);
  background: rgba(6, 13, 18, 0.45);
  color: rgba(242, 246, 244, 0.92);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pub-home .pub-section {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--p-pad);
  padding-right: var(--p-pad);
}
.pub-home .pub-section { margin-bottom: 2.5rem; }
.pub-home .pub-footer { margin-top: 0; }

@media (min-width: 900px) {
  .pub-hero-screen {
    align-items: center;
    padding: 6.5rem 4rem 4rem;
  }
  .pub-hero-content {
    max-width: min(42rem, 46vw);
  }
  .pub-hero-content h1 {
    font-size: clamp(2.6rem, 4.4vw, 3.75rem);
    max-width: 13ch;
  }
  .pub-hero-img {
    object-position: 70% center;
  }
  .pub-hero-overlay {
    background:
      linear-gradient(95deg, rgba(6, 13, 18, 0.9) 0%, rgba(6, 13, 18, 0.5) 42%, rgba(6, 13, 18, 0.1) 72%, transparent 100%);
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-switcher-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lang-switcher select {
  border: 1px solid var(--p-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--p-ink);
  padding: 0.4rem 0.55rem;
  font: inherit;
  font-size: 0.85rem;
  color-scheme: light;
  cursor: pointer;
  min-height: 40px;
}
.lang-switcher select:focus {
  outline: 2px solid rgba(0, 215, 196, 0.35);
  outline-offset: 1px;
}
.lang-switcher select option {
  background-color: #ffffff;
  color: #111111;
}

.pub-main {
  flex: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.75rem var(--p-pad) calc(5.5rem + var(--p-safe-bottom));
}

.pub-main.pub-main-flush {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.pub-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--p-gold);
  font-weight: 600;
  margin: 0 0 0.65rem;
  font-family: var(--p-font-body);
}
.pub-hero h1,
.pub-page-head h1,
.pub-thanks h1 {
  font-family: var(--p-font-display);
  font-size: clamp(1.75rem, 7.5vw, 2.55rem);
  line-height: 1.1;
  margin: 0 0 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pub-lead {
  color: var(--p-muted);
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.pub-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.85rem;
  width: 100%;
}

.pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--p-font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}
.pub-btn:hover { text-decoration: none; }
.pub-btn-primary {
  background: var(--p-accent);
  color: var(--p-accent-ink);
}
.pub-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.pub-btn-ghost {
  background: transparent;
  color: var(--p-ink);
  border-color: var(--p-line);
}
.pub-btn-ghost:hover { border-color: var(--p-accent); color: var(--p-accent); }
.pub-btn-sm {
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  width: 100%;
}

.pub-panel {
  background: var(--p-panel);
  border: 1px solid var(--p-line);
  border-radius: var(--p-radius);
  padding: 1rem;
  margin: 1rem 0;
}
.pub-panel h2 {
  font-family: var(--p-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

.pub-date-form {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
.pub-date-form .pub-btn { width: 100%; }

.pub-date-form label,
.pub-field label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--p-muted);
  font-weight: 600;
}

.field-input,
.pub-date-form input,
.pub-form input,
.pub-form textarea,
.pub-date-form select {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--p-line);
  background: rgba(7, 16, 24, 0.75);
  color: var(--p-ink);
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-size: 1rem;
}

.pub-form textarea { min-height: 96px; resize: vertical; }

.pub-section { margin: 1.75rem 0; }
.pub-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.pub-section-head h2 {
  font-family: var(--p-font-display);
  margin: 0;
  font-size: 1.2rem;
}
.pub-section-head a { font-size: 0.88rem; white-space: nowrap; }

/* Cards: single column on phone */
.pub-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.pub-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.pub-card:hover {
  transform: translateY(-3px);
}
.pub-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #0a151c;
  overflow: hidden;
  border-radius: var(--p-radius);
}
.pub-card-media img {
  transition: transform 0.45s ease;
}
.pub-card:hover .pub-card-media img {
  transform: scale(1.03);
}
.pub-card-media img,
.pub-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pub-card-empty {
  width: 100%;
  height: 100%;
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(43, 184, 168, 0.1), transparent),
    #0a151c;
}
.pub-card-body .pub-btn-sm {
  width: auto;
  min-width: 8.5rem;
}
.pub-card-body h3 {
  font-family: var(--p-font-display);
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.pub-meta, .pub-specs, .pub-fine, .pub-copy {
  color: var(--p-muted);
  margin: 0.25rem 0;
  font-size: 0.88rem;
  line-height: 1.45;
}
.pub-specs { word-break: break-word; }

.pub-price {
  margin: 0.7rem 0 0.85rem;
  font-family: var(--p-font-display);
}
.pub-price span {
  font-size: 1.55rem;
  font-weight: 600;
}
.pub-price small {
  color: var(--p-gold);
  font-size: 0.82rem;
  margin-left: 0.2rem;
  font-family: var(--p-font-body);
  font-weight: 500;
}
.pub-price-alt {
  display: block;
  margin-top: 0.25rem;
  color: var(--p-muted);
  font-size: 0.8rem;
  font-weight: 400;
  font-family: var(--p-font-body);
}

.pub-page-head { margin: 0.85rem 0 0.75rem; }
.pub-chip {
  display: inline-block;
  max-width: 100%;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--p-accent);
  color: var(--p-accent);
  font-size: 0.78rem;
  word-break: break-word;
}

/* Gallery: stack on mobile */
.pub-gallery {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  grid-template-columns: 1fr;
}
.pub-gallery-main,
.pub-gallery-thumb {
  margin: 0;
  border-radius: var(--p-radius);
  overflow: hidden;
  border: 1px solid var(--p-line);
  aspect-ratio: 16 / 10;
}

.pub-price-stack {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.85rem;
}
.pub-price-card {
  border: 1px solid var(--p-accent);
  border-radius: var(--p-radius);
  padding: 0.9rem 1rem;
  background: rgba(0, 215, 196, 0.06);
}
.pub-price-label {
  margin: 0 0 0.3rem;
  color: var(--p-muted);
  font-size: 0.82rem;
}

.pub-estimate {
  color: var(--p-ink);
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.pub-warn {
  color: var(--p-warn);
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
}

/* Sticky primary CTA on detail/book — phone */
.pub-cta-sticky {
  position: sticky;
  bottom: calc(0.75rem + var(--p-safe-bottom));
  z-index: 30;
  margin: 1.25rem 0 0;
  padding: 0.65rem;
  border-radius: 18px;
  background: rgba(7, 16, 24, 0.92);
  border: 1px solid var(--p-line);
  backdrop-filter: blur(10px);
}

.pub-form { display: grid; gap: 0.9rem; }
.pub-field.has-error .field-input,
.pub-field.has-error input,
.pub-field.has-error textarea {
  border-color: var(--p-danger);
}
.pub-field-error, .pub-errors {
  color: var(--p-danger);
  font-size: 0.85rem;
  margin: 0.3rem 0 0;
}
.pub-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--p-ink);
  font-weight: 500;
  font-size: 0.92rem;
}
.pub-check input {
  width: auto;
  min-height: auto;
  min-width: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pub-thanks {
  text-align: left;
  padding: 1.25rem 1rem;
}
.pub-ref {
  font-size: 0.82rem;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--p-line);
}
.pub-ref code { color: var(--p-accent); }

.pub-empty {
  text-align: center;
  padding: 2rem 0.75rem;
}
.pub-empty h2 {
  font-family: var(--p-font-display);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.pub-footer {
  border-top: 1px solid var(--p-line);
  padding: 1.25rem var(--p-pad) calc(1.5rem + var(--p-safe-bottom));
  margin-top: auto;
}
.pub-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.pub-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0.85rem 0 0.5rem;
  font-size: 0.9rem;
}
.pub-legal-links a {
  color: var(--p-muted);
  text-decoration: none;
}
.pub-legal-links a:hover {
  color: var(--p-accent);
  text-decoration: underline;
}

.pub-legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0.5rem 0 2rem;
}
.pub-legal-block {
  margin: 0 0 1.75rem;
}
.pub-legal-block h2 {
  font-family: var(--p-font-display);
  font-size: 1.15rem;
  color: var(--p-accent);
  margin: 0 0 0.65rem;
}
.pub-legal-block p {
  margin: 0;
  color: var(--p-muted);
  line-height: 1.55;
}
.pub-legal .pub-check-list {
  margin: 0;
}
.pub-legal-cta {
  margin: 1.5rem 0 0;
}
.pub-check a {
  color: var(--p-accent);
}
.pub-footer-brand {
  font-family: var(--p-font-display);
  font-weight: 600;
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--p-ink);
  letter-spacing: -0.01em;
}
.pub-contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

/* Tablet+ */
@media (min-width: 560px) {
  .pub-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pub-btn,
  .pub-btn-sm {
    width: auto;
  }
  .pub-price-stack {
    grid-template-columns: 1fr 1fr;
  }
  .pub-thanks { text-align: center; }
  .pub-contact-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (min-width: 720px) {
  :root { --p-pad: 1.25rem; --p-radius: 20px; }

  .pub-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    top: 16px;
    left: 24px;
    right: 24px;
    padding: 0.7rem 1rem 0.7rem 1.15rem;
    gap: 1rem 1.25rem;
  }
  .pub-nav {
    display: flex;
    justify-self: center;
  }
  .pub-header-actions {
    justify-self: end;
  }
  .pub-brand img { width: 40px; height: 40px; }
  .pub-brand strong { font-size: 1.15rem; }
  .pub-brand small { font-size: 0.66rem; letter-spacing: 0.16em; }

  .pub-main {
    padding: 0.5rem var(--p-pad) 3rem;
  }
  .pub-main.pub-main-flush {
    padding: 0;
    max-width: none;
    margin: 0;
  }
  .pub-body:not(.pub-home) .pub-main {
    padding-top: 6rem;
  }

  .pub-hero {
    padding: 2.25rem 0 1.25rem;
    max-width: 40rem;
  }
  .pub-date-form {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
  .pub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .pub-gallery {
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
  }
  .pub-gallery-main { grid-row: span 2; }
  .pub-cta-sticky {
    position: static;
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
  }
  .pub-section-head h2 { font-size: 1.4rem; }
}

@media (min-width: 960px) {
  .pub-grid { grid-template-columns: repeat(3, 1fr); }
  .pub-body {
    background:
      radial-gradient(900px 520px at 10% -10%, rgba(43, 184, 168, 0.12), transparent 55%),
      radial-gradient(680px 420px at 100% 0%, rgba(196, 165, 116, 0.07), transparent 50%),
      linear-gradient(168deg, var(--p-bg0), var(--p-bg1) 55%, #08141b);
    background-attachment: fixed;
  }
}

/* Fleet page banner + home handover strip */
.pub-page-banner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 180px;
  margin: -0.5rem calc(-1 * var(--p-pad)) 1rem;
  width: calc(100% + 2 * var(--p-pad));
}
.pub-page-banner img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.pub-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 24, 0.75), rgba(7, 16, 24, 0.25));
}
.pub-page-banner-copy {
  position: absolute;
  left: var(--p-pad);
  bottom: 1rem;
  z-index: 1;
  color: #fff;
}
.pub-page-banner-copy h1 {
  margin: 0;
  font-family: var(--p-font-display);
  font-size: 1.6rem;
}
.pub-page-head-after-banner { margin-top: 0; }

.pub-handover {
  max-width: 1320px;
  margin: 0 auto 2.5rem;
  padding: 0 var(--p-pad);
  display: grid;
  gap: 1rem;
}
.pub-handover-media {
  border-radius: var(--p-radius);
  overflow: hidden;
  border: 1px solid var(--p-line);
  aspect-ratio: 16 / 10;
}
.pub-handover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pub-handover-copy h2 {
  font-family: var(--p-font-display);
  font-size: 1.4rem;
  margin: 0 0 0.65rem;
}
@media (min-width: 800px) {
  .pub-page-banner,
  .pub-page-banner img { min-height: 240px; height: 240px; }
  .pub-handover {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 1.75rem;
  }
}

/* Marketing bands */
.pub-facts {
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid var(--p-line);
}
.pub-facts-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.25rem var(--p-pad);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.pub-fact-label {
  display: block;
  color: var(--p-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.pub-fact strong {
  font-family: var(--p-font-display);
  font-size: 1.05rem;
}
.pub-fact small { color: var(--p-gold); font-size: 0.8rem; }

.pub-band {
  padding: 3.25rem 0;
}
.pub-band-alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
}
.pub-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--p-pad);
}
.pub-section-intro {
  max-width: 38rem;
  margin-bottom: 1.85rem;
}
.pub-section-intro h2 {
  font-family: var(--p-font-display);
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  margin: 0 0 0.7rem;
  line-height: 1.12;
  font-weight: 600;
}
.pub-date-form-lg {
  margin: 0;
}
.pub-grid-featured {
  margin-bottom: 1.5rem;
}
.pub-more-fleet {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--p-line);
}
.pub-more-fleet h3 {
  font-family: var(--p-font-display);
  margin: 0 0 0.35rem;
}
.pub-more-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.pub-more-list a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--p-line);
  background: var(--p-panel);
  color: inherit;
  text-decoration: none;
}
.pub-more-list a:hover { border-color: var(--p-accent); }
.pub-more-list span { color: var(--p-muted); font-size: 0.88rem; }

.pub-check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.pub-check-list li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--p-muted);
}
.pub-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--p-accent);
}

.pub-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.pub-step-num {
  display: block;
  color: var(--p-accent);
  font-family: var(--p-font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.pub-steps h3 {
  font-family: var(--p-font-display);
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.pub-steps p {
  margin: 0;
  color: var(--p-muted);
  line-height: 1.45;
}

.pub-essentials {
  display: grid;
  gap: 1rem;
}
.pub-essentials article {
  padding: 1.1rem 1.15rem;
  border-radius: var(--p-radius);
  border: 1px solid var(--p-line);
  background: var(--p-panel);
}
.pub-essentials h3 {
  font-family: var(--p-font-display);
  margin: 0 0 0.45rem;
  color: var(--p-accent);
}
.pub-essentials p {
  margin: 0;
  color: var(--p-muted);
  line-height: 1.45;
}

.pub-cta-final {
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(0, 215, 196, 0.18), transparent 55%),
    linear-gradient(165deg, #0a1620, #0d1b24);
  border-top: 1px solid var(--p-line);
}
.pub-cta-final-inner {
  max-width: 40rem;
}
.pub-cta-final h2 {
  font-family: var(--p-font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin: 0 0 0.65rem;
}

.pub-home .pub-handover {
  max-width: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 720px) {
  .pub-facts-inner { grid-template-columns: repeat(3, 1fr); }
  .pub-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .pub-essentials { grid-template-columns: repeat(3, 1fr); }
  .pub-more-list { grid-template-columns: 1fr 1fr; }
}

/* FAB + scroll top */
.pub-fab-whatsapp {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, calc(14px + var(--p-safe-bottom)));
  z-index: 9998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.pub-fab-whatsapp:hover {
  transform: scale(1.06);
  filter: brightness(1.05);
  text-decoration: none !important;
}

.pub-scroll-top {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(78px, calc(78px + var(--p-safe-bottom)));
  z-index: 9997;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px 0 0 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.pub-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.pub-scroll-top:hover {
  background: rgba(0, 0, 0, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .pub-fab-whatsapp,
  .pub-scroll-top,
  .pub-card,
  .pub-card-media img,
  .pub-reveal {
    transition: none;
  }
  .pub-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Section reveal */
.pub-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pub-reveal.is-in {
  opacity: 1;
  transform: none;
}
