/* ============================================================
   LEGACY STEEL WORKS LLC — Site Stylesheet
   "The Forge" design system
   Palette drawn from the badge logo: iron charcoal, forge gold,
   ember orange, steel gray, copper, slate-blue torch accent.
   ============================================================ */

:root {
  /* Iron / backgrounds */
  --iron-950: #0b0c0e;
  --iron-900: #101216;
  --iron-850: #14171c;
  --iron-800: #1a1e24;
  --iron-700: #232a33;

  /* Text */
  --white-warm: #f3efe7;
  --steel-200: #c9cdd4;
  --steel-400: #8a939f;

  /* Brand metals */
  --gold-300: #edd9a3;
  --gold-400: #ddb878;
  --gold-500: #c99b4e;
  --gold-600: #a87b33;
  --gold-700: #7e5a22;
  --ember-400: #ff9a4d;
  --ember-500: #e8722a;
  --ember-600: #c2531c;
  --copper-500: #a4643a;
  --slate-500: #5e7e93;

  /* Lines */
  --line-steel: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(201, 155, 78, 0.28);
  --line-gold-soft: rgba(201, 155, 78, 0.14);

  /* Type */
  --font-display: "Alfa Slab One", "Rockwell", serif;
  --font-cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 10px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --gold-text-grad: linear-gradient(180deg, #f0dfae 0%, #ddb878 34%, #bb8940 68%, #916930 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { 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; }
}
body {
  margin: 0;
  background: var(--iron-950);
  color: var(--steel-200);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-400); text-decoration: none; }
a:hover { color: var(--gold-300); }
h1, h2, h3, h4 { margin: 0 0 0.5em; color: var(--white-warm); line-height: 1.08; font-weight: 400; }
p { margin: 0 0 1em; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--ember-600); color: #fff; }

/* Grain overlay for atmosphere */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- Type helpers ---------- */
.display { font-family: var(--font-display); letter-spacing: 0.01em; text-transform: uppercase; }
.gold-text {
  background: var(--gold-text-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 14px;
}
.eyebrow::before { content: "///"; color: var(--ember-500); letter-spacing: 0.08em; font-weight: 700; }
.eyebrow.center { justify-content: center; }
.lead { font-size: 19px; color: var(--steel-200); }
.muted { color: var(--steel-400); }

/* ---------- Layout ---------- */
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(30px, 4.4vw, 46px); }

