/*
Theme Name: Gilded Mane
Theme URI: https://gildedmanebarbershop.com
Author: Gilded Mane Barbershop
Author URI: https://gildedmanebarbershop.com
Description: Dark & luxurious custom theme for Gilded Mane Barbershop — Keene, NH. Black and white with deep burgundy accents, heraldic branding, and GlossGenius booking integration.
Version: 1.0.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gilded-mane
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ============================================
   GILDED MANE — Black & White + Burgundy
   ============================================ */
:root {
  --burgundy: #8B1A1A;
  --burgundy-light: #A52A2A;
  --burgundy-dark: #6B1010;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-card: #161616;
  --dark-border: #222222;
  --white: #FFFFFF;
  --cream: #F5F2ED;
  --text-primary: #F0EDE8;
  --text-secondary: #C8C4BE;
  --text-muted: #9E9A94;
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--white); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--burgundy-light); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAVIGATION ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  letter-spacing: 3px; text-transform: uppercase;
}

/* WP Menu */
.nav-menu,
.nav-menu ul { list-style: none; margin: 0; padding: 0; }
.nav-menu { display: flex; gap: 36px; align-items: center; }
.nav-menu li { position: relative; }
.nav-menu a {
  color: var(--text-secondary); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color 0.3s ease;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--white);
  transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--white); }
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after { width: 100%; }

/* Book Now CTA button — add CSS class 'book-now' in WP menu editor */
.nav-menu .book-now > a {
  background: var(--burgundy) !important; color: var(--white) !important;
  padding: 11px 30px !important; font-weight: 600 !important;
  letter-spacing: 2px !important;
}
.nav-menu .book-now > a::after { display: none !important; }
.nav-menu .book-now > a:hover {
  background: var(--burgundy-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,26,26,0.4);
}

/* Sub-menus */
.nav-menu .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(22,22,22,0.98); backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  min-width: 200px; padding: 12px 0; z-index: 100;
}
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu a { display: block; padding: 8px 24px; font-size: 0.75rem; white-space: nowrap; }
.nav-menu .sub-menu a::after { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--white);
  transition: all 0.3s ease;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.98); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-overlay a {
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-primary);
  font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
}
.mobile-nav-overlay a:hover { color: var(--burgundy-light); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px;
}
.mobile-close::before, .mobile-close::after {
  content: ''; position: absolute; top: 50%; left: 0;
  width: 100%; height: 1.5px; background: var(--white);
}
.mobile-close::before { transform: rotate(45deg); }
.mobile-close::after { transform: rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block; background: var(--burgundy); color: var(--white);
  padding: 16px 48px; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--burgundy-light); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,26,26,0.35);
}
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 15px 48px; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.9) 100%);
}
.hero-bg--default {
  background: radial-gradient(ellipse at 50% 40%, rgba(30,28,26,1) 0%, rgba(10,10,10,1) 70%);
}
.hero-bg--default::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139,26,26,0.03) 0%, transparent 60%);
}
.hero-bg--default::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 780px; height: 780px;
  border: 1px solid rgba(255,255,255,0.04); border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.hero-logo { width: 300px; max-width: 75vw; margin: 30px auto 32px; opacity: 0.95; }
