/* ===================================================================
   HotLook Parlour — design tokens
   Palette: warm ivory paper, ink charcoal, deep wine accent, muted gold
   Type: Fraunces (display, editorial serif) + Manrope (body, clean sans)
   Signature: tilted "look card" — mood-board / tear-sheet styling
   =================================================================== */

:root {
  --ivory: #F8F4EF;
  --ivory-deep: #EFE7DE;
  --ink: #221B19;
  --ink-soft: #52443F;
  --wine: #7A2436;
  --wine-deep: #591929;
  --gold: #B08D57;
  --blush: #E7CFC7;
  --line: #E1D5CA;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --radius: 2px;
  --shadow-card: 0 18px 40px -20px rgba(34, 27, 25, 0.35);
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--deep {
  background: var(--ink);
  color: var(--ivory);
}
.section--deep h2, .section--deep h3 { color: var(--ivory); }
.section--deep .eyebrow { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--wine);
  color: var(--white);
}
.btn--primary:hover { background: var(--wine-deep); }
.btn--outline {
  border-color: currentColor;
  background: transparent;
}
.btn--outline:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.section--deep .btn--outline:hover { background: var(--ivory); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo span { color: var(--wine); font-style: italic; }

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--wine);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--wine); }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--wine);
}
.hero p.lede {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 440px;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-stats {
  margin-top: 46px;
  display: flex;
  gap: 40px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--wine);
}
.hero-stats div span {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Signature element: tilted "look card" stack, editorial tear-sheet feel */
.hero-visual {
  position: relative;
  height: 480px;
}
.look-card {
  position: absolute;
  width: 62%;
  background: var(--white);
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}
.look-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--blush);
}
.look-card figcaption {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
}
.look-card--back {
  top: 0; right: 0;
  transform: rotate(4deg);
  z-index: 1;
}
.look-card--front {
  bottom: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
}

/* ---------- Section headers ---------- */
.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }
.section--deep .section-head p { color: #C9BDB6; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--ivory);
  padding: 40px 32px;
  transition: background var(--transition);
}
.service-card:hover { background: var(--white); }
.service-card .cat {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.service-card h3 {
  margin-top: 12px;
  font-size: 21px;
}
.service-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.service-card .price-row {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.service-card .price {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--wine);
}
.service-card .duration { font-size: 12.5px; color: var(--ink-soft); }

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

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-strip a {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.gallery-strip a:hover img { transform: scale(1.06); }

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

/* ---------- Testimonials ---------- */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px;
  border-radius: var(--radius);
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.testimonial-card p.quote {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
}
.testimonial-card .who {
  margin-top: 18px;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .testimonial-row { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--wine);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3vw, 36px); }
.cta-band p { margin-top: 12px; color: var(--blush); }
.cta-band .btn--primary { background: var(--white); color: var(--wine); margin-top: 26px; }
.cta-band .btn--primary:hover { background: var(--ivory); }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
}
.alert--success { background: #E4F1E5; color: #2A5D31; border: 1px solid #B7DBB9; }
.alert--error { background: #F6E3E1; color: #7A2A22; border: 1px solid #E3B7B1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #C9BDB6;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4 {
  color: var(--ivory);
  font-size: 15px;
  margin-bottom: 16px;
}
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ---------- Inner page hero ---------- */
.page-hero {
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(32px, 4.4vw, 48px);
  max-width: 680px;
}
.page-hero .lede {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 560px;
  font-size: 16px;
}

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.about-image img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.about-copy h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 4px; }
.about-copy p { margin-top: 16px; color: var(--ink-soft); font-size: 15.5px; }
.about-values {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.about-values h4 { font-size: 16px; color: var(--wine); }
.about-values p { margin-top: 6px; font-size: 14.5px; }
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; }
}

/* ---------- Services menu list ---------- */
.menu-list { border-top: 1px solid var(--line); }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row-main h3 { font-size: 19px; }
.menu-row-main p { margin-top: 6px; color: var(--ink-soft); font-size: 14.5px; max-width: 480px; }
.menu-row-side {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.menu-row-side .price { font-family: var(--font-display); color: var(--wine); font-size: 18px; }
.menu-row-side .duration { font-size: 12.5px; color: var(--ink-soft); }
.btn--small { padding: 10px 18px; font-size: 13px; }
@media (max-width: 640px) {
  .menu-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- Gallery page ---------- */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Contact page ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
.contact-info h3 { font-size: 20px; margin-bottom: 20px; }
.contact-info p { margin-bottom: 20px; font-size: 14.5px; color: var(--ink-soft); }
.contact-info p strong { display: block; color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; }
}

/* ---------- Form container (booking / contact / review) ---------- */
.form-container {
  max-width: 640px;
}

/* ---------- Testimonials wrap ---------- */
.testimonial-row--wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) {
  .testimonial-row--wrap { grid-template-columns: 1fr; }
}
