:root {
  --bg: #0b1218;
  --bg-2: #121c26;
  --panel: #162231;
  --line: rgba(212, 184, 130, 0.18);
  --gold: #d4b882;
  --gold-2: #f0d7a4;
  --text: #f3efe7;
  --muted: #9aa8b5;
  --accent: #2f6f7a;
  --accent-2: #3d9aaa;
  --ok: #7dcea0;
  --shadow: 0 24px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --seafood-1: url("img/urchin-wash.png");
  --seafood-2: url("img/scallops-hero.png");
  --seafood-3: url("img/urchin-ice.png");
  --seafood-4: url("img/scallops.png");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(61,154,170,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(212,184,130,.08), transparent 55%),
    var(--bg);
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}
/* Soft full-page seafood wash — very transparent so UI stays crisp */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: var(--seafood-1);
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0.14;
  filter: saturate(0.85) contrast(1.05);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,18,24,.72) 0%, rgba(11,18,24,.88) 45%, rgba(11,18,24,.94) 100%),
    radial-gradient(900px 500px at 85% 10%, rgba(61,154,170,.12), transparent 55%);
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
.demo-banner {
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: linear-gradient(90deg, #5a3d12, #8a6320, #5a3d12);
  color: #ffe9ba;
  position: relative;
  z-index: 2;
}
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 24px;
  padding: 16px 28px;
  backdrop-filter: blur(16px);
  background: rgba(11,18,24,.78);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 180px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 18px;
  background: linear-gradient(145deg, var(--gold), #9a7340);
  color: #1a1208;
}
.brand strong { display: block; font-size: 15px; }
.brand span { color: var(--muted); font-size: 12px; }
.nav nav { display: flex; gap: 18px; margin-left: auto; color: var(--muted); font-size: 14px; }
.nav nav a:hover { color: var(--gold-2); }
.cart-btn {
  border: 1px solid var(--line); background: var(--panel); color: var(--text);
  border-radius: 999px; padding: 10px 16px; cursor: pointer; font-weight: 600;
}
.cart-btn span {
  display: inline-grid; place-items: center; min-width: 22px; height: 22px;
  margin-left: 6px; border-radius: 999px; background: var(--accent-2); font-size: 12px;
}
.hero {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px;
  padding: 64px 28px 40px; max-width: 1180px; margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 12px 8px auto auto;
  width: min(48%, 520px);
  height: min(420px, 70%);
  border-radius: 28px;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  box-shadow: var(--shadow);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,18,24,.15), rgba(11,18,24,.55));
}
.hero-copy, .hero-panel { position: relative; z-index: 1; }
.eyebrow {
  color: var(--gold); letter-spacing: .16em; text-transform: uppercase;
  font-size: 12px; font-weight: 600; margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05; margin: 0 0 18px;
}
.lede { color: var(--muted); font-size: 1.05rem; line-height: 1.65; max-width: 36rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 12px 20px; font-weight: 600; border: 1px solid transparent;
  cursor: pointer; font-size: 14px;
}
.btn.primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: white; }
.btn.ghost { border-color: var(--line); background: transparent; color: var(--text); }
.btn.full { width: 100%; }
.btn.small { padding: 8px 12px; font-size: 13px; }
.hero-panel { display: grid; gap: 14px; align-content: center; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent), rgba(22,34,49,.82);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-card span { color: var(--gold); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.hero-card strong { display: block; margin: 6px 0; font-family: var(--display); font-size: 1.5rem; }
.hero-card p { margin: 0; color: var(--muted); font-size: 14px; }
.section { padding: 28px 28px 56px; max-width: 1180px; margin: 0 auto; position: relative; }
.section-head { margin-bottom: 24px; }
.section-head h2, .about-card h2, .order-summary h2, .order-form h2 {
  font-family: var(--display); font-size: 2.2rem; margin: 0 0 8px;
}
.section-head p { color: var(--muted); margin: 0; }
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px;
}
.card {
  background: rgba(22,34,49,.88); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; display: flex; flex-direction: column; gap: 10px; min-height: 240px;
  backdrop-filter: blur(6px);
}
.card .tag {
  align-self: flex-start; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px;
}
.card h3 { margin: 0; font-family: var(--display); font-size: 1.55rem; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; flex: 1; }
.card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.card .price { font-weight: 700; color: var(--gold-2); font-size: 1.05rem; }
.card .unit { color: var(--muted); font-size: 12px; }
.about { padding-top: 0; }
.about-card {
  border: 1px solid var(--line); border-radius: 24px; padding: 28px;
  background:
    linear-gradient(105deg, rgba(8,12,20,.96) 0%, rgba(8,12,20,.94) 42%, rgba(8,12,20,.72) 72%, rgba(8,12,20,.45) 100%),
    var(--seafood-2);
  background-size: cover;
  background-position: center right;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,12,20,.25);
  pointer-events: none;
}
.about-card > * { position: relative; z-index: 1; }
.about-copy {
  max-width: min(560px, 100%);
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(8,12,20,.88);
  border: 1px solid rgba(212,184,130,.22);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.about-card h2 {
  color: #fff;
  margin: 0 0 10px;
}
.about-card p {
  color: rgba(243,239,231,.95);
  line-height: 1.65;
  margin: 0;
}
.about-card p strong { color: #fff; }
.about-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #fff;
}
.about-card li { margin: 8px 0; }
.products-wash {
  position: absolute;
  left: -4%;
  bottom: 8%;
  width: min(38%, 420px);
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.products-wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.2px);
}
.section#products .section-head,
.section#products .grid { position: relative; z-index: 1; }
.order-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.order-summary, .order-form {
  background: rgba(18,28,38,.9); border: 1px solid var(--line); border-radius: 24px; padding: 22px;
  backdrop-filter: blur(8px);
}
.order-lines { display: grid; gap: 10px; min-height: 120px; }
.order-lines.empty { color: var(--muted); align-content: center; }
.line {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  padding: 12px; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid var(--line);
}
.line .qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.line button {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--panel); color: var(--text); cursor: pointer;
}
.totals { margin-top: 18px; display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 14px; }
.totals div { display: flex; justify-content: space-between; color: var(--muted); }
.totals .grand { color: var(--text); font-size: 1.1rem; }
.order-form label { display: grid; gap: 6px; margin-bottom: 12px; font-size: 13px; color: var(--muted); }
.order-form input, .order-form textarea {
  width: 100%; border-radius: 12px; border: 1px solid var(--line); background: var(--panel);
  color: var(--text); padding: 12px 14px; font: inherit;
}
.fine { color: var(--muted); font-size: 12px; margin: 10px 0 0; }
.footer {
  border-top: 1px solid var(--line); padding: 28px; display: grid; gap: 10px;
  color: var(--muted); font-size: 14px; max-width: 1180px; margin: 0 auto 40px;
  position: relative;
}
.footer-bg {
  position: absolute;
  right: 28px;
  bottom: 12px;
  width: min(280px, 40%);
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0.16;
  pointer-events: none;
}
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer > * { position: relative; z-index: 1; }
.footer strong { color: var(--text); display: block; }
.drawer {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 40;
  display: grid; justify-items: end;
}
.drawer[hidden], .modal[hidden] { display: none; }
.drawer-panel {
  width: min(380px, 100%); height: 100%; background: var(--bg-2); border-left: 1px solid var(--line);
  padding: 18px; display: flex; flex-direction: column; gap: 16px;
}
.drawer-panel header { display: flex; justify-content: space-between; align-items: center; }
.drawer-panel h3 { margin: 0; font-family: var(--display); font-size: 1.6rem; }
.drawer-panel #closeCart {
  border: none; background: transparent; color: var(--text); font-size: 28px; cursor: pointer;
}
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); display: grid; place-items: center; z-index: 50;
}
.modal-card {
  width: min(420px, calc(100% - 32px)); background: var(--panel); border: 1px solid var(--line);
  border-radius: 20px; padding: 24px; box-shadow: var(--shadow); text-align: center;
}
.modal-card h2 { font-family: var(--display); margin: 0 0 8px; }
.modal-card p { color: var(--muted); }

