:root {
  --ink: #11110f;
  --paper: #f3f0e8;
  --lime: #d7ff43;
  --muted: #aaa89f;
  --font-geist-sans: Inter, Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

body.dialog-open {
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.concept-bar {
  position: relative;
  z-index: 5;
  padding: 7px 16px;
  background: var(--lime);
  color: #111;
  text-align: center;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.brand {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 34px;
  color: #c5c4be;
  font-size: 14px;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}

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

.button-small {
  min-height: 43px;
  padding-inline: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: calc(92vh - 156px);
  padding-block: 56px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .86;
}

.hero h1 span {
  color: var(--lime);
}

.hero-text {
  max-width: 570px;
  margin: 30px 0 0;
  color: #bbb9b1;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.hero-trust span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  color: #bdbcb4;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 6px;
  color: var(--lime);
}

.hero-art {
  position: relative;
  display: flex;
  min-height: 440px;
  align-items: center;
  justify-content: center;
}

.hero-art::before {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(215,255,67,.25);
  border-radius: 50%;
  content: "";
}

.art-card {
  position: relative;
  display: flex;
  width: min(320px, 75%);
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.02)),
    #1c1c19;
  box-shadow: 28px 28px 0 var(--lime);
  transform: rotate(4deg);
}

.art-card p {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .9;
}

.art-number,
.art-mark {
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  letter-spacing: .15em;
}

.art-mark {
  align-self: flex-end;
  color: var(--lime);
  font-size: 24px;
  font-weight: 900;
}

.barber-pole {
  position: absolute;
  top: 28px;
  right: 5%;
  width: 24px;
  height: 122px;
  background: repeating-linear-gradient(-35deg, var(--lime) 0 15px, white 15px 30px, #252522 30px 45px);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  color: #88877f;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .12em;
}

.quick-proof {
  border-bottom: 1px solid #d4d0c4;
  background: #eae6db;
}

.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-proof-grid span {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid #d4d0c4;
  color: #55534d;
  font-size: 13px;
}

.quick-proof-grid span:first-child {
  border-left: 1px solid #d4d0c4;
}

.quick-proof-grid strong {
  color: #596700;
  font-size: 30px;
}

.services {
  padding-block: 110px;
}

.services .eyebrow {
  color: #596700;
}

.section-heading h2,
.contact-teaser h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .95;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid #d4d0c4;
  background: #faf8f2;
  transition: transform .2s ease, background .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: white;
}

.service-index {
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.service-card h3 {
  max-width: 220px;
  margin: 48px 0 8px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.service-card p {
  margin: 0;
  color: #77746d;
  font-size: 13px;
}

.service-card strong {
  position: absolute;
  right: 28px;
  bottom: 68px;
  color: #596700;
  font-size: 24px;
}

.service-select {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid #b8b4a9;
  background: transparent;
  color: #292823;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
}

.service-select:hover,
.service-select:focus-visible {
  border-color: #596700;
  color: #596700;
}

.style-section {
  padding-block: 110px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.style-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.style-copy h2,
.booking h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .95;
}

.style-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 26px 0 0;
  color: #aaa89f;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  color: #dddcd6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: .08em;
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-height: 500px;
}

.look {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .12em;
}

.look::before,
.look::after {
  position: absolute;
  content: "";
}

.look::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.22) 0 17%, transparent 18%),
    radial-gradient(ellipse at 50% 71%, rgba(255,255,255,.14) 0 32%, transparent 33%);
}

.look::after {
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 45%);
}

.look span,
.look strong {
  position: relative;
  z-index: 1;
}

.look strong {
  color: var(--lime);
  font-size: 20px;
}

