:root {
  --ink: #0c100f;
  --paper: #f3f1e9;
  --acid: #dfff49;
  --white: #ffffff;
  --muted: #686c68;
  --paper-line: rgba(12, 16, 15, .15);
  --dark-line: rgba(255, 255, 255, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding-block: clamp(90px, 11vw, 150px); }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 8, .94) 0%, rgba(6, 9, 8, .78) 43%, rgba(6, 9, 8, .13) 78%), linear-gradient(0deg, rgba(6, 9, 8, .76), transparent 42%);
}
.hero-visual { position: absolute; inset: 0 0 0 42%; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; filter: saturate(.7) contrast(1.05); }

.site-header {
  position: relative;
  z-index: 3;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--dark-line);
}
.brand { display: inline-flex; align-items: center; justify-self: start; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { width: 34px; height: 34px; margin-right: 11px; border-radius: 50%; display: grid; place-items: center; background: var(--acid); color: var(--ink); font-size: 22px; }
.brand-name { font-size: 19px; }
.brand-place { margin-left: 9px; color: rgba(255,255,255,.55); font: 600 10px/1 Arial, sans-serif; letter-spacing: .17em; }
.desktop-nav { display: flex; gap: 30px; font-size: 14px; }
.desktop-nav a { color: rgba(255,255,255,.7); transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.header-cta { justify-self: end; display: flex; gap: 26px; align-items: center; min-width: 144px; padding: 14px 18px; border: 1px solid var(--dark-line); font-size: 14px; }

.hero-content { position: relative; z-index: 2; padding-top: clamp(100px, 15vh, 180px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(223,255,73,.12); }
h1 { max-width: 920px; margin: 0; font-size: clamp(54px, 6.9vw, 108px); line-height: .94; letter-spacing: -.065em; font-weight: 750; }
h1 em, .section-heading em { color: var(--acid); font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.hero-copy { max-width: 565px; margin: 32px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 40px; }
.button { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; border: 0; font-size: 14px; font-weight: 700; transition: transform .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--acid); color: var(--ink); }
.button-ghost { border: 1px solid var(--dark-line); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.08); }

.hero-strip { position: absolute; z-index: 2; left: 50%; bottom: 0; transform: translateX(-50%); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--dark-line); }
.hero-strip p { margin: 0; padding: 24px 0; border-right: 1px solid var(--dark-line); color: rgba(255,255,255,.72); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.hero-strip p:last-child { border-right: 0; }
.hero-strip strong { margin-right: 18px; color: var(--acid); font-size: 11px; }

.section-intro { display: grid; grid-template-columns: 1fr 3fr; column-gap: 40px; }
.section-kicker { margin: 7px 0 18px; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker::before { content: ""; display: inline-block; width: 24px; height: 1px; margin: 0 11px 4px 0; background: currentColor; }
.section-kicker.light { color: rgba(255,255,255,.58); }
.section-heading { margin: 0; max-width: 980px; font-size: clamp(45px, 6.1vw, 86px); line-height: .98; letter-spacing: -.06em; font-weight: 750; }
.section-heading em { color: #69706c; }
.section-heading.light { color: white; }
.section-heading.light em { color: var(--acid); }
.section-lead { grid-column: 2; max-width: 560px; margin: 34px 0 70px; color: var(--muted); font-size: 18px; line-height: 1.62; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.service-card { min-height: 450px; padding: 34px 34px 40px 0; border-right: 1px solid var(--paper-line); }
.service-card + .service-card { padding-left: 34px; }
.service-card:last-child { border-right: 0; padding-right: 0; }
.service-number { width: 45px; height: 45px; margin-bottom: 66px; display: grid; place-items: center; border: 1px solid var(--paper-line); border-radius: 50%; color: var(--muted); font-size: 11px; }
.service-card h3 { max-width: 320px; margin: 0 0 22px; font-size: clamp(27px, 2.5vw, 38px); line-height: 1.05; letter-spacing: -.04em; }
.service-card > p { max-width: 340px; min-height: 84px; margin: 0 0 28px; color: var(--muted); line-height: 1.55; }
.service-card ul { padding: 0; margin: 0; list-style: none; }
.service-card li { padding: 10px 0; border-top: 1px solid var(--paper-line); font-size: 13px; }
.service-card li::before { content: "+"; margin-right: 10px; color: #6f7c00; font-weight: 800; }

.promise { padding-block: clamp(90px, 10vw, 140px); background: var(--ink); color: white; }
.promise-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(50px, 8vw, 112px); }
.promise-visual { position: relative; min-height: 670px; overflow: hidden; }
.promise-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,10,9,.78), transparent 45%); }
.promise-visual img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.visual-label { position: absolute; z-index: 1; left: 26px; bottom: 24px; max-width: 240px; font-size: 12px; line-height: 1.5; text-transform: uppercase; letter-spacing: .12em; }
.promise-copy { max-width: 590px; margin: 34px 0 54px; color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.6; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--dark-line); }
.steps li { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--dark-line); }
.steps > li > span { color: var(--acid); font-size: 11px; font-weight: 800; }
.steps strong { display: block; margin-bottom: 6px; font-size: 19px; }
.steps p { margin: 0; color: rgba(255,255,255,.54); font-size: 14px; }

