@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --bg: #F7F4F0;
  --surface: #EFEBE5;
  --surface-2: #E5E0D8;
  --border: #DDD8D0;
  --text: #2A2420;
  --muted: #7A6F67;
  --accent: #8B7355;
  --accent-light: #C4A882;
  --white: #FDFCFA;
  --nav-h: 72px;
  --max-w: 1160px;
  --pad: clamp(1.5rem, 5vw, 3.5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 500; }
p { color: var(--muted); }
em { font-style: italic; color: var(--accent); }

.label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { padding: clamp(5rem, 9vw, 9rem) 0; }

/* --- Nav --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(247, 244, 240, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--text) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: opacity 0.2s !important;
}
.btn-nav:hover { opacity: 0.75 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  transition: all 0.25s;
}
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: var(--accent); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }

/* --- Section Header --- */
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header .label { display: block; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0; }
.section-header p { margin-top: 1rem; max-width: 500px; font-size: 1.05rem; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--surface);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-img-panel {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mix-blend-mode: multiply;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-inner .label { display: block; margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.hero-note { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface); }
.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  stroke-width: 1.2;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; line-height: 1.75; }
.service-price {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

/* --- Stylists --- */
.stylists-section { background: var(--surface); }
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stylist-card { background: var(--white); overflow: hidden; }
.stylist-img-ph {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--surface-2), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}
.stylist-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.stylist-detail-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.stylist-info { padding: 1.75rem; }
.stylist-info h3 { font-size: 1.6rem; margin-bottom: 0.2rem; }
.stylist-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.stylist-info p { font-size: 0.9rem; line-height: 1.75; }
.stylists-cta { margin-top: 3.5rem; text-align: center; }

/* --- Stylists Detail Page --- */
.stylists-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stylist-detail-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.stylist-detail-card .stylist-img-ph { aspect-ratio: 4/5; }
.stylist-detail-info { padding: 2rem; }
.stylist-detail-info h3 { font-size: 2rem; margin-bottom: 0.3rem; }
.specialism-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.25rem; }
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  color: var(--muted);
}
.stylist-detail-info p { font-size: 0.92rem; line-height: 1.8; }
.stylist-book-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.stylist-book-link:hover { color: var(--text); border-color: var(--text); }

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.review-card {
  border-top: 1px solid var(--border);
  padding-top: 2.25rem;
  display: flex;
  flex-direction: column;
}
.review-card blockquote { flex: 1; }
.review-card blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--text);
}
.review-card figcaption {
  margin-top: 1.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.review-name {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
}
.review-sep { color: var(--accent-light); font-weight: 300; }
.review-treatment {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}

/* --- Location --- */
.location-section { padding: 0 !important; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block;
  filter: grayscale(25%) contrast(0.9) sepia(5%);
}
.location-info {
  background: var(--white);
  padding: 5rem var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.location-info .label { display: block; margin-bottom: 1rem; }
.location-info h2 { font-size: 2.4rem; margin-bottom: 2.5rem; }
.location-items { display: flex; flex-direction: column; gap: 1.5rem; }
.location-item { display: flex; gap: 1rem; align-items: flex-start; }
.location-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; stroke-width: 1.5; }
.location-item p { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.location-item span { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }
.location-info .btn { margin-top: 2.5rem; align-self: flex-start; }

/* --- Footer --- */
footer { background: var(--text); color: var(--white); padding: 5rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--surface);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  mix-blend-mode: multiply;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .label { display: block; margin-bottom: 1rem; }
.page-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.page-header p { margin-top: 1.25rem; max-width: 480px; font-size: 1.05rem; }

/* --- Booking --- */
.booking-section { padding: 5rem 0 7rem; }
.booking-grid { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
.booking-form { background: var(--white); padding: 2.5rem; border: 1px solid var(--border); }
.form-group { margin-bottom: 1.6rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 300;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.time-slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.time-slot {
  padding: 0.65rem 0.25rem;
  text-align: center;
  font-size: 0.78rem;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg);
  color: var(--muted);
  transition: all 0.2s;
  user-select: none;
}
.time-slot:hover { border-color: var(--accent); color: var(--accent); }
.time-slot.active { background: var(--text); color: var(--white); border-color: var(--text); }
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; }
.sidebar-card h4 { margin-bottom: 1rem; font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.sidebar-card p { font-size: 0.9rem; line-height: 1.75; }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.sidebar-card ul li { font-size: 0.88rem; color: var(--muted); padding-left: 1rem; position: relative; }
.sidebar-card ul li::before { content: '—'; color: var(--accent); position: absolute; left: 0; }

/* --- FAQ --- */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text);
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 1.75rem; }
.faq-body p { font-size: 0.95rem; line-height: 1.85; }

/* --- FAQ layout (FAQ list + contact sidebar) --- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: start;
}

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-section { padding: 6rem 0; }
.contact-form-wrap h2,
.contact-info-wrap h2 { margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.contact-detail-item { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail-item .contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}
.contact-detail-item p { color: var(--text); font-size: 0.95rem; }
.contact-detail-item a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.contact-detail-item a:hover { color: var(--text); }

/* --- Responsive --- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stylists-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .stylists-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .location-info { border-left: none; border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem var(--pad);
    gap: 1.5rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .hero-img-panel { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stylists-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stylists-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(4, 1fr); }
}

/* Lightwork demo attribution bar (sticky above the site nav) */
/* demo bar: FIXED BOTTOM (moved from top 2026-08-21) */
.lw-demo-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: block; height: calc(40px + env(safe-area-inset-bottom)); line-height: 40px; box-sizing: border-box; padding: 0 8px env(safe-area-inset-bottom); background: #241631; color: rgba(255,255,255,0.88); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; font-size: clamp(9px, 2.7vw, 13px); letter-spacing: 0; white-space: nowrap; text-decoration: none; text-align: center; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; color: #ffffff; }
/* the demo sites pin their own nav to the viewport top: drop it below the bar */

body { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
