:root {
  --bg: #0b0c0e;
  --bg-2: #131518;
  --bg-3: #1a1d21;
  --line: #2a2e34;
  --cream: #f3eee6;
  --muted: #9b968c;
  --cyan: #3ec4e8;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
html { scroll-padding-top: 140px; }
h1, h2, h3, .nav a, .btn, .kicker, .logo-word, .ham {
  font-family: Oswald, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 36px; border-bottom: 1px solid var(--line); flex-wrap: wrap;
  position: sticky; top: 0; z-index: 40; background: var(--bg);
}
.brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.brand img { width: 104px; height: 104px; object-fit: contain; }
.logo-word { font-size: 38px; line-height: .9; margin: 0; }
.logo-word span { display: block; font-size: 12px; color: var(--muted); letter-spacing: .16em; margin-top: 8px; font-weight: 500; }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: flex-end; font-size: 16px; }
.nav a { color: var(--muted); }
.nav a.on, .nav a:hover { color: var(--cream); }
.ham { display: none; background: none; border: 1px solid var(--line); color: var(--cream); padding: 8px 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; font-size: 14px; border: 1px solid transparent; cursor: pointer; border-radius: 2px;
}
.btn-cyan { background: var(--cyan); color: #072028; }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--line); }

.hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 72vh; border-bottom: 1px solid var(--line); }
.hero-copy { padding: 64px 40px 72px; display: flex; flex-direction: column; justify-content: center; }
.kicker { color: var(--cyan); font-size: 13px; margin: 0 0 16px; }
.hero h1 { font-size: 52px; line-height: .95; margin: 0 0 20px; max-width: 12ch; }
.hero p { color: var(--muted); font-size: 18px; max-width: 42ch; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  min-height: 320px; border-left: 1px solid var(--line); position: relative;
  background: #1a1f26 center/cover no-repeat;
}
.hero-visual .slot {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(180deg, transparent 30%, rgba(11,12,14,.85));
}

.section { padding: 72px 40px; max-width: 1180px; margin: 0 auto; }
.section.alt { background: var(--bg-2); max-width: none; }
.section.alt .inner { max-width: 1180px; margin: 0 auto; }
.section h2 { font-size: 32px; margin: 0 0 10px; }
#services h2 { margin-bottom: 28px; }
#services { scroll-margin-top: 140px; }
.lede { color: var(--muted); margin: 0 0 32px; max-width: 52ch; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--bg-3); border: 1px solid var(--line); padding: 24px; color: inherit; text-align: left; display: block; }
.card:hover { border-color: var(--cyan); }
.card h3 { font-size: 20px; margin: 8px 0 8px; }
.card p { color: var(--muted); margin: 0; }
.n { color: var(--cyan); font-family: Oswald, sans-serif; font-size: 12px; letter-spacing: .16em; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { border-top: 2px solid var(--cyan); padding-top: 14px; }
.step b { display: block; font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rev { border: 1px solid var(--line); padding: 22px; }
.rev p { margin: 0 0 12px; }
.rev span { color: var(--muted); font-size: 13px; }

.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile { min-height: 220px; background: var(--bg-3) center/cover no-repeat; border: 1px solid var(--line); padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; }
.tile b { font-family: Oswald, sans-serif; text-transform: uppercase; }
.tile span { color: var(--muted); font-size: 13px; }
.shot {
  display: block; border: 1px solid var(--line); background: var(--bg-3); cursor: zoom-in;
}
.shot img { width: 100%; height: auto; display: block; }
.shot b {
  display: block; padding: 10px 12px;
  font-family: Oswald, sans-serif; text-transform: uppercase; font-size: 13px;
}
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 80;
  background: rgba(11,12,14,.94); align-items: center; justify-content: center; padding: 8px;
  cursor: zoom-out;
}
.lightbox.on { display: flex; }
.lightbox img { max-width: 98vw; max-height: 98vh; width: auto; height: auto; object-fit: contain; }
.lightbox-x {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 1px solid var(--line); color: var(--cream);
  font-family: Oswald, sans-serif; text-transform: uppercase; padding: 8px 12px; cursor: pointer;
}

.wrap { padding: 56px 40px 80px; max-width: 1100px; margin: 0 auto; }
.wrap h1 { font-size: 40px; margin: 0 0 12px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; }
label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; }
input, select, textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--cream);
  padding: 12px; margin-bottom: 14px; font: inherit;
}
textarea { min-height: 110px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.flash { padding: 12px 14px; border: 1px solid var(--cyan); margin-bottom: 18px; }
.err { border-color: #c45c5c; }

details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 600; font-size: 17px; }
details p { color: var(--muted); margin: 10px 0 0; }

.site-footer {
  border-top: 1px solid var(--line); padding: 36px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; color: var(--muted); font-size: 14px;
}
.site-footer h4 { color: var(--cream); margin: 0 0 10px; font-size: 13px; }
.site-footer a { display: block; margin: 4px 0; color: var(--muted); }
.site-footer a:hover { color: var(--cyan); }

.sample {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center;
  border: 1px solid var(--line); padding: 24px; background: var(--bg-3); margin: 12px 0 36px;
}
.sample p { color: var(--muted); }

.sample-shot {
  display: block; height: 240px; overflow: hidden; position: relative;
  background: var(--bg-3) center top / cover no-repeat;
  border: 1px solid var(--line);
}
.sample-shot span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px; font-size: 13px; color: var(--cream);
  background: linear-gradient(transparent, rgba(11,12,14,.88));
}
.sample-shot:hover { outline: 1px solid var(--cyan); }

.stores-band {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 56px 40px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stores-copy { padding: 0; }
.stores-copy h2 { font-size: 32px; margin: 0 0 12px; }
.store-kinds {
  color: var(--muted); margin: 0 0 28px; font-family: Oswald, sans-serif;
  letter-spacing: .08em; text-transform: uppercase; font-size: 13px;
}
.stores-side { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.stores-side .sample-shot,
.stores-side .tile { height: 240px; min-height: 240px; }

.store-quotes { position: relative; }
.store-quote { display: none; margin: 0; border: 1px solid var(--line); padding: 18px 20px; background: var(--bg-3); }
.store-quote.on { display: block; }
.store-quote p { margin: 0 0 10px; }
.store-quote span { color: var(--muted); font-size: 13px; }
.store-dots { display: flex; gap: 8px; margin-top: 2px; }
.store-dots button {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line); cursor: pointer;
}
.store-dots button.on { background: var(--cyan); }

@media (max-width: 900px) {
  .ham { display: inline-flex; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; padding: 8px 0 12px; }
  .nav.open { display: flex; }
  .site-header { padding: 12px 16px; }
  .brand img { width: 80px; height: 80px; }
  .logo-word { font-size: 26px; }
  .hero, .grid3, .steps, .reviews, .gal, .split, .site-footer, .sample, .stores-band { grid-template-columns: 1fr; }
  .hero { display: flex; flex-direction: column; min-height: 0; }
  .hero h1 { font-size: 34px; }
  .hero-copy, .section, .wrap, .stores-band { padding: 28px 18px; }
  .hero-visual { min-height: 220px; border-left: 0; border-top: 1px solid var(--line); }
  .stores-copy { padding: 0; }
  .stores-side .sample-shot,
  .stores-side .tile { height: 240px; min-height: 240px; }
  .row2 { grid-template-columns: 1fr; }
}
