/* ==========================================================================
   Lash Lane — shared stylesheet
   Palette pulled from the brand's blush-pink and warm-brown reference images.
   ========================================================================== */

:root {
  --blush-light: #fdf1f2;   /* page background tint */
  --blush: #f8c9cd;         /* primary brand pink */
  --blush-deep: #f2a8ae;    /* deeper pink accent */
  --rose: #d98d93;          /* mid rose, small accents */
  --brown: #6b4530;         /* headings / logo */
  --brown-dark: #4a2f20;    /* buttons, footer, strong text */
  --cream: #fffaf7;         /* card / section background */
  --charcoal: #3a2c26;      /* body copy */
  --line: #efd9db;          /* hairlines, borders */
  --gold: #cf9d3f;          /* star ratings */

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--blush-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--brown);
  margin: 0 0 0.5em 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 0.6em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section--tight { padding: 2.5rem 0; }

.section--pink {
  background: linear-gradient(180deg, var(--blush-light) 0%, var(--blush) 100%);
}

.section--brown {
  background: var(--brown-dark);
  color: var(--blush-light);
}
.section--brown h2, .section--brown h3 { color: var(--blush); }

.center { text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--brown-dark);
  color: var(--cream);
  box-shadow: 0 6px 18px rgba(74, 47, 32, 0.25);
}
.btn--primary:hover { background: var(--brown); }

.btn--ghost {
  background: transparent;
  border-color: var(--brown-dark);
  color: var(--brown-dark);
}
.btn--ghost:hover { background: var(--brown-dark); color: var(--cream); }

.btn--on-dark {
  background: var(--blush);
  color: var(--brown-dark);
}
.btn--on-dark:hover { background: var(--cream); }

.btn--small { padding: 0.55em 1.3em; font-size: 0.8rem; }

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Header cancellation note (Services page only) ---------- */

.header-note {
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--brown-dark);
  opacity: 0.85;
  max-width: 190px;
  text-align: right;
}
@media (max-width: 1020px) {
  .header-note { display: none; }
}
@media (max-width: 860px) {
  .main-nav.is-open .header-note {
    display: block;
    max-width: none;
    text-align: left;
    order: -1;
  }
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brown-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.logo span { color: var(--rose); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.main-nav a.nav-link {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brown-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link[aria-current="page"] {
  border-color: var(--rose);
  color: var(--rose);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.social-icons { display: flex; gap: 0.7rem; }
.social-icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.social-icons a:hover { background: var(--brown-dark); color: var(--cream); }
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem 1.6rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .header-actions { flex-wrap: wrap; }
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush) 55%, var(--blush-deep) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero .container { max-width: 780px; }

.hero p.lede {
  font-size: 1.15rem;
  color: var(--charcoal);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero .cta-row { justify-content: center; }

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 1.75rem;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 860px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(107, 69, 48, 0.06);
}

.card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card .icon svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Services / price list ---------- */

.price-category {
  margin-bottom: 3rem;
}

.price-category h3 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
}

.price-category .eyebrow {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
  margin-bottom: 1.3rem;
}

.price-list { list-style: none; margin: 0; padding: 0; }

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: none; }

.price-list .name {
  font-weight: 500;
  color: var(--brown-dark);
}

.price-list .name small {
  display: block;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.price-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--rose);
  transform: translateY(-4px);
  opacity: 0.6;
}

.price-list .price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.price-note {
  font-size: 0.88rem;
  opacity: 0.75;
  font-style: italic;
}

.cancellation-note {
  margin: 1.75rem auto 0;
  max-width: 480px;
  font-size: 0.78rem;
  opacity: 0.62;
  line-height: 1.5;
}

/* ---------- Add-ons dropdown ---------- */

.addons {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.addons summary {
  cursor: pointer;
  font-family: var(--font-heading);
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0;
}
.addons summary::-webkit-details-marker { display: none; }
.addons summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rose);
  flex-shrink: 0;
}
.addons[open] summary::after { content: '\2212'; }
.addons summary .addon-hint {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--charcoal);
  opacity: 0.65;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.addon-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}

