/* =========================================================
   AURA BARBERSHOP — design system
   Palette: espresso header, dusty rose footer, warm cream body,
   rose gold accent, deep wine for pressed/hover states.
   Type: Cormorant Garamond (display) + Jost (body/utility)
   ========================================================= */

:root{
  --espresso: #241C18;
  --espresso-2: #332721;
  --cream: #F6EEE4;
  --cream-2: #FBF7F1;
  --rose: #B98072;
  --rose-deep: #9C6459;
  --wine: #6B2737;
  --gold: #C9A66B;
  --gold-light: #E4C08E;
  --gold-deep: #8B6B43;
  --ink: #2A211D;
  --ink-soft: #6B5D54;
  --line: rgba(42,33,29,0.12);
  --line-on-dark: rgba(228,192,142,0.28);

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --radius-arch: 220px 220px 8px 8px;
  --shadow-soft: 0 18px 40px rgba(42,33,29,0.14);
  --shadow-card: 0 10px 28px rgba(42,33,29,0.10);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--display); font-weight: 600; margin: 0; color: var(--ink); }
p{ margin: 0; }
button{ font-family: var(--body); cursor: pointer; }

:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--body);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 500;
}

.section{ padding: 108px 0; }
.section.tight{ padding: 72px 0; }
.section.on-dark{ background: var(--espresso); color: var(--cream-2); }
.section.on-dark h2, .section.on-dark h3{ color: var(--cream-2); }
.section.on-rose{ background: var(--rose); color: #fff; }
.section.on-rose h2, .section.on-rose h3{ color: #fff; }

.center{ text-align: center; }
.mx-auto{ margin-left: auto; margin-right: auto; }

.lede{
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
}
.on-dark .lede{ color: rgba(251,247,241,0.78); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.btn.primary{
  background: linear-gradient(120deg, var(--gold-light), var(--gold-deep));
  color: var(--espresso);
}
.btn.primary:hover{ transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn.ghost{
  border-color: var(--line-on-dark);
  color: inherit;
  background: transparent;
}
.btn.ghost:hover{ border-color: var(--gold); background: rgba(228,192,142,0.08); }
.btn.wine{
  background: var(--wine);
  color: #fff;
}
.btn.wine:hover{ background: #59202D; transform: translateY(-2px); }
.btn.block{ width: 100%; justify-content: center; }

/* =========================================================
   HEADER  (tone A: espresso)
   ========================================================= */
.site-header{
  background: var(--espresso);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-on-dark);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}
.brand-mark{ height: 66px; width: auto; }
.brand-mark img{ height: 100%; width: auto; }

.main-nav{ display: flex; align-items: center; gap: 40px; }
.main-nav ul{ display: flex; gap: 34px; }
.main-nav a{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,247,241,0.82);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  color: var(--gold-light);
  border-color: var(--gold);
}
.header-cta{ display:flex; align-items:center; gap: 22px; }
.header-phone{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream-2);
  letter-spacing: 0.03em;
}
.header-phone span{ display:block; font-family: var(--body); font-size: 10.5px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line-on-dark);
  padding: 8px 10px;
  border-radius: 2px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream-2);
  position: relative;
  transition: transform .3s ease;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }

/* =========================================================
   FOOTER  (tone B: dusty rose)
   ========================================================= */
.site-footer{
  background: var(--rose);
  color: #fff;
  padding: 72px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.28);
}
.footer-brand .brand-mark{ height: 46px; margin-bottom: 18px; }
.footer-brand p{ color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 280px; }
.footer-col h4{
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col li{ margin-bottom: 11px; color: rgba(255,255,255,0.86); font-size: 14.5px; }
.footer-col a:hover{ color: var(--espresso); }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover{ color: #fff; }

/* =========================================================
   ARCH FRAME — signature visual device (echoes the salon's
   arched mirrors) used for every spotlighted photo.
   ========================================================= */
.arch-frame{
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  background: var(--espresso);
  box-shadow: var(--shadow-card);
}
.arch-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-arch);
  border: 1px solid rgba(228,192,142,0.55);
  pointer-events: none;
}
.arch-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.arch-frame:hover img{ transform: scale(1.06); }

/* =========================================================
   HERO (page top banners)
   ========================================================= */
