/* ===========================================================================
   TEJ SALON — salon template. Soft, elegant, feminine-luxe. Cream + mauve + gold.
   Split hero + service price list. Distinct from all the others.
   ========================================================================= */
:root{
  --cream:#fbf6f3; --paper:#fff; --mauve:#a86b78; --mauve-d:#8c5563; --gold:#c2a05a;
  --ink:#3a2e30; --muted:#8a7b7e; --line:#ece0db;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Jost','Inter',sans-serif;background:var(--cream);color:var(--ink);line-height:1.75;overflow-x:hidden;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:'Marcellus','Georgia',serif;font-weight:400;line-height:1.15;color:var(--ink)}
a{color:inherit;text-decoration:none} img{display:block;max-width:100%}
.wrap{width:min(1180px,92%);margin-inline:auto}
.eyebrow{font-family:'Jost';font-size:.74rem;letter-spacing:.34em;text-transform:uppercase;color:var(--mauve);font-weight:500}
.reveal{opacity:0;transform:translateY(24px);transition:.9s ease} .reveal.in{opacity:1;transform:none}
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:'Jost';letter-spacing:.06em;font-weight:500;font-size:.95rem;padding:.95rem 2rem;border-radius:50px;cursor:pointer;border:1.5px solid var(--mauve);transition:.25s}
.btn-fill{background:var(--mauve);color:#fff;border-color:var(--mauve)} .btn-fill:hover{background:var(--mauve-d);border-color:var(--mauve-d)}
.btn-ghost{background:transparent;color:var(--ink)} .btn-ghost:hover{background:rgba(168,107,120,.1)}

.nav{position:fixed;inset:0 0 auto 0;z-index:50;padding:1.2rem 0;transition:.4s}
.nav.solid{background:rgba(251,246,243,.96);backdrop-filter:blur(10px);padding:.7rem 0;box-shadow:0 6px 24px -18px rgba(0,0,0,.3)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between}
.brand{font-family:'Marcellus',serif;font-size:1.5rem;letter-spacing:.04em} .brand b{color:var(--mauve)}
.nav-links{display:flex;gap:1.8rem;align-items:center}
.nav-links a{font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)} .nav-links a:hover{color:var(--mauve)}
.nav-tog{display:none;background:none;border:0;color:var(--ink);font-size:1.5rem}

/* HERO — split (text left on cream, image right). Distinct. */
.hero{min-height:100vh;display:grid;grid-template-columns:1fr 1fr;align-items:center}
.hero .txt{padding:7rem 6% 3rem}
.hero h1{font-size:clamp(2.8rem,5.5vw,4.6rem);margin:1.2rem 0}
.hero h1 em{font-style:italic;color:var(--mauve)}
.hero p{color:var(--muted);font-size:1.12rem;max-width:420px;margin-bottom:2rem}
.hero-cta{display:flex;gap:.9rem;flex-wrap:wrap}
.hero-rating{margin-top:1.8rem;color:var(--muted);font-size:.9rem}.hero-rating .s{color:var(--gold);letter-spacing:2px}
.hero .pic{position:relative;height:100vh;background-size:cover;background-position:center}
.hero .pic::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,var(--cream),transparent 22%)}

.sec{padding:6.5rem 0}
.sec-head{text-align:center;max-width:600px;margin:0 auto 3rem}
.sec-head h2{font-size:clamp(2rem,5vw,3.2rem);margin:.4rem 0}
.sec-head p{color:var(--muted)}

/* SERVICE MENU — price list (distinct) */
.menu{background:var(--paper)}
.menu-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem 3.5rem;max-width:920px;margin:0 auto}
.mrow{display:flex;align-items:center;gap:1rem;padding:1rem 0;border-bottom:1px dashed var(--line)}
.mrow img{width:64px;height:64px;border-radius:50%;object-fit:cover;flex:none}
.mrow .nm{flex:1;font-family:'Marcellus',serif;font-size:1.25rem}
.mrow .pr{color:var(--mauve);font-weight:500;white-space:nowrap}
.menu .note{text-align:center;color:var(--muted);margin-top:2.2rem;font-size:.9rem}

/* STORY */
.story{background:var(--cream)}
.story .wrap{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.story img{width:100%;height:480px;object-fit:cover;border-radius:6px}
.story h2{font-size:clamp(2rem,4vw,3rem);margin:.6rem 0 1.2rem}
.story p{color:var(--muted);margin-bottom:1.2rem}
.story ul{list-style:none;display:grid;gap:.7rem}
.story li{display:flex;gap:.7rem;align-items:center} .story li::before{content:"✦";color:var(--gold)}

/* GALLERY */
.gallery{background:var(--paper)}
.gallery .grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:240px;gap:14px}
.gallery a{overflow:hidden;border-radius:6px} .gallery img{width:100%;height:100%;object-fit:cover;transition:.8s}
.gallery a:hover img{transform:scale(1.08)} .gallery a:nth-child(1){grid-column:span 2;grid-row:span 2}

/* REVIEWS */
.reviews{background:var(--cream)}
.rev-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.rev{background:var(--paper);border:1px solid var(--line);border-radius:10px;padding:2rem}
.rev .stars{color:var(--gold);letter-spacing:3px;margin-bottom:.6rem}
.rev p{font-style:italic;color:var(--ink)} .rev .who{margin-top:1rem;color:var(--mauve);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase}

/* CTA */
.cta{position:relative;text-align:center;padding:7rem 0;overflow:hidden}
.cta-bg{position:absolute;inset:0;background-size:cover;background-position:center}
.cta::after{content:"";position:absolute;inset:0;background:rgba(58,46,48,.6)}
.cta .inner{position:relative;z-index:2} .cta .eyebrow{color:#e9cdd3}
.cta h2{font-size:clamp(2rem,5vw,3.2rem);color:#fff;margin-bottom:1rem}
.cta p{color:rgba(255,255,255,.9);margin-bottom:1.8rem}

/* VISIT */
.visit .wrap{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.visit h2{font-size:2.3rem;margin-bottom:1.2rem}
.visit .row{display:flex;gap:.7rem;padding:.6rem 0;border-bottom:1px solid var(--line);color:var(--muted)} .visit .row b{color:var(--ink)}
.visit iframe{width:100%;height:100%;min-height:320px;border:0;border-radius:10px}
.visit .cta-row{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.3rem}

.foot{background:var(--ink);color:rgba(255,255,255,.8);padding:2.6rem 0;text-align:center}
.foot .brand{color:#fff;margin-bottom:.5rem;font-size:1.4rem} .foot small{opacity:.7;font-size:.78rem}

.bot-fab{background:var(--mauve)!important} .bot-head{background:var(--mauve-d)!important}

@media(max-width:900px){
  .nav-links{position:fixed;inset:58px 0 auto 0;background:var(--cream);flex-direction:column;padding:1.3rem;display:none}
  .nav-links.show{display:flex}.nav-tog{display:block}
  .hero{grid-template-columns:1fr}.hero .pic{height:50vh;order:-1}.hero .pic::after{background:linear-gradient(0deg,var(--cream),transparent 30%)}.hero .txt{padding:2rem 6% 3rem}
  .menu-grid,.story .wrap,.visit .wrap,.rev-grid{grid-template-columns:1fr}.story img{height:320px}
  .gallery .grid{grid-template-columns:1fr 1fr;grid-auto-rows:160px}.gallery a:nth-child(1){grid-column:span 2;grid-row:span 1}
  .sec{padding:4.5rem 0}
}
