/* ============================================================
   Ella's Nails — styles
   Colors & fonts follow the approved design:
   purple #7A45C2 · yellow accent #F4C430 · ink #2C2138
   Gloock (headings) · Hanken Grotesk (body) · Parisienne (script)
   ============================================================ */

/* ---- Self-hosted fonts (extracted from the approved design) ---- */
@font-face {
  font-family: "Gloock";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/gloock-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Gloock";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/gloock-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/hanken-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Parisienne";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/parisienne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Parisienne";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/parisienne-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Tokens ---- */
:root {
  --purple: #7A45C2;
  --purple-deep: #5B3391;
  --purple-tint: #ECE4F8;
  --yellow: #F4C430;
  --ink: #2C2138;
  --bg: #F8F5FC;
  --muted: #5E5470;
  --muted-2: #6C6080;
  --muted-3: #6F6382;
  --script-color: #9B79CF;
  --border: rgba(120, 108, 147, 0.16);
  --border-mid: rgba(120, 108, 147, 0.22);
  --border-strong: rgba(120, 108, 147, 0.32);
  --shadow-card: 0 10px 30px rgba(43, 33, 56, 0.07);
  --shadow-panel: 0 16px 40px rgba(43, 33, 56, 0.10);
  --font-heading: "Gloock", Georgia, serif;
  --font-body: "Hanken Grotesk", "Segoe UI", sans-serif;
  --font-script: "Parisienne", "Brush Script MT", cursive;
  --font-mono: ui-monospace, "Cascadia Mono", Consolas, monospace;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #E7D8F7; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; margin: 0; }
p { margin: 0; }
a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible + label {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
  border-radius: 6px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50% { transform: translateY(-7px) rotate(var(--tilt, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container { max-width: 1180px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

.noscript-note {
  margin: 0;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  background: #FBF1C9;
  border-bottom: 1px solid var(--border-mid);
}

/* ---- Shared bits ---- */
.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
}
.script { font-family: var(--font-script); color: var(--script-color); line-height: 1.1; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-deep); }
.btn-outline { border: 1.5px solid rgba(120, 108, 147, 0.4); color: var(--ink); padding: 12.5px 24px; }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.btn-yellow { background: var(--yellow); color: var(--ink); font-weight: 700; padding: 15px 30px; }
.btn-yellow:hover { transform: translateY(-2px); }
.btn-sm { font-size: 14px; padding: 10px 20px; }

.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: clamp(32px, 5vw, 46px); line-height: 1; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head--row .eyebrow { margin-bottom: 8px; }
.section-head--center { text-align: center; margin-bottom: 40px; }
.section-head--center .eyebrow { margin-bottom: 8px; }
.section-head--center .section-sub { font-size: 15.5px; color: var(--muted); max-width: 460px; margin: 8px auto 0; }
.script-lg { font-size: 26px; }

.tile-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
  background: rgba(248, 245, 252, 0.88);
  padding: 5px 9px;
  border-radius: 5px;
}

.icon { flex: none; }

/* ---- Nav ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(248, 245, 252, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.wordmark {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.2px;
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-link {
  display: none;
  text-decoration: none;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}
.nav-link:hover { color: var(--purple); }
.nav-icon { display: flex; align-items: center; color: var(--muted); }
.nav-icon:hover { color: var(--purple); }

/* ---- Hero ---- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 20px 60px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 420px at 18% 30%, #ECE0F7 0%, rgba(247, 227, 218, 0) 70%);
  pointer-events: none;
}
.hero-copy { position: relative; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-logo-wrap { margin: 0 0 6px; }
.hero-logo { width: 100%; max-width: 430px; height: auto; }
.hero-tagline { font-size: clamp(32px, 6vw, 40px); margin: 6px 0 22px; }
.hero-intro { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 410px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-cluster { position: relative; height: 380px; max-width: 520px; width: 100%; margin: 0 auto; }
.polaroid {
  position: absolute;
  margin: 0;
  background: #fff;
  border-radius: 8px;
  animation: floaty 6s ease-in-out infinite;
}
.polaroid-1 {
  --tilt: 3deg;
  top: 18px; right: 0;
  width: 64%; height: 74%;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(43, 33, 56, 0.12);
}
.polaroid-2 {
  --tilt: -4deg;
  bottom: 0; left: 6px;
  width: 50%; height: 56%;
  padding: 9px;
  box-shadow: 0 14px 32px rgba(43, 33, 56, 0.14);
  animation-duration: 7s;
  animation-delay: 0.6s;
}
.polaroid-media {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.polaroid-media img { width: 100%; height: 100%; object-fit: cover; }
.polaroid .tile-label {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10.5px;
}
.price-badge {
  position: absolute;
  top: 0; left: 38%;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 10px 22px rgba(244, 196, 48, 0.45);
}
.price-badge b { font-size: 22px; font-weight: 400; }

/* ---- How it works ---- */
.steps { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 15.5px; margin-bottom: 3px; }
.step p { font-size: 13.5px; color: var(--muted-2); line-height: 1.5; }

/* ---- Gallery ---- */
.gallery { padding-top: 56px; padding-bottom: 56px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
}
.tile {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(43, 33, 56, 0.07);
  transition: transform 0.15s, box-shadow 0.15s;
}
.tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(43, 33, 56, 0.12); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile .tile-label { position: absolute; bottom: 12px; left: 12px; }
.gallery-note { text-align: center; font-size: 14px; color: var(--muted-3); margin-top: 24px; }
.gallery-note strong { color: var(--purple); font-weight: 700; }

/* ---- Instagram strip ---- */
.ig { padding-bottom: 56px; }
.ig-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 14px;
}
.ig-id { display: flex; align-items: center; gap: 14px; }
.ig-badge {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.ig-title { font-weight: 700; font-size: 16.5px; }
.ig-sub { font-size: 13.5px; color: var(--muted-2); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(43, 33, 56, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ig-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(43, 33, 56, 0.12); }
.ig-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-tile .icon { position: absolute; top: 8px; right: 8px; color: rgba(44, 33, 56, 0.45); }
.ig-tile .tile-label { position: absolute; bottom: 8px; left: 8px; font-size: 10.5px; padding: 4px 7px; border-radius: 4px; }

/* ---- Configurator ---- */
.configurator { background: var(--purple-tint); padding: 56px 0 64px; margin-top: 20px; }
.config-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: stretch; }

.preview-card {
  background: linear-gradient(170deg, #fff, #F3ECFB);
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.nail-shelf {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 200px;
  padding: 18px 24px 26px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(233, 220, 246, 0) 0%, #E4D5F6 100%);
}
.nail {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(43, 33, 56, 0.16);
  border: 1px solid rgba(43, 33, 56, 0.06);
}
.nail-shine {
  position: absolute;
  top: 8%; left: 16%;
  width: 26%; height: 30%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  filter: blur(2px);
}
.nail-tip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36%;
  border-radius: 0 0 42% 42% / 0 0 14px 14px;
}
.nail-dot {
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}
.preview-summary { margin-top: 22px; text-align: center; }
.summary-title { font-family: var(--font-heading); font-size: 20px; }
.summary-sub { font-size: 14px; color: var(--muted-2); margin-top: 4px; }

.config-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-panel);
  padding: 26px 22px 30px;
}
.config-group { border: 0; padding: 0; margin: 0 0 26px; }
.step-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 700;
  padding: 0;
  margin-bottom: 12px;
}
.pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-group input[type="radio"],
.swatch-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pill {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  background: #fff;
  color: var(--muted);
  transition: all 0.15s;
}
.pill:hover { border-color: var(--purple); color: var(--purple); }
input:checked + .pill { background: var(--purple); border-color: var(--purple); color: #fff; }

.swatch-group { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch {
  cursor: pointer;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(43, 33, 56, 0.18);
  transition: transform 0.12s, box-shadow 0.12s;
}
.swatch:hover { transform: scale(1.12); }
input:checked + .swatch {
  box-shadow: 0 2px 6px rgba(43, 33, 56, 0.18), 0 0 0 2px var(--bg), 0 0 0 4.5px var(--purple);
}
input:focus-visible + .pill { outline: 3px solid var(--purple-deep); outline-offset: 2px; }
input:focus-visible + .swatch { outline: 3px solid var(--purple-deep); outline-offset: 4px; }

.config-cols { display: grid; grid-template-columns: 1fr; gap: 24px; }
.config-cols .config-group { margin-bottom: 0; }
.pill-group--fill .choice-fill { flex: 1; display: flex; }
.pill-group--fill .pill { flex: 1; text-align: center; padding: 10px 0; border-radius: 12px; font-size: 13.5px; }

.config-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 108, 147, 0.18);
}
.config-price-caption { font-size: 13px; color: var(--muted-2); }
.config-price { font-family: var(--font-heading); font-size: 26px; color: var(--ink); }
.secure-note {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted-3);
}
.secure-note strong { font-weight: 700; color: var(--muted); }

/* ---- Pricing ---- */
.pricing { padding-top: 64px; padding-bottom: 64px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 30px 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.price-card-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.price-card-head h3 { font-size: 30px; }
.price-card-head .script { font-size: 22px; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid rgba(120, 108, 147, 0.14);
}
.price-row-len { font-size: 16px; font-weight: 600; }
.price-row-prices { display: flex; align-items: baseline; gap: 14px; }
.price-base { font-family: var(--font-heading); font-size: 22px; }
.price-deluxe { font-size: 13.5px; color: var(--muted-2); }
.price-deluxe .script-word { color: var(--script-color); }
.deluxe-note { text-align: center; font-size: 13.5px; color: var(--muted-3); margin: 26px auto 0; max-width: 520px; }
.badges-row { display: flex; justify-content: center; align-items: center; gap: 9px; margin-top: 20px; flex-wrap: wrap; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  padding: 8px 15px;
}
.badge-pill--lock { font-weight: 700; }

/* ---- Ready-made kits ---- */
.kits-head { margin: 60px 0 26px; text-align: center; }
.kits-head .script { font-size: 28px; margin-bottom: 4px; }
.kits-head h3 { font-size: 32px; }
.kits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 860px;
  margin: 0 auto;
}
.kit-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kit-card--featured { border-color: var(--yellow); }
.kit-flag {
  position: absolute;
  top: -13px; right: 22px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.kit-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.kit-head h4 { font-size: 24px; }
.kit-price { font-family: var(--font-heading); font-size: 24px; color: var(--purple); }
.kit-tag { font-size: 14px; color: var(--muted-2); margin-top: -10px; }
.kit-items { display: flex; flex-direction: column; gap: 8px; }
.kit-item { display: flex; gap: 9px; align-items: center; font-size: 14px; color: var(--muted); }
.kit-item::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.kit-btn {
  margin-top: auto;
  text-align: center;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 999px;
  background: #fff;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  transition: background 0.15s, color 0.15s;
}
.kit-btn:hover { background: var(--purple-tint); }
.kit-card--featured .kit-btn { background: var(--purple); color: #fff; }
.kit-card--featured .kit-btn:hover { background: var(--purple-deep); }

/* ---- Order CTA ---- */
.order { padding-bottom: 70px; }
.order-cta {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}
.order-cta::before,
.order-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}
.order-cta::before { top: -40px; right: -30px; width: 180px; height: 180px; }
.order-cta::after { bottom: -60px; left: -20px; width: 220px; height: 220px; background: rgba(255, 255, 255, 0.08); }
.order-inner { position: relative; z-index: 1; }
.order-cta .script { color: #fff; font-size: 34px; margin-bottom: 6px; }
.order-cta h2 { font-size: clamp(32px, 5vw, 40px); margin-bottom: 16px; line-height: 1.05; }
.order-copy { font-size: 16px; line-height: 1.6; max-width: 460px; margin: 0 auto 28px; opacity: 0.92; }
.order-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.order-links { display: flex; gap: 22px; font-size: 15px; font-weight: 500; align-items: center; }
.order-links a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.order-secure {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.order-cta a:focus-visible { outline-color: var(--yellow); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.wordmark-sm { font-family: var(--font-heading); font-size: 18px; }
.footer-tag { font-size: 13px; color: var(--muted-3); }
.footer-right { display: flex; align-items: center; gap: 18px; }
.footer-right a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}
.footer-right a:hover { color: var(--purple); }
.footer-right .script { font-size: 20px; }

/* ============================================================
   Larger screens
   ============================================================ */
@media (min-width: 700px) {
  .site-nav { padding: 18px 40px; }
  .nav-right { gap: 30px; }
  .nav-link { display: inline; }
  .container { padding-left: 40px; padding-right: 40px; }
  .hero { padding: 70px 40px 80px; }
  .steps-inner { grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 34px 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; gap: 16px; }
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .config-cols { grid-template-columns: 1fr 1fr; }
  .config-panel { padding: 30px 30px 34px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .kits-grid { grid-template-columns: 1fr 1fr; }
  .order-cta { padding: 58px 50px; }
  .gallery { padding-top: 70px; padding-bottom: 70px; }
  .pricing { padding-top: 78px; padding-bottom: 78px; }
  .ig { padding-bottom: 70px; }
  .order { padding-bottom: 90px; }
}

@media (min-width: 1000px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; }
  .hero-cluster { height: 440px; max-width: none; margin: 0; }
  .config-grid { grid-template-columns: 0.92fr 1.08fr; gap: 34px; }
  .configurator { padding: 74px 0; }
}
