/* ==========================================================================
   Hair Xpressions — Design System
   Plain CSS, no build step. Organized top to bottom:
   tokens → reset → layout → components → sections → responsive
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #faf7f3;
  --bg-alt: #f1eae0;
  --surface: #ffffff;
  --ink: #241f1b;
  --ink-soft: #5c5349;
  --ink-faint: #8a8074;
  --line: #e6dccc;
  --accent: #93273c;
  --accent-dark: #6c1c2c;
  --accent-tint: #f2dee2;
  --gold: #b08d4f;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

  --container: 1320px;
  --radius-xl: 48px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 30px 60px -30px rgba(36, 31, 27, 0.25);
  --shadow-tight: 0 10px 24px -12px rgba(36, 31, 27, 0.2);
  --shadow-glass: 0 8px 30px -10px rgba(36, 31, 27, 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .wrap { padding-inline: 40px; }
}

.section {
  padding-block: 88px;
}

@media (max-width: 767px) {
  .section { padding-block: 56px; }
}

.section--alt {
  background: var(--bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--accent-tint);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

.hero-full-content .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: none;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 52ch;
}

/* Colorful two-tone headline accent, used on light sections */
.accent-word {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-dark) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: var(--accent-tint);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ---------- Image placeholder (swap for real photography) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(120% 140% at 15% 0%, rgba(255,255,255,0.16), transparent 60%),
    linear-gradient(155deg, #3a2c25 0%, var(--accent-dark) 48%, #c17a5e 100%);
  isolation: isolate;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 6px);
  mix-blend-mode: overlay;
}

.ph::after {
  content: "X";
  position: absolute;
  right: -0.12em;
  bottom: -0.32em;
  font-family: var(--font-display);
  font-size: 9em;
  font-weight: 600;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.ph-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(36, 31, 27, 0.55);
  backdrop-filter: blur(6px);
  color: #f6efe8;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 1;
}

/* Real photography */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

/* ---------- Header / nav (floating pill, overlaps hero) ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: 20px;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 243, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: -1;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header.is-scrolled {
  position: fixed;
  padding-top: 0;
}

.no-hero .site-header {
  position: sticky;
}

.no-hero .site-header::before {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 8px 8px 8px;
  background: transparent;
  border-radius: 999px;
  box-shadow: none;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.is-scrolled .nav,
.no-hero .nav {
  background: var(--surface);
  box-shadow: var(--shadow-tight);
  padding: 8px 8px 8px 22px;
}

.logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--surface);
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-tight);
}

.site-header.is-scrolled .nav .logo,
.no-hero .nav .logo {
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 6px rgba(20, 14, 10, 0.35);
  transition: color 0.2s var(--ease);
}

.site-header.is-scrolled .nav-links a,
.no-hero .nav-links a {
  color: var(--ink-soft);
  text-shadow: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover {
  color: #fff;
}

.site-header.is-scrolled .nav-links a:hover,
.no-hero .nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: #fff;
}

.site-header.is-scrolled .nav-links a[aria-current="page"],
.no-hero .nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: none;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(20, 14, 10, 0.35);
}

.site-header.is-scrolled .nav-phone,
.no-hero .nav-phone {
  color: var(--ink);
  text-shadow: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0;
}

.site-header.is-scrolled .nav-toggle,
.no-hero .nav-toggle {
  border-color: var(--line);
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  margin-inline: auto;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background-color 0.25s var(--ease);
}

.site-header.is-scrolled .nav-toggle span,
.no-hero .nav-toggle span {
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
  background: var(--surface);
  border-radius: 20px;
  margin-top: 8px;
}

.mobile-panel.is-open {
  grid-template-rows: 1fr;
  box-shadow: var(--shadow-tight);
}

.mobile-panel-inner {
  overflow: hidden;
}

.mobile-panel ul {
  padding: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel a {
  display: block;
  padding: 12px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-phone { display: block; }
  .nav-toggle { display: none; }
  .mobile-panel { display: none; }
}

/* ---------- Hero (full-bleed) ---------- */
.hero-full {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  color: #fff;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

@media (max-width: 640px) {
  .hero-full { border-radius: 0 0 28px 28px; }
}

.hero-full-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-full-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-full-media img.is-active {
  opacity: 1;
}

.hero-full-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(30, 14, 16, 0.68) 0%, rgba(30, 14, 16, 0.5) 30%, rgba(30, 14, 16, 0.22) 58%, rgba(30, 14, 16, 0.05) 100%),
    linear-gradient(0deg, rgba(20, 10, 10, 0.4) 0%, rgba(20, 10, 10, 0.05) 42%, rgba(20, 10, 10, 0.18) 100%);
}

.hero-full-content {
  position: relative;
  padding-block: 130px 56px;
}

.hero-full-content h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 54px);
  max-width: 15ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-full-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
}

.hero-full-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
}

.hero-full-meta div span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 900px) {
  .hero-full { min-height: 86vh; }
}

.hero-full-content h1 .accent-line {
  display: block;
  background: linear-gradient(100deg, #f6dcb4 0%, var(--gold) 45%, #ffe9c7 75%, #f6dcb4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  max-width: 42ch;
}

.hero-tagline .accent {
  color: #f3c98a;
}

.hero-actions .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  line-height: 1;
}

.btn-cream {
  background: var(--accent-tint);
  color: var(--accent-dark);
}

.btn-cream:hover {
  background: #fff;
}

.btn-cream .btn-icon {
  background: rgba(147, 39, 60, 0.14);
}

