/* ============================================
   SALON MELISA — MAIN STYLESHEET
   Aesthetic: Luxury editorial · Black & Gold
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0c0a;
  --black-soft: #141210;
  --black-card: #1a1815;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale: #f5edd8;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #faf8f4;
  --white-off: #f0ece3;
  --gray: #888680;
  --gray-light: #ccc9c0;
  --gray-dark: #3a3935;
  --text-body: #dedad2;
  --text-muted: #8f8b82;
  --border: rgba(201,168,76,0.2);
  --border-subtle: rgba(255,255,255,0.07);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --nav-h: 80px;
  --container: 1140px;
  --radius: 4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* CONTAINER */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), border-bottom var(--transition);
}

.nav.scrolled {
  background: rgba(10,10,8,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

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



.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-nav {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-light);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 24px 32px;
  background: rgba(10,10,8,0.98);
  border-top: 1px solid var(--border);
}

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

.nav-mobile-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition);
}

.nav-mobile-link:hover { color: var(--white); }

.btn-mobile {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  padding: 14px 24px;
  border-radius: var(--radius);
  text-align: center;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}

.btn-primary.btn-large {
  font-size: 14px;
  padding: 18px 48px;
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  border: 1px solid var(--border);
  padding: 13px 36px;
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}

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

.btn-outline-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 13px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold-dim);
  color: var(--white);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header { margin-bottom: 60px; }

.section-header--light .section-title { color: var(--black); }
.section-header--light .section-sub { color: var(--gray-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black-soft);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
}

/* Decorative geometric pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 65%),
              linear-gradient(to right, rgba(10,10,8,0.95) 40%, rgba(10,10,8,0.5) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 32px 100px;
  max-width: 700px;
  padding-left: max(32px, calc((100vw - var(--container)) / 2 + 32px));
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 48px;
  max-width: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.trust-score {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1s 0.6s ease both;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--black-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-columns: 1px solid var(--border);
}

.intro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}

.intro-item:last-child { border-right: none; }

.intro-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.intro-desc {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .intro-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-item:nth-child(2) { border-right: none; }
  .intro-item:nth-child(3) { border-top: 1px solid var(--border); }
  .intro-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 120px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-bottom: 56px;
}

.gallery-item { overflow: hidden; border-radius: var(--radius); }

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(10,10,8,0.75) 0%, transparent 100%);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-label { opacity: 1; }

.gallery-cta { text-align: center; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall, .gallery-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gallery-placeholder { height: 200px; }
}

/* ============================================
   SERVICES PREVIEW (dark bg)
   ============================================ */
.services-preview {
  padding: 120px 0;
  background: var(--gold-pale);
}

.services-preview .section-eyebrow { color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--white-off);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), transform var(--transition);
  display: block;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
}

.services-cta { text-align: center; }

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

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

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: 120px 0;
  background: var(--black-soft);
}

.reviews-platforms {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-card);
}

.platform-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.platform-stars { color: var(--gold); font-size: 12px; }

.platform-score {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}

.platform-booksy .platform-name { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.review-card:hover { border-color: var(--border); }

.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--white-off);
  line-height: 1.6;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}

.review-source {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-platforms { flex-direction: column; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black-soft);
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(201,168,76,0.025) 80px,
    rgba(201,168,76,0.025) 81px
  );
}

.page-hero .container { position: relative; z-index: 1; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.services-detail {
  padding: 100px 0;
  background: var(--black);
}

.service-group {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-subtle);
}

.service-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-group-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
}

.service-group-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.service-group-header h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 40px;
  transition: padding-left var(--transition);
}

.service-item:hover { padding-left: 12px; }

.service-item-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.service-item-info p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ============================================
   STORY SECTION (About page)
   ============================================ */
.story-section {
  padding: 100px 0;
  background: var(--black);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text .section-eyebrow { color: var(--gold); }

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.story-text h2 em { font-style: italic; color: var(--gold-light); }

.story-text p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-visual {
  position: relative;
}

.story-photo-placeholder {
  width: 100%;
  height: 420px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-photo-placeholder span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-accent-block {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--gold);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
}

.accent-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.accent-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,10,8,0.6);
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-accent-block { left: 16px; }
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 100px 0;
  background: var(--gold-pale);
}

