﻿/* Perfect Shine 305 , design system
   Palette derived from the business's own black/white badge logo and its
   Miami driveway photography: charcoal ink, warm bone paper, and a single
   restrained amber-copper accent (evokes wax and hazard-tape warmth without
   defaulting to black-and-gold or luxury-brand cliches). */

:root{
  --ink: #14161a;
  --ink-2: #1d2025;
  --paper: #f4f1ea;
  --paper-2: #eeeae1;
  --sand: #e2dccd;
  --line: rgba(20,22,26,0.12);
  --line-dark: rgba(244,241,234,0.16);
  --text: #1b1c1f;
  --text-muted: #5c5952;
  --on-dark: #efece4;
  --on-dark-muted: #a5a299;
  --accent: #b85c1e;
  --accent-2: #9c4c17;
  --accent-ink: #2c1608;
  --focus: #1c6fb0;

  --font-head: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1240px;
  --gutter: 24px;
  --radius-s: 2px;
  --radius-m: 3px;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

@media (prefers-color-scheme: dark){
  :root{ color-scheme: dark light; }
}

*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 60px; /* mobile action bar */
}
@media (min-width: 900px){ body{ padding-bottom: 0; } }

img{ max-width: 100%; display: block; }
[hidden]{ display: none !important; }
fieldset{ min-width: 0; border: 0; padding: 0; margin: 0; }
a{ color: inherit; }
button{ font: inherit; }

.skip-link{
  position: absolute; left: 8px; top: -60px; z-index: 999;
  background: var(--ink); color: var(--on-dark); padding: 12px 18px;
  text-decoration: none; font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus{ top: 8px; }

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

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow{
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.dark .eyebrow{ color: var(--accent); }

h1, h2, h3, h4{
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.h1{ font-size: clamp(2.6rem, 3.2vw + 1.6rem, 5.6rem); }
.h2{ font-size: clamp(2rem, 2.2vw + 1.3rem, 3.6rem); }
.h3{ font-size: clamp(1.35rem, 1vw + 1.05rem, 1.9rem); }
.lede{ font-size: clamp(1.05rem, .4vw + 1rem, 1.25rem); color: var(--text-muted); max-width: 60ch; }
.dark .lede{ color: var(--on-dark-muted); }

.section{ padding: var(--sp-7) 0; }
.section--tight{ padding: var(--sp-6) 0; }
.dark{ background: var(--ink); color: var(--on-dark); }

.hairline{ height: 1px; background: var(--line); border: 0; margin: 0; }
.dark .hairline{ background: var(--line-dark); }

/* Buttons */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-s);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  white-space: normal;
  text-align: center;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn .arrow{ transition: transform .18s var(--ease); }
.btn:hover .arrow{ transform: translateX(4px); }
.btn:hover{ transform: translateY(-1px); }
.btn-accent{ background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover{ background: var(--accent-2); border-color: var(--accent-2); }
.btn-ghost{ background: transparent; color: var(--ink); }
.dark .btn-ghost{ color: var(--on-dark); border-color: var(--line-dark); }
.btn-ghost-dark{ background: transparent; color: var(--on-dark); border-color: var(--line-dark); }
.btn-ghost-dark:hover{ background: rgba(239,236,228,0.08); }
.btn-block{ width: 100%; flex: 1; }
.btn-sm{ padding: 11px 18px; font-size: 0.85rem; }

.link{
  text-decoration: none;
  font-weight: 700;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size .25s var(--ease);
  padding-bottom: 2px;
}
.link:hover{ background-size: 100% 2px; }

/* Header */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0;
  transition: padding .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header .bar{ display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.site-header.is-scrolled{
  padding: 12px 0;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}
body.page-dark-top .site-header:not(.is-scrolled){ color: var(--on-dark); }
body.page-dark-top .site-header:not(.is-scrolled) .wordmark-sub{ color: var(--on-dark-muted); }
.site-header.is-scrolled{ color: var(--text); }

.wordmark{ display: flex; flex-direction: column; text-decoration: none; color: inherit; line-height: 1; }
.wordmark-main{ font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; letter-spacing: 0.02em; }
.wordmark-sub{ font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

.nav-desktop{ display: none; }
@media (min-width: 980px){
  .nav-desktop{ display: flex; align-items: center; gap: var(--sp-4); }
  .nav-desktop a{ text-decoration: none; font-weight: 600; font-size: 0.94rem; }
  .nav-actions{ display: flex; align-items: center; gap: 14px; }
}
.nav-mobile-toggle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1.5px solid currentColor; background: transparent;
  color: inherit; cursor: pointer; border-radius: var(--radius-s);
}
@media (min-width: 980px){ .nav-mobile-toggle{ display: none; } }
.nav-mobile-toggle svg{ width: 20px; height: 20px; }

.nav-sheet{
  position: fixed; inset: 0; z-index: 600;
  background: var(--ink); color: var(--on-dark);
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) var(--sp-5);
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
}
.nav-sheet.is-open{ transform: translateY(0); }
.nav-sheet-top{ display: flex; align-items: center; justify-content: space-between; }
.nav-sheet-close{ width: 44px; height: 44px; border: 1.5px solid var(--line-dark); background: transparent; color: var(--on-dark); border-radius: var(--radius-s); cursor: pointer; }
.nav-sheet-links{ list-style: none; margin: var(--sp-5) 0 0; padding: 0; display: flex; flex-direction: column; }
.nav-sheet-links a{ display: block; padding: 16px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; color: var(--on-dark); font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; }
.nav-sheet-actions{ margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: var(--sp-4); }

/* Mobile bottom action bar */
.mobile-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: flex; background: var(--ink); border-top: 1px solid var(--line-dark);
}
@media (min-width: 900px){ .mobile-bar{ display: none; } }
.mobile-bar a{
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px; text-decoration: none; color: var(--on-dark);
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  border-right: 1px solid var(--line-dark);
}
.mobile-bar a:last-child{ border-right: 0; background: var(--accent); }
.mobile-bar svg{ width: 18px; height: 18px; flex-shrink: 0; }

/* Hero */
.hero{ position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--on-dark); overflow: hidden; }
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.08); opacity: 0; transition: transform 1.4s var(--ease), opacity 1s var(--ease); }
.hero-media.is-ready img{ transform: scale(1.015); opacity: 1; }
.hero-media::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,16,19,.35) 0%, rgba(15,16,19,.35) 30%, rgba(12,13,15,.92) 100%); }
.hero-content{ position: relative; z-index: 1; width: 100%; padding: calc(var(--sp-7) + 60px) 0 var(--sp-6); }
.hero-headline{ overflow: hidden; }
.hero-headline .line{ display: block; overflow: hidden; }
.hero-headline .line span{ display: block; transform: translateY(110%); transition: transform .9s var(--ease); }
.hero-media.is-ready ~ .hero-content .hero-headline .line span,
.hero.is-ready .hero-headline .line span{ transform: translateY(0); }
.hero-headline{ font-size: clamp(2.6rem, 5.4vw + 1rem, 6.4rem); font-family: var(--font-head); font-weight: 900; letter-spacing: -0.015em; margin: var(--sp-2) 0 var(--sp-3); }
.hero-headline em{ font-style: normal; color: var(--accent); }
.hero-meta{ display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid var(--line-dark); }
.hero-meta-item{ display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item .label{ font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); }
.hero-meta-item .value{ font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--sp-4); }