.store { overflow: hidden; }
.store-header { display: grid; grid-template-columns: 1.45fr .55fr; align-items: end; gap: 70px; margin-bottom: 70px; }
.store-intro { padding-bottom: 7px; }
.store-intro p { margin: 0 0 28px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.text-link { display: inline-flex; gap: 20px; align-items: center; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 700; }
.store-gallery { display: grid; grid-template-columns: 1.65fr .68fr .68fr; gap: 14px; height: 610px; }
.store-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #dad8d0; }
.store-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.store-gallery figure:hover img { transform: scale(1.025); }
.store-main figcaption { position: absolute; left: 20px; bottom: 20px; padding: 10px 13px; background: rgba(8,11,10,.9); color: white; font-size: 12px; }
.product-band { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 26px; padding-block: 28px; border-bottom: 1px solid var(--paper-line); }
.product-band span { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-band span::before { content: "•"; margin-right: 16px; color: #829000; }

.cta-block { background: var(--acid); }
.cta-inner { padding-block: clamp(80px, 9vw, 126px); text-align: center; }
.cta-inner .section-kicker::before { display: none; }
.cta-inner h2 { margin: 0; font-size: clamp(54px, 8vw, 118px); line-height: .92; letter-spacing: -.07em; }
.cta-inner > p:not(.section-kicker) { max-width: 560px; margin: 30px auto 38px; font-size: 18px; line-height: 1.55; }
.cta-actions { display: flex; justify-content: center; gap: 10px; }
.button-dark { background: var(--ink); color: white; }
.button-outline-dark { border: 1px solid rgba(12,16,15,.4); color: var(--ink); }

.contact-heading { display: grid; grid-template-columns: 1fr 3fr; margin-bottom: 76px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.contact-card { min-height: 310px; padding: 30px 34px; border-right: 1px solid var(--paper-line); }
.contact-card:first-child { padding-left: 0; }
.contact-card:last-child { border-right: 0; padding-right: 0; }
.card-label { display: block; margin-bottom: 72px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-card h3 { margin: 0 0 30px; font-size: 31px; line-height: 1.18; letter-spacing: -.04em; }
.contact-big { display: block; margin-bottom: 15px; font-size: clamp(21px, 2vw, 28px); font-weight: 750; letter-spacing: -.03em; }
.contact-small { color: var(--muted); font-size: 14px; }
.hours { margin: 0; font-size: 14px; }
.hours div { display: flex; justify-content: space-between; gap: 30px; padding: 9px 0; border-bottom: 1px solid var(--paper-line); }
.hours dt, .hours dd { margin: 0; }
.hours dd { color: var(--muted); }

footer { padding: 70px 0 32px; background: var(--ink); color: white; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 70px; }
.back-top { color: rgba(255,255,255,.58); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--dark-line); color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

a:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

@media (max-width: 980px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a:nth-child(2) { display: none; }
  .section-intro, .contact-heading { grid-template-columns: 1fr; }
  .section-lead { grid-column: auto; }
  .promise-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .promise-visual { min-height: 590px; }
  .store-header { grid-template-columns: 1.2fr .8fr; gap: 40px; }
  .store-gallery { grid-template-columns: 1.4fr .7fr; height: 560px; }
  .store-gallery figure:last-child { display: none; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card:first-child { grid-column: 1 / -1; padding-left: 0; min-height: 260px; border-right: 0; border-bottom: 1px solid var(--paper-line); }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 32px), 1240px); }
  .section-space { padding-block: 80px; }
  .hero { min-height: 760px; }
  .hero::after { background: linear-gradient(0deg, rgba(6,9,8,.97) 0%, rgba(6,9,8,.48) 66%, rgba(6,9,8,.72) 100%); }
  .hero-visual { inset: 0; opacity: .7; }
  .hero-visual img { object-position: 44% center; }
  .site-header { height: 80px; display: flex; justify-content: space-between; }
  .desktop-nav, .brand-place { display: none; }
  .header-cta { min-width: 0; gap: 10px; padding: 11px 13px; }
  .hero-content { padding-top: clamp(98px, 15vh, 135px); }
  .eyebrow { margin-bottom: 22px; font-size: 10px; }
  h1 { font-size: clamp(47px, 15vw, 72px); }
  .hero-copy { margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 340px); margin-top: 30px; }
  .button { justify-content: space-between; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-strip p { display: none; }
  .hero-strip p:first-child { display: block; border-right: 0; padding-block: 18px; }
  .section-heading { font-size: clamp(43px, 13vw, 67px); }
  .section-lead { margin: 25px 0 50px; font-size: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card + .service-card, .service-card:last-child { min-height: 0; padding: 30px 0 38px; border-right: 0; border-bottom: 1px solid var(--paper-line); }
  .service-card:last-child { border-bottom: 0; }
  .service-number { margin-bottom: 35px; }
  .service-card > p { min-height: 0; }
  .promise { padding-block: 80px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-visual { min-height: 480px; order: 2; }
  .promise-copy { font-size: 16px; }
  .store-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
  .store-gallery { grid-template-columns: 1fr; height: auto; }
  .store-gallery figure { height: 470px; }
  .store-gallery figure:not(.store-main) { display: none; }
  .product-band { justify-content: flex-start; }
  .cta-inner { text-align: left; }
  .cta-inner .section-kicker::before { display: inline-block; }
  .cta-inner h2 { font-size: clamp(54px, 16vw, 82px); }
  .cta-inner > p:not(.section-kicker) { margin-inline: 0; font-size: 16px; }
  .cta-actions { flex-direction: column; justify-content: flex-start; width: 100%; }
  .contact-heading { margin-bottom: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card, .contact-card:first-child, .contact-card:last-child { grid-column: auto; min-height: 0; padding: 30px 0 38px; border-right: 0; border-bottom: 1px solid var(--paper-line); }
  .contact-card:last-child { border-bottom: 0; }
  .card-label { margin-bottom: 40px; }
  .footer-top { padding-bottom: 55px; }
  .footer-bottom { flex-direction: column; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