.values-section .section-eyebrow { color: var(--gold); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.value-card {
  background: var(--white-off);
  padding: 40px 28px;
}

.value-icon {
  display: block;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
}

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

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 100px 0;
  background: var(--black);
}

.team-photo-block {
  text-align: center;
}

.team-placeholder {
  width: 100%;
  max-width: 800px;
  height: 440px;
  margin: 0 auto 20px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.team-caption {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================
   CONTACT & MAP
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--black-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-block {
  margin-bottom: 36px;
}

.contact-block h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-block p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.social-link {
  font-size: 14px;
  color: var(--gold-light);
  transition: color var(--transition);
}

.social-link:hover { color: var(--white); }

.map-container { overflow: hidden; border-radius: var(--radius); }

.map-placeholder {
  width: 100%;
  height: 420px;
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-card);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.footer-logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-book {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-light);
  transition: color var(--transition);
}

.footer-book:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-privacy {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-privacy:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   UTILITIES & RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-content { padding: 120px 20px 80px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .trust-divider { display: none; }
  .hero-scroll { display: none; }

  section { padding: 80px 0; }
  .gallery-section, .services-preview, .reviews-section, .cta-section { padding: 80px 0; }
}

/* ============================================
   NEW HERE SECTION
   ============================================ */
.new-here-section {
  padding: 100px 0;
  background: var(--black-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.new-here-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.new-here-text .section-eyebrow { color: var(--gold); }

.new-here-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.new-here-text h2 em { font-style: italic; color: var(--gold-light); }

.new-here-text p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.8;
}

.quick-service {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.quick-service:first-child { border-top: 1px solid var(--border-subtle); }

.qs-icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.quick-service h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.quick-service p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .new-here-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-section {
  padding: 100px 0;
  background: var(--black-card);
  border-top: 1px solid var(--border);
}

.why-section .section-title em { font-style: italic; color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.why-item {
  background: var(--black);
  padding: 40px 28px;
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition);
}

.why-item:hover { border-color: var(--border); }

.why-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

/* ============================================
   REVIEWS NOTE (no fake quotes)
   ============================================ */
.reviews-cta-block {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-card);
  transition: border-color var(--transition);
  cursor: pointer;
}

.platform-badge:hover { border-color: var(--gold); }

.platform-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.platform-stars { color: var(--gold); font-size: 12px; }

.platform-score {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}

.platform-booksy .platform-name { color: var(--gold); }

.reviews-note {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 720px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

/* ============================================
   CTA LOCATION + PHONE
   ============================================ */
.cta-location {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.cta-phone {
  color: var(--gold-light);
  transition: color var(--transition);
}

.cta-phone:hover { color: var(--white); }

/* ============================================
   FOOTER ADDITIONS
   ============================================ */
.footer-phone {
  display: block;
  font-size: 15px;
  color: var(--gold-light);
  margin: 6px 0 12px;
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--white); }

.footer-hours {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-spanish {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-top: 8px;
}

/* ============================================
   OWNER SECTION
   ============================================ */
.owner-section {
  padding: 100px 0;
  background: var(--black-soft);
}

.owner-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.owner-photo {
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.owner-text .section-eyebrow { color: var(--gold); }

.owner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.owner-text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .owner-grid { grid-template-columns: 1fr; gap: 40px; }
  .owner-photo { height: 360px; }
}

/* ============================================
   CONTACT ADDITIONS
   ============================================ */
.contact-map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gold-light);
  transition: color var(--transition);
}

.contact-map-link:hover { color: var(--white); }

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold-light);
  transition: color var(--transition);
}

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

/* ============================================
   LOGO — NAV & FOOTER
   ============================================ */








.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 1px 6px rgba(201,168,76,0.15));
}

@media (max-width: 768px) {
  
  
  
}

