/* ===================================================
   CORE CONNECTION CONSULTING
   Brand: Charcoal + Sage | Luxury Executive Coaching
   =================================================== */

/* === VARIABLES === */
:root {
  --charcoal: #2C2C2C;
  --charcoal-deep: #1A1A1A;
  --charcoal-mid: #3D3D3D;
  --sage: #7D9E7D;
  --sage-light: #9DB99D;
  --sage-dark: #5A7B5A;
  --sage-mist: #D4E4D4;
  --off-white: #F2EDE4;
  --cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --text-dark: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: rgba(125, 158, 125, 0.2);
  --border-light: rgba(242, 237, 228, 0.15);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: 110px 0;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

/* === SKIP LINK (accessibility + SEO) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--sage);
  color: white;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === UTILITY === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(125, 158, 125, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(242, 237, 228, 0.5);
}

.btn-outline:hover {
  background: rgba(242, 237, 228, 0.08);
  border-color: var(--off-white);
}

.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.75);
  transition: color 0.3s ease;
  position: relative;
}

.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(--off-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.7rem !important;
  background: var(--sage);
  color: white !important;
  border-radius: 0;
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  color: white !important;
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--off-white);
  transition: var(--transition);
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(125, 158, 125, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(125, 158, 125, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 140px 0 100px;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--sage);
}

.hero-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--off-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242, 237, 228, 0.65);
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  width: 440px;
  max-width: 100%;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(125, 158, 125, 0.25);
  pointer-events: none;
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal-mid);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.05);
}

/* Placeholder styling when no photo */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #3D3D3D 0%, #2C2C2C 100%);
  gap: 12px;
}

.photo-placeholder-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(125, 158, 125, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--sage-light);
  letter-spacing: 0.05em;
}

.photo-placeholder-note {
  font-size: 0.7rem;
  color: rgba(242, 237, 228, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--sage);
  color: white;
  padding: 20px 24px;
  z-index: 2;
  min-width: 160px;
}

.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-badge-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242, 237, 228, 0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(125, 158, 125, 0.6), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

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

/* === CREDENTIALS BAR === */
.credentials-bar {
  background: var(--sage-dark);
  padding: 22px 0;
  overflow: hidden;
}

.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.credential-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* === ABOUT === */
.about {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.about-content h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-content p:last-of-type { margin-bottom: 36px; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.highlight-text span {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.about-photo-col {
  position: sticky;
  top: 100px;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 16px;
  right: -16px;
  top: 16px;
  background: var(--sage-mist);
  z-index: -1;
}

.about-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--charcoal-mid);
}

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

.about-photo .photo-placeholder {
  background: linear-gradient(145deg, #DEEADE 0%, #C8D8C8 100%);
}

.about-photo .photo-placeholder-initials {
  border-color: rgba(90, 123, 90, 0.5);
  color: var(--sage-dark);
}

.about-quote {
  margin-top: 32px;
  padding: 28px;
  background: var(--charcoal-deep);
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--sage);
  line-height: 1;
  opacity: 0.5;
}

.about-quote p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--off-white);
  padding-top: 16px;
  margin: 0;
}

/* === SERVICES === */
.services {
  padding: var(--section-pad);
  background: var(--charcoal-deep);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(125, 158, 125, 0.06);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(125, 158, 125, 0.04);
  pointer-events: none;
}

.services .section-label { color: var(--sage-light); }
.services .section-label::before { background: var(--sage-light); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--off-white);
}

.services-header h2 em {
  font-style: italic;
  color: var(--sage-light);
}

.services-header p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(242, 237, 228, 0.55);
  max-width: 400px;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(125, 158, 125, 0.1);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  background: rgba(125, 158, 125, 0.06);
  border-color: rgba(125, 158, 125, 0.25);
  transform: translateY(-4px);
}

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

.service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(125, 158, 125, 0.15);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.service-card:hover .service-num {
  color: rgba(125, 158, 125, 0.3);
}

.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(125, 158, 125, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--sage-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  background: var(--sage);
  border-color: var(--sage);
}

