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

:root {
  --ink: #1a1612;
  --ink-soft: #3d3530;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d4;
  --gold: #c4a574;
  --gold-light: #d4bc94;
  --white: #faf8f5;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

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

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 165, 116, 0.15);
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-phone,
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-phone {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.5);
}

.btn-phone:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-book {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-book:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  width: 100%;
  order: 4;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196, 165, 116, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(196, 165, 116, 0.08) 0%, transparent 50%),
    var(--ink);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(196, 165, 116, 0.03) 80px,
    rgba(196, 165, 116, 0.03) 81px
  );
}

.hero-inner {
  position: relative;
  max-width: 720px;
  text-align: center;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 165, 116, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 2.5rem;
}

.hero-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-rating strong {
  color: var(--cream);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */

.section {
  padding: 6rem 1.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.section-header {
  max-width: 1140px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-sub {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* About */

.about {
  background: var(--cream);
}

.section-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.section-body .lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.section-body p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.highlights {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.highlights li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Services */

.services {
  background: var(--white);
}

.service-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(196, 165, 116, 0.35);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.925rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Reviews */

.reviews {
  background: var(--ink);
  color: var(--cream);
}

.reviews .section-header h2 {
  color: var(--cream);
}

.reviews .section-sub {
  color: rgba(245, 240, 232, 0.55);
}

.review-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 165, 116, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.review-card p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.85);
  flex: 1;
  font-style: italic;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 165, 116, 0.12);
}

.review-card cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--cream);
}

.review-card footer span {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
}

/* Contact */

.contact {
  background: var(--cream);
}

.contact-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info address {
  font-style: normal;
  margin: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.contact-actions .btn {
  min-width: 140px;
  text-align: center;
}

.contact-phone a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}

.contact-phone a:hover {
  color: var(--gold);
}

.hours {
  margin: 2rem 0 2.5rem;
}

.hours h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hours dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  font-size: 0.925rem;
}

.hours dt {
  color: var(--ink-soft);
}

.hours dd {
  font-weight: 500;
}

.contact-map {
  border: 1px solid var(--cream-dark);
  min-height: 360px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

.service-card p {
  font-size: 0.925rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.service-price {
  margin-top: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  font-size: 0.9rem !important;
}

/* Booking */

.booking {
  background: var(--white);
}

.booking-intro-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.booking-intro-block .lead {
  margin-bottom: 2rem;
}

.booking-intro-block .price-list {
  text-align: left;
  margin-bottom: 2rem;
}

.btn-open-booking {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 1rem 2rem;
}

/* Booking dialog */

.booking-dialog {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.booking-dialog[hidden] {
  display: none;
}

.booking-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.75);
  backdrop-filter: blur(4px);
}

.booking-dialog-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.booking-dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
  background: var(--ink);
  color: var(--cream);
}

.booking-dialog-header .eyebrow {
  color: var(--gold);
}

.booking-dialog-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream);
  margin-top: 0.25rem;
}

.booking-dialog-header .modal-close {
  color: var(--cream);
  position: static;
}

.booking-dialog .booking-form {
  padding: 1.5rem;
  background: var(--cream);
  border: none;
}

.booking-layout {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.booking-intro .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 1rem 0 1.5rem;
  line-height: 1.75;
}

.price-list {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.price-list h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.price-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.925rem;
  color: var(--ink-soft);
}

.price-list li span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.booking-panel {
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.booking-steps span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
}

.booking-form {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 2rem;
}

.form-group {
  border: none;
  margin-bottom: 1.5rem;
}

.form-group legend,
.form-group > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink-soft);
  opacity: 0.7;
}

.service-options {
  display: grid;
  gap: 0.75rem;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.service-option .option-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.option-price {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}

.stylist-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stylist-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.stylist-option:hover,
.service-option:hover {
  border-color: var(--gold);
}

.stylist-option.selected,
.service-option.selected {
  border-color: var(--gold);
  background: rgba(196, 165, 116, 0.08);
}

.stylist-option input,
.service-option input {
  accent-color: var(--gold);
}

.stylist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.stylist-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stylist-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.stylist-role {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.slots-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0.75rem;
}

.slots-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.slots-legend span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.dot-available {
  background: var(--white);
  border: 2px solid var(--gold);
}

.dot-booked {
  background: var(--cream-dark);
  border: 2px solid var(--cream-dark);
}

.booking-summary-card {
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-summary-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--cream);
}

.booking-summary-card dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.booking-summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.booking-summary-card dt {
  color: rgba(245, 240, 232, 0.55);
}

.booking-summary-card dd {
  font-weight: 500;
  text-align: right;
}

.summary-total {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(196, 165, 116, 0.25);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

.summary-total strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.option-title {
  font-weight: 500;
  flex: 1;
}

.option-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form input[type="date"],
.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.slots-hint {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 0.5rem;
}

.time-slot.available {
  background: var(--white);
  border: 2px solid var(--gold);
}

.time-slot.available:hover {
  background: rgba(196, 165, 116, 0.12);
}

.time-slot.booked {
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  color: var(--ink-soft);
  opacity: 0.55;
  cursor: not-allowed;
}

.time-slot {
  padding: 0.65rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.time-slot.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--cream-dark);
}

.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--ink);
}

/* Booking modal */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 22, 18, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.booking-modal[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.booking-modal-content {
  position: relative;
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  border: 1px solid var(--cream-dark);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}

.booking-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#booking-summary {
  background: var(--cream);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 1.5rem;
  border: 1px solid var(--cream-dark);
  overflow-x: auto;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-actions .btn {
  text-align: center;
}

/* Floating book button (mobile) */

.fab-book {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  padding: 0.75rem 1.1rem;
  border-radius: 100px;
  background: var(--gold);
  color: var(--ink);
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, background 0.2s;
}

.fab-book:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: rgba(245, 240, 232, 0.5);
  padding: 1.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 500;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-book {
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 2px;
}

.footer-book:hover {
  background: var(--gold-light);
}

.site-footer a:hover {
  color: var(--gold-light);
}

/* Floating book button - see above */

/* Responsive */

@media (max-width: 900px) {
  .section-grid,
  .service-grid,
  .review-grid,
  .contact-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .section-grid {
    gap: 2rem;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-top: 1px solid rgba(196, 165, 116, 0.15);
    padding: 0.5rem 0 1rem;
    width: auto;
    order: unset;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--cream);
    font-weight: 500;
  }

  .nav-links li:first-child a {
    color: var(--gold);
    font-weight: 600;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: relative;
  }

  .btn-phone,
  .btn-book {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 1101px) {
  .nav-links {
    order: 0;
    width: auto;
    margin-left: 1.5rem;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 768px) {
  .fab-book {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stylist-options {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .hero {
    min-height: 90svh;
  }

  .section {
    padding: 4rem 1.25rem;
  }
}
