/* Cozmo Yachts — cinematic concierge homepage
   Palette sampled from official logo SVG (#E8A317 amber + #16212B ink). */
:root {
  --noir: #0A1622;
  --ink: #16212B;
  --ink-2: #0E1B26;
  --paper: #F7FAFB;
  --sand: #EFE9DC;
  --muted: #5B6B78;
  --line: #DCE3E8;
  --line-dark: rgba(255,255,255,0.14);
  --marine: #11507A;
  --sun: #E8A317;
  --sun-deep: #C9881B;
  --focus: #11507A;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --max: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }

/* ---- Type rhythm ---- */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em; line-height: 1.04; }
h1 { font-size: clamp(48px, 7.2vw, 104px); }
h2 { font-size: clamp(36px, 4.6vw, 64px); }
h3 { font-size: clamp(24px, 2.4vw, 32px); }

p { margin: 0; }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(72px, 11vh, 140px) 0; }
.section-dark { background: var(--noir); color: var(--paper); }
.section-sand { background: var(--sand); }

.rule {
  height: 1px; background: var(--line); width: 100%;
}
.rule-dark { background: var(--line-dark); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--noir); }
.btn-sun {
  background: var(--sun);
  color: var(--ink);
}
.btn-sun:hover { background: var(--sun-deep); }
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--paper);
  background: transparent;
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-wa {
  background: #25D366;
  color: #04200F;
}
.btn-wa:hover { background: #1DBE5A; }
.btn-link {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 0; border-bottom: 1px solid currentColor;
  display: inline-block; font-weight: 500;
}

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .35s ease, color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav-light { background: rgba(247,250,251,0.92); color: var(--ink); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-transparent { background: linear-gradient(180deg, rgba(10,22,34,0.55), rgba(10,22,34,0)); color: var(--paper); border-bottom: 1px solid transparent; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  gap: 24px;
}
.nav-links { display: flex; gap: 28px; font-size: 12.5px; letter-spacing: 0.04em; font-weight: 500; }
.nav-links a { padding: 8px 2px; position: relative; }
.nav-links a:hover { color: var(--sun); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 2px; font-size: 11px; letter-spacing: 0.14em; font-weight: 500; text-transform: uppercase; }
.lang button { padding: 6px 8px; opacity: 0.55; }
.lang button.active { opacity: 1; border-bottom: 1px solid var(--sun); }
.lang button:hover { opacity: 1; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  background: var(--noir);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease, transform 12s ease-out;
  transform: scale(1.06);
}
.hero-bg.active { transform: scale(1.0); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,34,0.5) 0%, rgba(10,22,34,0.1) 35%, rgba(10,22,34,0.7) 100%);
}
.hero-content {
  position: relative;
  padding: 0 var(--gutter) 56px;
  max-width: var(--max); width: 100%;
  margin: 0 auto;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 36px;
}
.hero h1 { max-width: 14ch; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--sun); font-weight: 300; }
.hero-sub {
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 28px;
  color: rgba(247,250,251,0.85);
  font-weight: 300;
}
.hero-credentials {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 40px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: rgba(247,250,251,0.75);
}
.hero-credentials > div { display: flex; align-items: center; gap: 10px; }
.hero-credentials .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--sun); }

.hero-indicator {
  position: absolute; bottom: 24px; right: var(--gutter);
  display: flex; gap: 6px;
}
.hero-indicator button {
  width: 36px; height: 2px; background: rgba(255,255,255,0.25);
  transition: background .3s ease;
}
.hero-indicator button.active { background: var(--sun); }

.scroll-hint {
  position: absolute; bottom: 28px; left: var(--gutter);
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(247,250,251,0.6);
}
.scroll-hint .line { width: 60px; height: 1px; background: rgba(255,255,255,0.4); animation: scrollHint 2.4s ease-in-out infinite; transform-origin: left; }
@keyframes scrollHint {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.3); opacity: 0.4; }
}

