/* ─── Variables ─────────────────────────────────── */
:root {
  --ivory:       #FAF7F4;
  --ivory-dark:  #F0EAE3;
  --white:       #FFFFFF;
  --nude:        #D4B8A8;
  --nude-light:  #EDE0D4;
  --brown:       #7B5B3A;
  --brown-dark:  #4A3220;
  --charcoal:    #2C2218;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A3;
  --text:        #2C2218;
  --text-muted:  #9A7A65;
  --border:      #E8D5C4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --nav-h: 76px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Skip Link (accessibility) ────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--brown-dark);
  color: var(--gold-light);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ─── Scroll Reveal ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navbar ────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brown-dark);
  letter-spacing: 0.5px;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}
#navbar.scrolled .logo-main { color: var(--charcoal); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--gold); }
#navbar.scrolled .nav-links a:hover { color: var(--brown); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--brown-dark) !important;
  color: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ─── Hero ──────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-dark);
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 50, 32, 0.92) 0%,
    rgba(44, 34, 24, 0.75) 50%,
    rgba(123, 91, 58, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition-delay: 0.1s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  transition-delay: 0.25s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--nude);
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
  transition-delay: 0.4s;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--nude);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--nude), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ─── Buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--brown-dark);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ivory);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(250,247,244,0.4);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── Marquee ───────────────────────────────────── */
.marquee-bar {
  background: var(--charcoal);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nude);
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 0.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* UX-22: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

/* ─── Section Shared ────────────────────────────── */
.section { padding: 6rem 0; }
.section--dark { background: var(--brown-dark); }
.section--ivory { background: var(--ivory-dark); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 760px;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--brown);
}
.section-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Services ──────────────────────────────────── */
.services-category { margin-bottom: 3.5rem; }
.category-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--nude));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,34,24,0.1);
  border-color: var(--nude-light);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.service-duration { color: var(--text-muted); }
.service-price { color: var(--brown); }
.service-book {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition), letter-spacing var(--transition);
}
.service-book:hover { color: var(--brown); letter-spacing: 2px; }

.services-cta { text-align: center; margin-top: 3rem; }

/* ─── Process ───────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.process-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  transition-delay: calc(var(--i, 0) * 0.15s);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--nude);
  line-height: 1.7;
}
.process-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 4rem;
  flex-shrink: 0;
}

/* ─── About ─────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  transition-delay: 0.1s;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--nude-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder-content {
  text-align: center;
  color: var(--text-muted);
}
.image-placeholder-content span { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.image-placeholder-content small { font-size: 0.75rem; opacity: 0.7; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 90px;
  height: 90px;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  gap: 2px;
}

.about-text { transition-delay: 0.25s; }
.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown);
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.credential-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--nude);
  background: var(--ivory-dark);
  font-family: var(--font-b);
  font-weight: 400;
}

/* ─── Gallery ───────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.gallery-item {
  overflow: hidden;
}
.gallery-item img {
  transition: transform var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-placeholder {
  aspect-ratio: 3/4;
  background: var(--nude-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-display);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.02); }
.gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
}
.gallery-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.gallery-note a { color: var(--brown); border-bottom: 1px solid var(--nude); padding-bottom: 1px; }

/* ─── Gallery Carousel ─────────────────────────── */
.gallery-carousel { margin-bottom: 2rem; }
.gallery-carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.gallery-carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}
.gallery-carousel-card {
  flex-shrink: 0;
  overflow: hidden;
}
.gallery-carousel-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.gallery-carousel-card:hover img {
  transform: scale(1.03);
}
.gallery-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.gallery-carousel-arrows {
  display: flex;
  gap: 0.5rem;
}
.gallery-view-all {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  padding: 0.6rem 1.5rem;
}
.gallery-full { margin-bottom: 2rem; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--border);
}

.empty-state {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.88rem;
}

/* ─── Testimonials ──────────────────────────────── */
.testimonials-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.carousel-track-wrapper {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-track .testimonial-card {
  min-width: calc((100% - 3rem) / 3);
  flex-shrink: 0;
  box-sizing: border-box;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.carousel-arrows {
  display: flex;
  gap: 0.5rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--nude-light);
  border-color: var(--brown);
  color: var(--brown);
}
.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
  background: var(--white);
  border-color: var(--border);
  color: var(--charcoal);
}
.carousel-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.carousel-link:hover {
  color: var(--brown);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ─── FAQ ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--brown); }
.faq-question[aria-expanded="true"] { color: var(--brown); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
  font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 800px; padding-bottom: 1.25rem; }
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ─── Contact ───────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; }
.contact-item strong { display: block; font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--charcoal); }
.contact-item a:hover { color: var(--brown); }

.contact-hours { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.contact-hours h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--charcoal); }
.contact-hours ul { list-style: none; }
.contact-hours li { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); padding: 0.35rem 0; border-bottom: 1px dotted var(--border); }
.contact-hours li:last-child { border-bottom: none; }
.closed { color: var(--nude); font-style: italic; }

.contact-map iframe { width: 100%; }

