
:root {
  --bg: #050706;
  --surface: #0b1510;
  --green: #0f3d2c;
  --gold: #f2c86b;
  --gold-2: #c99b42;
  --text: #f7f4eb;
  --muted: #cfc7b8;
  --line: rgba(242, 200, 107, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 20% 8%, rgba(15, 61, 44, 0.6), transparent 34%),
    radial-gradient(circle at 76% 18%, rgba(15, 61, 44, 0.33), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  padding: 12px 7vw;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(5, 7, 6, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  object-fit: contain;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover { color: var(--text); }
.header-call {
  min-width: max-content;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.menu-button {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}
.section-anchor { scroll-margin-top: 98px; }

.hero {
  min-height: calc(100vh - 78px);
  padding: 72px 7vw 40px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-brand-lockup {
  max-width: 680px;
  margin-bottom: 28px;
}

.dao-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 8.6vw, 132px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255, 236, 174, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.46);
}

.barber-title-wrap {
  margin-top: 16px;
  display: block;
  max-width: 700px;
}

.barber-line {
  display: block;
  width: min(100%, 640px);
  height: 3px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #f3eee2, rgba(243, 238, 226, 0.22));
  box-shadow: 0 0 12px rgba(242, 200, 107, 0.32);
}

.barber-title {
  color: #f3eee2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow:
    1px 1px 0 rgba(242, 200, 107, 0.18),
    0 7px 18px rgba(0, 0, 0, 0.48);
}

.hero-offer {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(29px, 3.5vw, 46px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}
.hero-actions, .location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, border 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: #10100c; }
.primary:hover { background: var(--gold-2); }
.secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
}
.secondary:hover { border-color: var(--gold); }

.hero-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 168px));
  gap: 14px;
}
.hero-meta div {
  padding: 17px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 72, 51, 0.92), rgba(8, 16, 12, 0.98));
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}
.hero-meta strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.1;
}
.hero-meta span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}
.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-media img {
  width: 100%;
  height: min(660px, 72vh);
  object-fit: cover;
}
.booking-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(27, 23, 16, 0.96), rgba(9, 10, 8, 0.96));
  border: 1px solid rgba(242, 200, 107, 0.12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}
.booking-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}
.booking-card strong {
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.pricing, .samples, .location {
  padding: 86px 7vw;
  border-top: 1px solid var(--line);
}
.section-title { margin-bottom: 34px; }
.section-title h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.price-card {
  padding: 26px;
  min-height: 290px;
  background: linear-gradient(135deg, rgba(18, 72, 51, 0.78), rgba(7, 14, 11, 0.96));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}
.price-card h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.price-row {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(242, 200, 107, 0.12);
  color: var(--muted);
}
.price-row:last-child { border-bottom: 0; }
.price-row strong {
  min-width: max-content;
  color: var(--text);
  font-size: 18px;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sample-grid figure {
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.sample-grid img { width: 100%; height: 100%; object-fit: cover; }

.location {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}
.location-card, .front-card, .map-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-card { padding: 32px; }
.location-card h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.04em;
}
.address, .hours {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 10px;
}
.location-actions { margin-top: 28px; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.socials a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
}
.front-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.map-card {
  grid-column: 1 / -1;
  min-height: 390px;
}
.map-card iframe {
  width: 100%;
  height: 390px;
  border: 0;
  filter: grayscale(100%) invert(92%) contrast(92%);
}
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.floating-actions a {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #10100c;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.floating-actions a:hover {
  transform: translateY(-2px);
  background: var(--gold-2);
}
.footer {
  padding: 26px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-header { padding-left: 5vw; padding-right: 5vw; }
  .hero, .pricing, .samples, .location { padding-left: 5vw; padding-right: 5vw; }
  .hero { gap: 36px; }
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 190px)); }
}
@media (max-width: 900px) {
  .nav, .header-call { display: none; }
  .menu-button { display: block; }
  .nav.open {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 5vw 18px;
    background: rgba(5, 7, 6, 0.97);
    border-bottom: 1px solid var(--line);
  }
  .nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(242, 200, 107, 0.08);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }
  .hero-media img { height: 520px; }
  .sample-grid { grid-template-columns: repeat(2, 1fr); }
  .location { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero, .pricing, .samples, .location { padding-left: 18px; padding-right: 18px; }
  .dao-title { font-size: 78px; letter-spacing: -0.05em; }
  .barber-title-wrap { max-width: 100%; margin-top: 12px; }
  .barber-line { margin-bottom: 18px; }
  .barber-title { font-size: 32px; letter-spacing: 0.10em; }
  .hero-offer { font-size: 30px; }
  .lead { font-size: 16px; }
  .hero-actions, .location-actions { display: grid; }
  .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .sample-grid { grid-template-columns: 1fr; }
  .sample-grid figure { height: 560px; }
  .hero-media img { height: 420px; }
  .booking-card strong { font-size: 24px; }
  .floating-actions {
    right: 14px;
    bottom: 14px;
    gap: 8px;
  }
  .floating-actions a {
    width: 54px;
    height: 54px;
    font-size: 12px;
  }
  .footer {
    padding-left: 18px;
    padding-right: 18px;
    flex-direction: column;
  }
}


/* Revised hero sizing */
.hero-copy {
  padding-top: 6px;
}
@media (min-width: 901px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
  }
  .hero-media img {
    height: min(640px, 70vh);
  }
}
@media (max-width: 680px) {
  }


/* Typography cleanup */
.hero-copy,
.price-card,
.location-card,
.footer,
.button,
.nav {
  font-family: Arial, Helvetica, sans-serif;
}

.dao-title,
.barber-title {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero-offer {
  font-weight: 700;
}

.button,
.header-call,
.price-row strong,
.hero-meta strong {
  font-weight: 700;
}

@media (max-width: 680px) {
  .barber-title {
    letter-spacing: 0.08em;
  }
}


/* Fix font for sample section heading */
.samples .section-title .kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.samples .section-title h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}


/* Fix font for pricing section heading */
.pricing .section-title h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}


/* Fix font for location section heading */
.location-card .kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}


/* Header logo update */
@media (max-width: 900px) {
  .brand-logo {
    height: 54px;
  }
  .nav.open {
    top: 77px;
  }
}
@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .brand-logo {
    height: 48px;
  }
}


/* Hero video update */
.hero-media img,
.hero-media video {
  width: 100%;
  height: min(640px, 70vh);
  object-fit: cover;
  display: block;
  background: #0a0d0b;
}
.hero-video {
  object-position: center;
}
@media (max-width: 900px) {
  .hero-media img,
  .hero-media video {
    height: 520px;
  }
}
@media (max-width: 680px) {
  .hero-media img,
  .hero-media video {
    height: 420px;
  }
}