.hero{
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--espresso);
  overflow: hidden;
}
.hero .hero-bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .55;
}
.hero .hero-bg.contain-light{ opacity: .42; }
.hero::before{
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,28,24,0.55) 0%, rgba(36,28,24,0.78) 55%, rgba(36,28,24,0.94) 100%);
}
.hero-inner{ position: relative; z-index: 2; padding: 120px 0 90px; }
.hero .eyebrow{ color: var(--gold-light); }
.hero h1{
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 1.02;
  margin: 18px 0 22px;
  color: #fff;
}
.hero h1 em{ font-style: italic; color: var(--gold-light); }
.hero p.lede{ color: rgba(251,247,241,0.86); max-width: 560px; }
.hero-actions{ display: flex; gap: 18px; margin-top: 38px; flex-wrap: wrap; }

.page-hero{ min-height: 46vh; }
.page-hero .hero-inner{ padding: 96px 0 64px; }
.page-hero h1{ font-size: clamp(38px, 5vw, 62px); }

/* =========================================================
   HOME — intro split
   ========================================================= */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split .arch-frame{ aspect-ratio: 4 / 5; }
.split h2{ font-size: clamp(32px, 3.6vw, 46px); margin: 14px 0 22px; }
.split .lede{ margin-bottom: 26px; }

.signature-line{
  display:flex; align-items:center; gap: 14px; margin-top: 30px;
}
.signature-line img{ height: 46px; width: auto; }
.signature-line .sig-text{ font-family: var(--display); font-style: italic; font-size: 20px; color: var(--ink-soft); }

