/* ===============================================
   Thurman's Barbershop & Style
   Palette: white, black, red, gold, royal blue
   Heading font: barbershop-style (Rye/Playfair)
   Body font: EB Garamond
   =============================================== */

:root {
  --black: #141414;
  --ink: #1c1c1c;
  --white: #ffffff;
  --cream: #f7f4ee;
  --red: #b11226;
  --red-dark: #8c0e1e;
  --gold: #c9a227;
  --gold-light: #e6c85a;
  --royal: #1a3a8f;
  --royal-light: #274bb5;
  --gray: #6d6d6d;
  --line: #e3ddd2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

h1, h2, h3, h4, .display {
  font-family: 'Rye', 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: var(--black);
}

.serif-alt { font-family: 'Playfair Display', serif; }

a { color: var(--royal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }

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

.container { width: 90%; max-width: 1150px; margin: 0 auto; }

.text-center { text-align: center; }

.accent-red { color: var(--red); }
.accent-gold { color: var(--gold); }
.accent-royal { color: var(--royal); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 0;
  gap: 6px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar .sep { color: var(--gold); margin: 0 4px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 66px; width: auto; }
.brand .brand-text .name {
  font-family: 'Rye', serif;
  font-size: 1.5rem;
  color: var(--black);
  line-height: 1;
}
.brand .brand-text .tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--red);
}

/* ---------- Nav ---------- */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  border-bottom-color: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  margin: 5px 0;
  transition: .3s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); color: var(--white); border-color: var(--red-dark); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-royal { background: var(--royal); color: var(--white); border-color: var(--royal); }
.btn-royal:hover { background: var(--royal-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.78)),
              url('../images/storefront.png') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 110px 0;
}
.hero h1 {
  color: var(--white);
  font-size: 3.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 12px 0 8px;
}
.hero p.sub { font-size: 1.25rem; max-width: 640px; margin: 0 auto 28px; }
.hero .btn { margin: 8px 8px 0; }

.divider-scissors {
  text-align: center;
  color: var(--gold);
  font-size: 1.6rem;
  margin: 10px 0;
  letter-spacing: 6px;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tint { background: var(--cream); }
section.dark { background: var(--black); color: var(--cream); }
section.dark h2, section.dark h3 { color: var(--white); }
section.royal-band { background: var(--royal); color: var(--white); }
section.royal-band h2 { color: var(--white); }

.section-head { text-align: center; margin-bottom: 46px; }
.section-head .eyebrow {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}
.section-head h2 { font-size: 2.5rem; }
.section-head .rule {
  width: 70px; height: 3px; background: var(--gold);
  margin: 16px auto 0;
}

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 30px 26px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 26px rgba(0,0,0,0.10); }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card .price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--red);
  font-size: 1.5rem;
  float: right;
}
.card.royal-top { border-top-color: var(--royal); }
.card.red-top { border-top-color: var(--red); }

/* ---------- Feature blocks ---------- */
.feature-img {
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border: 4px solid var(--white);
  outline: 1px solid var(--line);
}
.lead { font-size: 1.25rem; }

/* ---------- Owner block ---------- */
.owner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 44px;
  align-items: center;
}
.owner img { border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,0.22); }
.owner .name-badge {
  font-family: 'Rye', serif;
  color: var(--red);
  font-size: 2rem;
}

/* ---------- Stats / hours strip ---------- */
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  font-size: 1.1rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-family: 'Playfair Display', serif; letter-spacing: 1px; }
.hours-list .closed { color: var(--gold-light); font-style: italic; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid .tile {
  overflow: hidden;
  border-radius: 3px;
  border: 3px solid var(--white);
  outline: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  aspect-ratio: 1 / 1;
  background: var(--cream);
}
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.08); }
.gallery-grid .placeholder {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  flex-direction: column;
  color: var(--gray);
  font-family: 'Playfair Display', serif;
  text-align: center;
  padding: 20px;
}

/* ---------- Reviews ---------- */
.quote-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 26px 28px;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.quote-card .stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 8px; }
.quote-card p { font-style: italic; font-size: 1.15rem; }
.quote-card .who { font-family: 'Playfair Display', serif; font-style: normal; color: var(--royal); margin-top: 12px; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(rgba(20,20,20,0.85), rgba(20,20,20,0.9)),
              url('../images/storefront.png') center/cover fixed no-repeat;
  color: var(--white);
  text-align: center;
  padding: 84px 0;
}
.cta-band h2 { color: var(--white); font-size: 2.6rem; }
.cta-band .phone-big {
  font-family: 'Rye', serif;
  font-size: 2.4rem;
  color: var(--gold-light);
  display: inline-block;
  margin: 14px 0 22px;
}

/* ---------- Contact ---------- */
.info-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.info-line .ico { color: var(--red); font-size: 1.3rem; min-width: 26px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; border-radius: 4px; }

.contact-form label {
  display: block;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(26,58,143,0.12);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 60px 0 0;
}
.site-footer h4 {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand img { height: 80px; margin-bottom: 14px; }
.footer-list { list-style: none; }
.footer-list li { padding: 5px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 44px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.95rem;
  color: #b8b2a6;
}
.footer-bottom .accent-gold { color: var(--gold-light); }

/* ---------- Coming soon ---------- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, #232323 0%, #0c0c0c 75%);
  color: var(--white);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.coming-soon::before,
.coming-soon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    45deg, var(--red) 0 22px, var(--white) 22px 44px,
    var(--royal) 44px 66px, var(--white) 66px 88px);
  opacity: 0.9;
}
.coming-soon::before { top: 0; }
.coming-soon::after { bottom: 0; }
.cs-inner { max-width: 620px; }
.cs-inner img.logo { width: 260px; margin: 0 auto 26px; }
.cs-inner .kicker {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 10px;
}
.cs-inner h1 { color: var(--white); font-size: 3rem; margin-bottom: 6px; }
.cs-inner .tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 26px;
}
.cs-inner p { font-size: 1.2rem; color: #ddd6c9; margin-bottom: 30px; }
.cs-phone {
  display: inline-block;
  font-family: 'Rye', serif;
  font-size: 2.2rem;
  color: var(--white);
  background: var(--red);
  padding: 12px 34px;
  border-radius: 3px;
  border: 2px solid var(--gold);
  margin-bottom: 24px;
}
.cs-phone:hover { background: var(--red-dark); color: var(--white); }
.cs-address { color: var(--gold-light); font-size: 1.15rem; letter-spacing: 0.5px; }
.cs-hours { margin-top: 26px; color: #cfc9bd; font-size: 1.05rem; }

/* ---------- Page banner ---------- */
.page-banner {
  background: linear-gradient(rgba(15,15,15,0.78), rgba(15,15,15,0.82)),
              url('../images/storefront.png') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 72px 0;
  border-bottom: 3px solid var(--gold);
}
.page-banner h1 { color: var(--white); font-size: 3rem; }
.page-banner .crumb { font-family: 'Playfair Display', serif; color: var(--gold-light); letter-spacing: 1px; margin-top: 8px; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mb-1 { margin-bottom: 14px; }
.mb-2 { margin-bottom: 26px; }
.list-check { list-style: none; }
.list-check li { padding: 7px 0 7px 30px; position: relative; }
.list-check li::before {
  content: "\2702";
  position: absolute; left: 0;
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .owner { grid-template-columns: 1fr; text-align: center; }
  .owner img { max-width: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 1.06rem; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .main-nav li { width: 100%; text-align: center; }
  .main-nav a { display: block; padding: 12px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .section-head h2 { font-size: 2rem; }
  .cs-inner h1 { font-size: 2.2rem; }
  .cs-phone { font-size: 1.7rem; }
}