/* Weld-seam divider between sections */
.seam { height: 1px; border: 0; margin: 0; background: linear-gradient(90deg, transparent, var(--line-gold) 18%, var(--line-gold) 82%, transparent); position: relative; overflow: visible; }
.seam::after { content: ""; position: absolute; left: 50%; top: -2px; width: 90px; height: 5px; transform: translateX(-50%);
  background: repeating-linear-gradient(90deg, var(--gold-600) 0 7px, transparent 7px 13px); opacity: .7; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-cond); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 16.5px; line-height: 1;
  padding: 17px 30px 15px; border-radius: 6px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(180deg, #dfba7c 0%, #c99b4e 45%, #a87b33 100%);
  color: #191307; border-color: #e9d195;
  box-shadow: 0 6px 20px rgba(201, 155, 78, 0.28), inset 0 1px 0 rgba(255,255,255,.5);
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.btn-gold:hover { color: #191307; box-shadow: 0 10px 28px rgba(232, 114, 42, 0.38), inset 0 1px 0 rgba(255,255,255,.5); transform: translateY(-2px); }
.btn-line {
  background: transparent; color: var(--white-warm); border-color: rgba(255,255,255,0.25);
}
.btn-line:hover { border-color: var(--gold-500); color: var(--gold-300); background: rgba(201,155,78,.06); }
.btn-ghost { background: transparent; color: var(--gold-400); border-color: transparent; padding-inline: 10px; }
.btn-lg { font-size: 18px; padding: 20px 38px 18px; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Top strip + Nav ---------- */
.topstrip {
  background: #08090b; border-bottom: 1px solid var(--line-steel);
  font-family: var(--font-cond); font-size: 14.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel-400);
}
.topstrip .container { display: flex; justify-content: space-between; align-items: center; padding-block: 8px; gap: 16px; }
.topstrip a { color: var(--gold-400); }
@media (max-width: 640px) { .topstrip .strip-left { display: none; } .topstrip .container { justify-content: center; } }

.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(11, 12, 14, 0.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-gold-soft);
}
.nav .container { display: flex; align-items: center; gap: 28px; padding-block: 12px; }
.nav-logo { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.nav-logo img { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--gold-600); box-shadow: 0 0 0 3px rgba(201,155,78,.15), 0 4px 14px rgba(0,0,0,.5); }
.nav-logo .word { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .word b { font-family: var(--font-display); font-weight: 400; font-size: 19px; letter-spacing: .04em; color: var(--white-warm); }
.nav-logo .word span { font-family: var(--font-cond); font-size: 12.5px; letter-spacing: .34em; color: var(--gold-500); margin-top: 4px; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-family: var(--font-cond); font-weight: 600; font-size: 16.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel-200); padding: 8px 2px; position: relative;
}
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: linear-gradient(90deg, var(--ember-500), var(--gold-400)); transition: right .22s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--gold-300); }
.nav-cta { margin-left: 6px; }
.nav-burger { display: none; background: none; border: 1px solid var(--line-gold); border-radius: 6px; padding: 10px 12px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--gold-400); margin: 5px 0; transition: .2s; }
@media (max-width: 1020px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0d0f13; border-bottom: 1px solid var(--line-gold);
    padding: 18px 24px 26px; gap: 4px;
  }
  .nav.open .nav-links a { font-size: 20px; padding: 12px 2px; width: 100%; border-bottom: 1px solid var(--line-steel); }
  .nav.open .nav-cta { display: inline-flex; position: absolute; top: calc(100% + 330px); left: 24px; right: 24px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 900px);
  display: flex; align-items: center;
  background: var(--iron-950);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .5; filter: saturate(1.08) contrast(1.06); }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 18% 88%, rgba(232,114,42,0.20), transparent 60%),
    linear-gradient(180deg, rgba(11,12,14,.55) 0%, rgba(11,12,14,.25) 45%, rgba(11,12,14,.94) 100%);
}
#embers { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero .container { padding-block: 120px 140px; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line-gold); border-radius: 999px; padding: 8px 18px;
  font-family: var(--font-cond); font-size: 14.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-400); background: rgba(11,12,14,.5); margin-bottom: 26px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember-500); box-shadow: 0 0 10px var(--ember-500); animation: pulse-dot 2.2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(44px, 7.2vw, 92px); line-height: .98; margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero p.lead { max-width: 560px; font-size: clamp(17px, 1.6vw, 20px); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.hero-chips { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 54px; }
.hero-chips .chip { display: flex; align-items: center; gap: 9px; font-family: var(--font-cond); font-weight: 600; letter-spacing: .2em; font-size: 14.5px; text-transform: uppercase; color: var(--steel-200); }
.hero-chips .chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--ember-500); box-shadow: 0 0 8px rgba(232,114,42,.9); }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--steel-400); font-family: var(--font-cond); letter-spacing: .3em; font-size: 12.5px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll::after { content: ""; width: 1px; height: 34px; background: linear-gradient(180deg, var(--gold-500), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(.2); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(.2); transform-origin: top; opacity: 0; } }

/* Page hero (interior pages) */
.page-hero { position: relative; overflow: hidden; padding: 92px 0 72px; background: var(--iron-900); border-bottom: 1px solid var(--line-gold-soft); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(900px 380px at 82% -10%, rgba(201,155,78,.12), transparent 60%), radial-gradient(700px 300px at 8% 110%, rgba(232,114,42,.10), transparent 60%); }
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(36px, 5.4vw, 62px); }
.page-hero .lead { max-width: 640px; }
.crumbs { font-family: var(--font-cond); letter-spacing: .22em; text-transform: uppercase; font-size: 13.5px; color: var(--steel-400); margin-bottom: 18px; }
.crumbs a { color: var(--steel-400); } .crumbs a:hover { color: var(--gold-400); }
.crumbs span { color: var(--gold-500); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: linear-gradient(180deg, var(--iron-850), var(--iron-900));
  border: 1px solid var(--line-steel); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-gold); box-shadow: 0 18px 42px rgba(0,0,0,.55), 0 0 0 1px rgba(201,155,78,.12); }