/* Features */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.feature-card{
  background: var(--cream-2);
  border: 1px solid var(--line);
  padding: 34px 28px;
  border-radius: 6px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.feature-card .num{ font-family: var(--display); font-size: 15px; color: var(--gold-deep); letter-spacing: .1em; }
.feature-card h3{ font-size: 22px; margin: 14px 0 10px; }
.feature-card p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
.feature-icon{ width: 36px; height: 36px; color: var(--gold-deep); margin-bottom: 6px; }

/* Spotlight strip */
.spotlight-head{
  display:flex; justify-content: space-between; align-items:flex-end; gap: 24px; margin-bottom: 46px; flex-wrap: wrap;
}
.spotlight-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.spotlight-row .arch-frame{ aspect-ratio: 3/4; }
.spotlight-cap{ margin-top: 14px; text-align:center; }
.spotlight-cap .name{ font-family: var(--display); font-size: 19px; }
.spotlight-cap .tag{ font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

/* Testimonial */
.testimonial{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial blockquote{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  color: #fff;
}
.testimonial cite{ display:block; margin-top: 26px; font-style: normal; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }

/* CTA banner */
.cta-banner{
  position: relative;
  min-height: 46vh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  color:#fff; overflow:hidden;
}
.cta-banner .hero-bg{ position:absolute; inset:0; background-size:cover; background-position: center 20%; }
.cta-banner::before{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(36,28,24,0.55), rgba(36,28,24,0.86)); }
.cta-banner .inner{ position:relative; z-index:2; max-width: 640px; padding: 0 24px; }
.cta-banner h2{ color:#fff; font-size: clamp(30px,4vw,50px); margin-bottom: 20px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card{
  background: var(--cream-2);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display:flex; flex-direction:column;
}
.service-card .thumb{ aspect-ratio: 16/11; overflow:hidden; }
.service-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.service-card:hover .thumb img{ transform: scale(1.07); }
.service-card .body{ padding: 26px 26px 30px; flex:1; display:flex; flex-direction:column; }
.service-card h3{ font-size: 24px; margin-bottom: 10px; }
.service-card p{ color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; flex:1; }
.service-card .meta{
  margin-top: 18px; padding-top: 16px; border-top: 1px dotted var(--line);
  display:flex; justify-content:space-between; align-items:center;
  font-size: 11.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold-deep);
}
.service-card.featured{ grid-column: span 2; }
.service-card.featured .thumb{ aspect-ratio: 21/9; }

.note-strip{
  margin-top: 54px;
  padding: 26px 32px;
  border: 1px dashed var(--gold);
  border-radius: 6px;
  background: rgba(201,166,107,0.08);
  color: var(--ink-soft);
  font-size: 14.5px;
  text-align: center;
}

/* =========================================================
   STYLE / GALLERY page
   ========================================================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-grid.wide{ grid-template-columns: repeat(3, 1fr); }
.gallery-item{ position: relative; }
.gallery-item .arch-frame{ aspect-ratio: 3/4; cursor: zoom-in; }
.gallery-item.tall .arch-frame{ aspect-ratio: 3/4.6; }
.gallery-item.wide-frame .arch-frame{ aspect-ratio: 16/9; border-radius: 14px 14px 8px 8px; }
.gallery-cap{ margin-top: 12px; text-align: center; }
.gallery-cap .name{ font-family: var(--display); font-size: 18px; }
.gallery-cap .tag{ font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }

.section-divider{
  display:flex; align-items:center; gap: 18px; margin: 90px 0 46px;
}
.section-divider .line{ flex:1; height:1px; background: var(--line); }
.section-divider span{ font-family: var(--display); font-style: italic; font-size: 22px; color: var(--ink-soft); white-space: nowrap; }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 300;
  background: rgba(36,28,24,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open{ display: flex; }
.lightbox figure{ margin:0; max-width: 900px; width: 100%; text-align:center; }
.lightbox img{ max-height: 78vh; margin: 0 auto; border-radius: 10px; }
.lightbox figcaption{ color: var(--cream-2); margin-top: 18px; font-family: var(--display); font-size: 20px; }
.lightbox-close{
  position: absolute; top: 28px; right: 34px;
  background: none; border: 1px solid var(--line-on-dark); color: #fff;
  width: 42px; height: 42px; border-radius: 50%; font-size: 18px;
}
.lightbox-nav{
  background: none; border: 1px solid var(--line-on-dark); color: #fff;
  width: 46px; height: 46px; border-radius: 50%; font-size: 18px; margin: 0 22px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-card{
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 22px; }
.field label{
  display:block; font-size: 12px; letter-spacing:.12em; text-transform:uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.field input, .field select, .field textarea{
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold-deep); }
.field textarea{ resize: vertical; min-height: 100px; }
.form-actions{ display:flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form-note{ font-size: 12.5px; color: var(--ink-soft); margin-top: 16px; line-height: 1.6; }

.info-card{
  background: var(--espresso);
  color: var(--cream-2);
  border-radius: 10px;
  padding: 48px 44px;
  margin-bottom: 30px;
}
.info-card h3{
  color:#fff;
  font-size: 26px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-on-dark);
}
.info-row{
  display:flex;
  gap: 20px;
  align-items:flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(228,192,142,0.14);
}
.info-row:first-of-type{ padding-top: 0; }
.info-row:last-of-type{ border-bottom: none; padding-bottom: 0; }
.info-row .ic{ width: 24px; height:24px; color: var(--gold-light); margin-top: 2px; flex-shrink:0; }
.info-row .txt{ font-size: 16px; line-height: 1.8; color: rgba(251,247,241,0.88); }
.info-row .txt .label{
  display:block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.info-row a:hover{ color: var(--gold-light); }
.map-frame{ border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe{ width: 100%; height: 300px; border: 0; display:block; }

.hours-list{ display:flex; flex-direction:column; gap: 4px; }
.hours-list li{ font-size: 16px; color: rgba(251,247,241,0.88); line-height: 1.7; }
.hours-list li span:last-child{ color: var(--gold-light); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal{ opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  .feature-grid{ grid-template-columns: repeat(2,1fr); }
  .spotlight-row{ grid-template-columns: repeat(2,1fr); }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .service-card.featured{ grid-column: span 2; }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .gallery-grid.wide{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .main-nav{ position: fixed; inset: 108px 0 0 0; background: var(--espresso); flex-direction: column; align-items:flex-start; padding: 34px 32px; gap: 30px; transform: translateX(100%); transition: transform .4s ease; }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 22px; }
  .main-nav a{ font-size: 16px; }
  .nav-toggle{ display: block; }
  .header-phone{ display:none; }
  .split{ grid-template-columns: 1fr; gap: 40px; }
  .split .arch-frame{ order: -1; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid.wide{ grid-template-columns: 1fr; }
  .spotlight-row{ grid-template-columns: 1fr 1fr; }
  .section{ padding: 76px 0; }
}

@media (max-width: 560px){
  .container{ padding: 0 20px; }
  .feature-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .service-card.featured{ grid-column: span 1; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content:center; }
}