.service-card:hover .service-icon svg {
  stroke: white;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(242, 237, 228, 0.5);
  margin-bottom: 28px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(242, 237, 228, 0.45);
  line-height: 1.5;
}

.service-card ul li::before {
  content: '–';
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 1px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 14px; }

.service-link::after {
  content: '→';
  font-size: 0.9rem;
}

/* === APPROACH === */
.approach {
  padding: var(--section-pad);
  background: var(--off-white);
}

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

.approach-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dark);
  position: sticky;
  top: 100px;
}

.approach-inner h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
  align-items: start;
}

.approach-step:first-child { padding-top: 0; }

.step-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  margin-top: -4px;
}

.step-body h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* === TESTIMONIALS === */
.testimonials {
  padding: var(--section-pad);
  background: var(--charcoal);
  position: relative;
}

.testimonials .section-label { color: var(--sage-light); }
.testimonials .section-label::before { background: var(--sage-light); }

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.2;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before {
  display: none;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125, 158, 125, 0.12);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(125, 158, 125, 0.25);
  background: rgba(255,255,255,0.06);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage);
  line-height: 0.8;
  opacity: 0.35;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(242, 237, 228, 0.8);
  margin-bottom: 28px;
}

.testimonial-divider {
  width: 32px;
  height: 1px;
  background: var(--sage);
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--sage-light);
  letter-spacing: 0.04em;
}

.testimonials-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.8rem;
  color: rgba(242, 237, 228, 0.3);
  font-style: italic;
}

/* === STATS === */
.stats {
  padding: 80px 0;
  background: var(--sage);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* === CONTACT === */
.contact {
  padding: var(--section-pad);
  background: var(--cream);
}

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

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.contact-detail-item:first-child { border-top: 1px solid var(--border); }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(90, 123, 90, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* === BOOKINGS EMBED === */
.contact-booking-wrap {
  background: white;
  padding: 40px 48px 48px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--sage);
}

.contact-booking-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-booking-wrap > p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.booking-cta-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid rgba(90,123,90,0.2);
  margin-bottom: 28px;
}

.booking-cta-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(90,123,90,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}

.booking-cta-icon svg {
  width: 20px;
  height: 20px;
}

.booking-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-cta-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.booking-cta-text span {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.booking-btn {
  width: 100%;
  text-align: center;
  padding: 18px;
  justify-content: center;
  display: flex;
  margin-bottom: 20px;
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.booking-note a {
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(90,123,90,0.3);
}

.booking-note a:hover {
  border-bottom-color: var(--sage-dark);
}

.contact-email-link {
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(90,123,90,0.3);
  transition: border-color 0.2s ease;
}

.contact-email-link:hover {
  border-bottom-color: var(--sage-dark);
}

/* === FOOTER === */
.footer {
  background: var(--charcoal-deep);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(242, 237, 228, 0.45);
  max-width: 260px;
  margin-bottom: 28px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 237, 228, 0.5);
  transition: var(--transition);
  font-size: 0.75rem;
}

.footer-social a:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.5);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(242, 237, 228, 0.45);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.footer-col ul li a:hover {
  color: var(--sage-light);
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(242, 237, 228, 0.25);
  letter-spacing: 0.05em;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--sage-light);
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 40px;
  background: none;
  border: none;
  color: var(--off-white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { gap: 48px; }
  .about-grid { gap: 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .approach-inner { grid-template-columns: 1fr; gap: 40px; }
  .approach-inner h2 { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

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

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 120px 0 80px;
    gap: 56px;
  }

  .hero-photo-wrap { justify-content: center; }

  .hero-photo-frame {
    width: 320px;
  }

  .about-grid,
  .contact-grid,
  .services-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-col { position: static; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stat-item { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }

  .contact-booking-wrap { padding: 28px 20px 32px; }

  .bookings-embed iframe { height: 700px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .credentials-inner { gap: 0; }
  .credential-item {
    padding: 8px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    justify-content: center;
  }
}