.look-one {
  background: linear-gradient(160deg, #4d4d46, #171714 72%);
}

.look-two {
  margin-top: 38px;
  margin-bottom: -38px;
  background: linear-gradient(160deg, #6d762f, #191a13 72%);
}

.look-three {
  background: linear-gradient(160deg, #494643, #151412 72%);
}

.booking {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  padding-block: 110px;
}

.booking .eyebrow {
  color: #596700;
}

.booking-number {
  position: absolute;
  top: 30px;
  right: 0;
  color: #e5e0d4;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
}

.steps {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  border-top: 1px solid #d4d0c4;
}

.steps li:last-child {
  border-bottom: 1px solid #d4d0c4;
}

.steps span {
  color: #596700;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.steps p {
  margin: 0;
  font-weight: 700;
}

.contact-teaser {
  padding: 84px 0 22px;
  background: var(--lime);
}

.contact-teaser .eyebrow {
  color: #596700;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-meta {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  color: #4f5b00;
  font-size: 13px;
}

.contact-intro {
  max-width: 640px;
  margin: 24px 0 0;
  color: #3f4900;
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.contact-options {
  display: grid;
  min-width: min(100%, 390px);
  gap: 10px;
}

.contact-option {
  display: grid;
  gap: 8px;
  min-width: 350px;
  padding: 22px;
  border: 1px solid rgba(17,17,15,.35);
  background: rgba(255,255,255,.25);
  color: var(--ink);
  text-align: left;
}

.contact-option small {
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact-option strong {
  font-size: 25px;
  letter-spacing: -.04em;
}

.contact-option span {
  color: #4f5b00;
  font-size: 12px;
}

.contact-option-primary {
  background: var(--ink);
  color: white;
  transition: transform .2s ease, background .2s ease;
}

.contact-option-primary:hover {
  transform: translateY(-2px);
  background: #292924;
}

.contact-option-primary small,
.contact-option-primary span {
  color: var(--lime);
}

.contact-options .map-link {
  justify-self: start;
  margin-top: 8px;
}

.map-link {
  border-bottom: 1px solid rgba(17,17,15,.5);
  font-size: 12px;
  font-weight: 700;
}

.button-light {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.button-light:hover {
  background: #292924;
}

.demo-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17,17,15,.25);
  color: #4f5b00;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
}

.mobile-book,
.mobile-actions {
  display: none;
}

.booking-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  padding: 42px;
  overflow-y: auto;
  border: 1px solid #d8d4c9;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.booking-dialog .eyebrow {
  color: #596700;
}

.booking-dialog h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .95;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #c8c4ba;
  background: transparent;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.dialog-close:hover {
  background: #e6e1d6;
}

.dialog-lead {
  max-width: 530px;
  margin: 20px 0 0;
  color: #66635c;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #5f5c54;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #c8c4ba;
  border-radius: 0;
  outline: none;
  background: #fffef9;
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #596700;
  box-shadow: 0 0 0 3px rgba(89,103,0,.12);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: #77746c;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.message-ready {
  display: grid;
  gap: 20px;
}

.success-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
}

.message-ready .eyebrow {
  margin-bottom: -8px;
}

.message-preview {
  padding: 20px;
  border-left: 4px solid #596700;
  background: #e9e5da;
  color: #383630;
  line-height: 1.65;
}

.message-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.button-viber {
  border-color: #665cac;
  background: #665cac;
  color: white;
}

.button-viber:hover {
  background: #776dc1;
}

.copy-button,
.back-button {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid #aaa69b;
  background: transparent;
  color: #3e3c36;
  font-size: 12px;
  font-weight: 800;
}

.copy-button {
  grid-column: 1 / -1;
}

.back-button {
  justify-self: start;
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-art {
    min-height: 390px;
  }

  .hero-bottom span:nth-child(2) {
    display: none;
  }

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

  .service-card {
    min-height: 260px;
  }

  .style-layout,
  .booking {
    grid-template-columns: 1fr;
  }

  .lookbook {
    min-height: 420px;
  }

  .look {
    min-height: 420px;
  }

  .booking-number {
    display: none;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-items: start;
  }

  .quick-proof-grid span {
    min-height: 82px;
    text-align: center;
  }

  .contact-options {
    width: 100%;
  }

  .contact-option {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  .button-small {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(51px, 17vw, 74px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    padding-left: 3px;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-art::before {
    width: 300px;
    height: 300px;
  }

  .art-card {
    min-height: 310px;
    box-shadow: 17px 17px 0 var(--lime);
  }

  .art-card p {
    font-size: 34px;
  }

  .hero-bottom {
    gap: 12px;
    line-height: 1.5;
  }

  .services {
    padding-block: 80px;
  }

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

  .quick-proof-grid {
    grid-template-columns: 1fr;
  }

  .quick-proof-grid span,
  .quick-proof-grid span:first-child {
    min-height: 65px;
    justify-content: flex-start;
    padding-inline: 16px;
    border-right: 1px solid #d4d0c4;
    border-bottom: 1px solid #d4d0c4;
    border-left: 1px solid #d4d0c4;
  }

  .style-section,
  .booking {
    padding-block: 80px;
  }

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

  .look {
    min-height: 290px;
  }

  .look-two {
    margin: 0;
  }

  .contact-teaser {
    padding: 64px 0 80px;
  }

  .demo-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    z-index: 20;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    border: 1px solid rgba(0,0,0,.35);
    box-shadow: 0 12px 38px rgba(0,0,0,.28);
    background: var(--ink);
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-actions a,
  .mobile-actions button {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 0;
  }

  .mobile-actions a {
    color: white;
  }

  .mobile-actions button {
    background: var(--lime);
    color: var(--ink);
    font-weight: 900;
  }

  .booking-overlay {
    align-items: end;
    padding: 0;
  }

  .booking-dialog {
    width: 100%;
    max-height: 92vh;
    padding: 34px 18px 28px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .field-row,
  .message-actions {
    grid-template-columns: 1fr;
  }

  .copy-button {
    grid-column: auto;
  }
}