.hero-logo img { width: 100%; filter: invert(1) brightness(1.1); }
.hero-tagline {
  font-family: var(--font-heading); font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 400; letter-spacing: 5px; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 12px;
}
.hero-sub {
  font-size: 0.95rem; font-weight: 300; color: var(--text-muted);
  margin-bottom: 40px; letter-spacing: 0.3px; line-height: 1.7;
}
.hero-location {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 32px; position: relative; padding: 0 24px;
}
.hero-location::before, .hero-location::after {
  content: ''; position: absolute; top: 50%;
  width: 30px; height: 1px; background: rgba(255,255,255,0.15);
}
.hero-location::before { right: 100%; }
.hero-location::after { left: 100%; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent); }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600; color: var(--white); margin-bottom: 20px;
  letter-spacing: 2px; text-transform: uppercase;
}
.section-divider { width: 50px; height: 1px; background: var(--burgundy); margin: 0 auto 24px; }
.section-desc {
  font-size: 0.95rem; font-weight: 300; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid rgba(255,255,255,0.06); z-index: -1;
}
.about-text .section-label { text-align: left; }
.about-text h2 {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600; color: var(--white); margin-bottom: 24px;
  line-height: 1.3; letter-spacing: 2px; text-transform: uppercase;
}
.about-text p { color: var(--text-secondary); font-weight: 300; line-height: 1.9; margin-bottom: 20px; }
.about-line { width: 50px; height: 1px; background: var(--burgundy); margin-bottom: 24px; }
.about-stats {
  display: flex; gap: 40px; margin-top: 36px; padding-top: 36px;
  border-top: 1px solid var(--dark-border);
}
.stat h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); font-weight: 600; }
.stat p { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0; }

/* ---------- SERVICES ---------- */
.services-section { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  padding: 44px 32px; text-align: center;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--burgundy); transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px); border-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1.2; }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase;
}
.service-card p { color: var(--text-secondary); font-size: 0.85rem; font-weight: 300; line-height: 1.7; margin-bottom: 16px; }
.service-price { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); font-weight: 600; }

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--dark); overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-item {
  aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(139,26,26,0.12); opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--featured { grid-column: span 2; grid-row: span 2; }

/* ---------- TEAM ---------- */
.team-section { background: var(--black); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1000px; margin: 0 auto; justify-items: center; }
.team-card { text-align: center; }
.team-photo {
  width: 220px; height: 280px; margin: 0 auto 24px;
  position: relative; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--burgundy);
}
.team-card h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase;
}
.team-role {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block;
}
.team-card p { color: var(--text-secondary); font-size: 0.85rem; font-weight: 300; line-height: 1.7; max-width: 320px; margin: 0 auto; }
/* ---------- CTA ---------- */
.cta-section {
  background: var(--black); text-align: center; padding: 110px 0;
  position: relative; overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,26,26,0.4), transparent);
}
.cta-section::before { top: 0; }
.cta-section::after { bottom: 0; }
.cta-section h2 {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 600; color: var(--white); margin-bottom: 16px;
  letter-spacing: 2px; text-transform: uppercase;
}
.cta-section p {
  color: var(--text-secondary); font-size: 1rem; font-weight: 300;
  margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ---------- CONTACT ---------- */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item-icon {
  width: 42px; height: 42px; min-width: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--dark-border); background: var(--dark-card);
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.contact-item-text h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.contact-item-text p { color: var(--text-secondary); font-weight: 300; line-height: 1.6; }
.contact-item-text a { color: var(--text-secondary); }
.contact-item-text a:hover { color: var(--white); }
.contact-hours { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--dark-border); }
.contact-hours h4 {
  font-family: var(--font-heading); font-size: 1rem; color: var(--white);
  margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase;
}
.hours-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid rgba(34,34,34,0.8); font-size: 0.85rem;
}
.hours-row .day { color: var(--text-secondary); font-weight: 400; }
.hours-row .time { color: var(--white); font-weight: 500; }
.contact-map { min-height: 400px; border: 1px solid var(--dark-border); overflow: hidden; }
.contact-map iframe {
  width: 100%; height: 100%; min-height: 400px; border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  padding: 160px 0 80px; text-align: center; background: var(--dark); position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,26,26,0.3), transparent);
}
.page-header h1 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600; color: var(--white); letter-spacing: 3px; text-transform: uppercase;
}
.page-header p { color: var(--text-secondary); font-size: 1rem; font-weight: 300; margin-top: 12px; }

