@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

/* ===========================================================
   JAYDE & JANE BEAUTY CO — DESIGN TOKENS
   Palette drawn from the salon's own craft: a dimensional
   color story, root to end. Root espresso, honey blonde,
   champagne blush. One typeface, carrying all hierarchy.
   =========================================================== */

:root{
  /* Color: named for what they are in the chair */
  --root:      #2A2019;   /* deep espresso root — primary ink */
  --root-soft: #5B4C3F;   /* lifted root — secondary ink */
  --canvas:    #FAF5EC;   /* warm ivory base */
  --canvas-2:  #F3EAD9;   /* slightly deeper ivory, for panels */
  --honey:     #C6903F;   /* warm honey blonde — primary accent */
  --honey-dark:#8C5A1E;   /* deepened honey, for text-on-light accents (AA contrast on canvas) */
  --blush:     #E9C9BB;   /* champagne blush — secondary accent */
  --blush-soft:#F3E1D7;   /* pale blush, for washes */
  --umber:     #46281B;   /* deep umber — buttons, high contrast */
  --umber-dark:#331C12;
  --line:      #DCCBB0;   /* hairline / border */
  --white:     #FFFFFF;

  /* The signature: a root-to-ends gradient, used sparingly as
     a divider and underline motif — literally the brand's craft. */
  --dimensional: linear-gradient(90deg, var(--umber) 0%, var(--honey) 55%, var(--blush) 100%);

  --font: 'Hanken Grotesk', sans-serif;

  --container: 1200px;
  --radius-sm: 2px;
  --radius-md: 4px;

  --ease: cubic-bezier(.22,.68,0,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  background: var(--canvas);
  color: var(--root);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" 1;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

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

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

/* ===========================================================
   TYPE SCALE — hierarchy through size, weight, spacing, rhythm.
   No second typeface. Restraint carries the brief.
   =========================================================== */

.eyebrow{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--honey-dark);
  display: inline-block;
  margin: 0 0 14px;
}
.eyebrow::before{
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--honey);
  margin-right: 10px;
  transform: translateY(-3px);
}

h1, .h1{
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
h2, .h2{
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
h3, .h3{
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
p{
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--root-soft);
  margin: 0 0 16px;
  max-width: 62ch;
}
.lede{
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--root-soft);
}
.caption{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--root-soft);
}

.rule{
  height: 3px;
  width: 84px;
  background: var(--dimensional);
  border: none;
  margin: 22px 0 0;
  border-radius: 2px;
}
.rule.center{ margin-left: auto; margin-right: auto; }

/* ===========================================================
   BUTTONS
   =========================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--umber);
  color: var(--canvas);
}
.btn-primary:hover{ background: var(--umber-dark); transform: translateY(-1px); }
.btn-outline{
  background: transparent;
  color: var(--umber);
  border-color: var(--umber);
}
.btn-outline:hover{ background: var(--umber); color: var(--canvas); }
.btn-ghost{
  background: transparent;
  color: var(--root);
  border-color: var(--line);
}
.btn-ghost:hover{ border-color: var(--umber); }
.btn-arrow{ transition: transform .25s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* ===========================================================
   HEADER
   =========================================================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo{
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.logo span{ color: var(--honey-dark); }
.main-nav ul{ display: flex; gap: 36px; }
.main-nav a{
  font-weight: 600;
  font-size: 15px;
  color: var(--root-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a.active{ color: var(--root); }
.main-nav a.active::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--dimensional);
}
.header-actions{ display: flex; align-items: center; gap: 18px; }
.menu-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.menu-toggle span{
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--root); transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle span:nth-child(1){ top: 14px; }
.menu-toggle span:nth-child(2){ top: 20px; }
.menu-toggle span:nth-child(3){ top: 26px; }
.menu-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--canvas);
  z-index: 99;
  padding: 32px clamp(20px,5vw,56px);
  overflow-y: auto;
}
.mobile-nav.open{ display: block; }
.mobile-nav ul{ display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a{
  display: block;
  font-size: 26px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn{ margin-top: 28px; width: 100%; justify-content: center; }

@media (max-width: 900px){
  .main-nav{ display: none; }
  .header-actions .btn{ display: none; }
  .menu-toggle{ display: block; }
}

/* ===========================================================
   FOOTER
   =========================================================== */