/* Hero secondary CTA — translucent glass pill over the photo */
.hero-actions .btn-cream {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.hero-actions .btn-cream:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-cream .btn-icon {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* Floating info card */
.hero-card {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-glass);
  max-width: 420px;
}

@media (min-width: 1024px) {
  .hero-card { display: flex; }
}

.hero-card-slides {
  position: relative;
  width: 360px;
  height: 100px;
}

.hero-card-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.hero-card-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-card-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.hero-card-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.hero-card-dots span.is-active {
  background: var(--accent);
  width: 18px;
}

.hero-card-copy strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
}

.hero-card-copy strong .accent {
  color: var(--accent);
}

.hero-card-copy p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.hero-card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.hero-card-thumb {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: none;
  position: relative;
}

.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-thumb-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 8px;
  background: linear-gradient(0deg, rgba(20, 10, 8, 0.85), rgba(20, 10, 8, 0));
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Carousel controls — overlaid on the hero photo, bottom-left */
.hero-controls {
  position: absolute;
  left: 0;
  bottom: 28px;
  z-index: 3;
  width: 100%;
  pointer-events: none;
}

.hero-controls-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.hero-arrows button:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  transition: background 0.25s var(--ease), width 0.25s var(--ease);
}

.hero-dots button.is-active {
  background: #fff;
  width: 24px;
}

@media (max-width: 640px) {
  .hero-controls { display: none; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.services-more {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

/* ---------- Tab filter (services by category) ---------- */
.tab-filter {
  text-align: center;
}

.tab-filter .section-head {
  margin-inline: auto;
  text-align: center;
  max-width: 640px;
}

.tab-filter .section-head p {
  margin-inline: auto;
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.tab-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.tab-panels {
  text-align: left;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tab-panel.is-active {
  display: grid;
}

@media (min-width: 860px) {
  .tab-panel { grid-template-columns: repeat(3, 1fr); }
}

.tab-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 40px -26px rgba(36, 31, 27, 0.5);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.tab-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.tab-card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.tab-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.tab-card:hover .tab-card-media img {
  transform: scale(1.09);
}

.tab-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(15, 9, 7, 0.94) 0%, rgba(15, 9, 7, 0.55) 34%, rgba(15, 9, 7, 0.02) 60%),
    linear-gradient(180deg, rgba(15, 9, 7, 0.45) 0%, rgba(15, 9, 7, 0) 26%);
}

.tab-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.tab-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 22px 22px 24px;
}

.tab-card-body h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}

.tab-card-go {
  color: #f3c98a;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.tab-card:hover .tab-card-go {
  opacity: 1;
  transform: translateX(0);
}

.tab-card-body p {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  max-width: 32ch;
}

/* ---------- Process / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  border-top: none;
  padding-top: 0;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px dashed var(--accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-tint);
}

.step h3 {
  margin-top: 14px;
  font-size: 21px;
}

.step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Gallery (rounded card row, mirrors cinde's News & Media strip) ---------- */
.gallery-see-all {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.gallery-see-all:hover {
  color: var(--accent-dark);
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  flex: 0 0 min(280px, 70vw);
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  margin: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px;
  background: linear-gradient(0deg, rgba(20, 10, 8, 0.82), rgba(20, 10, 8, 0));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

/* ---------- Testimonials ---------- */
.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.testi-controls {
  display: flex;
  gap: 10px;
}

.testi-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.testi-controls button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  scroll-snap-align: start;
  flex: 0 0 min(360px, 84vw);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testi-card:nth-child(even) {
  margin-top: 28px;
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-quote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}

.testi-person {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

.testi-person div strong {
  display: block;
  font-size: 14.5px;
}

.testi-person div span {
  font-size: 12.5px;
  color: var(--ink-faint);
}

.testi-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-faint);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2c221c, var(--accent-dark));
  color: #fff;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .cta-band {
    grid-template-columns: 1.2fr auto;
  }
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 40px);
  max-width: 16ch;
}

.cta-band p {
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
  max-width: 48ch;
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Footer (light, multi-column) ---------- */
.site-footer {
  background: var(--bg-alt);
  color: var(--ink-soft);
  padding-block: 72px 32px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

@media (min-width: 860px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--ink-faint);
  max-width: 34ch;
}

.footer-tagline {
  display: inline-flex;
  margin-top: 20px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.footer-brand .btn {
  margin-top: 20px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-col h4 {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-faint);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-block: 64px 48px;
  border-bottom: none;
  background: var(--bg-alt);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

@media (max-width: 640px) {
  .page-hero { border-radius: 0 0 28px 28px; }
}

.page-hero .eyebrow { margin-bottom: 14px; }

.page-hero h1 {
  font-size: clamp(34px, 4.8vw, 52px);
  max-width: 20ch;
}

.page-hero p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 56ch;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--accent); }

/* ---------- Full services list ---------- */
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-row {
  background: var(--surface);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 2fr 3fr auto;
    gap: 32px;
  }
}

.service-row h3 {
  font-size: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.service-row h3 span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.service-row p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
}

.field .hint {
  font-size: 12.5px;
  color: var(--ink-faint);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}

.field.has-error input,
.field.has-error textarea {
  border-color: #b3402e;
}

.field-error {
  font-size: 12.5px;
  color: #b3402e;
  display: none;
}

.field.has-error .field-error {
  display: block;
}

.form-status {
  margin-top: 18px;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.is-success {
  display: block;
  background: #e9f1e6;
  color: #3a5c33;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-row {
  display: flex;
  gap: 18px;
}

.info-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-row h4 {
  font-size: 15.5px;
  font-family: var(--font-body);
  font-weight: 600;
}

.info-row p, .info-row a {
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--ink-soft);
  display: block;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table td {
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 500;
}

.map-ph {
  margin-top: 28px;
  aspect-ratio: 16/9;
}