/* Page header (non-hero pages) */
.page-head{ padding: calc(var(--sp-7) + 40px) 0 var(--sp-6); }
.page-head .h1{ margin-top: var(--sp-2); }

/* Promise strip */
.promise-strip{ padding: var(--sp-6) 0; }
.promise-grid{ display: grid; grid-template-columns: 1fr; }
@media (min-width: 760px){ .promise-grid{ grid-template-columns: repeat(4, 1fr); } }
.promise-item{ padding: var(--sp-4) var(--sp-3) var(--sp-4) 0; border-top: 1px solid var(--line); }
@media (min-width: 760px){
  .promise-item{ border-top: none; border-left: 1px solid var(--line); padding: 0 var(--sp-3); }
  .promise-item:first-child{ border-left: none; padding-left: 0; }
}
.promise-item .num{ font-family: var(--font-head); font-size: 0.8rem; color: var(--accent); font-weight: 800; }
.promise-item h3{ margin-top: var(--sp-2); font-size: 1.15rem; }
.promise-item p{ margin: var(--sp-1) 0 0; color: var(--text-muted); font-size: 0.95rem; }
.dark .promise-item{ border-color: var(--line-dark); }

/* Section headers */
.section-head{ display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.section-head-row{ display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--sp-3); }

/* Packages / collection index list */
.pkg-list{ list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.dark .pkg-list{ border-top-color: var(--line-dark); }
.pkg-row{
  border-bottom: 1px solid var(--line);
  padding: var(--sp-4) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border-left: 0; border-right: 0; border-top: 0;
  width: 100%;
  text-align: left;
}
.dark .pkg-row{ border-bottom-color: var(--line-dark); }
.pkg-row .order{ font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: 1rem; width: 2.4ch; }
.pkg-row .name{ font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 1.6vw + 1rem, 2.1rem); transition: transform .3s var(--ease), color .2s var(--ease); }
.pkg-row .goto{ font-size: 0.85rem; font-weight: 700; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.dark .pkg-row .goto{ color: var(--on-dark-muted); }
.pkg-row:hover .name{ color: var(--accent); transform: translateX(6px); }
.pkg-detail{ overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); grid-column: 1 / -1; }
.pkg-detail-inner{ padding: 0 0 var(--sp-4) 2.4ch; display: grid; gap: var(--sp-3); }
@media (min-width: 700px){ .pkg-detail-inner{ grid-template-columns: 1.2fr 1fr; align-items: start; } }
.pkg-row[aria-expanded="true"] + .pkg-detail{ max-height: 420px; }

