:root {
  --bg: #080b0a;
  --bg-soft: #101613;
  --bg-band: #121b15;
  --panel: #151d18;
  --text: #f4f1e8;
  --muted: #b8c2b2;
  --line: rgba(244, 241, 232, 0.14);
  --moss: #7dbf5b;
  --cyan: #66f0dd;
  --coral: #ff7b5c;
  --ink: #0b0e0c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(125, 191, 91, 0.12), transparent 22%),
    radial-gradient(circle at right 20%, rgba(102, 240, 221, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

/* <picture> is only a format-negotiation wrapper, so take its box out of the
   layout entirely - the <img> inside then sizes against the same containing
   block it did before it was wrapped. */
picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--cyan);
  color: var(--ink);
  padding: 0.65rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(8, 11, 10, 0.92), rgba(8, 11, 10, 0.18));
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.hero-actions,
.social-links,
.store-list,
.site-footer div,
.contact-notes {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 0.9rem;
  height: 0.9rem;
  background: linear-gradient(135deg, var(--moss), var(--cyan));
  transform: rotate(45deg);
}

.site-header nav a,
.site-footer a,
.social-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a:hover,
.site-footer a:hover,
.social-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 9rem clamp(1rem, 5vw, 4rem) 5rem;
}

.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 10, 0.92) 0%, rgba(8, 11, 10, 0.62) 46%, rgba(8, 11, 10, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 11, 10, 0.12), rgba(8, 11, 10, 0.92));
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  max-width: 12ch;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 700px;
  color: #e0e5da;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  font-weight: 800;
}

.button.primary {
  background: var(--coral);
  color: var(--ink);
  border-color: var(--coral);
}

.button.secondary {
  background: rgba(244, 241, 232, 0.08);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p,
.focus-card p,
.why-card p,
.tier-card p,
.tier-card li,
.process-card p,
.contact-layout p,
.signal-card p {
  color: var(--muted);
}

.signal-band {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: linear-gradient(90deg, rgba(125, 191, 91, 0.08), transparent 32%), var(--bg-soft);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.signal-card {
  min-height: 170px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.signal-label,
.tier-tag,
.process-card span {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-label {
  color: var(--moss);
}

.signal-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.services-section,
.focus-section,
.why-section {
  background: var(--bg);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tier-card,
.focus-card,
.why-card,
.process-card {
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.tier-card {
  min-height: 245px;
  padding: clamp(1.2rem, 2.2vw, 2rem);
}

.tier-card.featured {
  background:
    linear-gradient(180deg, rgba(102, 240, 221, 0.08), transparent 32%),
    var(--panel);
}

.tier-tag {
  color: var(--cyan);
}

.tier-price {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.tier-card li {
  margin-bottom: 0.6rem;
}

.focus-grid,
.why-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.focus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.focus-card {
  min-height: 180px;
  padding: clamp(1.15rem, 2vw, 1.6rem);
}

.focus-card.wide {
  grid-column: 1 / -1;
}

.portfolio-section,
.contact-section {
  background:
    linear-gradient(180deg, rgba(102, 240, 221, 0.06), transparent 35%),
    var(--bg-band);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-item,
.portfolio-placeholder {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111711;
}

button.portfolio-item {
  appearance: none;
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

button.portfolio-item:focus-visible,
.lightbox button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.portfolio-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

button.portfolio-item:hover {
  border-color: rgba(102, 240, 221, 0.5);
}

.portfolio-item span,
.portfolio-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.2rem;
}

.portfolio-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 10, 0.92));
}

.portfolio-item small,
.portfolio-placeholder small {
  color: var(--muted);
}

.portfolio-placeholder {
  padding: 1.1rem;
  background:
    linear-gradient(135deg, rgba(125, 191, 91, 0.12), rgba(102, 240, 221, 0.08)),
    repeating-linear-gradient(45deg, rgba(244, 241, 232, 0.04), rgba(244, 241, 232, 0.04) 1px, transparent 1px, transparent 14px),
    #111711;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
  min-height: 190px;
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.process-section {
  background: linear-gradient(90deg, rgba(125, 191, 91, 0.05), transparent), var(--bg);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  min-height: 210px;
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.process-card span {
  color: var(--moss);
}

.stores-section {
  background: #0d100d;
}

.store-list {
  justify-content: flex-start;
}

.store-list a {
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  color: var(--text);
  background: rgba(244, 241, 232, 0.04);
  font-weight: 800;
}

.store-list a:hover {
  border-color: var(--moss);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.2rem, 3vw, 2rem);
}

.button.wide {
  width: 100%;
  margin-bottom: 1.1rem;
}

.contact-email {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 700;
}

.contact-email a {
  color: var(--cyan);
}

.contact-notes {
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-notes p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
}

.policy-page {
  padding: 7rem clamp(1rem, 5vw, 4rem) 4rem;
}

.policy-shell {
  width: min(100%, 860px);
  margin: 0 auto;
}

.policy-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 241, 232, 0.04), rgba(244, 241, 232, 0.02));
}

.policy-card h1 {
  max-width: none;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.policy-meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.policy-section + .policy-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.policy-section p,
.policy-section li {
  color: var(--muted);
}

.policy-list {
  margin: 0;
  padding-left: 1.15rem;
}

.policy-home {
  display: inline-flex;
  margin-top: 2rem;
}

.lightbox {
  width: min(96vw, 1320px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(6, 8, 7, 0.98);
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(4px);
}

.lightbox-frame {
  margin: 0;
  padding: 1rem;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #050706;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.lightbox-caption strong {
  color: var(--text);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.08);
  color: var(--text);
  cursor: pointer;
}

.lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 3rem;
  height: 4.5rem;
  transform: translateY(-50%);
  font-size: 2.2rem;
}

.lightbox-prev {
  left: 0.75rem;
}

.lightbox-next {
  right: 0.75rem;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    justify-content: flex-end;
  }

  .hero {
    min-height: 88vh;
    padding-top: 8rem;
  }

  .signal-grid,
  .tier-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    display: block;
  }

  .site-header nav {
    margin-top: 0.75rem;
    justify-content: flex-start;
  }

  .site-header nav a {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 86vh;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-grid,
  .tier-grid,
  .why-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item.featured {
    grid-column: span 1;
    min-height: 360px;
  }

  .portfolio-item,
  .portfolio-placeholder {
    min-height: 240px;
  }

  .lightbox {
    width: min(96vw, 1000px);
  }

  .lightbox-nav {
    width: 2.5rem;
    height: 4rem;
  }
}
