/* ═══════════════════════════════════════════
   AMY WALKER HAIR — THEME CSS v1.4.0
   ═══════════════════════════════════════════ */

:root {
  --sage: #6B7F5E;
  --sage-light: #8FA67E;
  --sage-pale: #D5DDCF;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --warm-white: #FDFCFA;
  --stone: #B8A99A;
  --stone-light: #D4C8BB;
  --taupe: #8C7B6B;
  --blush: #C9918A;
  --blush-light: #E8C4BF;
  --blush-pale: #F5E6E3;
  --honey: #D4A574;
  --honey-light: #E8C9A8;
  --charcoal: #2E2A26;
  --text: #3D3832;
  --text-light: #6B6259;
  --border: #E0D8CE;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', 'Segoe UI', sans-serif;

  --nav-height: 80px;
  --section-pad: clamp(60px, 10vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ANNOUNCEMENT BANNER ── */
.announcement {
  background: var(--sage);
  color: var(--cream);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

.announcement span {
  display: inline-block;
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(46, 42, 38, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  font-weight: 300;
  color: var(--sage);
  font-style: italic;
}

.nav-logo-icon {
  width: 26px;
  height: 26px;
  color: var(--sage);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  border-radius: 0;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  background: var(--sage);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.15em;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: var(--charcoal) !important;
  color: var(--cream) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

@media (max-width: 768px) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FAF7F2;
  }
  .nav-toggle { display: flex; z-index: 10001; position: relative; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    background: #FAF7F2;
    padding: 100px 2rem 3rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; color: var(--charcoal); }
  .nav-logo-icon { width: 20px; height: 20px; }
  .nav-logo { font-size: 1.2rem; }
  .hero-botanical { display: none; }
  .about-image-accent { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .scroll-indicator { display: none; }
  .contact-hours .day, .contact-hours .time { font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.5;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-out forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46, 42, 38, 0.75) 0%,
    rgba(46, 42, 38, 0.4) 40%,
    rgba(107, 127, 94, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-light);
  animation: fade-down 1s ease 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fade-up 1s ease 0.4s both;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-pale);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 247, 242, 0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fade-up 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 1s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--sage);
  color: var(--cream);
  border: 1px solid var(--sage);
}

.btn-primary:hover {
  background: var(--cream);
  color: var(--sage);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.35);
}

.btn-outline:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: rgba(250, 247, 242, 0.6);
}

.hero-botanical {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 242, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fade-up 1s ease 1.2s both;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── ABOUT ── */
.about {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image { position: relative; }

.about-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-frame:hover img { transform: scale(1.03); }

.about-image-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--sage-pale);
  border-radius: 2px;
  z-index: -1;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.about-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sage);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
  .about-image { order: -1; max-width: 100%; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-number { font-size: 1.8rem; }
}

/* ── GALLERY ── */
.gallery {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  padding: 0 24px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,42,38,0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-item-label {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 12px; gap: 8px; }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-header { padding: 0 16px; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(46, 42, 38, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: none;
  border: none;
}

.lightbox-close:hover { transform: rotate(90deg); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── BLOG ── */
.blog {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.blog-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  border-color: var(--sage-pale);
  box-shadow: 0 8px 30px rgba(107, 127, 94, 0.08);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-link {
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .blog-inner { padding: 0 16px; }
  .blog-card-image { aspect-ratio: 16/9; }
}

/* ── SERVICES ── */
.services {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--sage-pale);
  box-shadow: 0 8px 30px rgba(107, 127, 94, 0.08);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--sage);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.service-list { list-style: none; }

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.service-item:last-child { border-bottom: none; }

.service-name { color: var(--text); font-weight: 400; }

.service-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage);
  white-space: nowrap;
  margin-left: 12px;
}

.service-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1.2rem;
  font-style: italic;
}

/* ── BOOKING ── */
.booking {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 127, 94, 0.15), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201, 145, 138, 0.1), transparent 60%);
}

.booking-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.booking .section-eyebrow { color: var(--sage-light); }
.booking .section-title { color: var(--cream); }
.booking .section-title em { color: var(--sage-pale); }

.booking-text {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.booking-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(107, 127, 94, 0.15);
  border: 1px solid rgba(107, 127, 94, 0.3);
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-pale);
  margin-bottom: 2rem;
}

.booking-coming-soon .dot {
  width: 6px;
  height: 6px;
  background: var(--sage-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.booking-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-top: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.booking-phone:hover { color: var(--sage-light); }

.booking-phone-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
  margin-top: 0.5rem;
}



/* ── CONTACT ── */
.contact {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.contact-info h3:first-of-type { margin-top: 0; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--sage);
  margin-top: 2px;
}

.contact-hours { list-style: none; }

.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.contact-hours li:last-child { border-bottom: none; }
.contact-hours .day { font-weight: 500; color: var(--text); }
.contact-hours .time { color: var(--text-light); }

.contact-map {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 2px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
  filter: saturate(0.6) contrast(1.1);
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .contact-map { min-height: 280px; }
  .services-inner { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .booking-inner { padding: 0 20px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.5);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250, 247, 242, 0.35);
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 50%;
  color: rgba(250, 247, 242, 0.5);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--sage);
  color: var(--sage-light);
  background: rgba(107, 127, 94, 0.1);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

/* ── BLOG PAGE ── */
.blog-page-hero {
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 50px;
  background: var(--warm-white);
}

.blog-page-posts {
  background: var(--cream);
  padding: 0 0 var(--section-pad);
}

.blog-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.blog-grid-all {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 580px) {
  .blog-grid-all { grid-template-columns: 1fr; }
  .blog-page-inner { padding: 0 16px; }
}

/* ── SINGLE POST ── */
.single-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.single-meta-top {
  margin-bottom: 1rem;
}

.single-meta-top time {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.single-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0;
}

.single-title em {
  font-weight: 400;
  font-style: italic;
  color: var(--sage);
}

.single-featured {
  max-width: 420px;
  margin: 0 auto 3rem;
  position: relative;
  padding: 0;
}

.single-featured::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--sage-pale);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.single-featured img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.single-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  max-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.single-hero-no-img {
  background: var(--charcoal);
  height: auto;
  min-height: 0;
  padding: calc(var(--nav-height) + 40px) 0 60px;
  align-items: center;
  justify-content: center;
}

.single-hero-bg {
  position: absolute;
  inset: 0;
}

.single-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.5;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,42,38,0.85) 0%, rgba(46,42,38,0.2) 60%, transparent 100%);
}

.single-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px) 3rem;
  width: 100%;
}

.single-hero-no-img .single-hero-content {
  padding-bottom: 0;
  text-align: center;
}

.single-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.single-hero h1 em {
  font-weight: 400;
  color: var(--sage-pale);
}

/* Article */
.single-article {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}

.single-article-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.single-meta {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.single-meta time {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.single-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.single-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.single-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.single-content img {
  border-radius: 2px;
  margin: 2rem 0;
  width: 100%;
  height: auto;
}

.single-content ul,
.single-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.single-content li {
  margin-bottom: 0.4rem;
}

.single-content strong {
  font-weight: 600;
  color: var(--text);
}

.single-content a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.single-content a:hover {
  color: var(--charcoal);
}

/* CTA at bottom of post */
.single-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.single-cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.2rem;
}

/* Related posts */
.single-related {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.single-related-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.single-related h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .single-hero { height: 40vh; min-height: 260px; }
  .single-hero-content { padding: 0 20px 2rem; }
  .single-article-inner { padding: 0 20px; }
  .single-related-inner { padding: 0 16px; }
}

/* ── WP ADMIN BAR FIX ── */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