/* Cinematic feature */
.feature{ position: relative; min-height: 70vh; display: flex; align-items: flex-end; color: var(--on-dark); }
.feature-media{ position: absolute; inset: 0; }
.feature-media img{ width: 100%; height: 100%; object-fit: cover; }
.feature-media::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,15,0.15), rgba(12,13,15,0.88)); }
.feature-content{ position: relative; z-index: 1; padding: var(--sp-6) 0; width: 100%; }
.stat-row{ display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-4); }
@media (min-width: 760px){ .stat-row{ grid-template-columns: repeat(4, 1fr); } }
.stat-row > div{ border-top: 1px solid var(--line-dark); padding-top: var(--sp-2); }
.stat-num{ font-family: var(--font-head); font-weight: 900; font-size: clamp(1.6rem, 2vw + 1rem, 2.6rem); }
.stat-label{ font-size: 0.85rem; color: var(--on-dark-muted); margin-top: 4px; }

/* Cards */
.grid-asym{ display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 860px){ .grid-asym{ grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; } }
.card{ position: relative; overflow: hidden; background: var(--ink); color: var(--on-dark); border-radius: var(--radius-m); }
.card-wide{ grid-column: span 1; }
@media (min-width: 860px){ .card-wide{ grid-row: span 2; } }
.card .media{ aspect-ratio: 4/5; overflow: hidden; }
.card-wide .media{ aspect-ratio: 4/5; }
@media (min-width: 860px){ .card-wide .media{ aspect-ratio: 3/4; } }
.card .media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .media img{ transform: scale(1.05); }
.card .body{ position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: var(--sp-3); background: linear-gradient(0deg, rgba(10,11,13,.85), rgba(10,11,13,0)); }
.card .body h3{ font-size: 1.1rem; }
.card .body p{ margin: 4px 0 0; font-size: 0.85rem; color: var(--on-dark-muted); }

/* Gallery */
.filter-bar{ position: sticky; top: 0; z-index: 50; background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px 0; margin-bottom: var(--sp-4); }
.filter-chips{ display: flex; flex-wrap: wrap; gap: 10px; }
.chip{ border: 1.5px solid var(--line); background: transparent; padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 0.85rem; cursor: pointer; }
.chip[aria-pressed="true"]{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-2); }
@media (min-width: 700px){ .gallery-grid{ grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); } }
.gallery-item{ border: 0; padding: 0; background: none; cursor: zoom-in; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-s); position: relative; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item .tag{ position: absolute; left: 10px; bottom: 10px; background: rgba(20,22,26,.75); color: var(--on-dark); font-size: 0.72rem; font-weight: 700; padding: 5px 9px; border-radius: 999px; }
.gallery-empty{ padding: var(--sp-6) 0; text-align: center; color: var(--text-muted); }

dialog.lightbox{ border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh; width: min(920px, 92vw); }
dialog.lightbox::backdrop{ background: rgba(10,11,13,.92); }
.lightbox-inner{ position: relative; background: var(--ink); }
.lightbox-inner img{ width: 100%; max-height: 78vh; object-fit: contain; background: #000; }
.lightbox-caption{ color: var(--on-dark); padding: 14px 18px; font-size: 0.9rem; display: flex; justify-content: space-between; gap: 12px; }
.lightbox-close{ position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line-dark); background: rgba(20,22,26,.7); color: var(--on-dark); cursor: pointer; z-index: 2; }
.lightbox-nav{ position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line-dark); background: rgba(20,22,26,.55); color: var(--on-dark); cursor: pointer; }
.lightbox-nav.prev{ left: 10px; } .lightbox-nav.next{ right: 10px; }

