:root {
  --ink: #111111;
  --charcoal: #181714;
  --black: #050505;
  --paper: #f4f0e8;
  --white: #ffffff;
  --muted: #777169;
  --line: rgba(17, 17, 17, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --gold: #d7aa4a;
  --gold-soft: #f0d28a;
  --teal: #0f8a8f;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 68px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.22));
}

.brand img {
  width: 126px;
  height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover {
  color: var(--gold-soft);
}

.header-cta {
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 90px) 120px;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, rgba(215, 170, 74, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.66) 42%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 54%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 8.6vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.3vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark-text {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button.full {
  width: 100%;
}

.hero-proof {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 28px;
  left: clamp(20px, 6vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(14px);
}

.hero-proof article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof article:last-child {
  border-right: 0;
}

.hero-proof strong {
  color: var(--gold-soft);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.section {
  padding: clamp(68px, 8vw, 116px) clamp(20px, 6vw, 90px);
}

.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 170, 74, 0.08), transparent 30%),
    var(--charcoal);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
  background: var(--paper);
}

.intro-text p,
.contact-copy p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.booking-copy p,
.dark .section-heading h2 + p {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.service-card.featured {
  background:
    linear-gradient(135deg, rgba(215, 170, 74, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

.service-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.review-card p,
.faq p,
.fine-print,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.service-card strong {
  color: var(--gold-soft);
  font-size: 1.45rem;
}

.fine-print {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.experience {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.steps article {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--paper);
}

.steps span {
  color: var(--teal);
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.gallery-grid .large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  font-weight: 900;
}

.reviews {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 138, 143, 0.18), transparent 32%),
    var(--black);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.review-card p {
  min-height: 136px;
  margin: 0;
}

.stars {
  color: #f6b727;
  letter-spacing: 0.05em;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.barber-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.barber-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.booking-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: clamp(20px, 3.4vw, 32px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label,
legend {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  font: inherit;
}

select option {
  color: var(--ink);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.barber-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.barber-options label {
  display: block;
}

.barber-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.barber-options span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.barber-options small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.barber-options input:checked + span {
  color: var(--ink);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.barber-options input:checked + span small {
  color: rgba(17, 17, 17, 0.72);
}

.booking-note {
  min-height: 28px;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 800;
  line-height: 1.5;
}

.booking-note a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 900;
}

.faq summary::marker {
  color: var(--teal);
}

.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
}

.contact-list span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  line-height: 1.45;
}

.contact-media {
  position: relative;
}

.contact-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.location-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.location-card span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 90px);
  color: var(--white);
  background: var(--black);
}

.footer-client-logo {
  width: 136px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 10px;
}

.creator-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: right;
}

.creator-credit img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
}

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

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 270px;
  }
}

@media (max-width: 660px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand img {
    width: 102px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .nav {
    gap: 16px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 91svh;
    padding: 158px 20px 170px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28)),
      radial-gradient(circle at 80% 20%, rgba(215, 170, 74, 0.2), transparent 30%);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .hero-proof article {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 14px;
  }

  .hero-proof article:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .steps,
  .review-grid,
  .gallery-grid,
  .form-row,
  .barber-options,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 320px;
  }

  .gallery-grid .large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card,
  .review-card,
  .steps article {
    padding: 20px;
  }

  .site-footer {
    display: grid;
    text-align: left;
  }

  .creator-credit {
    justify-content: space-between;
    text-align: left;
  }
}
