/* ══════════════════════════════════════
   PURLEY SPEAKERS — SHARED STYLESHEET
   ══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --crimson:      #772432;
  --crimson-dark: #561a24;
  --crimson-light:#9e3044;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --off-white:    #faf8f5;
  --warm-gray:    #f0ede8;
  --text-dark:    #1a1210;
  --text-mid:     #4a3f3b;
  --text-light:   #8a7e7a;
  --nav-height:   72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(119,36,50,0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 44px; height: 44px;
  background: var(--crimson); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text .tagline {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--crimson); font-weight: 600;
}
.nav-brand-text .club-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; color: var(--text-dark);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--text-mid); text-decoration: none;
  padding: 8px 14px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(119,36,50,0.08); color: var(--crimson); }
.nav-cta {
  background: var(--crimson) !important; color: white !important;
  padding: 8px 20px !important; border-radius: 6px !important; margin-left: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--crimson-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--off-white); z-index: 999;
  padding: 16px 24px 24px;
  border-bottom: 2px solid var(--crimson);
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid var(--warm-gray);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-cta {
  margin-top: 8px;
  padding: 13px; border-radius: 8px; border: none;
  background: var(--crimson); color: white !important;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  text-align: center; cursor: pointer;
  border-bottom: none !important;
}

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: var(--nav-height); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  padding: 80px 40px; text-align: center; color: white;
}
.page-hero .section-label { color: var(--gold-light); margin-bottom: 12px; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: white; margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; opacity: 0.88; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--crimson); font-weight: 600; margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
}
.section-body {
  font-size: 1rem; line-height: 1.8; color: var(--text-mid); max-width: 640px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: white; color: var(--crimson);
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  padding: 14px 32px; border-radius: 8px; text-decoration: none;
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-primary.solid { background: var(--crimson); color: white; }
.btn-primary.solid:hover { background: var(--crimson-dark); box-shadow: 0 8px 24px rgba(119,36,50,0.3); }
.btn-outline {
  display: inline-block; background: transparent; color: white;
  font-size: 14px; font-weight: 500;
  padding: 14px 32px; border-radius: 8px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-outline.dark { color: var(--crimson); border-color: var(--crimson); }
.btn-outline.dark:hover { background: rgba(119,36,50,0.06); }

/* ── FOOTER ── */
footer { background: var(--text-dark); color: white; padding: 56px 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer-brand .club-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  margin-bottom: 12px; color: white;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-brand .social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.social-links a:hover { background: var(--crimson); border-color: var(--crimson); }
.social-links svg { width: 16px; height: 16px; fill: white; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-col address {
  font-style: normal; font-size: 0.875rem;
  color: rgba(255,255,255,0.6); line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in           { animation: fadeUp 0.7s ease both; }
.delay-1           { animation-delay: 0.15s; }
.delay-2           { animation-delay: 0.3s; }
.delay-3           { animation-delay: 0.45s; }
@keyframes bounce  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ══════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════ */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 40%, #a03048 70%, #c04060 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, white 0px, white 1px, transparent 1px, transparent 40px);
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: url('https://static.wixstatic.com/media/6d4f9c_d56f5ef2d4f44f11a330afe8ef9b3eaf~mv2.jpg/v1/crop/x_0,y_906,w_9363,h_4672/fill/w_1117,h_557,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/6d4f9c_d56f5ef2d4f44f11a330afe8ef9b3eaf~mv2.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto; padding: 80px 40px;
  text-align: center; color: white;
  animation: fadeUp 0.9s ease both;
}
.hero-label {
  display: inline-block; margin-bottom: 24px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 20px; padding: 6px 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 1.1rem; line-height: 1.7; opacity: 0.9;
  margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 2px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-hint svg { animation: bounce 2s infinite; }

.tm-strip {
  background: var(--warm-gray); padding: 32px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; text-align: center;
}
.tm-strip img { height: 52px; }
.tm-strip-text { max-width: 500px; }
.tm-strip-text strong {
  font-family: 'Playfair Display', serif;
  display: block; font-size: 1.1rem; margin-bottom: 6px; color: var(--text-dark);
}
.tm-strip-text p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.tm-strip-text a { color: var(--crimson); font-weight: 500; }

.benefits-section { background: white; padding: 80px 40px; }
.benefits-inner { max-width: 1100px; margin: 0 auto; }
.benefits-header { text-align: center; margin-bottom: 60px; }
.benefits-header .section-body { margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.benefit-card {
  background: var(--off-white); border-radius: 16px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--crimson);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(119,36,50,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--crimson); fill: none; stroke-width: 1.5; }
.benefit-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  margin-bottom: 12px; color: var(--text-dark);
}
.benefit-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); }

.steps-section { background: var(--crimson); color: white; padding: 80px 40px; }
.steps-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.steps-inner .section-label { color: var(--gold-light); }
.steps-inner .section-title { color: white; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px;
  left: calc(16.6% + 20px); right: calc(16.6% + 20px);
  height: 2px; background: rgba(255,255,255,0.2);
}
.step { display: flex; flex-direction: column; align-items: center; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--gold-light); margin-bottom: 20px;
  background: var(--crimson); position: relative; z-index: 1;
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--gold-light); }
.step p  { font-size: 0.875rem; line-height: 1.7; opacity: 0.88; }