/* Location / full bleed */
.full-bleed{ position: relative; min-height: 60vh; display: flex; align-items: center; color: var(--on-dark); }
.full-bleed .fb-media{ position: absolute; inset: 0; }
.full-bleed .fb-media img{ width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); }
.full-bleed .fb-media::after{ content: ""; position: absolute; inset: 0; background: rgba(12,13,15,.68); }
.full-bleed .fb-content{ position: relative; z-index: 1; }
.address-card{ background: var(--ink); border: 1px solid var(--line-dark); padding: var(--sp-4); display: inline-flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-3); }

.map-embed{ position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-m); filter: grayscale(0.35); transition: filter .3s var(--ease); border: 1px solid var(--line); }
.map-embed:hover, .map-embed:focus-within{ filter: grayscale(0); }
.map-embed iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* How it works */
.steps-grid{ display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 760px){ .steps-grid{ grid-template-columns: repeat(4, 1fr); } }
.step{ border-top: 2px solid var(--line-dark); padding-top: var(--sp-2); }
.step .step-num{ font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--accent); }
.step h3{ margin-top: var(--sp-1); font-size: 1.2rem; }
.step p{ color: var(--on-dark-muted); margin: 6px 0 0; font-size: 0.92rem; }

/* Reviews */
.review-block{ display: grid; grid-template-columns: 1fr; gap: var(--sp-4); align-items: center; }
@media (min-width: 860px){ .review-block{ grid-template-columns: 1fr 1.3fr; } }
.rating-card{ border: 1px solid var(--line); padding: var(--sp-4); text-align: center; }
.rating-num{ font-family: var(--font-head); font-weight: 900; font-size: 4rem; line-height: 1; }
.stars{ color: var(--accent); font-size: 1.4rem; letter-spacing: 2px; margin-top: var(--sp-1); }
.rating-count{ color: var(--text-muted); margin-top: 6px; font-size: 0.9rem; }
.review-note{ color: var(--text-muted); font-size: 0.95rem; }

/* Instagram strip */
.ig-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
@media (min-width: 700px){ .ig-grid{ grid-template-columns: repeat(6, 1fr); gap: 10px; } }
.ig-grid a{ display: block; aspect-ratio: 1; overflow: hidden; }
.ig-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease), opacity .2s; }
.ig-grid a:nth-child(even){ margin-top: 14px; }
@media (max-width: 699px){ .ig-grid a:nth-child(even){ margin-top: 0; } }
.ig-grid a:hover img{ transform: scale(1.05); opacity: .9; }