.site-footer{
  background: var(--umber);
  color: var(--blush-soft);
  padding: 72px 0 28px;
  margin-top: 140px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-logo{
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo span{ color: var(--honey); }
.footer-grid p{ color: rgba(243,225,215,.75); font-size: 15px; }
.footer-col h4{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: 15px; color: rgba(243,225,215,.85); transition: color .2s; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(243,225,215,.55);
  flex-wrap: wrap;
  gap: 12px;
}
.social-row{ display: flex; gap: 14px; }
.social-row a{
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.social-row a:hover{ background: rgba(255,255,255,.1); border-color: var(--honey); }
.social-row svg{ width: 16px; height: 16px; fill: var(--white); }

@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   SECTION SPACING
   =========================================================== */

.section{ padding: 108px 0; }
.section-tight{ padding: 72px 0; }
.section-canvas2{ background: var(--canvas-2); }

/* ===========================================================
   HERO (home)
   =========================================================== */

.hero{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
  padding: 64px 0 96px;
}
.hero-copy .rule{ margin-bottom: 26px; }
.hero-copy p{ margin-bottom: 32px; }
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero-media::after{
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.hero-badge{
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(250,245,236,.95);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .stars{ color: var(--honey-dark); font-size: 13px; letter-spacing: 2px; }
.hero-badge .caption{ margin: 0; }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media{ order: -1; aspect-ratio: 16/11; }
}

/* ===========================================================
   TRUST STRIP
   =========================================================== */

.trust-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust-strip .wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.trust-item{
  display: flex; align-items: baseline; gap: 10px;
  font-weight: 700; font-size: 15px; color: var(--root-soft);
  white-space: nowrap;
}
.trust-item b{ color: var(--root); font-size: 17px; }

/* ===========================================================
   BENEFITS (staggered, not a uniform 3-card grid)
   =========================================================== */

.benefits{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.benefit{
  padding: 44px 34px 44px 0;
  border-right: 1px solid var(--line);
}
.benefit:last-child{ border-right: none; padding-right: 0; }
.benefit:nth-child(2){ padding-top: 78px; }
.benefit .num{
  font-size: 13px; font-weight: 700; color: var(--honey-dark);
  letter-spacing: .1em; margin-bottom: 18px; display: block;
}
@media (max-width: 800px){
  .benefits{ grid-template-columns: 1fr; }
  .benefit{ border-right: none; border-bottom: 1px solid var(--line); padding: 34px 0 !important; }
  .benefit:last-child{ border-bottom: none; }
}

/* ===========================================================
   SERVICES PREVIEW / GRID
   =========================================================== */

.services-preview{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.service-tile{
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.service-tile img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-tile:hover img{ transform: scale(1.06); }
.service-tile::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,32,25,0) 40%, rgba(42,32,25,.82) 100%);
}
.service-tile-label{
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  color: var(--white); z-index: 2;
}
.service-tile-label .caption{ color: var(--blush); }
.service-tile-label h3{ color: var(--white); margin: 4px 0 0; }
@media (max-width: 800px){
  .services-preview{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .services-preview{ grid-template-columns: 1fr; }
}

/* Full service grid (services page) */
.service-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card{
  background: var(--canvas);
  padding: 44px;
}
.service-card .caption{ margin-bottom: 12px; }
.service-card h3{ margin-bottom: 12px; }
@media (max-width: 760px){
  .service-grid{ grid-template-columns: 1fr; }
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */

.testimonials{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testimonial{
  border-top: 3px solid var(--honey);
  padding-top: 22px;
}
.testimonial .stars{ color: var(--honey-dark); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; display: block; }
.testimonial p{ font-style: italic; font-size: 16px; }
.testimonial .who{ font-weight: 700; font-size: 14px; color: var(--root); }
.testimonial .who span{ display: block; font-weight: 500; color: var(--root-soft); font-size: 13px; margin-top: 2px; }
@media (max-width: 800px){
  .testimonials{ grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   ABOUT PREVIEW / SPLIT SECTIONS
   =========================================================== */

.split{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse{ grid-template-columns: 1.1fr .9fr; }
.split.reverse .split-media{ order: 2; }
.split-media img{ border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media.wide img{ aspect-ratio: 5/4; }
@media (max-width: 860px){
  .split, .split.reverse{ grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media{ order: -1; }
}

/* ===========================================================
   FINAL CTA
   =========================================================== */

.final-cta{
  background: var(--umber);
  color: var(--canvas);
  border-radius: var(--radius-md);
  padding: 76px clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before{
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--dimensional);
}
.final-cta h2{ color: var(--white); }
.final-cta p{ color: rgba(243,225,215,.82); margin: 0 auto 32px; }
.final-cta .hero-actions{ justify-content: center; }
.final-cta .btn-outline{ color: var(--canvas); border-color: rgba(250,245,236,.5); }
.final-cta .btn-outline:hover{ background: rgba(250,245,236,.12); color: var(--white); }
.final-cta .btn-primary{ background: var(--honey); color: var(--umber-dark); }
.final-cta .btn-primary:hover{ background: var(--blush); }

/* ===========================================================
   PAGE HEADER (inner pages)
   =========================================================== */

.page-header{
  padding: 68px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-header p{ max-width: 58ch; }

/* ===========================================================
   HOW IT WORKS (real sequence — numbering justified)
   =========================================================== */

.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  counter-reset: step;
}
.step{
  background: var(--canvas-2);
  padding: 34px 26px;
  position: relative;
}
.step .step-num{
  font-size: 42px;
  font-weight: 800;
  color: var(--blush);
  -webkit-text-stroke: 1.5px var(--honey-dark);
  margin-bottom: 14px;
  display: block;
}
.step h3{ font-size: 18px; }
.step p{ font-size: 15px; }
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .steps{ grid-template-columns: 1fr; }
}

/* ===========================================================
   FAQ
   =========================================================== */

.faq{ max-width: 760px; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  color: var(--root);
}
.faq-q .plus{
  flex-shrink: 0;
  width: 26px; height: 26px;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content: '';
  position: absolute; background: var(--umber);
  transition: transform .3s var(--ease);
}
.faq-q .plus::before{ left: 0; right: 0; top: 12px; height: 2px; }
.faq-q .plus::after{ top: 0; bottom: 0; left: 12px; width: 2px; }
.faq-item.open .plus::after{ transform: rotate(90deg); opacity: 0; }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.open .faq-a{ max-height: 300px; }
.faq-a p{ padding-bottom: 24px; margin: 0; }

/* ===========================================================
   GALLERY / LISTINGS
   =========================================================== */

.filter-bar{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 0 44px;
}
.chip{
  padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  background: var(--canvas);
  cursor: pointer;
  transition: all .2s;
}
.chip:hover{ border-color: var(--honey-dark); }
.chip.active{ background: var(--umber); color: var(--canvas); border-color: var(--umber); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: default;
}
.gallery-card .g-media{ aspect-ratio: 4/5; overflow: hidden; }
.gallery-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-card:hover img{ transform: scale(1.06); }
.gallery-card.tall .g-media{ aspect-ratio: 4/5.6; }
.g-info{ padding: 16px 2px; }
.g-info .caption{ color: var(--honey-dark); }
.g-info h3{ font-size: 18px; margin: 4px 0 8px; }
.g-cta{ font-weight: 700; font-size: 14px; color: var(--root); border-bottom: 1.5px solid var(--honey); padding-bottom: 2px; }
.gallery-card[data-hide="true"]{ display: none; }

@media (max-width: 900px){ .gallery-grid{ grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }

/* ===========================================================
   CONTACT
   =========================================================== */

.contact-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.field{ margin-bottom: 22px; }
.field label{
  display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px;
}
.field input, .field textarea{
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--root);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus{ border-color: var(--honey-dark); outline: none; }
.field textarea{ min-height: 130px; resize: vertical; }
.form-note{ font-size: 13px; color: var(--root-soft); margin-top: -8px; }
.form-success{
  display: none;
  background: var(--blush-soft);
  border: 1px solid var(--blush);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: 22px;
}
.form-success.show{ display: block; }

.info-block{ margin-bottom: 34px; }
.info-block h4{
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--honey-dark); margin: 0 0 10px;
}
.info-block p{ margin: 0; font-weight: 500; color: var(--root); }
.map-box{
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-box iframe{ width: 100%; height: 100%; border: 0; }

@media (max-width: 860px){
  .contact-layout{ grid-template-columns: 1fr; gap: 44px; }
}

/* ===========================================================
   MISC
   =========================================================== */

.center-head{ text-align: center; max-width: 640px; margin: 0 auto 60px; }
.center-head .rule{ margin-left: auto; margin-right: auto; }
.section-head{ display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 52px; flex-wrap: wrap; }
.section-head p{ margin: 0; }

.stat-row{
  display: flex; gap: 56px; flex-wrap: wrap; margin-top: 20px;
}
.stat b{ display: block; font-size: 40px; font-weight: 800; color: var(--umber); }
.stat span{ font-size: 14px; font-weight: 600; color: var(--root-soft); }

.chair-list{ display: flex; flex-direction: column; }
.chair-item{
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  gap: 20px;
}
.chair-item h3{ margin: 0 0 4px; }
.chair-item p{ margin: 0; font-size: 15px; }
