/* Long Beach Elite — Mobile-first single page */
/* If you want to tweak colors: update --accent and --ink */

:root{
  --bg:#0b0d10;
  --paper:#0f1217;
  --card:#121723;
  --card2:#0f141f;
  --ink:#f3f5f7;
  --muted:#a6b0bd;
  --line:rgba(255,255,255,.10);
  --accent:#c9a45f; /* gold */
  --accent2:#1d2432;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 700px at 20% -20%, rgba(201,164,95,.20), transparent 55%),
    radial-gradient(900px 600px at 110% 10%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--bg), #06070a 70%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:var(--card); border:1px solid var(--line);
  padding:10px 12px; border-radius:12px; z-index:9999;
}

.site-header{
  position: sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(7,9,12,.75);
  border-bottom: 1px solid var(--line);
}
.header-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 0;
  align-items:center;
}
.brand{ display:flex; gap:12px; align-items:center; }
.logo-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(201,164,95,.95), rgba(201,164,95,.55));
  color:#1a1308;
  font-weight:900;
  box-shadow: var(--shadow);
}
.brand-title{ font-weight: 900; letter-spacing:.2px; }
.brand-sub{ color:var(--muted); font-size:.92rem; }

.nav{
  display:flex; gap:14px; flex-wrap:wrap;
  color:var(--muted);
}
.nav a{ padding:8px 10px; border-radius:999px; }
.nav a:hover{ background: rgba(255,255,255,.06); text-decoration:none; color:var(--ink); }
.pill{
  border: 1px solid rgba(201,164,95,.35);
  color: var(--ink) !important;
  background: rgba(201,164,95,.12);
}

.cta{ display:flex; gap:10px; justify-content:flex-start; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(201,164,95,.45);
  background: linear-gradient(180deg, rgba(201,164,95,.95), rgba(201,164,95,.75));
  color: #1a1308;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  cursor:pointer;
  text-decoration:none;
}
.btn:hover{ filter: brightness(1.03); text-decoration:none; }
.btn:active{ transform: translateY(1px); }

.btn-ghost{
  background: rgba(255,255,255,.04);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-lg{ padding: 13px 16px; border-radius: 16px; }

.hero{
  padding: 30px 0 16px;
}
.hero-grid{
  display:grid;
  gap:18px;
}
.hero-copy{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  letter-spacing: -.4px;
}
.hero p{ margin: 0 0 14px; color: var(--muted); line-height:1.55; }
.hero strong{ color: var(--ink); }
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px 0 18px;
}
.badge{
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:600;
  font-size:.92rem;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:10px; }
.fine{ margin-top:12px; color: var(--muted); font-size:.92rem; }

.hero-media .mock{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
}
.mock figcaption{
  padding: 10px 12px;
  font-size:.9rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.section{ padding: 16px 0 40px; }
.section-head{ margin: 10px 0 18px; }
.section-head h2{ margin:0 0 6px; font-size:1.35rem; }
.section-head p{ margin:0; color:var(--muted); }

.product{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding: 16px;
  margin: 14px 0;
}
.product-top{
  display:grid;
  gap: 12px;
  align-items:start;
}
.product h3{ margin:0 0 6px; font-size:1.25rem; }
.price-line{ display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.price{ font-size:1.6rem; font-weight:900; letter-spacing:-.3px; color:var(--ink); }
.muted{ color: var(--muted); }
.addons{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.product-actions{ display:flex; flex-wrap:wrap; gap:10px; }

.carousel{
  margin-top: 14px;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.carousel-track{
  display:flex;
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling: touch;
}
.carousel-track img{
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.carousel-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 10px;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.icon-btn{
  width: 44px; height: 40px;
  border-radius: 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  font-size: 1.25rem;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(255,255,255,.06); }
.dots{ display:flex; gap:8px; justify-content:center; flex:1; }
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.dot.active{ background: rgba(201,164,95,.95); }

.divider{
  height:1px;
  background: var(--line);
  margin: 22px 0;
}

.quote{ padding-top: 6px; }
.quote-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,23,35,.85), rgba(15,18,23,.7));
  box-shadow: var(--shadow);
  padding: 18px;
}
.quote-card h2{ margin:0 0 6px; }
.form{ margin-top: 14px; display:grid; gap:12px; }
label span{ display:block; font-weight:700; margin-bottom:6px; }
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--ink);
  padding: 12px 12px;
  outline:none;
  font: inherit;
}
textarea{ resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(201,164,95,.65);
  box-shadow: 0 0 0 4px rgba(201,164,95,.18);
}
.grid{
  display:grid;
  gap: 12px;
}
.full{ grid-column: 1 / -1; }
.form-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 6px; }

.footer{
  border-top: 1px solid var(--line);
  background: rgba(7,9,12,.75);
  padding: 20px 0 28px;
}
.footer-grid{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer-title{ font-weight: 900; }
.footer-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Dialog */
.dialog::backdrop{
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
}
.dialog{
  border:none;
  padding:0;
  width:min(720px, calc(100% - 28px));
  border-radius: 20px;
  background: transparent;
}
.dialog-card{
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,23,35,.96), rgba(15,18,23,.92));
  box-shadow: var(--shadow);
  padding: 14px;
}
.dialog-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.dialog-title{ font-weight: 900; font-size:1.1rem; }
.dialog-body{ padding: 12px 0; display:grid; gap:8px; }
.dialog-actions{ display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }

/* Desktop enhancements */
@media (min-width: 900px){
  .header-grid{
    grid-template-columns: auto 1fr auto;
  }
  .cta{ justify-content:flex-end; }
  .hero-grid{ grid-template-columns: 1.05fr .95fr; align-items: start; }
  .product-top{ grid-template-columns: 1fr auto; align-items:center; }
  .grid{ grid-template-columns: 1fr 1fr 1fr; }
}