/* rivets in corners */
.card::before, .card::after {
  content: ""; position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d8b874, #7e5a22 70%);
  opacity: .8;
}
.card::before { top: 10px; left: 10px; box-shadow: calc(100cqw - 25px) 0 0 0 #a3813f; }
.card::after { bottom: 10px; left: 10px; box-shadow: calc(100cqw - 25px) 0 0 0 #a3813f; }
.card { container-type: inline-size; }
.card h3 { font-family: var(--font-cond); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 21px; display: flex; align-items: center; gap: 12px; }
.card h3 .num { color: var(--ember-500); font-size: 16px; letter-spacing: .06em; }
.card p { color: var(--steel-400); font-size: 16px; margin: 0; }
.card .card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-cond); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: 14.5px; }
.card .card-link::after { content: "→"; transition: transform .18s ease; }
.card:hover .card-link::after { transform: translateX(5px); }
.card-icon { width: 46px; height: 46px; border-radius: 9px; border: 1px solid var(--line-gold); display: grid; place-items: center; margin-bottom: 18px;
  background: radial-gradient(circle at 30% 25%, rgba(201,155,78,.22), rgba(201,155,78,.05)); color: var(--gold-400); }
.card-icon svg { width: 24px; height: 24px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); border: 1px solid var(--line-steel); box-shadow: var(--shadow-card); width: 100%; height: auto; }
.split-media::before { content: ""; position: absolute; inset: -14px auto auto -14px; width: 84px; height: 84px; border-left: 3px solid var(--gold-600); border-top: 3px solid var(--gold-600); border-radius: 6px 0 0 0; }
.split-media::after { content: ""; position: absolute; inset: auto -14px -14px auto; width: 84px; height: 84px; border-right: 3px solid var(--ember-600); border-bottom: 3px solid var(--ember-600); border-radius: 0 0 6px 0; }
.split h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(30px, 4vw, 44px); }
.checklist { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 14px; align-items: baseline; font-size: 17px; color: var(--steel-200); }
.checklist li::before { content: "⚡"; filter: grayscale(1) sepia(1) saturate(4) hue-rotate(-12deg); flex: none; transform: translateY(1px); }

/* ---------- Gallery ---------- */
.filterbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filterbar button {
  background: transparent; border: 1px solid var(--line-steel); color: var(--steel-200); border-radius: 999px;
  font-family: var(--font-cond); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: 14.5px;
  padding: 11px 22px 9px; transition: .18s;
}
.filterbar button:hover { border-color: var(--gold-500); color: var(--gold-300); }
.filterbar button.active { background: linear-gradient(180deg, #dfba7c, #a87b33); color: #191307; border-color: #e9d195; font-weight: 700; }
.masonry { columns: 3 320px; column-gap: 22px; }
.masonry figure { break-inside: avoid; margin: 0 0 22px; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-steel); cursor: zoom-in; }
.masonry figure img { width: 100%; transition: transform .35s ease; }
.masonry figure:hover img { transform: scale(1.045); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 44px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(8,9,11,.92));
  font-family: var(--font-cond); letter-spacing: .14em; text-transform: uppercase; font-size: 14px; color: var(--white-warm);
}
.masonry figcaption span { display: block; color: var(--ember-400); font-size: 12px; letter-spacing: .24em; margin-bottom: 3px; }
.masonry figure.hide { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(5,6,8,.94); display: none; align-items: center; justify-content: center; padding: 34px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: 8px; border: 1px solid var(--line-gold); box-shadow: 0 30px 80px rgba(0,0,0,.7); }
.lightbox .lb-cap { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-family: var(--font-cond); letter-spacing: .2em; text-transform: uppercase; font-size: 14px; color: var(--steel-200); }
.lightbox button { position: absolute; background: rgba(20,23,28,.8); color: var(--gold-300); border: 1px solid var(--line-gold); border-radius: 8px; width: 52px; height: 52px; display: grid; place-items: center; font-size: 22px; }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Process ---------- */
.process { counter-reset: step; }
.process .step { position: relative; padding: 30px 26px 26px; border: 1px solid var(--line-steel); border-radius: var(--radius); background: linear-gradient(180deg, var(--iron-850), var(--iron-900)); }
.process .step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 44px; line-height: 1;
  display: block; margin-bottom: 14px;
  background: var(--gold-text-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.process .step h3 { font-family: var(--font-cond); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 19px; }
.process .step p { color: var(--steel-400); font-size: 15.5px; margin: 0; }

/* ---------- Quotes / testimonials ---------- */
.quote-card { position: relative; padding: 34px 30px 28px; }
.quote-card::marker { content: none; }
.quote-card .stars { color: var(--gold-500); letter-spacing: 4px; margin-bottom: 14px; font-size: 15px; }
.quote-card blockquote { margin: 0 0 18px; font-size: 17px; color: var(--steel-200); font-style: italic; }
.quote-card .who { font-family: var(--font-cond); letter-spacing: .18em; text-transform: uppercase; font-size: 14.5px; color: var(--gold-400); }
.quote-card .who span { display: block; color: var(--steel-400); letter-spacing: .1em; font-size: 13px; margin-top: 3px; }

/* ---------- Big CTA ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: 14px; border: 1px solid var(--line-gold); padding: 74px 56px; text-align: center; isolation: isolate;
  background: linear-gradient(180deg, #15130d, #0d0e11 70%); }
.cta-banner::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 280px at 50% 115%, rgba(232,114,42,.26), transparent 65%), radial-gradient(500px 200px at 12% -10%, rgba(201,155,78,.14), transparent 60%); }
.cta-banner h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(32px, 4.6vw, 52px); }
.cta-banner p { max-width: 560px; margin: 0 auto 30px; color: var(--steel-400); }
.cta-banner .hero-ctas { justify-content: center; margin-top: 8px; }
.cta-note { margin-top: 22px; font-family: var(--font-cond); letter-spacing: .24em; text-transform: uppercase; font-size: 13px; color: var(--ember-400); }

/* ---------- Footer ---------- */
footer { background: #08090b; border-top: 1px solid var(--line-gold-soft); padding: 70px 0 0; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { width: 92px; height: 92px; border-radius: 50%; border: 2px solid var(--gold-600); margin-bottom: 18px; }
.foot-brand .display { font-size: 20px; color: var(--white-warm); }
.foot-brand .tag { font-family: var(--font-cond); letter-spacing: .3em; font-size: 12.5px; color: var(--gold-500); text-transform: uppercase; margin: 6px 0 16px; }
.foot-brand p { color: var(--steel-400); font-size: 15px; max-width: 300px; }
footer h4 { font-family: var(--font-cond); letter-spacing: .26em; text-transform: uppercase; font-size: 15px; color: var(--gold-400); margin-bottom: 18px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-links a { color: var(--steel-400); font-size: 15.5px; }
.foot-links a:hover { color: var(--gold-300); }
.foot-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; color: var(--steel-400); font-size: 15.5px; }
.foot-contact b { color: var(--steel-200); font-weight: 600; }
.foot-bottom { border-top: 1px solid var(--line-steel); padding: 22px 0; }
.foot-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--font-cond); letter-spacing: .18em; text-transform: uppercase; font-size: 12.5px; color: var(--steel-400); }
.foot-bottom .container span:last-child { color: var(--gold-600); }