/* ─── Footer ────────────────────────────────────── */
#footer {
  background: var(--brown-dark);
  color: var(--nude);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--nude);
  margin-top: 1rem;
  max-width: 240px;
}
.footer-brand .nav-logo { margin-bottom: 0; }
.footer-brand .logo-main { color: var(--nude); }
.footer-social { margin-top: 1.25rem; }
.footer-social a {
  color: var(--nude);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }

.footer-links h5, .footer-contact h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--nude);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--nude); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(212,184,168,0.15);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.78rem;
  color: rgba(212,184,168,0.5);
}

/* ─── Blog ──────────────────────────────────────── */
.blog-hero {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 1.5rem;
  background: var(--brown-dark);
  text-align: center;
}
.blog-hero .section-title { color: var(--ivory); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,34,24,0.08);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--nude-light);
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-date {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog-card-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.blog-card-link:hover { color: var(--brown); }

/* Single Blog Post */
.blog-post-hero {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 1.5rem;
  background: var(--brown-dark);
  text-align: center;
}
.blog-post-hero .section-title {
  color: var(--ivory);
  max-width: 720px;
  margin: 0 auto 1rem;
}
.blog-post-hero .blog-card-date {
  margin-bottom: 1rem;
}
.blog-post-cover {
  max-width: 820px;
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
}
.blog-post-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--border);
}
.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  min-height: 200px;
}
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}
.blog-post-content h2 { font-size: 1.6rem; }
.blog-post-content h3 { font-size: 1.3rem; }
.blog-post-content p { margin-bottom: 1.25rem; }
.blog-post-content img {
  max-width: 100%;
  border: 1px solid var(--border);
  margin: 1.5rem auto;
  display: block;
  height: auto;
  cursor: default;
}
.blog-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--ivory-dark);
  font-style: italic;
  color: var(--text-muted);
}
.blog-post-content a {
  color: var(--brown);
  border-bottom: 1px solid var(--nude);
}
.blog-post-content ul, .blog-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.blog-back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-back-link:hover { color: var(--brown); }

/* ─── Responsive ────────────────────────────────── */

/* Large screens / TVs — prevent content from stretching too wide */
@media (min-width: 1600px) {
  .container { max-width: 1280px; }
  .hero-content { max-width: 900px; }
  .blog-post-content { max-width: 780px; }
  #hero { min-height: 700px; }
  .testimonials-carousel { max-width: 1400px; margin: 0 auto; }
  .gallery-grid { max-width: 1280px; margin: 0 auto 2rem; }
  .blog-grid { max-width: 1280px; margin: 3rem auto 0; }
}

/* Desktop / small laptop */
@media (max-width: 1100px) {
  .carousel-track .testimonial-card { min-width: calc((100% - 3rem) / 3); }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
}

/* Tablet landscape */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: var(--nav-h); background: var(--ivory); padding: 2rem; gap: 1.5rem; z-index: 999; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--charcoal) !important; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 1px; height: 40px; margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
  .blog-post-content { padding: 2.5rem 1.5rem 4rem; }
  .blog-post-cover { margin: -1.5rem 1rem 0; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .section-header { margin-bottom: 3rem; }
  .carousel-track .testimonial-card { min-width: 100%; }
  .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
  .carousel-controls { margin-top: 1.25rem; }
  .testimonial-card { padding: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 2rem; }
  .blog-post-hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 2rem; }
  .contact-hours li { flex-direction: column; gap: 0.15rem; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .hero-scroll-hint { display: none; }

  .section-title { font-size: 1.8rem; }
  .section-desc { font-size: 0.88rem; }

  .footer-inner { grid-template-columns: 1fr; }
  .about-stats { gap: 1rem; }
  .about-stats .stat-number { font-size: 1.6rem; }
  .services-grid--multi { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }

  .testimonial-card p { font-size: 0.85rem; line-height: 1.65; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .gallery-caption { font-size: 0.7rem; }

  .blog-card-title { font-size: 1.1rem; }
  .blog-card-body { padding: 1.25rem; }
  .blog-card-excerpt { font-size: 0.82rem; }
  .blog-post-content { font-size: 0.95rem; padding: 2rem 1.25rem 3rem; }
  .blog-post-content h2 { font-size: 1.3rem; }
  .blog-post-content h3 { font-size: 1.1rem; }
  .blog-post-cover { margin: -1rem 0.5rem 0; }
  .blog-post-hero .section-title { font-size: 1.6rem; }

  .marquee-bar { padding: 0.65rem 0; }
  .marquee-track span { font-size: 0.6rem; }

  .faq-question { font-size: 0.92rem; padding: 1.1rem 0; }
  .faq-answer p { font-size: 0.85rem; }

  .process-step { padding: 1.25rem 1rem; }
  .step-number { font-size: 2.5rem; }
  .process-step h3 { font-size: 1rem; }

  .contact-map iframe { height: 280px; }
  .contact-item { gap: 0.75rem; }

  .footer-brand p { max-width: 100%; }
  .footer-bottom { font-size: 0.7rem; padding: 1rem 1.25rem; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; align-items: center; }
  .nav-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .blog-post-hero .section-title { font-size: 1.35rem; }
}
