/* =========================================================
   Haircuts at Whitney’s — styles.css (clean + organized)
   - Keeps current design language
   - Removes duplicate/contradicting blocks
   - Fixes Team photos on mobile/landscape (scoped to .page-team)
   ========================================================= */


/* =========================
   1) Design tokens
   ========================= */
   :root{
    --teal: #19c1c3;
    --teal-dark: #0aa2a4;
  
    --black: #070707;
    --panel: #0f0f0f;
    --panel-2: #141414;
  
    --white: #ffffff;
    --ink: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.70);
  
    --border: rgba(255,255,255,0.12);
    --shadow: 0 18px 55px rgba(0,0,0,0.55);
  
    --radius: 24px;
  }
  
  
  /* =========================
     2) Base / Reset
     ========================= */
  *{ box-sizing: border-box; }
  html, body{ margin:0; padding:0; }
  
  body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.5;
  
    /* Teal → black transition */
    background: linear-gradient(
      to bottom,
      #19c1c3 0%,
      #12aeb0 15%,
      #0b7f82 30%,
      #06484a 45%,
      #031f20 60%,
      #070707 80%,
      #070707 100%
    );
    background-attachment: fixed;
  }
  
  h1, h2, h3{
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0.2px;
  }
  
  a{ color: inherit; text-decoration: none; }
  
  img{
    max-width: 100%;
    height: auto;
  }
  
  .container{
    width: min(1100px, 92%);
    margin: 0 auto;
  }
  
  /* Screen-reader only */
  .sr-only{
    position:absolute;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }
  
  
  /* =========================
     3) Header + Navigation
     ========================= */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 50;
  
    background: rgba(7,7,7,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  
  .header-inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
  }
  
  .brand-logo{
    height: 28px;
    width: auto;
    display: block;
    max-width: 160px;
    object-fit: contain;
  }
  
  @media (max-width: 820px){
    .brand-logo{
      height: 22px;
      max-width: 130px;
    }
  }
  
  .nav{
    display:flex;
    align-items:center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .nav-link{
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 800;
  }
  
  .nav-link:hover{
    background: rgba(25,193,195,0.12);
    color: var(--white);
  }
  
  .nav-link.is-active{
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(25,193,195,0.18);
  }
  
  .nav-cta{
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--teal);
    color: #001114;
    font-weight: 950;
    border: 1px solid transparent;
  }
  .nav-cta:hover{ background: var(--teal-dark); }
  
  /* Hide Book Now on team page without shifting layout */
  .page-team .nav-cta{
    visibility: hidden;
    pointer-events: none;
  }
  
  /* Hamburger button */
  .nav-toggle{
    display: none; /* shown on mobile */
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  
  .nav-toggle:hover{
    border-color: rgba(25,193,195,0.45);
    background: rgba(25,193,195,0.12);
  }
  
  /* 3-bar icon */
  .nav-toggle-bars{
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.92);
    position: relative;
    display: block;
    border-radius: 999px;
  }
  .nav-toggle-bars::before,
  .nav-toggle-bars::after{
    content:"";
    position:absolute;
    left:0;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.92);
    border-radius: 999px;
  }
  .nav-toggle-bars::before{ top: -6px; }
  .nav-toggle-bars::after{ top:  6px; }
  
  /* Mobile nav behavior */
  @media (max-width: 820px){
    .header-inner{ position: relative; }
    .nav-toggle{ display: inline-flex; }
  
    .nav{
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      width: min(320px, 92vw);
      padding: 12px;
      border-radius: 16px;
  
      background: rgba(7,7,7,0.96);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
  
      flex-direction: column;
      gap: 8px;
      z-index: 99;
    }
  
    .nav.is-open{ display: flex; }
  
    .nav-link, .nav-cta{ width: 100%; text-align: left; }
    .nav-cta{ text-align: center; }
  }
  
  
  /* =========================
     4) Buttons
     ========================= */
  .btn{
    display:inline-block;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 950;
    border: 1px solid transparent;
  }
  
  .btn-primary{
    background: var(--teal);
    color: #001114;
    box-shadow: 0 0 0 1px rgba(25,193,195,0.18), 0 10px 30px rgba(0,0,0,0.35);
  }
  .btn-primary:hover{ background: var(--teal-dark); }
  
  .btn-ghost{
    background: rgba(255,255,255,0.06);
    border-color: var(--border);
    color: var(--white);
  }
  .btn-ghost:hover{
    border-color: rgba(25,193,195,0.45);
    background: rgba(25,193,195,0.12);
  }
  
  /* Disabled link button behavior */
  .btn[aria-disabled="true"]{
    pointer-events: none;
    opacity: 0.55;
  }
  
  
  /* =========================
     5) Sections + Titles
     ========================= */
  .section{ padding: 56px 0; }
  
  .section-alt{
    background: var(--panel);
    border-top: 1px solid rgba(25,193,195,0.10);
    border-bottom: 1px solid rgba(25,193,195,0.10);
  }
  
  .hint{
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.92rem;
  }
  
  /* Reusable centered section header + underline */
  .section-header,
  .contact-header{
    text-align: center;
    margin-bottom: 18px;
  }
  
  .section-header h2,
  .contact-header h2{
    margin: 0;
    font-size: 2.1rem;
  }
  
  .teal-underline{
    width: min(520px, 88%);
    height: 4px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(25,193,195,0) 0%,
      rgba(25,193,195,0.95) 35%,
      rgba(25,193,195,0.95) 65%,
      rgba(25,193,195,0) 100%
    );
    box-shadow: 0 0 22px rgba(25,193,195,0.25);
  }
  
  
  /* =========================
     6) Homepage Banner
     ========================= */
  .banner{
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  
    min-height: 45vh;
    padding: 56px 0 52px;
  }
  
  .banner-photo{
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
      linear-gradient(to bottom, rgba(7,7,7,0.25), rgba(7,7,7,0.85)),
      url("images/whitney-sign.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .banner .container{ position: relative; z-index: 1; }
  
  .banner-text{
    max-width: 820px;
    margin: 48px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  
  .banner-kicker{
    position: relative;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(120, 220, 215, 0.9);
    line-height: 1.2;
    margin: 0;
    padding-bottom: 10px;
  }
  .banner-kicker::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120%;
    max-width: 420px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(120,220,215,0) 0%,
      rgba(120,220,215,0.85) 35%,
      rgba(120,220,215,0.85) 65%,
      rgba(120,220,215,0) 100%
    );
  }
  
  .banner-logo{
    width: min(820px, 96%);
    height: auto;
    display: block;
    margin: 0;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.55));
  }
  
  /* Inverted triangle actions */
  .banner-actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
  }
  
  .banner-actions-row{
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-pricing{
    padding: 14px 26px;
    font-size: 1.05rem;
    font-weight: 950;
  }
  
  @media (max-width: 600px){
    .banner{ min-height: 56vh; }
    .banner-logo{ width: min(420px, 92%); }
    .banner-text{ gap: 6px; }
  }
  
  
  /* =========================
     7) Feature Card (homepage)
     ========================= */
  .feature-card{
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 26px;
    text-align: center;
  
    background: #0f0f0f;
    border-radius: 28px;
    border: 2px solid rgba(25,193,195,0.55);
  
    box-shadow:
      0 0 0 6px rgba(25,193,195,0.12),
      0 30px 90px rgba(0,0,0,0.75);
  }
  
  .feature-card h2{
    margin: 0 0 10px;
    font-size: clamp(2rem, 3.8vw, 3rem);
    color: var(--teal);
  }
  
  .feature-main{
    margin: 0 0 14px;
    font-weight: 900;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: var(--teal);
  }
  
  .feature-foot{
    display: inline-block;
    margin-top: 18px;
    padding: 16px 30px;
    border-radius: 999px;
  
    font-size: 1.45rem;
    font-weight: 1000;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  
    color: #001114;
    background: var(--teal);
  
    box-shadow:
      0 0 0 3px rgba(25,193,195,0.35),
      0 22px 55px rgba(0,0,0,0.65);
  }
  
  @media (max-width: 600px){
    .feature-foot{
      font-size: 1.15rem;
      padding: 14px 22px;
    }
  }
  
  
  /* =========================
     8) Services (homepage)
     ========================= */
  .services-stack{
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
  }
  
  .service-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
  }
  
  .service-row.reverse{ direction: rtl; }
  .service-row.reverse > *{ direction: ltr; }
  
  .service-image{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .service-photo{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
  }
  
  .service-card{
    background: var(--panel-2);
    padding: 20px 22px;
    border-radius: 22px;
    border-top: 2px solid rgba(25,193,195,0.45);
    box-shadow: var(--shadow);
  }
  
  .service-card h3{
    margin-top: 6px;
    color: var(--teal);
    font-size: 1.6rem;
  }
  
  .service-card p{
    margin-bottom: 0;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
  }
  
  /* Mobile: stack and ensure no cropping */
  @media (max-width: 900px){
    .service-row,
    .service-row.reverse{
      grid-template-columns: 1fr;
      direction: ltr;
    }
  }
  @media (max-width: 700px){
    .service-image{ max-width: 100%; }
    .service-photo{
      height: auto;
      object-fit: contain;
      object-position: center;
    }
  }
  
  
  /* =========================
     9) Pricing (homepage)
     ========================= */
  .pricing-intro{
    max-width: 860px;
    margin: 14px auto 18px;
    padding: 16px 18px;
    text-align: center;
    color: rgba(255,255,255,0.88);
  
    background: rgba(15,15,15,0.72);
    border: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(25,193,195,0.35);
    border-radius: 18px;
  
    box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  }
  
  .pricing-intro p{
    margin: 0;
    line-height: 1.55;
    font-weight: 650;
  }
  
  .pricing-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
  }
  
  .pricing-card{
    border-radius: var(--radius);
    background: var(--panel-2);
    border: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(25,193,195,0.45);
    padding: 18px;
    box-shadow: var(--shadow);
  }
  
  .pricing-card h3{
    color: rgba(25,193,195,0.95);
    font-size: 1.35rem;
    font-weight: 950;
    margin: 0 0 6px;
    letter-spacing: 0.3px;
  }
  
  .pricing-note{
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .pricing-note strong{
    color: #ffffff;
    font-weight: 950;
    font-size: 1.1rem;
  }
  .pricing-card::after{
    content: "";
    display: block;
    margin-top: 12px;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: rgba(25,193,195,0.6);
  }
  
  .pricing-footnote{
    margin: 16px auto 0;
    width: fit-content;
    max-width: 92%;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(25,193,195,0.22);
    color: rgba(255,255,255,0.86);
    font-weight: 800;
  }
  
  .pricing-footnote-dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(25,193,195,0.95);
    box-shadow: 0 0 0 6px rgba(25,193,195,0.14);
  }
  
  @media (max-width: 900px){
    .pricing-grid{ grid-template-columns: 1fr; }
  }
  
  
  /* =========================
     10) Location
     ========================= */
  .location-grid{
    display:grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 14px;
    margin-top: 16px;
    align-items: stretch;
  }
  
  .map-wrapper{
    border-radius: var(--radius);
    overflow:hidden;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
    background: #0b0b0b;
  }
  
  .location-card{
    border-radius: var(--radius);
    background: var(--panel-2);
    border: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(25,193,195,0.45);
    padding: 18px;
    box-shadow: var(--shadow);
  }
  
  .address{ margin: 0 0 10px; color: var(--muted); }
  .small-note{ margin-top: 12px; color: var(--muted); font-size: 0.9rem; }
  
  @media (max-width: 900px){
    .location-grid{ grid-template-columns: 1fr; }
  }
  
  
  /* =========================
     11) Contact / Hours panel
     ========================= */
  .contact-panel{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  
    background: #0f0f0f;
    border-radius: 26px;
    padding: 26px;
  
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
  }
  
  .contact-col{ padding: 8px 10px; }
  .contact-col:first-child{
    border-right: 1px solid rgba(255,255,255,0.10);
  }
  
  .contact-title{
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 2.0rem;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: rgba(25,193,195,0.55);
    text-underline-offset: 6px;
  }
  
  .contact-address{
    text-align: center;
    font-weight: 900;
    font-size: 1.35rem;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.95);
  }
  
  .contact-phone{
    display: block;
    text-align: center;
    font-weight: 950;
    font-size: 2.05rem;
    color: rgba(25,193,195,0.95);
    text-decoration: underline;
    text-decoration-color: rgba(25,193,195,0.55);
    text-underline-offset: 6px;
    margin-bottom: 10px;
  }
  .contact-phone:hover{ color: var(--teal); }
  
  .contact-hours-note{
    text-align: center;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 800;
    font-size: 1.05rem;
  }
  .contact-hours-note span{
    color: rgba(255,255,255,0.78);
    font-weight: 750;
  }
  
  .hours-table{
    list-style: none;
    padding: 0;
    margin: 0 auto 12px;
    max-width: 360px;
  }
  
  .hours-table li{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: baseline;
    padding: 6px 0;
  }
  
  .hours-table .day{
    color: rgba(25,193,195,0.95);
    font-weight: 950;
    font-size: 1.55rem;
    text-align: left;
  }
  
  .hours-table .time{
    color: rgba(25,193,195,0.95);
    font-weight: 950;
    font-size: 1.55rem;
    text-align: right;
    text-decoration: underline;
    text-decoration-color: rgba(25,193,195,0.55);
    text-underline-offset: 6px;
  }
  
  .contact-note{
    text-align: center;
    margin: 10px 0 0;
    color: rgba(255,255,255,0.78);
    font-weight: 700;
  }
  
  @media (max-width: 900px){
    .contact-panel{
      grid-template-columns: 1fr;
      padding: 20px;
    }
  
    .contact-col:first-child{
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.10);
      padding-bottom: 18px;
      margin-bottom: 6px;
    }
  
    .contact-title{ font-size: 1.75rem; }
    .contact-address{ font-size: 1.15rem; }
    .contact-phone{ font-size: 1.7rem; }
    .hours-table .day,
    .hours-table .time{ font-size: 1.25rem; }
  }
  
  
  /* =========================
     12) Reviews carousel (CSS-only)
     ========================= */
  .reviews-carousel{
    margin-top: 18px;
    position: relative;
  }
  
  .reviews-radio{
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .reviews-viewport{
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: transparent;
    box-shadow: var(--shadow);
  }
  
  .reviews-track{
    display: flex;
    width: auto;
    max-width: 100%;
    transition: transform 300ms ease;
    will-change: transform;
  }
  
  .review-card{
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 26px 24px;
    background: #ffffff;
    color: #111;
    border-radius: var(--radius);
  }
  
  .review-stars{
    margin: 0 0 12px;
    letter-spacing: 2px;
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 900;
  }
  
  .review-text{
    margin: 0 0 14px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #222;
  }
  
  .review-meta{
    margin: 0;
    font-weight: 800;
    color: #555;
  }
  
  /* Slide positions (10) */
  #rev-1:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(0%); }
  #rev-2:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-100%); }
  #rev-3:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-200%); }
  #rev-4:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-300%); }
  #rev-5:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-400%); }
  #rev-6:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-500%); }
  #rev-7:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-600%); }
  #rev-8:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-700%); }
  #rev-9:checked  ~ .reviews-viewport .reviews-track{ transform: translateX(-800%); }
  #rev-10:checked ~ .reviews-viewport .reviews-track{ transform: translateX(-900%); }
  
  .reviews-controls{ margin-top: 12px; }
  .controls{
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  
  /* Show matching controls row */
  #rev-1:checked  ~ .reviews-controls .controls-1{ display: flex; }
  #rev-2:checked  ~ .reviews-controls .controls-2{ display: flex; }
  #rev-3:checked  ~ .reviews-controls .controls-3{ display: flex; }
  #rev-4:checked  ~ .reviews-controls .controls-4{ display: flex; }
  #rev-5:checked  ~ .reviews-controls .controls-5{ display: flex; }
  #rev-6:checked  ~ .reviews-controls .controls-6{ display: flex; }
  #rev-7:checked  ~ .reviews-controls .controls-7{ display: flex; }
  #rev-8:checked  ~ .reviews-controls .controls-8{ display: flex; }
  #rev-9:checked  ~ .reviews-controls .controls-9{ display: flex; }
  #rev-10:checked ~ .reviews-controls .controls-10{ display: flex; }
  
  .review-arrow{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 900;
  }
  .review-arrow:hover{
    border-color: rgba(25,193,195,0.45);
    background: rgba(25,193,195,0.12);
  }
  
  .review-dots{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
  
  .dot{
    width: 10px;
    height: 10px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
  }
  
  /* Active dot highlight */
  #rev-1:checked  ~ .reviews-controls .controls-1  .dot[for="rev-1"],
  #rev-2:checked  ~ .reviews-controls .controls-2  .dot[for="rev-2"],
  #rev-3:checked  ~ .reviews-controls .controls-3  .dot[for="rev-3"],
  #rev-4:checked  ~ .reviews-controls .controls-4  .dot[for="rev-4"],
  #rev-5:checked  ~ .reviews-controls .controls-5  .dot[for="rev-5"],
  #rev-6:checked  ~ .reviews-controls .controls-6  .dot[for="rev-6"],
  #rev-7:checked  ~ .reviews-controls .controls-7  .dot[for="rev-7"],
  #rev-8:checked  ~ .reviews-controls .controls-8  .dot[for="rev-8"],
  #rev-9:checked  ~ .reviews-controls .controls-9  .dot[for="rev-9"],
  #rev-10:checked ~ .reviews-controls .controls-10 .dot[for="rev-10"]{
    background: var(--teal);
    border-color: rgba(25,193,195,0.75);
  }
  
  @media (max-width: 520px){
    .review-card{ padding: 20px 18px; }
  }
  
  
  /* =========================
     13) Team page
     ========================= */
  .page-team .team-hero{
    position: relative;
    max-width: 980px;
    margin: 0 auto 64px;
    padding: 48px 36px 52px;
    text-align: center;
    border-radius: 22px;
  
    background:
      radial-gradient(800px 260px at 50% 0%, rgba(25,193,195,0.18), transparent 65%),
      linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,0.86));
  
    border: 1px solid rgba(25,193,195,0.35);
    box-shadow: 0 30px 90px rgba(0,0,0,0.75);
  }
  
  .page-team .team-hero-title{
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    color: rgba(25,193,195,1);
  }
  
  .page-team .team-hero-title::after{
    content: "";
    display: block;
    width: 140%;
    max-width: 420px;
    height: 4px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(25,193,195,0) 0%,
      rgba(25,193,195,0.45) 20%,
      rgba(25,193,195,1) 50%,
      rgba(25,193,195,0.45) 80%,
      rgba(25,193,195,0) 100%
    );
    box-shadow: 0 0 18px rgba(25,193,195,0.55);
  }
  
  .page-team .team-hero-subtitle{
    margin: 26px auto 0;
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
  }
  .team-note--afterhours{
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(25,193,195,0.12);
    border: 1px solid rgba(25,193,195,0.35);
    color: rgba(25,193,195,0.95);
  }
  
  @media (max-width: 700px){
    .page-team .team-hero{
      padding: 36px 22px 40px;
      border-radius: 18px;
      margin-bottom: 48px;
    }
    .page-team .team-hero-subtitle{ font-size: 0.95rem; }
  }
  
  /* Section headings (Owner / Colorists / Stylists) */
  .team-section{ margin-top: 48px; }
  .team-section-head{ margin-bottom: 20px; }
  
  .team-section-title{
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  .team-section-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, rgba(25,193,195,1), rgba(25,193,195,0.35));
    border-radius: 2px;
  }
  
  .team-section-subtitle{
    margin-top: 10px;
    max-width: 720px;
    color: rgba(255,255,255,0.75);
    font-weight: 650;
    line-height: 1.6;
  }
  
  /* Grid */
  .team-grid{
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  .team-grid--featured{ grid-template-columns: 1fr; }
  
  /* Card base (non-featured) */
  .team-card:not(.team-card--featured){
    border-radius: var(--radius);
    background: var(--panel-2);
    border: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(25,193,195,0.45);
    box-shadow: var(--shadow);
    overflow: hidden;
  
    display: grid;
    grid-template-columns: 170px 1fr;
    min-height: 190px;
  
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }
  
  .team-card:not(.team-card--featured):hover{
    transform: translateY(-2px);
    border-color: rgba(25,193,195,0.35);
    box-shadow: 0 22px 70px rgba(0,0,0,0.62), 0 0 0 1px rgba(25,193,195,0.14);
  }
  
  /* Photo treatment */
  .team-photo{
    position: relative;
    overflow: hidden;
    background: #0c1b1c;
    border-right: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(25,193,195,0.25), 0 18px 40px rgba(0,0,0,0.45);
  }
  
  .team-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  
    filter: contrast(1.05) saturate(1.05);
    transform: scale(1.01);
    transition: transform 500ms ease, filter 500ms ease;
  }
  
  .team-photo::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at center, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%),
      linear-gradient(180deg, rgba(25,193,195,0.08), rgba(0,0,0,0.35));
    pointer-events: none;
  }
  
  .team-card:hover .team-photo img{
    transform: scale(1.04);
    filter: contrast(1.08) saturate(1.1);
  }
  
  /* Content */
  .team-info{
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .team-text{ display: grid; gap: 6px; }
  
  .team-name{ margin: 0; }
  .team-role{
    margin: 0;
    color: rgba(25,193,195,0.98);
    font-weight: 950;
    font-size: 0.95rem;
  }
  
  .team-phone{
    display: inline-flex;
    width: fit-content;
    font-weight: 900;
    color: rgba(255,255,255,0.90);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 2px;
  }
  
  .team-phone:hover{ border-bottom-color: rgba(25,193,195,0.7); }
  
  .team-phone--muted{
    color: rgba(255,255,255,0.60);
    border-bottom-color: rgba(255,255,255,0.10);
  }
  
  .team-actions{
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
  }
  
  .team-actions .btn{
    width: auto;
    min-width: 190px;
    text-align: center;
  }
  
  .team-note{
    margin: 20px auto 0;
    text-align: center;
    color: rgba(255,255,255,0.78);
    font-weight: 700;
    max-width: 860px;
  }
  
  /* Featured (Whitney) */
  .team-card--featured{
    position: relative;
    overflow: hidden;
  
    display: grid;
    grid-template-columns: 360px 1fr;
    min-height: 280px;
  
    border-radius: var(--radius);
    background:
      radial-gradient(900px 260px at 20% 0%, rgba(25,193,195,0.20), transparent 60%),
      var(--panel-2);
  
    border: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(25,193,195,0.85);
    box-shadow: var(--shadow);
  
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }
  
  .team-card--featured:hover{
    transform: translateY(-3px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.68), 0 0 0 1px rgba(25,193,195,0.18);
  }
  
  .team-badge{
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 950;
    color: #001114;
    background: rgba(25,193,195,0.95);
    border: 1px solid rgba(25,193,195,0.65);
    z-index: 2;
  }
  
  .team-photo--featured{
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  
  .team-photo--featured img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  
    filter: contrast(1.08) saturate(1.1);
  }
  
  .team-info--featured{
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .team-description{
    margin-top: 10px;
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
  }
  
  .team-note--walkin{
    margin-top: 16px;
    padding-top: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.78);
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  
  /* --- Team Responsive + Photo fix (your request) --- */
  @media (max-width: 900px){
    .team-grid{ grid-template-columns: 1fr; }
  
    .team-card--featured{
      grid-template-columns: 1fr;
      min-height: auto;
    }
  
    .team-photo--featured{
      height: 260px;
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
  
    /* FIX: prevent awkward/tall/odd-looking crops on mobile cards */
    .page-team .team-card:not(.team-card--featured){
      grid-template-columns: 1fr;
    }
  
    .page-team .team-card:not(.team-card--featured) .team-photo{
      height: auto;
      aspect-ratio: 4 / 3;  /* stable portrait ratio */
      max-height: 42vh;     /* prevents huge photos on short screens */
      border-right: none;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
  
    .page-team .team-card:not(.team-card--featured) .team-photo img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  
    .team-actions{ justify-content: flex-start; }
  }
  
  /* Landscape phones: wider/shorter feel */
  @media (max-width: 900px) and (orientation: landscape){
    .page-team .team-card:not(.team-card--featured) .team-photo{
      aspect-ratio: 16 / 9;
      max-height: 55vh;
    }
  }
  
  
  /* =========================
     14) About page
     ========================= */
  .about-hero{
    max-width: 980px;
    margin: 0 auto 56px;
    padding: 48px 36px 52px;
    text-align: center;
    border-radius: 22px;
  
    background:
      radial-gradient(800px 260px at 50% 0%, rgba(25,193,195,0.18), transparent 65%),
      linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,0.86));
  
    border: 1px solid rgba(25,193,195,0.35);
    box-shadow: 0 30px 90px rgba(0,0,0,0.75);
  }
  
  .about-title{
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    color: rgba(25,193,195,1);
  }
  
  .about-subtitle{
    margin-top: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
  }
  
  .about-card{
    border-radius: var(--radius);
    background: var(--panel-2);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .about-grid{
    display: grid;
    grid-template-columns: 360px 1fr;
  }
  
  .about-photo{
    background: rgba(25,193,195,0.10);
  }
  
  .about-photo{
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
  }
  
  .about-photo img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .about-content{ padding: 32px; }
  
  .about-heading{
    margin-top: 0;
    font-size: 1.6rem;
  }
  
  .about-content p{
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
  }
  
  /* About callout */
  .about-callout{
    margin-top: 26px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(25,193,195,0.18);
  }
  
  .about-callout-title{
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: 0.3px;
  }
  
  .about-callout-text{
    margin: 0 0 12px;
    color: rgba(255,255,255,0.80);
  }
  
  .about-callout-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* Social buttons on About */
  .about-social-links{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .about-social-links a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
  
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
  
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
  
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  }
  
  .about-social-links a:hover{
    transform: translateY(-1px);
    border-color: rgba(25,193,195,0.6);
    background: rgba(25,193,195,0.12);
  }
  
  .about-social-links img{
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }
  
  @media (max-width: 900px){
    .about-grid{ grid-template-columns: 1fr; }
  
    .about-photo{ height: auto; }
  
    .about-photo img{
      width: 100%;
      height: auto;
      object-fit: contain; /* no crop on mobile */
      display: block;
      background: rgba(0,0,0,0.25);
    }
  
    .about-content{ padding: 24px; }
  }
  
  
  /* =========================
     15) Footer
     ========================= */
  .footer{
    border-top: 1px solid rgba(25,193,195,0.12);
    padding: 24px 0;
    background: #050505;
  }
  
  .footer-inner{
    display:flex;
    align-items:flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .footer-brand{ margin: 0; font-weight: 950; }
  .footer-muted{ margin: 6px 0 0; color: var(--muted); }
  
  .footer-right{
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .footer-links{
    display:flex;
    gap: 14px;
  }
  
  .footer-links a{
    color: var(--muted);
    font-weight: 900;
  }
  .footer-links a:hover{ color: var(--white); }
  
  /* Social icons */
  .footer-social{
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .footer-social a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  }
  .footer-social a:hover{
    transform: translateY(-1px);
    background: rgba(25,193,195,0.12);
    border-color: rgba(25,193,195,0.6);
  }
  .footer-social img{
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
  }
  
  @media (max-width: 700px){
    .footer-right{
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }
  }
  
  
  /* =========================
     16) Scroll reveal animation
     ========================= */
  /* Default: show content */
  .reveal{
    opacity: 1;
    transform: none;
  }
  
  /* Only animate when JS is enabled */
  .js .reveal{
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 700ms ease, transform 700ms ease;
    will-change: opacity, transform;
  }
  .js .reveal.is-visible{
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Optional stagger */
  .stagger > *{
    opacity: 1;
    transform: none;
  }
  .js .stagger > *{
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 700ms ease, transform 700ms ease;
  }
  .js .stagger.is-visible > *{
    opacity: 1;
    transform: translateY(0);
  }
  .js .stagger.is-visible > *:nth-child(1){ transition-delay: 0ms; }
  .js .stagger.is-visible > *:nth-child(2){ transition-delay: 80ms; }
  .js .stagger.is-visible > *:nth-child(3){ transition-delay: 160ms; }
  .js .stagger.is-visible > *:nth-child(4){ transition-delay: 240ms; }
  .js .stagger.is-visible > *:nth-child(5){ transition-delay: 320ms; }
  .js .stagger.is-visible > *:nth-child(6){ transition-delay: 400ms; }
  
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .reveal, .stagger > *{
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
  }
/* =========================================
   TEAM — Remove “grainy” look from photos
   (Paste at very bottom of styles.css)
   ========================================= */

   .page-team .team-photo img,
   .page-team .team-photo--featured img{
     filter: none !important;
     transform: none !important;
   }
   
   /* Stop hover zoom (can amplify noise) */
   .page-team .team-card:hover .team-photo img,
   .page-team .team-card--featured:hover .team-photo--featured img{
     transform: none !important;
     filter: none !important;
   }
   
  /* Remove vignette/tint overlay that can make photos look dirty */
  .page-team .team-photo::after,
  .page-team .team-photo--featured::after{
    display: none !important;
  }

   
   /* Optional: make rendering a touch cleaner on some browsers */
   .page-team .team-photo img{
     image-rendering: auto;
   }
   

/* =========================================
   ABOUT — Artsy floating corner layout (clean)
   ========================================= */

   .page-about .about-card--artsy{
    position: relative;
    overflow: visible;
  }
  
  /* Give the About card more room (desktop) */
  @media (min-width: 901px){
    .page-about .about-card{
      max-width: 1120px;
    }
  }
  
  /* Floating photo (desktop) */
  .page-about .about-card--artsy .about-float-photo{
    float: left;
  
    /* Portrait-friendly frame so we can use COVER without cutting her head */
    width: 300px;
    height: 380px;
  
    margin: -40px 22px 14px 12px; /* hang outside card */
    border-radius: 28px;
    overflow: hidden;
  
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow:
      0 30px 80px rgba(0,0,0,0.75),
      0 0 0 8px rgba(25,193,195,0.12);
  
    background: rgba(0,0,0,0.25);
    transform: rotate(-2deg);
  }
  
  .page-about .about-card--artsy .about-float-photo img{
    width: 100%;
    height: 100%;
    display: block;
  
    object-fit: cover;              /* fills frame (no side gaps) */
    object-position: center 18%;    /* shift crop up (keeps head) */
  }
  
  /* Clear the float properly so card contains content */
  .page-about .about-card--artsy .about-content::after{
    content: "";
    display: block;
    clear: both;
  }
  
  /* Mobile */
  @media (max-width: 900px){
    .page-about .about-card--artsy .about-float-photo{
      float: none;
      width: 220px;
      height: 260px;
      margin: -24px auto 14px;
      display: block;
      transform: rotate(-2deg);
    }
  
    .page-about .about-card--artsy .about-float-photo img{
      object-position: center 15%;
    }
  }
/* =========================================
   TEAM — Show photos with ZERO effects/overlays
   (paste at VERY bottom of styles.css)
   ========================================= */

   .page-team .team-photo,
   .page-team .team-photo--featured{
     background: transparent !important;
     box-shadow: none !important;
   }
   
   /* remove any overlay layers */
   .page-team .team-photo::before,
   .page-team .team-photo::after,
   .page-team .team-photo--featured::before,
   .page-team .team-photo--featured::after{
     content: none !important;
     display: none !important;
   }
   
   /* remove filters/zoom/etc from the actual images */
   .page-team .team-photo img,
   .page-team .team-photo--featured img{
     filter: none !important;
     transform: none !important;
     opacity: 1 !important;
     mix-blend-mode: normal !important;
   }
   
   /* ensure hover doesn't add anything back */
   .page-team .team-card:hover .team-photo img,
   .page-team .team-card--featured:hover .team-photo--featured img{
     filter: none !important;
     transform: none !important;
   }
    /* Reduce upscaling: make photo column a bit smaller */
  .page-team .team-card:not(.team-card--featured){
    grid-template-columns: 140px 1fr;
  }
/* =========================================
   TEAM — reduce upscaling on desktop (no effects)
   ========================================= */

/* Make the photo column smaller on desktop */
@media (min-width: 901px){
  .page-team .team-card:not(.team-card--featured){
    grid-template-columns: 140px 1fr; /* smaller photo column */
  }

  /* Keep photo area from getting too tall */
  .page-team .team-card:not(.team-card--featured) .team-photo{
    height: 170px;
  }
}
/* =========================================
   TEAM — Call + Text button layout
   ========================================= */

   .team-actions{
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .team-actions .btn{
    min-width: 100px;
    text-align: center;
  }
/* =========================
   GALLERY PAGE (clean + curated)
   ========================= */

/* Hero */
.page-gallery .gallery-hero{
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 44px 34px 46px;
  text-align: center;
  border-radius: 22px;

  background:
    radial-gradient(800px 260px at 50% 0%, rgba(25,193,195,0.18), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,0.86));

  border: 1px solid rgba(25,193,195,0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.75);
}

.page-gallery .gallery-title{
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgba(25,193,195,1);
}

.page-gallery .gallery-subtitle{
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}

/* =========================
   Curated Grid
   Uses: --hero, --half, --divider, --third
   ========================= */

.page-gallery .gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

/* Base tile */
.page-gallery .gallery-item{
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.page-gallery .gallery-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 250ms ease;
}

.page-gallery .gallery-item:hover img{
  transform: scale(1.03);
}

/* Layout roles */
.page-gallery .gallery-item--hero{
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.page-gallery .gallery-item--half{
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.page-gallery .gallery-item--divider{
  grid-column: 1 / -1;
  aspect-ratio: 24 / 8;
}

.page-gallery .gallery-item--third{
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

/* Responsive */
@media (max-width: 900px){
  .page-gallery .gallery-item--half{ grid-column: 1 / -1; }
  .page-gallery .gallery-item--third{ grid-column: span 6; }
  .page-gallery .gallery-item--hero{ aspect-ratio: 16 / 10; }
  .page-gallery .gallery-item--divider{ aspect-ratio: 16 / 9; }
}

@media (max-width: 600px){
  .page-gallery .gallery-item--third{ grid-column: 1 / -1; }
}

/* =========================
   Lightbox
   ========================= */

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.lightbox.is-open{
  display: flex;
}

.lightbox-img{
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.75);
}

.lightbox-close{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover{
  border-color: rgba(25,193,195,0.6);
  background: rgba(25,193,195,0.12);
}

.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover img{
  transform: scale(1.08);
}

.footer-social img{
  transition: transform 180ms ease;
}