/* ---------- Booking wizard ---------- */
.wizard { max-width: 780px; margin: 0 auto; background: linear-gradient(180deg, var(--iron-850), var(--iron-900)); border: 1px solid var(--line-gold-soft); border-radius: 14px; box-shadow: var(--shadow-card); overflow: hidden; }
.wizard-head { padding: 26px 34px; border-bottom: 1px solid var(--line-steel); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.wizard-head .display { font-size: 21px; }
.wizard-step-label { font-family: var(--font-cond); letter-spacing: .26em; text-transform: uppercase; font-size: 13.5px; color: var(--ember-400); }
.wizard-progress { height: 4px; background: var(--iron-700); position: relative; }
.wizard-progress i { position: absolute; inset: 0 auto 0 0; width: 25%; background: linear-gradient(90deg, var(--gold-600), var(--ember-500)); transition: width .35s ease; box-shadow: 0 0 12px rgba(232,114,42,.8); }
.wizard-body { padding: 36px 34px 40px; min-height: 380px; }
@media (max-width: 640px) { .wizard-body { padding: 28px 22px 34px; } }
.wizard h3.q { font-family: var(--font-cond); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: 23px; margin-bottom: 24px; }
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 760px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }
.type-tile { border: 1px solid var(--line-steel); background: var(--iron-900); border-radius: 10px; padding: 20px 12px 16px; display: grid; gap: 10px; justify-items: center; color: var(--steel-200); transition: .18s; }
.type-tile svg { width: 30px; height: 30px; color: var(--gold-500); }
.type-tile span { font-family: var(--font-cond); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: 14.5px; text-align: center; }
.type-tile:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.type-tile.sel { border-color: var(--ember-500); background: linear-gradient(180deg, rgba(232,114,42,.14), rgba(232,114,42,.04)); box-shadow: 0 0 0 1px var(--ember-500), 0 8px 20px rgba(232,114,42,.15); color: var(--white-warm); }
.field { display: grid; gap: 8px; margin-bottom: 22px; }
.field label { font-family: var(--font-cond); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: 14px; color: var(--gold-400); }
.field input, .field textarea, .field select {
  background: var(--iron-950); border: 1px solid var(--line-steel); border-radius: 8px; color: var(--white-warm);
  padding: 15px 16px; font: inherit; font-size: 16.5px; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,155,78,.18); }