.skills-section { padding: 80px 40px; }
.skills-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.skills-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.skill-item { display: flex; align-items: flex-start; gap: 14px; }
.skill-dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--crimson); margin-top: 7px;
}
.skill-item p { font-size: 0.95rem; line-height: 1.6; color: var(--text-mid); }
.skills-image {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3; background: var(--warm-gray);
}
.skills-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testimonials-section { background: white; padding: 80px 40px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 28px; }
.testimonial-card {
  background: var(--off-white); border-radius: 16px; padding: 32px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.quote-mark {
  font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.8;
  color: var(--crimson); opacity: 0.15; margin-bottom: 16px; display: block;
}
.testimonial-card p {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-mid);
  font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--crimson);
}
/* Prevent site footer styles bleeding into blockquote footer elements */
blockquote footer,
.testimonial-author {
  background: none;
  color: inherit;
  padding: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-author-info span  { font-size: 0.8rem; color: var(--text-light); }

.cta-section { background: var(--warm-gray); padding: 80px 40px; text-align: center; }
.cta-section .section-body { margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   MEETINGS PAGE
   ══════════════════════════════════════ */
.meetings-content { max-width: 900px; margin: 0 auto; padding: 64px 40px; }
.info-card {
  background: white; border-radius: 16px; padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 28px;
}
.info-card h2 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--text-dark); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--warm-gray);
}
.info-card p, .info-card li { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); }
.info-card ul { padding-left: 20px; }
.info-card ul li { margin-bottom: 6px; }
.meeting-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.meeting-detail:last-child { margin-bottom: 0; }
.meeting-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(119,36,50,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.meeting-detail-icon svg { width: 20px; height: 20px; stroke: var(--crimson); fill: none; stroke-width: 1.5; }
.meeting-detail strong {
  display: block; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px;
}
.meeting-detail p { font-size: 0.95rem; color: var(--text-dark); margin: 0; }
.cost-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.cost-item {
  background: var(--off-white); border-radius: 12px; padding: 20px; text-align: center;
}
.cost-item .amount {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--crimson);
}
.cost-item .label { font-size: 0.8rem; color: var(--text-mid); margin-top: 4px; }
.meetings-cta { text-align: center; margin-top: 40px; }
.meetings-cta p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; }

/* ══════════════════════════════════════
   TEAM PAGE
   ══════════════════════════════════════ */
