/* =====================================================
   Gino's Hairstylist
   Old Hollywood glam: ink black, champagne gold, ivory
   Display: Marcellus / Body: Jost
   ===================================================== */

:root {
  --ink: #14110d;
  --espresso: #221c15;
  --gold: #c9a24b;
  --gold-bright: #e3c476;
  --ivory: #f5efe3;
  --taupe: #9b8f7c;
  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 84px; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- Shared pieces ---------- */

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border: 1px solid var(--gold);
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover { text-decoration: none; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-bright); }

.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
}
.btn-ghost:hover { background: rgba(201, 162, 75, 0.12); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(20, 17, 13, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory);
}
.brand:hover { text-decoration: none; }

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--gold-bright);
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}
.brand-text em {
  font-style: normal;
  color: var(--gold-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-nav a {
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--gold-bright); text-decoration: none; }

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1.1rem;
  color: var(--gold-bright) !important;
}
.nav-cta:hover { background: rgba(201, 162, 75, 0.12); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(201, 162, 75, 0.16), transparent 60%),
    var(--ink);
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  flex: 1;
}

.hero-photos {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  width: 26%;
  min-width: 220px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.05) brightness(0.85);
}

.hp-left::after,
.hp-right::after {
  content: '';
  position: absolute;
  inset: 0;
}
.hp-left::after {
  background: linear-gradient(to right, rgba(20,17,13,0.15), var(--ink));
}
.hp-right::after {
  background: linear-gradient(to left, rgba(20,17,13,0.15), var(--ink));
}

.deco-rays {
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  opacity: 0.5;
  pointer-events: none;
}
.deco-rays svg { width: 100%; height: 100%; }
.deco-rays path {
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  opacity: 0.35;
}
.ray-arc {
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  opacity: 0.25;
}

.hero h1 {
  font-size: clamp(2.4rem, 11vw, 7rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero .eyebrow { position: relative; z-index: 1; }

.gold-rule {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.6rem 0;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  display: block;
  width: 90px;
  height: 1px;
  background: var(--gold);
}
.gold-rule span {
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-sub {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--ivory);
  opacity: 0.85;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-note {
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- About ---------- */

.about {
  background: var(--ivory);
  color: var(--espresso);
  padding: 6rem 2rem;
}

.about h2, .about h3 { color: var(--espresso); }

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1.4rem;
}

.about-copy p { margin-bottom: 1.1rem; }

.about .eyebrow { color: #a4813a; }

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid rgba(34, 28, 21, 0.25);
  padding-left: 2.5rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: #a4813a;
  line-height: 1;
}
.stat-number sup { font-size: 1.4rem; }

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
}

/* ---------- Services ---------- */

.services {
  padding: 6rem 2rem;
  background: var(--espresso);
}

.services-head {
  max-width: var(--max-width);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services-head h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.services-sub { color: var(--taupe); }

.service-panels {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: stretch;
}

.panel-header h3 {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.panel-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 2rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  text-align: center;
  letter-spacing: 0.05em;
}
.service-list li:last-child { border-bottom: none; }

.panel-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.panel-divider::before,
.panel-divider::after {
  content: '';
  flex: 1;
  width: 1px;
  background: rgba(201, 162, 75, 0.35);
}
.divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- Reviews ---------- */

.reviews {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--ink);
}

.reviews h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 3rem;
}

.review-cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review {
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 0.3em;
  font-size: 0.9rem;
}

.review p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
}

.review footer {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ---------- Visit ---------- */

.visit {
  background: var(--ivory);
  color: var(--espresso);
  padding: 6rem 2rem;
}

.visit h2, .visit h3 { color: var(--espresso); }
.visit .eyebrow { color: #a4813a; }

.visit-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.visit-info h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin-bottom: 1.6rem;
}

address { font-style: normal; }

.visit-line { margin-bottom: 1.2rem; }
.visit-line strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a4813a;
  margin-bottom: 0.2rem;
}

.visit a { color: #7a5f22; }

.visit .btn-gold { margin-top: 0.6rem; }

.visit-hours h3 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(34, 28, 21, 0.18);
}
.hours-table td:last-child { text-align: right; }

.hours-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #6d6255;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
}

.footer-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-bright);
}
.footer-mark::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-tag {
  color: var(--taupe);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
}

.footer-legal {
  margin-top: 1.6rem;
  font-size: 0.75rem;
  color: #5c5347;
}

/* ---------- Signature Looks ---------- */

.looks {
  padding: 6rem 2rem;
  background: var(--ink);
}

.looks-head {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  text-align: center;
}

.looks-head h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.looks-sub { color: var(--taupe); }

.looks-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.look {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.35);
}

.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.9);
}

.look:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.look figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.2rem 1.1rem;
  background: linear-gradient(to top, rgba(20,17,13,0.92), transparent);
  text-align: center;
}

.look-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.look.img-fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(201,162,75,0.25), transparent 65%),
    var(--espresso);
}
.look.img-fallback::before {
  content: 'G';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 6rem;
  height: 6rem;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  line-height: 1;
}

.looks-note {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: #6a6152;
  letter-spacing: 0.06em;
}

/* ---------- Artistry ---------- */

.artistry {
  background: var(--ivory);
  color: var(--espresso);
  padding: 6rem 2rem;
}

.artistry h2 { color: var(--espresso); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.4rem; }
.artistry .eyebrow { color: #a4813a; }

.artistry-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.artistry-media {
  position: relative;
}

.artistry-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(164, 129, 58, 0.5);
  display: block;
}

.artistry-media.img-failed { display: none; }

.artistry-badge {
  position: absolute;
  left: -1px;
  bottom: 2rem;
  background: var(--ink);
  color: var(--ivory);
  padding: 1rem 1.6rem;
  border: 1px solid var(--gold);
}

.badge-line {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.badge-strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.artistry-copy p { margin-bottom: 1.1rem; }

.artistry-list {
  list-style: none;
  margin: 1.6rem 0 2rem;
}

.artistry-list li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(34, 28, 21, 0.14);
}
.artistry-list li:last-child { border-bottom: none; }
.artistry-list li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 50%;
  width: 7px;
  height: 7px;
  background: #a4813a;
  transform: translateY(-50%) rotate(45deg);
}

.btn-dark {
  background: var(--ink);
  color: var(--gold-bright);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--espresso); }

/* ---------- Looks groups ---------- */

.looks-group { max-width: var(--max-width); margin: 0 auto 3rem; }
.looks-group:last-of-type { margin-bottom: 0; }

.looks-group-title {
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.looks-group-title::before,
.looks-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 162, 75, 0.35);
}

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

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .about-inner,
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    border-left: none;
    border-top: 1px solid rgba(34, 28, 21, 0.25);
    padding: 2rem 0 0;
    justify-content: space-between;
  }

  .service-panels {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .panel-divider {
    flex-direction: row;
    width: 100%;
  }
  .panel-divider::before,
  .panel-divider::after {
    height: 1px;
    width: auto;
  }

  .review-cards { grid-template-columns: 1fr; }

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

  .hero-photo { display: none; }

  .artistry-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (min-width: 861px) and (max-width: 1200px) {
  .hero-photo { width: 20%; min-width: 170px; }
}

@media (max-width: 520px) {
  .looks-grid,
  .looks-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 2rem 0;
    background: rgba(20, 17, 13, 0.98);
    border-bottom: 1px solid rgba(201, 162, 75, 0.25);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