.field .hint { font-size: 14px; color: var(--steel-400); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-btn { border: 1px solid var(--line-steel); background: var(--iron-900); color: var(--steel-200); border-radius: 999px; padding: 12px 22px 10px;
  font-family: var(--font-cond); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: 14.5px; transition: .16s; }
.chip-btn:hover { border-color: var(--gold-500); }
.chip-btn.sel { background: linear-gradient(180deg, #dfba7c, #a87b33); border-color: #e9d195; color: #191307; font-weight: 700; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 30px; }
.summary { background: var(--iron-950); border: 1px dashed var(--line-gold); border-radius: 10px; padding: 24px 26px; margin-bottom: 26px; }
.summary dl { display: grid; grid-template-columns: 130px 1fr; gap: 10px 18px; margin: 0; font-size: 15.5px; }
.summary dt { font-family: var(--font-cond); letter-spacing: .16em; text-transform: uppercase; color: var(--gold-500); font-size: 13.5px; padding-top: 2px; }
.summary dd { margin: 0; color: var(--steel-200); }
.send-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .send-grid { grid-template-columns: 1fr; } }
.send-note { text-align: center; margin-top: 18px; font-size: 14.5px; color: var(--steel-400); }
.wizard-success { text-align: center; padding: 40px 20px; }
.wizard-success .big { font-size: 54px; margin-bottom: 10px; }

/* ---------- Brand guidelines page ---------- */
.brand-block { margin-bottom: 72px; }
.brand-block h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 26px; display: flex; align-items: baseline; gap: 16px; }
.brand-block h2 .idx { color: var(--ember-500); font-size: .55em; font-family: var(--font-cond); letter-spacing: .2em; }
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.swatch { border-radius: 10px; overflow: hidden; border: 1px solid var(--line-steel); }
.swatch .chip { height: 96px; }
.swatch .meta { background: var(--iron-850); padding: 14px 16px; font-size: 13.5px; color: var(--steel-400); }
.swatch .meta b { display: block; color: var(--white-warm); font-family: var(--font-cond); letter-spacing: .12em; text-transform: uppercase; font-size: 15px; margin-bottom: 3px; }
.swatch .meta code { color: var(--gold-400); font-size: 13px; }
.type-specimen { border: 1px solid var(--line-steel); border-radius: 10px; padding: 30px; margin-bottom: 18px; background: var(--iron-850); }
.type-specimen .label { font-family: var(--font-cond); letter-spacing: .22em; text-transform: uppercase; font-size: 13px; color: var(--ember-400); margin-bottom: 12px; }
.logo-demo { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.logo-demo .cell { border: 1px solid var(--line-steel); border-radius: 10px; display: grid; place-items: center; padding: 34px; }
.logo-demo img { width: 150px; border-radius: 50%; }
.dont-list li { margin-bottom: 8px; }
.voice-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.voice-table th, .voice-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line-steel); vertical-align: top; }
.voice-table th { font-family: var(--font-cond); letter-spacing: .18em; text-transform: uppercase; font-size: 13.5px; color: var(--gold-400); }
.voice-table td:first-child { color: var(--white-warm); font-weight: 600; }

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.badge-row { display: flex; gap: 12px 28px; flex-wrap: wrap; align-items: center; justify-content: center;
  font-family: var(--font-cond); letter-spacing: .26em; text-transform: uppercase; font-size: 13.5px; color: var(--steel-400); }
.badge-row i { color: var(--gold-600); font-style: normal; }
.notice { border: 1px solid var(--line-gold); border-left: 4px solid var(--gold-500); background: rgba(201,155,78,.06); border-radius: 8px; padding: 18px 22px; font-size: 15.5px; }

/* Print (for /brand/ guidelines) */
@media print {
  body { background: #fff; color: #222; }
  body::after, .nav, .topstrip, footer, .no-print { display: none !important; }
  .page-hero { background: #fff; border: 0; padding: 20px 0; }
  .page-hero h1, h2, h3 { color: #111 !important; }
  .brand-block { break-inside: avoid; }
  .swatch .meta { background: #f4f4f4; color: #333; }
  a { color: #8a6a2f; }
}
