:root {
  --ink: #f2efe7;
  --muted: #b7b0a1;
  --paper: #050505;
  --soft: #0d0d0d;
  --clay: #b4472d;
  --moss: #514837;
  --blue: #1a2024;
  --gold: #9c6b2f;
  --gold-bright: #c08a46;
  --white: #ffffff;
  --line: #2a2620;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --radius: 18px;
  --layko-image: url("assets/layko-hero.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(192, 138, 70, 0.14), transparent 28%),
    linear-gradient(180deg, #050505, #0b0b0b 48%, #050505);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 3px 3px;
  content: "";
  opacity: 0.45;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  width: 100%;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(251, 250, 246, 0.2);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 20px);
  min-width: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-action,
.site-nav,
.brand,
h1,
h2,
h3,
h4,
.button,
.ticker span,
.project-visual span,
.service-list span,
.timeline span,
.testimonial blockquote,
.site-footer p {
  font-stretch: condensed;
}

.site-nav a,
.site-footer a {
  position: relative;
}

.site-nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 148px clamp(20px, 5vw, 72px) 76px;
  overflow: hidden;
  color: var(--white);
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32));
}

.texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(192, 138, 70, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(192, 138, 70, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 28%, black 82%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(64px, 12vw, 154px);
  font-weight: 950;
  letter-spacing: 0.025em;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 4px 28px #000;
}

h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 70px);
  font-weight: 950;
  letter-spacing: 0.018em;
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: #d0c8b8;
  font-size: clamp(18px, 2vw, 24px);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #6e411c);
  color: #080808;
  border-color: var(--gold);
}

.hero .button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), #6e411c);
  color: #080808;
}

.button.ghost {
  border-color: #514837;
  color: var(--white);
  background: rgba(5, 5, 5, 0.18);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 32px;
  z-index: 2;
  width: min(260px, calc(100% - 40px));
  border-left: 1px solid rgba(192, 138, 70, 0.54);
  padding-left: 18px;
}

.hero-note span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.intro > p,
.contact p,
.project-card p,
.service-list p,
.timeline p,
.testimonial p,
.site-footer a {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.ticker {
  display: flex;
  gap: 12px;
  padding: 16px clamp(20px, 5vw, 72px);
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: #0a0a0a;
}

.ticker span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(192, 138, 70, 0.08);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  display: grid;
  gap: 18px;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(180deg, #151515, #090909);
  box-shadow: var(--shadow);
}

.project-visual {
  display: grid;
  min-height: 290px;
  border-radius: calc(var(--radius) - 2px);
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.76)),
    var(--layko-image) center / cover no-repeat;
}

.project-visual span {
  align-self: end;
  font-size: 54px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
}

.project-a .project-visual {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82)),
    var(--layko-image) left center / cover no-repeat;
}

.project-b .project-visual {
  background:
    linear-gradient(135deg, rgba(156, 107, 47, 0.28), rgba(0, 0, 0, 0.84)),
    #111;
}

.project-c .project-visual {
  background:
    linear-gradient(135deg, rgba(180, 71, 45, 0.32), rgba(0, 0, 0, 0.86)),
    #101010;
}

.services {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.98)),
    var(--layko-image) center / cover fixed;
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.services .section-kicker,
.services p {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(156, 107, 47, 0.24);
}

.service-list article {
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.45fr) minmax(240px, 1fr);
  gap: 22px;
  align-items: start;
  padding: 28px;
  background: rgba(5, 5, 5, 0.88);
}

.service-list span,
.timeline span {
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process {
  background: linear-gradient(180deg, #0d0d0d, #050505);
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.timeline div {
  min-height: 220px;
  border-top: 2px solid var(--gold);
  padding-top: 22px;
}

.timeline span {
  display: block;
  margin-bottom: 52px;
  color: var(--ink);
  font-size: 18px;
}

.testimonial {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62)),
    var(--layko-image) center / cover no-repeat;
  border-block: 1px solid var(--line);
}

.testimonial blockquote {
  max-width: 980px;
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
  background:
    radial-gradient(circle at 85% 20%, rgba(192, 138, 70, 0.18), transparent 28%),
    #050505;
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 30px);
  background: linear-gradient(180deg, #121212, #080808);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: #080808;
  color: var(--ink);
  font-size: 16px;
}

.check-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: #d0c8b8;
  font-size: 12px;
  line-height: 1.5;
  text-transform: none;
}

