/* ============================================================
   Larissa Galleria — Salon & Spa
   Luxe & Elegant theme (gold / cream)
   ============================================================ */

:root {
  --cream:      #faf6f0;
  --cream-2:    #f3ece1;
  --ivory:      #fffdf9;
  --charcoal:   #2b2622;
  --charcoal-2: #4a4139;
  --gold:       #b6893f;
  --gold-light: #d4b271;
  --gold-dark:  #8f6a2c;
  --taupe:      #8a7d6d;
  --line:       #e7ddcd;
  --shadow:     0 20px 60px rgba(43, 38, 34, 0.10);
  --shadow-sm:  0 8px 24px rgba(43, 38, 34, 0.08);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Jost", "Poppins", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section { padding: 6.5rem 0; }
.section--tint { background: var(--cream-2); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--ivory); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-head p { color: var(--taupe); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.4rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn--light { background: transparent; color: var(--cream); border-color: var(--gold-light); }
.btn--light:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  box-shadow: var(--shadow-sm);
  padding: 0.9rem 0;
  backdrop-filter: blur(8px);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--charcoal);
}
.brand__tag {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}
.site-header:not(.scrolled) .hero-overlay-nav .brand__name { color: #fff; }

.nav__links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav__links a {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; position: relative; padding: 4px 0; color: var(--charcoal-2);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold); }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative;
}
.nav__toggle span {
  position: absolute; left: 0; width: 100%; height: 2px; background: var(--charcoal);
  transition: all 0.3s ease;
}
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 20px; }
.nav__toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  color: #fff; text-align: center; overflow: hidden;
  background: linear-gradient(rgba(30,26,22,0.42), rgba(30,26,22,0.55)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=80") center/cover fixed;
}
.hero__inner { max-width: 820px; margin: 0 auto; padding: 8rem 1rem 4rem; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: #fff; font-size: clamp(2.8rem, 7vw, 5.4rem); font-weight: 500;
  margin-bottom: 1.4rem; letter-spacing: 0.01em;
}
.hero p { font-size: 1.2rem; font-weight: 300; max-width: 620px; margin: 0 auto 2.6rem; opacity: 0.95; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.8;
}

/* Page banner (inner pages) */
.page-banner {
  min-height: 52vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; position: relative;
  background: linear-gradient(rgba(30,26,22,0.45), rgba(30,26,22,0.55)),
    url("https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&w=2000&q=80") center/cover;
}
.page-banner__inner { padding: 9rem 1rem 4rem; }
.page-banner h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4rem); }
.breadcrumb { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 1rem; opacity: 0.85; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split__media img { box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1.4rem; }
.split__body p { color: var(--charcoal-2); margin-bottom: 1.2rem; }
.split__body .btn { margin-top: 1rem; }
.split--reverse .split__media { order: 2; }

.stats { display: flex; gap: 2.5rem; margin: 2rem 0; flex-wrap: wrap; }
.stat__num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 2rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--ivory); border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.8rem; }
.card__body h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card__body p { color: var(--taupe); font-size: 0.95rem; }
.card__link {
  display: inline-block; margin-top: 1rem; font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.card__link::after { content: " →"; }

/* icon feature (no image) */
.feature { text-align: center; padding: 2.4rem 1.6rem; background: var(--ivory); border: 1px solid var(--line); transition: all .4s ease; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.feature__icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.feature p { color: var(--taupe); font-size: 0.95rem; }

/* ---------- Pricing menu ---------- */
.price-group { margin-bottom: 3.5rem; }
.price-group h3 {
  font-size: 1.9rem; padding-bottom: 0.8rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 0.8rem;
}
.price-group h3 span { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.price-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px dashed var(--line);
}
.price-row__name { font-weight: 400; }
.price-row__name small { display: block; color: var(--taupe); font-size: 0.82rem; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--line); margin: 0 0.4rem 6px; }
.price-row__price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-dark); white-space: nowrap; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 1rem; }
.gallery img {
  width: 100%; margin-bottom: 1rem; border-radius: 2px;
  transition: transform 0.5s ease, filter 0.5s ease; cursor: pointer;
}
.gallery img:hover { transform: scale(1.02); filter: brightness(1.05); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card__media { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.2rem; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: grayscale(15%); }
.team-card:hover .team-card__media img { transform: scale(1.05); filter: grayscale(0); }
.team-card h3 { font-size: 1.45rem; }
.team-card .role { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.3rem; }
.team-card p { color: var(--taupe); font-size: 0.92rem; margin-top: 0.6rem; }

/* ---------- Testimonials ---------- */
.testimonial { text-align: center; max-width: 760px; margin: 0 auto; }
.testimonial__stars { color: var(--gold-light); letter-spacing: 0.3em; margin-bottom: 1.4rem; }
.testimonial__quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; line-height: 1.45; margin-bottom: 1.4rem; }
.testimonial__author { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; color: #fff; padding: 6rem 0;
  background: linear-gradient(rgba(30,26,22,0.55), rgba(30,26,22,0.6)),
    url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=2000&q=80") center/cover fixed;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; opacity: 0.95; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-list .ico { color: var(--gold); font-size: 1.2rem; min-width: 24px; }
.info-list strong { display: block; font-weight: 500; letter-spacing: 0.05em; }
.info-list span { color: var(--taupe); font-size: 0.95rem; }

.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--charcoal-2); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--line); background: var(--ivory);
  font-family: var(--sans); font-size: 0.95rem; color: var(--charcoal); transition: border 0.3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--taupe); margin-top: 0.8rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: var(--taupe); }

.map-embed { border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c9bfb2; padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer .brand__name { color: var(--ivory); }
.footer-col h4 { color: var(--ivory); font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.92rem; margin-bottom: 0.7rem; }
.socials { display: flex; gap: 0.8rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid #4a4139; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.9rem; transition: all 0.3s ease;
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-bottom { border-top: 1px solid #423a32; padding-top: 1.8rem; text-align: center; font-size: 0.82rem; color: #8a7d6d; }
.footer-bottom a { color: var(--gold-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
  .hero { background-attachment: scroll; }
  .cta-band { background-attachment: scroll; }
}
@media (max-width: 640px) {
  .nav__links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 75%; max-width: 320px;
    background: var(--cream); flex-direction: column; justify-content: center; gap: 2rem;
    box-shadow: var(--shadow); transition: right 0.4s ease; padding: 2rem;
  }
  .nav__links.open { right: 0; }
  .nav__toggle { display: block; z-index: 110; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .section { padding: 4.5rem 0; }
  .stats { gap: 1.5rem; }
}