.partner { padding-top: 8px; }
.partner-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(18,28,38,.92);
  box-shadow: var(--shadow);
  position: relative;
}
.partner-visual {
  position: relative;
  min-height: 320px;
  background: #0a1016;
}
.partner-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.partner-visual-alt {
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 18% 100%);
  opacity: 0.92;
}
.partner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,18,24,.15), rgba(11,18,24,.55)),
    linear-gradient(180deg, transparent 40%, rgba(11,18,24,.35));
  pointer-events: none;
}
.partner-copy {
  padding: 28px 30px 30px;
  display: grid;
  gap: 14px;
  align-content: start;
  background:
    linear-gradient(160deg, rgba(47,111,122,.28), transparent 55%),
    rgba(22,34,49,.55);
}
.partner-copy h2 {
  font-family: var(--display);
  font-size: 2.2rem;
  margin: 0;
}
.partner-lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36rem;
}
.partner-company {
  margin-top: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(11,18,24,.35);
}
.partner-company strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--gold-2);
}
.partner-company address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.partner-company a {
  color: var(--text);
  border-bottom: 1px solid rgba(212,184,130,.35);
}
.partner-company a:hover { color: var(--gold-2); }
.partner-people h3 {
  margin: 6px 0 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.partner-people ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.partner-people li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.partner-people strong { font-size: 15px; }
.partner-people span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero, .order-layout, .partner-card { grid-template-columns: 1fr; }
  .nav nav { display: none; }
  .hero-bg { width: 100%; height: 220px; inset: auto 12px 0 12px; opacity: 0.22; }
  .products-wash, .footer-bg { display: none; }
  .partner-visual { min-height: 200px; }
}