.check-label input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--gold-bright);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #050505;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.shop-hero {
  position: relative;
  display: grid;
  min-height: 72vh;
  padding: 150px clamp(20px, 5vw, 72px) 80px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.28) 100%),
    var(--layko-image) center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.brand-hero {
  position: relative;
  display: grid;
  min-height: 78vh;
  padding: 150px clamp(20px, 5vw, 72px) 80px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 50%, rgba(0, 0, 0, 0.28) 100%),
    var(--layko-image) center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.brand-hero::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 16%, rgba(192, 138, 70, 0.24), transparent 24%),
    linear-gradient(rgba(192, 138, 70, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 138, 70, 0.07) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  content: "";
  opacity: 0.5;
}

.brand-hero__copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 900px;
}

.brand-hero p:not(.eyebrow),
.brand-manifesto p,
.brand-pillars p,
.brand-audience p,
.brand-product p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.brand-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #d0c8b8;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.brand-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: linear-gradient(180deg, #080808, #050505);
}

.manifesto-copy {
  display: grid;
  gap: 18px;
}

.manifesto-copy p,
.brand-product p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.75;
}

.brand-pillars {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.98)),
    var(--layko-image) center / cover fixed;
  border-block: 1px solid var(--line);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(192, 138, 70, 0.22);
  background: rgba(156, 107, 47, 0.22);
}

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

.pillar-grid article {
  display: grid;
  align-content: start;
  min-height: 320px;
  gap: 16px;
  padding: 26px;
  background: rgba(5, 5, 5, 0.9);
}

.pillar-grid span,
.audience-list p::before {
  color: var(--gold-bright);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 10%, rgba(180, 71, 45, 0.14), transparent 30%),
    #050505;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list p {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px 34px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.audience-list p::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "//";
}

.brand-product {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.68)),
    var(--layko-image) center / cover no-repeat;
  border-top: 1px solid var(--line);
}

.brand-product__panel {
  max-width: 900px;
  border: 1px solid rgba(192, 138, 70, 0.24);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 52px);
  background: rgba(5, 5, 5, 0.74);
  box-shadow: var(--shadow);
}

.giveback-note {
  margin-top: 20px;
  border-left: 1px solid rgba(192, 138, 70, 0.48);
  padding-left: 18px;
  color: #d0c8b8;
  font-weight: 700;
}

.trust-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(192, 138, 70, 0.12), transparent 28%),
    linear-gradient(180deg, #080808, #050505);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article,
.policy-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background: linear-gradient(180deg, #151515, #090909);
  box-shadow: var(--shadow);
}

.trust-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-grid p,
.policy-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

.trust-grid a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-policy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72)),
    var(--layko-image) center / cover no-repeat;
  border-block: 1px solid var(--line);
}

.policy-list {
  display: grid;
  gap: 16px;
}

.shop-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(192, 138, 70, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 138, 70, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.4;
}

.shop-hero__copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 780px;
}

.shop-hero p:not(.eyebrow),
.inventory-note,
.shop-card p,
.cart-help,
.empty-cart,
.cart-line span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.shop-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #d0c8b8;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
}

.shop-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #0a0a0a;
}

.shop-strip span {
  min-height: 74px;
  border-right: 1px solid rgba(156, 107, 47, 0.34);
  padding: 22px clamp(16px, 3vw, 30px);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.shop-strip span:last-child {
  border-right: 0;
}

.inventory {
  background:
    radial-gradient(circle at 18% 10%, rgba(180, 71, 45, 0.14), transparent 28%),
    linear-gradient(180deg, #080808, #050505);
}

.inventory-note {
  max-width: 360px;
  margin: 0;
  line-height: 1.7;
}

.inventory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.34fr);
  gap: 28px;
  align-items: start;
}

.shopify-panel {
  display: grid;
  gap: 22px;
  margin-bottom: 42px;
  border: 1px solid rgba(192, 138, 70, 0.28);
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96)),
    radial-gradient(circle at 86% 12%, rgba(192, 138, 70, 0.18), transparent 26%);
  box-shadow: var(--shadow);
}