/* FAQ */
.faq-list{ border-top: 1px solid var(--line); max-width: 860px; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item summary{ list-style: none; cursor: pointer; padding: var(--sp-3) 0; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .plus{ flex-shrink: 0; width: 26px; height: 26px; border: 1.5px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after{ content: ""; position: absolute; background: var(--ink); }
.faq-item summary .plus::before{ width: 11px; height: 1.5px; }
.faq-item summary .plus::after{ width: 1.5px; height: 11px; transition: transform .2s var(--ease); }
.faq-item[open] summary .plus::after{ transform: rotate(90deg); opacity: 0; }
.faq-item p{ margin: 0 0 var(--sp-3); color: var(--text-muted); max-width: 68ch; }

/* Forms */
.form-grid{ display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 700px){ .form-grid.cols-2{ grid-template-columns: 1fr 1fr; } }
.field{ display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field.span-2{ grid-column: 1 / -1; }
.field label{ font-size: 0.85rem; font-weight: 700; }
.field .hint{ font-size: 0.78rem; color: var(--text-muted); }
.field input, .field select, .field textarea{
  width: 100%; min-width: 0; padding: 13px 14px; font: inherit; font-size: 0.98rem;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--text); border-radius: var(--radius-s);
}
.dark .field input, .dark .field select, .dark .field textarea{ background: var(--ink-2); border-color: var(--line-dark); color: var(--on-dark); }
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline: 3px solid var(--focus); outline-offset: 1px; }
.field[data-error="true"] input, .field[data-error="true"] select, .field[data-error="true"] textarea{ border-color: #b3261e; }
.field-error{ color: #b3261e; font-size: 0.8rem; min-height: 1em; }
.radio-group, .checkbox-group{ display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip{ position: relative; }
.radio-chip input{ position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.radio-chip span{ display: inline-flex; padding: 10px 16px; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 700; font-size: 0.85rem; cursor: pointer; }
.radio-chip input:checked + span{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.radio-chip input:focus-visible + span{ outline: 3px solid var(--focus); outline-offset: 2px; }
.dark .radio-chip span{ border-color: var(--line-dark); }
.dark .radio-chip input:checked + span{ background: var(--on-dark); color: var(--ink); }

.upload-drop{ border: 1.5px dashed var(--line); border-radius: var(--radius-s); padding: var(--sp-4); text-align: center; cursor: pointer; }
.upload-drop.is-drag{ border-color: var(--accent); background: rgba(184,92,30,0.06); }
.upload-list{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-2); list-style: none; padding: 0; }
.upload-list li{ font-size: 0.8rem; background: var(--sand); padding: 6px 10px; border-radius: 999px; display: flex; align-items: center; gap: 8px; }
.dark .upload-list li{ background: var(--ink-2); }
.upload-list button{ border: 0; background: none; cursor: pointer; color: inherit; font-weight: 800; }

.status-region{ font-size: 0.9rem; }
.form-success{ text-align: center; padding: var(--sp-5) var(--sp-3); }
.form-success .icon{ width: 64px; height: 64px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-3); font-size: 1.8rem; }
.form-fail{ border: 1.5px solid #b3261e; padding: var(--sp-3); border-radius: var(--radius-s); }

/* Stepper (booking) */
.stepper{ display: flex; gap: 6px; margin-bottom: var(--sp-4); }
.stepper .dot{ flex: 1; height: 4px; background: var(--line); border-radius: 999px; }
.stepper .dot.is-active, .stepper .dot.is-done{ background: var(--accent); }
.step-labels{ display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-bottom: var(--sp-4); text-transform: uppercase; letter-spacing: 0.06em; }
.book-layout{ display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 960px){ .book-layout{ grid-template-columns: 1.5fr 1fr; align-items: start; } }
.summary-card{ border: 1px solid var(--line); padding: var(--sp-4); position: sticky; top: 100px; }
.summary-row{ display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.summary-row:last-of-type{ border-bottom: 0; }
.step-actions{ display: flex; justify-content: space-between; gap: 14px; margin-top: var(--sp-4); }

/* Contact strip */
.contact-grid{ display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 860px){ .contact-grid{ grid-template-columns: 1fr 1fr; } }
.contact-list{ list-style: none; margin: var(--sp-3) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.contact-list a{ text-decoration: none; font-weight: 700; }

/* Closing invitation */
.closing{ text-align: center; }
.closing .h2{ max-width: 16ch; margin: 0 auto; }
.closing-ctas{ display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: var(--sp-4); }

/* Footer */
.site-footer{ background: var(--ink); color: var(--on-dark); padding: var(--sp-6) 0 var(--sp-4); }
.footer-top{ display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 860px){ .footer-top{ grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-word{ font-family: var(--font-head); font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.4rem); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.footer-col h4{ font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: var(--sp-2); }
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ text-decoration: none; color: var(--on-dark); font-weight: 500; }
.footer-bottom{ display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-2); padding-top: var(--sp-4); margin-top: var(--sp-5); border-top: 1px solid var(--line-dark); font-size: 0.82rem; color: var(--on-dark-muted); }
.footer-bottom a{ color: inherit; text-decoration: underline; }

/* Floating WhatsApp / reveal utilities */
.rv{ opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.is-visible{ opacity: 1; transform: translateY(0); }
.rv-img{ clip-path: inset(6% 6% 6% 6%); transition: clip-path .8s var(--ease); }
.rv-img.is-visible{ clip-path: inset(0 0 0 0); }
.img-missing{ position: relative; background: var(--sand); display: flex; align-items: center; justify-content: center; }
.dark .img-missing{ background: var(--ink-2); }
.img-missing::before{ content: attr(data-fallback-name); font-family: var(--font-head); font-weight: 700; color: var(--text-muted); text-align: center; padding: var(--sp-2); font-size: 0.95rem; }
.img-missing img{ visibility: hidden; }

.badge-note{ display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; }
.dark .badge-note{ color: var(--on-dark-muted); border-color: var(--line-dark); }

.two-col{ display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 860px){ .two-col{ grid-template-columns: 1fr 1fr; align-items: start; } }
.kv-list{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-3); }
.kv-list dt{ font-weight: 700; font-size: 0.85rem; color: var(--text-muted); }
.kv-list dd{ margin: 2px 0 0; }

.sr-only{ position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