.addon-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: var(--blush-light);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--rose);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.6rem;
  overflow: hidden;
}
.addon-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

.addon-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--brown-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.addon-card .addon-price {
  font-family: var(--font-heading);
  color: var(--brown);
  font-weight: 600;
  white-space: nowrap;
}
.addon-card p { margin: 0; font-size: 0.85rem; opacity: 0.8; }

.addon-card .addon-benefits {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  opacity: 0.85;
}
.addon-card .addon-benefits li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.addon-card .addon-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------- What your facial includes ---------- */

.includes-card {
  margin-top: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
}
.includes-card h4 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  color: var(--brown-dark);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}
@media (max-width: 560px) {
  .includes-list { grid-template-columns: 1fr; }
}
.includes-list li {
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.92rem;
}
.includes-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rose);
  font-weight: 600;
}

/* ---------- Photos page ---------- */

.photo-section { margin-bottom: 3.5rem; }
.photo-section:last-child { margin-bottom: 0; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 860px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .photo-grid { grid-template-columns: 1fr; } }

.photo-tile {
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  overflow: hidden;
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }

.photo-tile.is-placeholder {
  border: 1.5px dashed var(--blush-deep);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--rose);
  text-align: center;
  padding: 1rem;
}
.photo-tile.is-placeholder svg { width: 28px; height: 28px; fill: currentColor; opacity: 0.65; }
.photo-tile.is-placeholder span {
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---------- Image with caption ---------- */

.figure { text-align: center; }
.figure img {
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(74, 47, 32, 0.18);
}
.figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--brown);
  text-transform: uppercase;
}

/* ---------- Home collage ---------- */

.home-collage { text-align: center; }
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.collage-grid .collage-tile {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 47, 32, 0.16);
}
.collage-grid .collage-tile img { width: 100%; height: 100%; object-fit: cover; }
.home-collage figcaption {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--brown);
  text-transform: uppercase;
}

/* ---------- About page ---------- */

.floral-band {
  background-image: linear-gradient(rgba(255, 250, 247, 0.86), rgba(255, 250, 247, 0.9)), url('../images/floral-texture.jpg');
  background-size: cover;
  background-position: center;
  padding: 4.5rem 0;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
}

.avatar-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blush), var(--blush-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--cream);
  box-shadow: 0 15px 40px rgba(74, 47, 32, 0.18);
}
.avatar-frame span {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--brown-dark);
}
.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.quote-block {
  border-left: 3px solid var(--rose);
  padding-left: 1.3rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin: 2rem 0;
}

/* ---------- Fun facts (About page) ---------- */

.fun-facts-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  box-shadow: 0 10px 30px rgba(107, 69, 48, 0.06);
}
.fun-facts-card .includes-list {
  text-align: left;
  margin-top: 1.75rem;
}

/* ---------- Reviews page ---------- */

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.9rem;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--charcoal);
}

.testimonial-card .attribution {
  font-family: var(--font-heading);
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}

.testimonial-card .attribution small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.65;
  font-size: 0.78rem;
  margin-top: 0.2rem;
  text-transform: none;
  letter-spacing: normal;
}

.review-cta {
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.75rem 2rem;
  box-shadow: 0 10px 30px rgba(107, 69, 48, 0.06);
}
.review-cta .cta-row {
  justify-content: center;
  margin-top: 1.5rem;
}

/* ---------- Map ---------- */

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(107, 69, 48, 0.08);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brown-dark);
  color: var(--blush-light);
  padding: 3.5rem 0 2rem;
}

.site-footer a { transition: color 0.2s ease; }
.site-footer .logo { color: var(--blush-light); }
.site-footer .logo span { color: var(--blush); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
  color: var(--blush);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.footer-grid p, .footer-grid a { font-size: 0.92rem; opacity: 0.92; }
.footer-grid a:hover { color: var(--blush); }

.footer-grid .social-icons a { background: rgba(255,255,255,0.1); color: var(--blush-light); }
.footer-grid .social-icons a:hover { background: var(--blush); color: var(--brown-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.text-muted { opacity: 0.75; }