.shopify-panel__heading {
  max-width: 760px;
}

.shopify-panel__heading h3 {
  font-size: clamp(26px, 4vw, 48px);
}

.shopify-panel__heading p,
.shopify-note-panel p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.storefront-status {
  display: inline-flex;
  margin-top: 14px;
  border: 1px solid rgba(192, 138, 70, 0.28);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(5, 5, 5, 0.64);
  color: var(--gold-bright) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.storefront-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.storefront-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(7, 7, 7, 0.98)),
    #111;
  box-shadow: var(--shadow);
}

.storefront-card__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(192, 138, 70, 0.16), rgba(0, 0, 0, 0.86)),
    #101010;
}

.storefront-card__media::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(192, 138, 70, 0.24);
  border-radius: calc(var(--radius) - 4px);
  content: "";
  pointer-events: none;
}

.storefront-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

.storefront-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  border: 1px solid rgba(192, 138, 70, 0.38);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.storefront-card__body {
  display: grid;
  gap: 22px;
  padding: 22px;
}

.storefront-card__body h4 {
  margin-bottom: 10px;
}

.storefront-card__body p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.storefront-card__buy {
  display: grid;
  grid-template-columns: minmax(145px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.storefront-card__buy strong {
  padding-bottom: 12px;
  color: var(--gold-bright);
  font-size: 21px;
  font-weight: 950;
}

.storefront-card__buy .button {
  grid-column: 1 / -1;
  width: 100%;
}

.storefront-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.96)),
    radial-gradient(circle at 82% 0%, rgba(180, 71, 45, 0.18), transparent 30%);
}

.storefront-empty h3 {
  margin-bottom: 10px;
}

.storefront-empty p {
  max-width: 620px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.purchase-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 42px;
  border: 1px solid rgba(192, 138, 70, 0.22);
  background: rgba(156, 107, 47, 0.22);
}

.purchase-trust article {
  min-height: 150px;
  padding: 22px;
  background: rgba(5, 5, 5, 0.9);
}

.purchase-trust span,
.bundle-items span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.purchase-trust p,
.bundle-panel p,
.size-guide p {
  margin-bottom: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.purchase-trust a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bundle-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(192, 138, 70, 0.28);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.74)),
    var(--layko-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.bundle-panel h3 {
  font-size: clamp(28px, 5vw, 58px);
}

.bundle-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 260px;
}

.bundle-items span {
  margin: 0;
  border: 1px solid rgba(192, 138, 70, 0.34);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(5, 5, 5, 0.72);
}

.inventory-products,
.product-section {
  display: grid;
  gap: 36px;
}

.product-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.product-section__heading .section-kicker,
.product-section__heading h3 {
  margin-bottom: 0;
}

.size-guide {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(180deg, #121212, #080808);
}

.size-guide summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  list-style: none;
  text-transform: uppercase;
}

.size-guide summary::-webkit-details-marker {
  display: none;
}

.size-guide summary::after {
  content: "+";
  color: var(--ink);
  font-size: 22px;
}

.size-guide[open] summary::after {
  content: "-";
}

.size-table-wrap {
  width: 100%;
  margin: 14px 0;
  overflow-x: auto;
}

.size-guide table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
}

.size-guide th,
.size-guide td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  color: var(--muted);
  text-align: left;
}

.size-guide th {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.shop-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515, #090909);
  box-shadow: var(--shadow);
}

.shop-card__media {
  position: relative;
  display: grid;
  min-height: 300px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78)),
    #111;
}

.shop-card__media::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(192, 138, 70, 0.28);
  border-radius: calc(var(--radius) - 4px);
  content: "";
}

.shop-card__media span {
  position: relative;
  align-self: end;
  max-width: 320px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 32px #000;
}

.product-tee-dark {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.88)),
    var(--layko-image) left center / cover no-repeat;
}

