:root {
  --black: #111111;
  --paper: #f6f2ea;
  --white: #ffffff;
  --line: #ded8ce;
  --muted: #64666d;
  --gold: #c98b2c;
  --red: #b7312c;
  --green: #2d7160;
  --blue: #265f87;
  --plum: #73385d;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: Arial, "Noto Sans SC", "PingFang SC", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 17, 17, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
}

.nav-cta {
  color: var(--black);
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/storefront-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 44%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.04));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.quote-copy h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
}

.service-band,
.process-band {
  width: 100%;
  padding-left: max(18px, calc((100% - 1120px) / 2));
  padding-right: max(18px, calc((100% - 1120px) / 2));
  background: var(--white);
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.service-card,
.price-card,
.process-grid article,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  overflow: hidden;
}

.sample {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 178px;
  padding: 18px;
  color: var(--white);
  font-weight: 900;
}

.sample span {
  display: block;
}

.sample-title {
  color: #f2c261;
  font-size: 26px;
}

.sample-subtitle {
  font-size: 13px;
}

.storefront-sign {
  background: linear-gradient(135deg, #111 0%, #111 52%, var(--red) 52%, var(--red) 100%);
}

.menu-lightbox {
  color: var(--black);
  background: linear-gradient(135deg, #fff7df, #fbdd82);
  border-bottom: 6px solid var(--green);
}

.printed-menu {
  background: linear-gradient(90deg, var(--red) 0 38%, #fff7e4 38% 100%);
  color: var(--black);
}

.printed-menu span:first-child {
  color: var(--white);
}

.window-graphics {
  background: linear-gradient(135deg, var(--blue), var(--plum));
}

.service-card h3,
.service-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.service-card h3 {
  padding-top: 18px;
  font-size: 20px;
}

.service-card p {
  padding-top: 8px;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.price-card {
  padding: 24px;
}

.price-card.highlight {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.price-card h3 {
  font-size: 24px;
}

.price-tag {
  margin: 8px 0 16px;
  color: var(--red);
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  background: #fbfaf7;
  font-size: 12px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.price-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.process-grid article {
  padding: 22px;
}

.step {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 8px;
  font-size: 21px;
}

.process-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.quote-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.quote-copy p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.quote-panel {
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-panel h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
}

.contact-row strong {
  text-align: right;
}

.fine-print {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
  font-size: 14px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .intro,
  .quote-section,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding-top: 110px;
    padding-bottom: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .service-band,
  .process-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    display: grid;
    gap: 4px;
  }

  .contact-row strong {
    text-align: left;
    overflow-wrap: anywhere;
  }
}
