:root{
    --primary:#9c6b82;
    --primary-dark:#7a5164;
    --text:#333;
    --light:#fff;
    --gold:#c49a6c;
  }
  
  /* ===== Base / UX ===== */
  html { scroll-behavior: smooth; }
  html,body{ margin:0; padding:0; }
  body{
    font-family:'Raleway',sans-serif;
    line-height:1.7;
    color:var(--text);
    background:url('images/farbackround.png') center/cover fixed no-repeat #faf7f6;
  }
  a{ color:inherit; text-decoration:none; }
  section { scroll-margin-top: 90px; }
  
  /* ===== Header / Nav ===== */
  header{ position:sticky; top:0; z-index:1000; }
  nav{
    display:flex; justify-content:space-between; align-items:center;
    padding:1rem 2.5rem;
    background:linear-gradient(to right,#fdfcfa,#f7f0f4);
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    backdrop-filter:blur(10px);
  }
  .logo{
    margin:0; color:var(--primary);
    font-family:'Great Vibes',cursive; font-size:1.9rem; line-height:1.1; letter-spacing:.3px;
  }
  .logo span{
    display:block; margin-top:-4px;
    font-family:'Playfair Display',serif; font-size:.95rem; color:#555; letter-spacing:.5px;
  }
  .nav-right{
    display:flex; gap:1.4rem; list-style:none; margin:0; padding:0; align-items:center;
  }
  .nav-right li a{
    font-weight:500; position:relative; transition:color .25s ease;
  }
  .nav-right li a:hover{ color:var(--gold); }
  .nav-right li a::after{
    content:''; position:absolute; left:0; bottom:-6px; width:0%; height:2px;
    background:var(--gold); transition:width .25s ease;
  }
  .nav-right li a:hover::after{ width:100%; }
  .button-nav{
    background:var(--primary); color:var(--light);
    padding:.6rem 1.4rem; border-radius:999px; font-weight:700;
    transition:background .25s ease, transform .2s ease;
  }
  .button-nav:hover{ background:var(--primary-dark); transform:translateY(-1px); }
  
  /* ===== Hero ===== */
  .hero{
    text-align:center; padding:7rem 2rem; color:#fff;
    background:
      linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
      url('images/backround.png') center/cover no-repeat;
  }
  .hero h1{
    margin:0; font-family:'Great Vibes',cursive; font-size:4.6rem; letter-spacing:.5px;
  }
  .hero h1 span{
    display:block; margin-top:.2rem;
    font-family:'Playfair Display',serif; font-size:2.4rem; font-weight:400;
  }
  .hero p{ margin-top:1rem; font-size:1.15rem; }
  .button{
    display:inline-block; margin-top:1.4rem; padding:.85rem 1.9rem;
    background:var(--primary); color:#fff; border-radius:999px; font-weight:700;
    transition:background .25s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow:0 10px 20px rgba(156,107,130,.18);
  }
  .button:hover{ background:var(--primary-dark); transform:translateY(-2px); box-shadow:0 14px 24px rgba(122,81,100,.22); }
  
  /* ===== Sections ===== */
  section{
    max-width:1000px; margin:2rem auto; padding:4.5rem 2rem;
    background:rgba(255,255,255,.88); border-radius:14px; box-shadow:0 8px 20px rgba(0,0,0,.08);
  }
  h2{
    margin:0 0 2.2rem 0; text-align:center; color:var(--primary);
    font-family:'Playfair Display',serif; font-size:2.2rem;
  }
  
  .about-img {
    width: 260px;         /* lock it at 260px wide */
    height: auto;         /* scale height naturally to keep aspect ratio */
    float: left;
    margin: 0 2rem 1rem 0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
    object-fit: cover;    /* optional: if you want it to fill a box evenly */
  }
  .dermalogica-logo{ display:block; margin:2rem auto 0; max-width:170px; opacity:.95; }
  
  /* ===== Services ===== */
  ul{ list-style:none; padding:0; margin:0; }
  
  .services-list li{
    display:flex; align-items:flex-start; gap:1.2rem;
    padding:1.2rem; margin:1rem 0; background:#fff;
    border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,.06);
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .services-list li:hover{ transform:translateY(-3px); box-shadow:0 10px 18px rgba(0,0,0,.09); }
  
  .service-icon{
    width:100px; height:100px; object-fit:cover; border-radius:10px; flex-shrink:0;
  }
  .services-list li strong{
    display:block; font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--primary); margin-bottom:.35rem;
  }
  .services-list li p{ margin:0; font-size:.95rem; line-height:1.55; }
  
  /* Desktop: 2-column grid for services */
  @media (min-width: 1024px){
    .services-list{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }
    .services-list li{ margin: 0; }
  }
  
  /* ===== Testimonials ===== */
  .testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:1.2rem;
  }
  .testimonial-card{
    background:#fff;
    border-radius:14px;
    box-shadow:0 6px 16px rgba(0,0,0,.07);
    padding:1.4rem 1.2rem;
  }
  .stars{
    color:#f2b01e;
    letter-spacing:2px;
    margin-bottom:.6rem;
    font-size:1.05rem;
  }
  .quote{ margin:0 0 .9rem 0; color:#444; font-size:0.98rem; line-height:1.6; }
  .client{ margin:0; font-weight:700; color:#5a5a5a; font-size:.95rem; }
  .service-note{ margin:.15rem 0 0 0; color:#7a7a7a; font-size:.9rem; }
  
  /* ===== Gallery ===== */
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:1.1rem;
  }
  .gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
  }
  
  /* Lightbox */
  #lightbox-overlay{
    position:fixed; inset:0;
    background:rgba(0,0,0,.8);
    display:none;
    align-items:center; justify-content:center;
    z-index:2000;
  }
  #lightbox-overlay img{
    max-width:90%; max-height:90%;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.5);
    animation:fadeIn .3s ease-in-out;
  }
  @keyframes fadeIn{
    from{opacity:0; transform:scale(.95)}
    to{opacity:1; transform:scale(1)}
  }
  
  /* ===== Contact / Info Card ===== */
  .contact-item{
    display:flex; align-items:flex-start; gap:.6rem; margin:.6rem 0;
  }
  .contact-item .icon{ font-size:1.2rem; line-height:1.4; flex-shrink:0; }
  .contact-item p{ margin:0; }
  
  .info-card{
    display:grid;
    grid-template-columns: 1fr;
    gap:1.2rem;
  }
  .info-box{
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    padding:1.2rem 1.3rem;
  }
  .info-box h3{
    margin:.2rem 0 1rem 0;
    font-family:'Playfair Display',serif;
    color:var(--primary);
    font-size:1.25rem;
  }
  .info-items{ display:flex; flex-direction:column; gap:.6rem; }
  .info-row{ display:flex; align-items:flex-start; gap:.6rem; }
  .info-row .icon{ flex-shrink:0; line-height:1.4; }
  .info-row p{ margin:0; }
  
  .hours-table{ width:100%; border-collapse:collapse; font-size:.98rem; }
  .hours-table td{ padding:.35rem 0; }
  .hours-table td:first-child{ font-weight:600; width:45%; }
  .hours-table .closed{ color:#888; }
  
  .map-embed{
    border-radius:12px; overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
  }
  
  /* ===== Footer ===== */
  footer{
    margin-top:2rem; padding:2.8rem 2rem;
    background:linear-gradient(to right,#f7f0f4,#fdfcfa);
    backdrop-filter:blur(6px); color:#6a6a6a; text-align:center;
  }
  .footer-inner{
    max-width:1000px; margin:0 auto;
    display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; align-items:start;
  }
  .footer-logo{
    font-family:'Great Vibes',cursive; color:var(--primary); font-size:1.6rem; margin:0 0 .4rem 0;
  }
  .footer-logo span{
    display:block; font-family:'Playfair Display',serif; font-size:.9rem; color:#555; margin-top:-4px;
  }
  .footer-links a{
    display:inline-block; margin:.2rem .6rem; color:#5a5a5a;
    border-bottom:2px solid transparent; transition:color .2s ease, border-color .2s ease;
  }
  .footer-links a:hover{ color:var(--gold); border-color:var(--gold); }
  .copy{ margin-top:1.2rem; font-size:.9rem; color:#7a7a7a; }
  
  /* ===== Responsive ===== */
  @media (max-width: 860px){
    .hero{ padding:6rem 1.4rem; }
    .hero h1{ font-size:3.8rem; }
    .hero h1 span{ font-size:2.1rem; }
    nav{ padding:1rem 1.4rem; }
    .nav-right{ gap:1rem; }
  }
  @media (max-width: 680px){
    .about-img{ float:none; display:block; margin:0 auto 1.4rem; }
    section{ padding:3.2rem 1.3rem; }
    .service-icon{ width:88px; height:88px; }
  }
  
  /* Utility */
  .link-plain { text-decoration:none; color:inherit; }

  /* --- Mobile-first nav --- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: #0f172a; /* or your existing header bg */
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: .5rem; padding: .75rem 1rem;
  }
  
  /* Toggle button */
  .nav-toggle {
    appearance: none; border: 0; background: transparent; color: inherit;
    width: 44px; height: 44px; display: grid; place-items: center;
    border-radius: 10px; cursor: pointer;
  }
  .nav-toggle:focus-visible { outline: 2px solid #93c5fd; outline-offset: 2px; }
  
  .icon { width: 24px; height: 24px; display: block; }
  .icon path { transition: transform .25s ease, opacity .2s linear; transform-origin: center; }
  .nav-toggle[aria-expanded="true"] .top { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .mid { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bot { transform: translateY(-6px) rotate(-45deg); }
  
/* Menu panel (mobile) */
.nav-right {
    position: fixed;
    left: 0; right: 0; top: calc(56px); /* below header */
    background: white;  /* << change this to match your design */
    color: #333;        /* << text color so it shows on white */
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: .5rem;
    list-style: none;
    display: grid;
    gap: 4px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .2s linear;
  }
  .nav-right a {
    display: block;
    padding: .9rem 1rem;
    border-radius: 10px;
  }
  .nav-right a:hover,
  .nav-right a:focus-visible {
    background: rgba(0,0,0,.05); /* subtle hover */
  }
  
  /* when JS removes [hidden] it also adds .open */
  .nav-right.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  
  /* --- Desktop layout --- */
  @media (min-width: 900px) {
    .nav-toggle { display: none; }
    .nav { gap: 1.25rem; }
    .nav-right {
      position: static; display: flex; align-items: center; gap: .25rem;
      background: transparent; border: 0; padding: 0; transform: none; opacity: 1; pointer-events: auto;
    }
    .nav-right a { padding: .6rem .75rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    .icon path, .nav-right { transition: none; }
  }
  /* Phone button in hero */
.hero .phone-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold);  /* use your gold accent color */
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .hero .phone-button:hover {
    background: var(--primary-dark);
  }
  .hero .button {
    display: block;         /* forces each button to take full line */
    max-width: 220px;       /* keeps them from stretching too wide */
    margin: 0.5rem auto;    /* centers and adds spacing between */
    text-align: center;     /* ensures text stays centered */
  }
   