:root {
  --ink: #151515;
  --muted: #6b665f;
  --paper: #f6f1e8;
  --panel: #ffffff;
  --charcoal: #20211f;
  --gold: #b87943;
  --gold-dark: #87512d;
  --green: #63715d;
  --line: rgba(32, 33, 31, 0.14);
  --shadow: 0 18px 42px rgba(24, 21, 17, 0.13);
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(2.55rem, 5.1vw, 4.9rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.72rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.22;
}

p {
  line-height: 1.62;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 42px);
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 6px;
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a,
.text-link {
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.text-link:hover {
  border-color: currentColor;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 850;
}

.header-action {
  min-height: 40px;
  padding: 9px 15px;
  color: #fff;
  background: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.button {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button.primary:hover {
  background: var(--gold-dark);
}

.button.secondary {
  color: var(--charcoal);
  background: #fff;
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(var(--max), calc(100% - 36px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: clamp(58px, 7vw, 92px) clamp(22px, 4.5vw, 58px);
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.98) 0%, rgba(246, 241, 232, 0.92) 36%, rgba(246, 241, 232, 0.22) 68%, rgba(246, 241, 232, 0.06) 100%),
    url("assets/2026-06-01-v5-generated/hero-barbershop-products.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-copy {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
}

.hero-actions,
.contact-actions,
.catalog-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-selling-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 28px);
  max-width: 640px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 33, 31, 0.18);
}

.hero-selling-points span {
  display: grid;
  gap: 3px;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.1;
}

.hero-selling-points strong {
  display: block;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 14px;
}

.hero-media img,
.media-card img,
.product-card img,
.mockup-example img,
.product-hero-media img {
  width: 100%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-media img {
  aspect-ratio: 1.18;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: clamp(22px, 4vw, 54px);
  bottom: clamp(22px, 4vw, 48px);
  z-index: 1;
  width: min(360px, calc(100% - 44px));
  padding: 16px 18px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(24, 21, 17, 0.12);
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
}

.section,
.page-hero,
.contact-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(50px, 7vw, 84px) 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(54px, 7vw, 88px) 0 clamp(34px, 5vw, 62px);
}

.page-hero h1 {
  color: var(--charcoal);
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.03rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-note,
.text-link {
  color: var(--muted);
}

.steps-grid,
.benefit-grid,
.product-grid,
.blog-grid,
.sample-grid,
.mockup-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

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

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

.steps-grid article,
.benefit-grid article,
.sample-card,
.blog-card,
.spec-grid article,
.contact-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps-grid article,
.benefit-grid article,
.sample-card,
.blog-card,
.spec-grid article {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.steps-grid article:hover,
.benefit-grid article:hover,
.sample-card:hover,
.blog-card:hover,
.spec-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 121, 67, 0.32);
  box-shadow: 0 12px 28px rgba(24, 21, 17, 0.08);
}

.steps-grid article {
  min-height: 176px;
}

.step-number,
.mini-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-grid p,
.benefit-grid p,
.product-card p,
.sample-card p,
.blog-card p,
.spec-grid p,
.contact-card p {
  color: var(--muted);
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
}

.dark-band {
  background: var(--charcoal);
  color: #fff;
}

.dark-band .eyebrow {
  color: #d9ad7b;
}

.dark-band p,
.dark-band .section-note,
.dark-band .blog-card p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band .steps-grid article,
.dark-band .benefit-grid article,
.dark-band .spec-grid article {
  color: var(--charcoal);
}

.dark-band .steps-grid article p,
.dark-band .benefit-grid article p,
.dark-band .spec-grid article p {
  color: var(--muted);
}

.dark-band .blog-card,
.dark-band .sample-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.product-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 100%;
  padding: 12px 12px 14px;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(25, 24, 21, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 121, 67, 0.34);
  box-shadow: 0 16px 34px rgba(25, 24, 21, 0.12);
}

.product-card img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 8px;
  background: linear-gradient(180deg, #fbf8f2, #eee4d5);
}

.product-card span {
  font-size: 1rem;
  font-weight: 900;
}

.product-card small {
  color: var(--green);
  font-weight: 830;
  font-size: 0.86rem;
}

.product-card p {
  margin: 2px 0 0;
  font-size: 0.92rem;
}

.custom-products-link {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.custom-products-link:hover {
  color: var(--charcoal);
}

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

.mockup-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.mockup-example {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mockup-large img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #151515;
}

.mockup-copy {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.mockup-copy .eyebrow {
  color: #d9ad7b;
}

.mockup-copy h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
}

.mockup-copy p,
.mockup-copy .clean-list li {
  color: rgba(255, 255, 255, 0.76);
}

.mockup-example img {
  aspect-ratio: 1.28;
}

.mockup-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 820;
}

.upload-panel,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.mockup-tool,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bottle-preview {
  min-height: 330px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.bottle-neck {
  width: 70px;
  height: 66px;
  border-radius: 16px 16px 7px 7px;
  background: linear-gradient(90deg, #121312, #343735 52%, #111);
}

.bottle-body {
  width: min(210px, 100%);
  height: 285px;
  display: grid;
  place-items: center;
  border-radius: 34px 34px 22px 22px;
  background: linear-gradient(110deg, #0d0e0d 0%, #2f3330 48%, #080908 100%);
  box-shadow: 18px 20px 40px rgba(0, 0, 0, 0.24);
}

.bottle-label {
  width: 72%;
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--charcoal);
  background: #f4efe4;
  border-radius: 6px;
  text-align: center;
  font-weight: 900;
  overflow: hidden;
}

.bottle-label img {
  max-height: 88px;
  object-fit: contain;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 830;
}

.disabled-link {
  opacity: 0.55;
  pointer-events: none;
}

.product-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(54px, 7vw, 88px) 0 clamp(40px, 6vw, 70px);
}

.product-hero h1 {
  color: var(--charcoal);
  font-size: clamp(2.25rem, 4.7vw, 4.5rem);
}

.product-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.03rem;
}

.product-hero-media img {
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}

.product-pill {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 12px;
  color: var(--gold-dark);
  background: rgba(184, 121, 67, 0.12);
  border: 1px solid rgba(184, 121, 67, 0.3);
  border-radius: 6px;
  font-weight: 900;
}

.product-info {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.mockup-copy .clean-list li::before {
  background: #d9ad7b;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(30px, 5vw, 58px);
  padding: clamp(30px, 4.5vw, 50px);
  color: #fff;
  background: var(--charcoal);
  border-radius: 8px;
}

.contact-section h2 {
  max-width: 680px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 44px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

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

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .page-hero,
  .upload-panel,
  .contact-layout,
  .product-hero,
  .product-info,
  .contact-section,
  .mockup-feature {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .product-grid,
  .steps-grid,
  .sample-grid,
  .blog-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

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

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    background:
      linear-gradient(180deg, rgba(246, 241, 232, 0.98) 0%, rgba(246, 241, 232, 0.9) 48%, rgba(246, 241, 232, 0.24) 100%),
      url("assets/2026-06-01-v5-generated/hero-barbershop-products.png") center bottom / cover no-repeat;
    padding-bottom: 260px;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
  }

  .hero-actions,
  .contact-actions,
  .catalog-action,
  .section-heading.split {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .benefit-grid,
  .product-grid,
  .steps-grid,
  .sample-grid,
  .blog-grid,
  .spec-grid,
  .mockup-grid {
    grid-template-columns: 1fr;
  }

  .bottle-body {
    width: 190px;
    height: 270px;
  }
}