.team-content { max-width: 1100px; margin: 0 auto; padding: 64px 40px; }
.team-intro { text-align: center; margin-bottom: 56px; }
.team-intro p { font-size: 1rem; line-height: 1.8; color: var(--text-mid); max-width: 640px; margin: 16px auto 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 28px; }
.team-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.team-card-image { aspect-ratio: 3/4; background: var(--warm-gray); overflow: hidden; }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.team-card-placeholder svg { width: 64px; height: 64px; stroke: #c5bdb9; fill: none; stroke-width: 1; }
.team-card-body { padding: 20px; text-align: center; }
.team-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 4px; }
.team-card-body span {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--crimson); font-weight: 600;
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-content {
  max-width: 1000px; margin: 0 auto; padding: 64px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.contact-form-section h2,
.contact-info-section h2 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 8px;
}
.contact-form-section > p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 6px;
}
input, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e5e0db; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  background: white; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
input:focus, textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(119,36,50,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.submit-btn {
  width: 100%; padding: 14px; border-radius: 8px; border: none;
  background: var(--crimson); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.submit-btn:hover { background: var(--crimson-dark); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none; background: #ecfdf5; border: 1.5px solid #6ee7b7;
  border-radius: 8px; padding: 16px; text-align: center;
  font-size: 0.95rem; color: #065f46; margin-top: 16px;
}
.form-error {
  display: none; background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: 8px; padding: 16px; text-align: center;
  font-size: 0.95rem; color: #991b1b; margin-top: 16px;
}
.formspree-note { font-size: 0.78rem; color: var(--text-light); margin-top: 10px; text-align: center; }
.formspree-note a { color: var(--crimson); }
.contact-info-section { padding-top: 12px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(119,36,50,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 22px; height: 22px; stroke: var(--crimson); fill: none; stroke-width: 1.5; }
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }
.contact-detail p { font-size: 0.95rem; color: var(--text-dark); line-height: 1.6; margin: 0; }
.contact-detail a { color: var(--crimson); text-decoration: none; }
.map-embed { margin-top: 28px; border-radius: 16px; overflow: hidden; border: 2px solid var(--warm-gray); }
.map-embed iframe { display: block; width: 100%; height: 220px; border: none; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .benefits-grid,
  .steps-grid        { grid-template-columns: 1fr; }
  .steps-grid::before{ display: none; }
  .skills-inner,
  .contact-content   { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .cost-grid         { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav                        { padding: 0 20px; }
  .nav-links                 { display: none; }
  .hamburger                 { display: flex; }
  .benefits-section,
  .steps-section,
  .skills-section,
  .testimonials-section,
  .cta-section               { padding: 56px 20px; }
  .meetings-content,
  .team-content              { padding: 40px 20px; }
  .contact-content           { padding: 40px 20px; }
  .footer-grid               { grid-template-columns: 1fr; }
  .hero-content              { padding: 60px 20px; }
  .page-hero                 { padding: 60px 20px; }
  .form-row                  { grid-template-columns: 1fr; }
  .info-card                 { padding: 24px; }
}

/* ══════════════════════════════════════
   BOOKING MODAL
   ══════════════════════════════════════ */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26, 18, 16, 0.65);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open {
  display: flex;
  animation: backdropIn 0.25s ease both;
}
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal {
  background: var(--off-white);
  border-radius: 20px;
  width: 100%; max-width: 480px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.modal-header {
  background: linear-gradient(135deg, var(--crimson-dark), var(--crimson));
  padding: 32px 32px 28px;
  color: white; position: relative;
}
.modal-header .modal-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 8px; display: block;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 900; color: white; line-height: 1.15;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.15);
  color: white; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.modal-close:hover { background: rgba(255,255,255,0.28); }

.modal-body { padding: 28px 32px 32px; }

.modal-body .form-group { margin-bottom: 16px; }
.modal-body label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--text-mid); margin-bottom: 6px; display: block;
}
.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="tel"] {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e5e0db; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  background: white; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.modal-body input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(119,36,50,0.1);
}

.modal-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(119,36,50,0.05);
  border: 1.5px solid rgba(119,36,50,0.15);
  border-radius: 10px; padding: 14px;
  margin-bottom: 20px; cursor: pointer;
}
.modal-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--crimson); cursor: pointer;
}
.modal-checkbox label {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; color: var(--text-dark); cursor: pointer; margin: 0;
}

.modal-buttons {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 24px;
}
.modal-submit {
  padding: 13px; border-radius: 8px; border: none;
  background: var(--crimson); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.modal-submit:hover    { background: var(--crimson-dark); transform: translateY(-1px); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.modal-cancel {
  padding: 13px 18px; border-radius: 8px;
  border: 1.5px solid #e5e0db; background: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--text-mid); cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.modal-cancel:hover { border-color: var(--text-mid); color: var(--text-dark); }

.modal-location {
  border-top: 1px solid var(--warm-gray); padding-top: 18px;
  display: flex; align-items: flex-start; gap: 10px;
}
.modal-location-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(119,36,50,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.modal-location-icon svg { width: 16px; height: 16px; stroke: var(--crimson); fill: none; stroke-width: 1.5; }
.modal-location-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 3px; }
.modal-location-text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

.modal-success {
  display: none; text-align: center; padding: 16px 0 4px;
}
.modal-success .success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #ecfdf5; border: 2px solid #6ee7b7;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.modal-success h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--text-dark); margin-bottom: 8px;
}
.modal-success p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

.modal-error {
  display: none; background: #fef2f2; border: 1.5px solid #fca5a5;
  border-radius: 8px; padding: 12px 14px;
  font-size: 0.875rem; color: #991b1b; margin-bottom: 16px; text-align: center;
}

@media (max-width: 520px) {
  .modal-header  { padding: 24px 24px 20px; }
  .modal-body    { padding: 20px 24px 24px; }
  .modal-buttons { grid-template-columns: 1fr; }
}
