/*
Theme Name: Twists & Locs Salon
Theme URI: https://salon.mrvaris.com
Author: Manus
Description: Custom luxury theme for Twists & Locs Salon, Coral Springs FL
Version: 2.0
*/

/* =====================================================
   DESIGN SYSTEM
   Body: DM Sans (300,400,500,600)
   Headings: Cormorant Garamond (300,400,500,600 + italic)
   Background: oklch(0.99 0.004 85) ≈ #faf9f7 (warm cream)
   Text: oklch(0.18 0.008 45) ≈ #2a2118 (warm near-black)
   Accent: rgb(153,117,179) = #9975b3 (purple)
   Accent2: #a67c52 (warm gold/brown for decorators)
   Border: #e8e8e8
   Dark section: #1a1a1a
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

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

:root {
  --cream: #faf9f7;
  --cream-dark: #f2f0eb;
  --text: #2a2118;
  --text-light: #6b6259;
  --text-muted: #9e9590;
  --accent: #9975b3;
  --accent-hover: #7d5d99;
  --accent-light: rgba(153,117,179,0.12);
  --gold: #a67c52;
  --border: #e8e8e8;
  --border-light: #f0eeea;
  --dark: #1a1a1a;
  --dark-2: #242424;
  --white: #ffffff;
  --font-body: 'DM Sans', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { width: 100%; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1rem; letter-spacing: 0.08em; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 1.5px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(153,117,179,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-content { padding: 4rem 0; }

.hero-location {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-location::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero h1 em { font-style: italic; font-weight: 300; }

.hero-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-divider {
  width: 3rem;
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-images {
  position: relative;
  height: 580px;
}
.hero-img-main {
  position: absolute;
  right: 0;
  top: 2rem;
  width: 72%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.hero-img-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* =====================================================
   ABOUT PREVIEW (Homepage)
   ===================================================== */
.about-preview {
  background: var(--cream-dark);
  padding: 7rem 0;
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.about-quote-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  max-width: 260px;
  border-radius: 2px;
}
.about-quote-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.about-quote-attr {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.about-content .eyebrow { margin-bottom: 1.5rem; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.95rem; }
.about-features { margin: 2rem 0; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-light);
}
.about-feature::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.6rem;
}

/* =====================================================
   SERVICES PREVIEW (Homepage)
   ===================================================== */
.services-preview { padding: 7rem 0; }
.services-preview-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-preview-header .eyebrow { margin-bottom: 1rem; }
.services-preview-header h2 { margin: 0; }
.services-preview-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.services-preview-header-right p { color: var(--text-light); font-size: 0.9rem; text-align: right; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.service-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card:hover { background: var(--cream-dark); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.5rem; }
.service-price {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =====================================================
   BOOKING CTA SECTION
   ===================================================== */
.booking-cta {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.booking-cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.booking-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.booking-cta .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.booking-cta .eyebrow::before { background: var(--accent); }
.booking-cta h2 { color: var(--white); margin-bottom: 1.5rem; }
.booking-cta p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }
.booking-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.booking-phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 300;
}
.booking-phone:hover { color: var(--accent); }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-us { padding: 7rem 0; background: var(--cream-dark); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-us-features { display: flex; flex-direction: column; gap: 2.5rem; }
.why-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.why-feature-icon {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.why-feature h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.why-feature p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }
.why-us-img { position: relative; }
.why-us-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { padding: 7rem 0; }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .eyebrow { justify-content: center; margin-bottom: 1rem; }
.testimonials-header .eyebrow::before { display: none; }
.testimonials-rating {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonial-card {
  background: var(--cream-dark);
  padding: 2.5rem;
  border-radius: 2px;
  border: 1px solid var(--border-light);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 500; font-size: 0.875rem; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }

/* =====================================================
   GALLERY PREVIEW (Homepage)
   ===================================================== */
.gallery-preview { padding: 7rem 0; background: var(--cream-dark); }
.gallery-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.gallery-preview-header .eyebrow { margin-bottom: 0.75rem; }
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-grid-home img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s, opacity 0.3s;
}
.gallery-grid-home img:hover { transform: scale(1.02); opacity: 0.9; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg-text {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 300;
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero-accent {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}
.page-hero p { color: var(--text-light); max-width: 560px; font-size: 1rem; line-height: 1.7; }

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.services-page { padding: 5rem 0; }
.service-category { margin-bottom: 5rem; }
.service-category-header {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.service-category-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.service-category-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.service-category-header p { color: var(--text-light); font-size: 0.875rem; }
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 240px 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.service-row:hover { background: var(--cream-dark); padding-left: 1rem; padding-right: 1rem; margin: 0 -1rem; }
.service-row-num { font-family: var(--font-display); font-size: 0.75rem; color: var(--text-muted); }
.service-row-name { font-weight: 500; font-size: 0.95rem; }
.service-row-duration { font-size: 0.8rem; color: var(--text-muted); }
.service-row-price { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--text); white-space: nowrap; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
  margin-top: var(--nav-height);
}
.about-hero-content {
  padding: 6rem 4rem 6rem 2rem;
  max-width: 600px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-image { position: relative; overflow: hidden; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.about-stat-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 2px;
}
.about-stat-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.about-stat-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.about-who-we-are {
  padding: 7rem 0;
  background: var(--cream-dark);
}
.about-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-stats-row {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat-item { text-align: center; }
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-principles { padding: 7rem 0; }
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.principle-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.principle-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.principle-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.principle-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

.team-section { padding: 7rem 0; background: var(--cream-dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.team-card-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-card-role { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.team-card-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* =====================================================
   GALLERY PAGE
   ===================================================== */
.gallery-page { padding: 3rem 0 7rem; }
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.gallery-filter-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: var(--white); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; }

/* =====================================================
   BLOG PAGE
   ===================================================== */
.blog-page { padding: 3rem 0 7rem; }
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  background: var(--cream-dark);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.blog-featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.blog-featured-eyebrow { margin-bottom: 1rem; }
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-category-tag {
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.blog-featured h2 { font-size: 2rem; margin-bottom: 1rem; }
.blog-featured p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }

.blog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}
.blog-filter-btn {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.blog-card { display: block; text-decoration: none; color: inherit; }
.blog-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img { transform: scale(1.02); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.3; }
.blog-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.blog-read-more {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-card:hover .blog-read-more { gap: 0.75rem; }

.blog-newsletter {
  background: var(--cream-dark);
  padding: 5rem 0;
  margin-top: 5rem;
  text-align: center;
}
.blog-newsletter h2 { margin-bottom: 1rem; }
.blog-newsletter p { color: var(--text-light); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border);
  border-right: none;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  border-radius: 2px 0 0 2px;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0 2px 2px 0;
}
.newsletter-btn:hover { background: var(--accent-hover); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page { padding: 5rem 0 7rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.contact-info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:first-child { border-top: 1px solid var(--border-light); }
.contact-info-value { font-size: 1.1rem; color: var(--text); margin-bottom: 0.25rem; }
.contact-info-value a { color: inherit; }
.contact-info-value a:hover { color: var(--accent); }
.contact-info-note { font-size: 0.8rem; color: var(--text-muted); }
.contact-hours { margin-top: 2rem; }
.contact-hours-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-light);
}
.hours-row.today { font-weight: 600; color: var(--accent); }

.contact-form-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-form-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item { margin-bottom: 0.75rem; }
.footer-contact-label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.25rem; }
.footer-contact-value { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-value a { color: inherit; }
.footer-contact-value a:hover { color: var(--white); }
.footer-hours { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* =====================================================
   CTA BANNER (bottom of inner pages)
   ===================================================== */
.cta-banner {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.75rem; }
.cta-banner h3 { color: var(--white); font-size: 2rem; margin-bottom: 2rem; }

/* =====================================================
   SINGLE BLOG POST
   ===================================================== */
.single-post { padding: 5rem 0 7rem; }
.single-post-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.single-post-header { margin-bottom: 3rem; }
.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.single-post-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.single-post-featured {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 3rem;
}
.single-post-content { font-size: 1rem; line-height: 1.85; color: var(--text-light); }
.single-post-content h2 { color: var(--text); margin: 2.5rem 0 1rem; font-size: 1.8rem; }
.single-post-content h3 { color: var(--text); margin: 2rem 0 0.75rem; font-size: 1.4rem; }
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content ul, .single-post-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.single-post-content li { margin-bottom: 0.5rem; }
.single-post-content strong { color: var(--text); font-weight: 600; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: auto; padding-top: calc(var(--nav-height) + 3rem); }
  .hero-images { height: 400px; }
  .hero-img-main { width: 80%; height: 380px; }
  .hero-img-float { width: 45%; height: 220px; }
  .about-preview-inner, .why-us-inner, .about-who-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .blog-featured { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-hero-split { grid-template-columns: 1fr; }
  .about-hero-content { padding: 4rem 2rem; max-width: none; margin: 0; }
  .booking-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-preview-header { grid-template-columns: 1fr; }
  .services-preview-header-right { align-items: flex-start; }
  .services-preview-header-right p { text-align: left; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-principles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-left, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .section-pad { padding: 4rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: auto 1fr auto; }
  .service-row-duration { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: fit-content; }
  .about-quote-card { position: static; margin-top: 1.5rem; max-width: none; }
  .booking-cta-inner { gap: 2rem; }
  .gallery-preview-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}