.product-tee-gold {
  background:
    radial-gradient(circle at 74% 20%, rgba(192, 138, 70, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(156, 107, 47, 0.24), rgba(0, 0, 0, 0.88)),
    #111;
}

.product-book {
  background:
    linear-gradient(145deg, rgba(192, 138, 70, 0.22), rgba(0, 0, 0, 0.86)),
    #15110d;
}

.product-notes {
  background:
    linear-gradient(145deg, rgba(180, 71, 45, 0.24), rgba(0, 0, 0, 0.86)),
    #111;
}

.shop-card__body {
  display: grid;
  gap: 24px;
  padding: 22px;
}

.product-type {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-details {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.product-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  list-style: none;
  text-transform: uppercase;
}

.product-details summary::-webkit-details-marker {
  display: none;
}

.product-details summary::after {
  content: "+";
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.product-details[open] summary::after {
  content: "-";
}

.product-details p {
  margin: 8px 0 0;
  color: #d0c8b8;
  line-height: 1.65;
}

.product-buy {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.product-buy .button {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
}

.product-buy strong {
  padding-bottom: 12px;
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 950;
}

.cart-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, #121212, #080808);
  box-shadow: var(--shadow);
}

.shopify-note-panel {
  align-content: start;
}

.cart-panel h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 70px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.cart-line strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-line span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.cart-remove {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(192, 138, 70, 0.34);
  padding-top: 18px;
  color: var(--gold-bright);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-link {
  width: 100%;
}

.cart-help {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav.is-open {
    position: fixed;
    top: 71px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    max-height: calc(100vh - 71px);
    overflow-y: auto;
    background: rgba(5, 5, 5, 0.98);
    color: var(--ink);
    box-shadow: 0 28px 50px rgba(23, 20, 17, 0.12);
  }

  .site-nav.is-open a {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-size: 18px;
  }

  .intro,
  .contact,
  .inventory-layout,
  .brand-manifesto,
  .brand-audience,
  .trust-policy {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .timeline,
  .trust-grid,
  .purchase-trust {
    grid-template-columns: 1fr;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline span {
    margin-bottom: 30px;
  }

  .shop-strip,
  .shop-grid,
  .storefront-grid,
  .pillar-grid,
  .giveback-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .services,
  .brand-pillars {
    background-attachment: scroll;
  }

  .shop-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(156, 107, 47, 0.34);
  }

  .cart-panel {
    position: static;
  }

  .bundle-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .bundle-items {
    max-width: none;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    align-self: end;
    margin-top: 42px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    max-width: min(72vw, 300px);
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 76px);
    line-height: 0.94;
    letter-spacing: 0.015em;
  }

  h2 {
    font-size: clamp(30px, 11vw, 48px);
    line-height: 1.02;
  }

  h3 {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  h4 {
    font-size: 21px;
    letter-spacing: 0.08em;
  }

  .section-pad {
    padding: 58px 18px;
  }

  .hero {
    min-height: 760px;
    padding: 112px 18px 58px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 58%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
  }

  .shop-hero {
    min-height: 680px;
    padding: 112px 18px 58px;
  }

  .brand-hero {
    min-height: 680px;
    padding: 112px 18px 58px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
    letter-spacing: 0.1em;
  }

  .project-card {
    min-height: auto;
  }

  .project-visual {
    min-height: 240px;
  }

  .shop-card__media {
    min-height: 250px;
  }

  .shop-card__body,
  .storefront-card__body,
  .cart-panel,
  .shopify-panel,
  .bundle-panel,
  .purchase-trust article,
  .size-guide,
  .trust-grid article,
  .policy-list article,
  .pillar-grid article,
  .contact-form,
  .brand-product__panel {
    padding: 18px;
  }

  .shop-card__media span {
    font-size: clamp(36px, 13vw, 58px);
  }

  .product-section__heading {
    display: grid;
    align-items: start;
  }

  .product-buy {
    grid-template-columns: 1fr;
  }

  .storefront-grid,
  .storefront-card__buy {
    grid-template-columns: 1fr;
  }

  .storefront-card__media,
  .storefront-card__media img {
    min-height: 250px;
  }

  .product-buy strong {
    padding-bottom: 0;
  }

  .storefront-card__buy strong {
    padding-bottom: 0;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div {
    display: grid;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: 250px;
    font-size: 11px;
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.18em;
  }

  .site-nav.is-open a {
    font-size: 16px;
  }

  .hero,
  .shop-hero,
  .brand-hero {
    min-height: 640px;
  }

  .ticker span,
  .shop-strip span {
    white-space: normal;
  }
}