/* ---- Availability widget ---- */
.availability {
  position: relative;
  margin: -90px auto 0;
  max-width: var(--max);
  padding: 0 var(--gutter);
  z-index: 4;
}
.availability-card {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr auto;
  align-items: stretch;
  box-shadow: 0 30px 80px -30px rgba(10,22,34,0.45);
  border: 1px solid var(--line);
}
.field {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.field:last-of-type { border-right: 0; }
.field label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.field input, .field select, .field .field-value {
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  padding: 2px 0;
  outline: none;
  font-weight: 400;
}
.field select { appearance: none; padding-right: 18px; cursor: pointer; }
.field .stepper { display: flex; align-items: center; justify-content: space-between; }
.field .stepper button { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; font-size: 13px; color: var(--muted); }
.field .stepper button:hover { border-color: var(--ink); color: var(--ink); }
.availability-submit {
  background: var(--ink);
  color: var(--paper);
  padding: 0 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  gap: 8px;
  transition: background .25s ease;
}
.availability-submit:hover { background: var(--sun); color: var(--ink); }
.availability-note {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.availability-note .pip { color: var(--sun); }
@media (max-width: 980px) {
  .availability-card { grid-template-columns: 1fr 1fr; }
  .field { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .availability-submit { grid-column: 1 / -1; padding: 22px; }
  .availability { margin-top: -40px; }
}

/* ---- Trust strip ---- */
.trust {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.trust-stat {
  padding: 0 32px;
  border-left: 1px solid var(--line);
  min-width: 180px;
}
.trust-stat:first-child { border-left: 0; padding-left: 0; }
.trust-stat .num { font-family: var(--serif); font-size: 36px; line-height: 1; font-weight: 400; }
.trust-stat .num em { color: var(--sun); font-style: normal; }
.trust-stat .lbl { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.trust-badge { display: flex; align-items: center; gap: 14px; }
.trust-badge img { width: 64px; height: auto; }
.trust-badge-text { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); max-width: 16ch; }
@media (max-width: 900px) {
  .trust { grid-template-columns: 1fr; }
  .trust-stats { overflow-x: auto; padding-bottom: 6px; }
  .trust-stat { min-width: 150px; }
}

/* ---- Section heading ---- */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head .left { max-width: 60ch; }
.section-head h2 { font-weight: 400; margin-top: 18px; }
.section-head h2 em { font-style: italic; color: var(--marine); font-weight: 400; }
.section-head .right { font-size: 14px; color: var(--muted); max-width: 32ch; text-align: right; line-height: 1.6; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .right { text-align: left; }
}

/* ---- Fleet ---- */
.fleet-tabs { display: flex; gap: 6px; margin-bottom: 36px; flex-wrap: wrap; }
.fleet-tab {
  padding: 10px 18px;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted);
  transition: all .2s ease;
}
.fleet-tab:hover { color: var(--ink); border-color: var(--ink); }
.fleet-tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.fleet-tab .count { opacity: 0.5; margin-left: 6px; font-size: 10px; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.yacht-card {
  position: relative;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .35s ease;
}
.yacht-card:hover { transform: translateY(-4px); }
.yacht-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.yacht-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s ease;
}
.yacht-card:hover .yacht-img img { transform: scale(1.05); }
.yacht-img.placeholder {
  background: repeating-linear-gradient(45deg, var(--sand), var(--sand) 8px, #E5DECC 8px, #E5DECC 16px);
  display: flex; align-items: center; justify-content: center;
}
.yacht-img.placeholder span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted);
  background: var(--paper); padding: 8px 12px;
  text-transform: uppercase;
}
.yacht-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(247,250,251,0.94);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.yacht-fav {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(247,250,251,0.94);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .2s ease;
}
.yacht-fav:hover { background: var(--paper); }
.yacht-fav.active { background: var(--sun); }
.yacht-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 0 8px;
  gap: 16px;
}
.yacht-meta h3 { font-size: 26px; font-weight: 400; }
.yacht-builder { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.yacht-specs {
  display: flex; gap: 22px;
  font-size: 12px; color: var(--muted);
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.yacht-specs strong { color: var(--ink); font-weight: 500; }
.yacht-specs .unknown { font-style: italic; opacity: 0.6; }
.yacht-cta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.yacht-cta .price { color: var(--marine); font-weight: 500; }
.yacht-cta .price .from { font-size: 10px; opacity: 0.6; margin-right: 4px; }
.yacht-cta .arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.yacht-card:hover .yacht-cta .arrow { background: var(--sun); border-color: var(--sun); }

/* ---- Experiences ---- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}
.exp-card.wide { aspect-ratio: 16/10; }
.exp-card.tall { aspect-ratio: 3/4; }
.exp-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
  transition: transform 1.1s ease, opacity .35s ease;
}
.exp-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,34,0.05) 30%, rgba(10,22,34,0.85) 100%);
}
.exp-card:hover img { transform: scale(1.05); opacity: 1; }
.exp-content {
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  z-index: 2;
}
.exp-content .eyebrow { color: var(--sun); }
.exp-content h3 { color: var(--paper); margin-top: 8px; font-weight: 400; }
.exp-content p { margin-top: 10px; font-size: 14px; line-height: 1.5; max-width: 32ch; color: rgba(247,250,251,0.78); }
.exp-content .meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 18px; opacity: 0.7; }
.exp-card.span-6 { grid-column: span 6; }
.exp-card.span-4 { grid-column: span 4; }
.exp-card.span-8 { grid-column: span 8; }
.exp-card.span-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .exp-card.span-6, .exp-card.span-4, .exp-card.span-8, .exp-card.span-12 { grid-column: span 12; }
}

/* ---- Routes ---- */
.routes-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.routes-map {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--sand);
  overflow: hidden;
}
.routes-map img { width: 100%; height: 100%; object-fit: cover; }
.routes-map::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,80,122,0.18), rgba(232,163,23,0.08));
  mix-blend-mode: multiply;
  z-index: 1;
}
.route-pin {
  position: absolute; z-index: 2;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
  transition: opacity .35s ease;
}
.route-pin .badge {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  white-space: nowrap;
  margin-bottom: 6px;
  box-shadow: 0 4px 14px -4px rgba(10,22,34,0.5);
}
.route-pin .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(232,163,23,0.25), 0 0 0 8px rgba(232,163,23,0.1);
}
.route-pin.dim { opacity: 0.3; }
.route-pin.dim .badge { background: var(--paper); color: var(--ink); }
.route-pin.dim .dot { background: var(--ink); box-shadow: 0 0 0 4px rgba(10,22,34,0.06); }