/* ---------- DEFAULT CONTENT ---------- */
.page-content { padding: 80px 0; background: var(--black); }
.page-content .entry-content { max-width: 800px; margin: 0 auto; }
.page-content .entry-content p { color: var(--text-secondary); font-weight: 300; line-height: 1.9; margin-bottom: 20px; }
.page-content .entry-content h2 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); margin: 40px 0 20px; letter-spacing: 1px; text-transform: uppercase; }
.page-content .entry-content h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); margin: 32px 0 16px; }
.page-content .entry-content ul, .page-content .entry-content ol { color: var(--text-secondary); margin: 0 0 20px 24px; }
.page-content .entry-content a { color: var(--burgundy-light); border-bottom: 1px solid transparent; }
.page-content .entry-content a:hover { border-bottom-color: var(--burgundy-light); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--dark-border); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 44px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; font-weight: 300; line-height: 1.7; max-width: 300px; margin-top: 16px; }
.footer-brand .footer-logo { height: 60px; width: auto; margin-bottom: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--dark-border); transition: all 0.3s ease;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--text-muted); transition: fill 0.3s ease; }
.footer-social a:hover svg { fill: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  color: var(--white); margin-bottom: 18px; letter-spacing: 2px; text-transform: uppercase;
}
.footer-col ul, .footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-col ul li, .footer-menu li { margin-bottom: 10px; }
.footer-col ul li a, .footer-menu li a { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; }
.footer-col ul li a:hover, .footer-menu li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--dark-border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.75rem; font-weight: 400; }

/* ---------- ANIMATIONS ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- WP HELPERS ---------- */
.wp-block-image img { border: 1px solid var(--dark-border); }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}

/* ---------- ABOUT PAGE ---------- */
.about-hero-section { padding: 60px 0; background: var(--dark); }
.about-hero-image {
  position: relative; max-width: 900px; margin: 0 auto;
  overflow: hidden; aspect-ratio: 16/9;
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: rgba(10,10,10,0.55);
}
.about-hero-overlay h2 {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600; color: var(--white); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 12px;
}
.about-hero-overlay span {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-secondary);
}
.about-vm-section { padding: 80px 0; background: var(--black); }
.about-vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 900px; margin: 0 auto; }
.about-vm-card { text-align: center; }
.about-vm-card .section-label { margin-bottom: 16px; }
.about-vm-card .about-line { width: 50px; height: 1px; background: var(--burgundy); margin: 0 auto 20px; }
.about-vm-card p { color: var(--text-secondary); font-weight: 300; line-height: 1.9; font-size: 0.95rem; }
.about-team-cta {
  padding: 100px 0; background: var(--dark); text-align: center;
  position: relative; overflow: hidden;
}
.about-team-cta::before, .about-team-cta::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,26,26,0.3), transparent);
}
.about-team-cta::before { top: 0; }
.about-team-cta::after { bottom: 0; }
.about-team-cta h2 {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600; color: var(--white); margin-bottom: 20px;
  letter-spacing: 2px; text-transform: uppercase;
}
.about-team-cta p {
  color: var(--text-secondary); font-size: 1rem; font-weight: 300;
  max-width: 560px; margin: 0 auto 36px; line-height: 1.8;
}

/* ---------- OUR TEAM PAGE ---------- */
.team-page-section { padding: 80px 0; background: var(--dark); }
.team-page-member {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 80px; max-width: 1000px; margin-left: auto; margin-right: auto;
}
.team-page-member:last-child { margin-bottom: 0; }
.team-page-member--reverse { direction: rtl; }
.team-page-member--reverse > * { direction: ltr; }
.team-page-photo { position: relative; overflow: hidden; }
.team-page-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-page-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--burgundy);
}
.team-page-info h2 {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600; color: var(--white); margin-bottom: 6px;
  letter-spacing: 2px; text-transform: uppercase;
}
.team-page-role {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 16px;
}
.team-page-info .about-line { margin-bottom: 20px; }
.team-page-info p { color: var(--text-secondary); font-weight: 300; line-height: 1.9; margin-bottom: 28px; }
.team-page-info .btn-outline { padding: 12px 36px; font-size: 0.7rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--featured { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 72px 0; }
  .about-stats { gap: 24px; }
  .hero-logo { width: 220px; }
  .about-vm-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-page-member,
  .team-page-member--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .team-page-photo img { max-width: 400px; margin: 0 auto; }
}