/* ============================================
   BEFORE & AFTER SECTION
   ============================================ */
.before-after-section {
  padding: 100px 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.ba-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-card);
}

.ba-item img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--black-card);
  transition: transform 0.6s ease;
}

.ba-item:hover img { transform: scale(1.03); }

.ba-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(10,10,8,0.85) 0%, transparent 100%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

@media (max-width: 640px) {
  .ba-item img { max-height: 280px; }
}

/* ============================================
   GALLERY — SINGLE SHOTS (simplified 3-col)
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 280px;
}

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

.gallery-item:hover img { transform: scale(1.04); }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(10,10,8,0.8) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-label { opacity: 1; }

.gallery-cta { text-align: center; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
}

/* ============================================
   CTA CONTACT ROW
   ============================================ */
.cta-contact-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.cta-contact-link {
  color: var(--text-muted);
  transition: color var(--transition);
}

.cta-contact-link:hover { color: var(--gold-light); }

.cta-contact-sep { color: var(--border); }

/* ============================================
   FOOTER SERVICES BLURB
   ============================================ */
.footer-services-blurb {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 260px;
}

/* Remove old text-based footer logo rules if any */
.footer-logo, .footer-logo-sub { display: none; }

.hero-services-line {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.9;
}

/* ============================================
   NAV LOGO LOCKUP — DEFINITIVE
   ============================================ */
.nav-logo {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px !important;
  width: 58px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 4px rgba(201,168,76,0.2));
}

.nav-logo-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  display: block;
}

.nav-logo-sub-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
}

@media (max-width: 768px) {
  .nav-logo-img { height: 44px !important; width: 44px !important; }
  .nav-logo-name { font-size: 16px; }
}

/* ============================================
   ALIGNMENT — Logo left edge = text left edge
   Same container padding across nav and content
   ============================================ */

/* Nav inner and container share same max-width and padding */
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* Hero content matches nav left edge exactly */
.hero-content,
.hero-content--centered {
  padding-left: 32px !important;
  max-width: var(--container) !important;
  margin-left: 0 !important;
  width: 100% !important;
}

/* Interior pages — container aligns with nav */
.page-hero .container,
.story-section .container,
.services-detail .container,
.contact-section .container,
.values-section .container,
.team-section .container,
.owner-section .container {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* Mobile — consistent 20px on all */
@media (max-width: 768px) {
  .nav-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-content,
  .hero-content--centered {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .page-hero .container,
  .story-section .container,
  .services-detail .container,
  .contact-section .container,
  .values-section .container,
  .team-section .container,
  .owner-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ============================================
   LOGO ALIGNMENT FIX — DEFINITIVE
   Force nav-inner left padding to match hero
   ============================================ */
.nav-inner {
  padding-left: 32px !important;
  padding-right: 32px !important;
  max-width: 100% !important;
  width: 100%;
  box-sizing: border-box;
}

/* Hero must use same left padding as nav */
.hero-content,
.hero-content--centered {
  padding-left: 32px !important;
  padding-right: 32px !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* Remove any container centering that shifts hero content */
.hero > .hero-content,
.hero > .hero-content--centered {
  margin-left: 0 !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .nav-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .hero-content,
  .hero-content--centered {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ============================================
   LOGO SIZE — 20% INCREASE (96px)
   ============================================ */
.nav-logo-img {
  height: 96px !important;
  width: 96px !important;
}

.nav-logo-name {
  font-size: 24px !important;
}

.nav-logo-sub-text {
  font-size: 11px !important;
}

/* Nav height grows to fit */
.nav-inner {
  min-height: 112px !important;
  align-items: center !important;
}

/* Mobile — keep 72px on phone */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 72px !important;
    width: 72px !important;
  }
  .nav-logo-name { font-size: 19px !important; }
  .nav-inner { min-height: 88px !important; }
}

/* ============================================
   MOBILE HERO — ELIMINATE DEAD SPACE
   ============================================ */
@media (max-width: 900px) {
  .hero-content,
  .hero-content--centered {
    padding-top: 24px !important;
  }
}