.route-list { display: flex; flex-direction: column; }
.route-step {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding .25s ease;
}
.route-step:hover { padding-left: 8px; }
.route-step.active { padding-left: 8px; }
.route-step .num { font-family: var(--serif); font-size: 22px; color: var(--muted); font-weight: 400; }
.route-step.active .num { color: var(--sun); }
.route-step h3 { font-size: 24px; font-weight: 400; }
.route-step .sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.route-step .duration { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.route-step.active .duration { color: var(--marine); }
@media (max-width: 900px) {
  .routes-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Promo strip ---- */
.promo-band {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.promo {
  padding: 32px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.promo:last-child { border-right: 0; }
.promo .icon { font-family: var(--serif); font-size: 38px; color: var(--sun); font-weight: 400; line-height: 1; }
.promo h4 { font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; margin-top: 16px; }
.promo p { font-size: 13px; line-height: 1.55; color: rgba(247,250,251,0.7); margin-top: 8px; }
@media (max-width: 900px) {
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo { border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  background: var(--sand);
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 32px; font-weight: 400; }
.about-text h2 em { font-style: italic; color: var(--marine); font-weight: 400; }
.about-text p { font-size: 17px; line-height: 1.65; color: var(--ink); font-weight: 300; margin-bottom: 22px; }
.about-text p.muted { color: var(--muted); font-size: 15px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.about-stats > div { border-right: 1px solid var(--line); padding-right: 20px; }
.about-stats > div:last-child { border-right: 0; }
.about-stats .num { font-family: var(--serif); font-size: 42px; color: var(--marine); font-weight: 400; line-height: 1; }
.about-stats .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-card {
  padding: 40px;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.02);
}
.contact-card .eyebrow { color: var(--sun); }
.contact-card h3 { color: var(--paper); margin-top: 12px; font-weight: 400; font-size: 30px; }
.contact-card p { font-size: 15px; line-height: 1.65; color: rgba(247,250,251,0.78); margin-top: 14px; }
.contact-card .addr { font-family: var(--serif); font-size: 20px; line-height: 1.4; color: var(--paper); margin-top: 18px; font-style: italic; font-weight: 300; }
.contact-card .row { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.contact-card .geo { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 16px; letter-spacing: 0.1em; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- Footer ---- */
.footer {
  background: var(--noir);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h5 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,250,251,0.5); font-weight: 500; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer ul a:hover { color: var(--sun); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,250,251,0.5);
  gap: 24px; flex-wrap: wrap;
}
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a:hover { color: var(--sun); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- WhatsApp FAB ---- */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 40;
  background: #25D366;
  color: #04200F;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px -8px rgba(37,211,102,0.6);
  transition: transform .25s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 26px; height: 26px; }
.wa-fab .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--sun); color: var(--ink);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}

/* ---- Modal ---- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10,22,34,0.65);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  color: var(--ink);
  width: 560px; max-width: 100%;
  position: relative;
  padding: 48px;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.modal h3 { font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.modal h3 em { font-style: italic; color: var(--marine); }
.modal .summary {
  border: 1px solid var(--line);
  padding: 22px;
  margin-top: 24px;
  background: #FAFCFD;
}
.modal .summary-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.modal .summary-row:last-child { border-bottom: 0; }
.modal .summary-row .lbl { color: var(--muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.modal .summary-row .val { font-family: var(--serif); font-size: 18px; }
.modal .wa-preview {
  background: #E5F5DA;
  border-left: 3px solid #25D366;
  padding: 18px 20px;
  margin-top: 24px;
  font-size: 14px; line-height: 1.55;
  font-family: var(--sans);
  color: #14401F;
  white-space: pre-line;
}
.modal .actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.modal .actions .btn { flex: 1; justify-content: center; }
.modal .fine { font-size: 12px; color: var(--muted); margin-top: 18px; line-height: 1.55; }

/* ---- Misc ---- */
.kbd {
  font-family: var(--mono); font-size: 10px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
}
.divider-label {
  display: flex; align-items: center; gap: 20px; margin: 80px 0 40px;
}
.divider-label .line { flex: 1; height: 1px; background: var(--line); }
.divider-label .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.notice {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 0;
}
.notice .pip { width: 5px; height: 5px; border-radius: 50%; background: var(--sun); }

/* fade-in animation */
.fade-in { opacity: 0; transform: translateY(14px); animation: fadeUp .6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* shortlist toast */
.toast {
  position: fixed; left: 50%; bottom: 96px;
  transform: translateX(-50%);
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; font-size: 12.5px; letter-spacing: 0.06em;
  z-index: 60;
  animation: toastIn .3s ease;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }
