/* =============================================
   WILTON WORKERS — Dark Wilton Blue & White
   (Wilton Warriors school colors)

   NOTE: Variable names below are legacy (--tan / --brown / --cream)
   but their VALUES are now blue/white. Keeping the names means every
   inline var(--...) reference in the HTML flips automatically.
     --brown*  = dark Wilton navy (primary dark)
     --tan*    = bright royal-blue accent
     --cream*  = white / light blue-white surfaces
   ============================================= */

:root {
  /* Accent: bright Wilton royal blue (legacy name --tan) */
  --tan:        #2D6CDF;
  --tan-dark:   #1E54B8;
  --tan-light:  #7FB0F0;
  --tan-soft:   #CFE0FA;

  /* Primary dark: deep Wilton navy (legacy name --brown) */
  --brown:        #0C2E63;
  --brown-dark:   #071D42;
  --brown-light:  #1C478C;
  --brown-soft:   #3A5E94;

  /* Surfaces: white / light blue-white (legacy name --cream) */
  --cream:        #EEF3FB;
  --cream-dark:   #DCE6F4;
  --cream-light:  #F7FAFE;

  /* Text: deep navy charcoal */
  --text:         #0E1C30;
  --text-soft:    #46566D;
  --text-muted:   #7E8DA2;

  /* Cool grays */
  --gray-50:      #F7FAFE;
  --gray-100:     #E8EEF7;
  --gray-200:     #D3DEEE;
  --gray-300:     #B3C2DA;
  --gray-400:     #8A99B0;
  --gray-600:     #56657C;
  --gray-800:     #243348;
  --white:        #FFFFFF;

  /* Status */
  --success:      #2E8B57;
  --success-soft: #DCF1E6;
  --warning:      #D6962E;
  --warning-soft: #FBEFD6;
  --danger:       #C0492F;
  --danger-soft:  #FBE2DA;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', 'Inter', Georgia, serif;

  /* Rounded corners & spacing */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-md:   16px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  /* Soft navy shadows */
  --shadow-xs:  0 1px 3px rgba(12, 46, 99, 0.06);
  --shadow-sm:  0 2px 8px rgba(12, 46, 99, 0.08);
  --shadow:     0 4px 16px rgba(12, 46, 99, 0.10);
  --shadow-md:  0 8px 28px rgba(12, 46, 99, 0.14);
  --shadow-lg:  0 16px 48px rgba(12, 46, 99, 0.18);
  --shadow-warm:0 10px 40px rgba(45, 108, 223, 0.25);

  --nav-height: 76px;
  --max-width: 1180px;
  --section-pad: 96px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; transition: all 0.25s var(--ease); }
input, select, textarea { font-family: var(--font); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.1; font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.5rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.35; font-weight: 600; }
h4 { font-size: 1rem; line-height: 1.4; }
p  { font-size: 1rem; color: var(--text-soft); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-dark);
  margin-bottom: 16px;
}

.section-title { color: var(--text); margin-bottom: 18px; }
.section-sub   { font-size: 1.075rem; color: var(--text-soft); max-width: 600px; }

/* === Buttons (smooth, rounded) === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: all 0.3s var(--ease-soft);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(12,46,99,0.25);
}
.btn-primary:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,46,99,0.35);
}

.btn-tan {
  background: var(--tan);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45,108,223,0.35);
}
.btn-tan:hover {
  background: var(--tan-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(45,108,223,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-brown {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline-brown:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-ghost {
  background: var(--cream);
  color: var(--brown);
}
.btn-ghost:hover { background: var(--cream-dark); }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(247, 250, 254, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(247, 250, 254, 0.97);
  border-bottom-color: rgba(12,46,99,0.10);
  box-shadow: 0 4px 24px rgba(12,46,99,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s var(--ease);
}

.nav-logo:hover img { transform: scale(1.05); }

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

.nav-links a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}

.nav-links a:hover { color: var(--brown); background: var(--cream-dark); }
.nav-links a.active { color: var(--brown-dark); background: var(--cream-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-book { padding: 10px 22px; font-size: 0.875rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  background: var(--cream-dark);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream-light);
  padding: 20px 28px 28px;
  z-index: 999;
  border-bottom: 1px solid var(--cream-dark);
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 10px 30px rgba(12,46,99,0.12);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--brown);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background 0.2s;
}

.nav-mobile a:hover { background: var(--cream-dark); }
.nav-mobile .btn { margin-top: 10px; }

/* === Hero === */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 90px);
  padding-bottom: 110px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 60%, #16386E 100%);
}

.hero-gallery {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroFade {
  0%, 20%   { opacity: 0.35; }
  25%, 45%  { opacity: 0; }
  100%      { opacity: 0; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,29,66,0.88) 0%, rgba(12,46,99,0.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,108,223,0.22);
  border: 1px solid rgba(127,176,240,0.40);
  color: var(--tan-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--tan-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(127,176,240,0.30);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 500;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: rgba(238,244,255,0.82);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(238,244,255,0.18);
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(238,244,255,0.60);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === Trust bar === */
.trust-bar {
  background: var(--cream);
  padding: 64px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.trust-icon {
  width: 52px; height: 52px;
  background: var(--brown);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(12,46,99,0.22);
}

.trust-item h3 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p  { font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* === Section === */
.section { padding: var(--section-pad) 0; }
.section-cream { background: var(--cream-light); }
.section-warm  { background: var(--cream); }

.section-header { margin-bottom: 56px; }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Service cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s var(--ease-soft);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tan), var(--brown));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-card-icon {
  background: var(--brown);
  transform: scale(1.08);
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.service-card p  { font-size: 0.9rem; line-height: 1.7; margin: 0; }

.service-card-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 100px;
}

/* === Photo Gallery (Home) === */
.photo-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.photo-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease-soft);
  position: relative;
  box-shadow: var(--shadow);
}

.photo-tile:hover { transform: scale(1.02); }

.photo-tile:nth-child(1) { grid-row: span 2; }
.photo-tile:nth-child(2) {}
.photo-tile:nth-child(3) { grid-column: span 2; }
.photo-tile:nth-child(4) {}

/* === How It Works === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: all 0.3s var(--ease);
}

.step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--tan), var(--tan-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(45,108,223,0.40);
}

.step h3 { font-size: 1.1rem; }
.step p { font-size: 0.92rem; }

/* === Mission block === */
.mission-block {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,108,223,0.28) 0%, transparent 65%);
}

.mission-block::after {
  content: '"';
  position: absolute;
  top: 20px; left: 40px;
  font-family: var(--font-display);
  font-size: 11rem;
  color: rgba(127,176,240,0.18);
  line-height: 1;
}

.mission-block .section-label { color: var(--tan-light); margin-bottom: 20px; }

.mission-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mission-block .motto {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--tan-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--tan-light); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brown);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--brown);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-soft);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; right: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,108,223,0.22) 0%, transparent 65%);
}

.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p  { color: rgba(238,244,255,0.75); margin-bottom: 36px; font-size: 1.1rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* === Footer === */
.footer {
  background: var(--brown-dark);
  color: rgba(238,244,255,0.65);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); }
.footer-brand .nav-logo img { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; line-height: 1.75; color: rgba(238,244,255,0.58); }

/* Wilton Warriors crest lockup (footer) */
.warriors-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(238,244,255,0.10);
}

.warriors-lockup svg { width: 40px; height: auto; flex-shrink: 0; }

.warriors-lockup span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(238,244,255,0.55);
  font-weight: 500;
}

.warriors-lockup span strong { color: var(--tan-light); font-weight: 700; }

.footer-links h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-family: var(--font);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(238,244,255,0.62); }
.footer-links a:hover { color: var(--tan-light); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(238,244,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--tan);
  transform: translateY(-2px);
}

.footer-social svg { width: 16px; height: 16px; fill: var(--white); }
.footer-social a:hover svg { fill: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(238,244,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(238,244,255,0.48);
}

.footer-bottom a:hover { color: var(--tan-light); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  padding: calc(var(--nav-height) + 72px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(45,108,223,0.26) 0%, transparent 70%);
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p  { color: rgba(238,244,255,0.78); font-size: 1.1rem; max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card-full {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s var(--ease-soft);
  display: flex;
  flex-direction: column;
}

.service-card-full:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-card-full .service-card-icon {
  width: 64px; height: 64px;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-card-full h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card-full p  { font-size: 0.95rem; flex: 1; }

.service-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
}

.service-price span {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--brown);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.pricing-note {
  background: linear-gradient(135deg, var(--cream) 0%, var(--tan-soft) 100%);
  border: 1px solid var(--tan-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 56px;
}

.pricing-note-icon { font-size: 1.8rem; flex-shrink: 0; }
.pricing-note h3   { font-size: 1.15rem; margin-bottom: 8px; }
.pricing-note p    { font-size: 0.95rem; margin: 0; color: var(--text-soft); }

/* =============================================
   BOOK PAGE
   ============================================= */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.form-group .required { color: var(--tan-dark); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-light);
  transition: all 0.25s var(--ease);
  outline: none;
  width: 100%;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: var(--tan-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--tan-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,108,223,0.15);
}

.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230C2E63' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show { display: block; }

.form-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--success), #246B43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(46,139,87,0.32);
}

.form-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.form-success p  { color: var(--text-soft); font-size: 1rem; max-width: 420px; margin: 0 auto; }

.form-success .summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px auto 0;
  max-width: 380px;
  text-align: left;
}

.form-success .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.form-success .summary-row span:first-child { color: var(--text-muted); }
.form-success .summary-row span:last-child  { color: var(--text); font-weight: 600; }

/* Sidebar */
.book-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease);
}

.sidebar-card:hover { box-shadow: var(--shadow-sm); }

.sidebar-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  font-family: var(--font);
}

.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-item:first-child { padding-top: 0; }

.sidebar-item-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.sidebar-item h5 { font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; color: var(--text); }
.sidebar-item p  { font-size: 0.82rem; margin: 0; color: var(--text-soft); line-height: 1.55; }

.sidebar-card.brown {
  background: var(--brown);
  border-color: var(--brown);
}
.sidebar-card.brown h4 { color: var(--white); }
.sidebar-card.brown p  { color: rgba(238,244,255,0.75); font-size: 0.92rem; line-height: 1.65; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,29,66,0.65) 100%);
}

.about-visual-overlay {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 1;
  color: var(--white);
}

.about-visual-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.about-visual-overlay p {
  color: rgba(238,244,255,0.88);
  font-size: 0.95rem;
  margin: 0;
}

.about-content .section-label { margin-bottom: 14px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p  { margin-bottom: 18px; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-icon {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.value-item:hover .value-icon {
  background: var(--brown);
  transform: scale(1.05);
}

.value-item h4 { font-size: 0.95rem; margin-bottom: 4px; font-family: var(--font); font-weight: 700; }
.value-item p  { font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.35s var(--ease-soft);
}

.founder-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.founder-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tan), var(--brown));
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(12,46,99,0.18);
}

.founder-name { font-size: 1rem; margin-bottom: 4px; font-family: var(--font); font-weight: 700; color: var(--text); }
.founder-role { font-size: 0.82rem; color: var(--tan-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.founding-story {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 820px;
  margin: 64px auto 0;
  text-align: center;
}

.founding-story h3 { font-size: 1.4rem; margin-bottom: 18px; }
.founding-story p  { font-size: 1.02rem; line-height: 1.85; color: var(--text-soft); }

/* Warriors pride band (About page) */
.warriors-band {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.warriors-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(45,108,223,0.25) 0%, transparent 65%);
}

.warriors-band-crest {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.warriors-band-crest svg {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35));
}

.warriors-band-text { position: relative; z-index: 1; }
.warriors-band-text .section-label { color: var(--tan-light); margin-bottom: 10px; }
.warriors-band-text h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.warriors-band-text p  { color: rgba(238,244,255,0.78); font-size: 0.98rem; line-height: 1.75; max-width: 560px; margin: 0; }

/* =============================================
   WORKER DASHBOARD
   ============================================= */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: 24px;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.login-logo img {
  height: 52px;
  width: auto;
}

.login-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.login-card h2 { font-size: 1.5rem; text-align: center; margin-bottom: 8px; }
.login-card .login-sub { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }

.login-error {
  background: var(--danger-soft);
  border: 1px solid rgba(192,73,47,0.3);
  color: var(--danger);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 18px;
  display: none;
}

.login-error.show { display: block; }

.login-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.login-tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all 0.3s var(--ease);
  text-align: center;
}

.login-tab.active {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 2px 8px rgba(12,46,99,0.12);
}

/* Dashboard */
.dashboard-wrap {
  display: none;
  min-height: 100vh;
  background: var(--cream-light);
}

.dashboard-wrap.show { display: block; }

.dash-nav {
  background: var(--brown-dark);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(12,46,99,0.22);
}

.dash-nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.dash-nav-logo img { height: 36px; filter: brightness(0) invert(1); }

.dash-nav-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan-light);
  background: rgba(45,108,223,0.20);
  padding: 4px 10px;
  border-radius: 100px;
  margin-left: 8px;
}

.dash-nav-badge.owner {
  color: #FFD9A0;
  background: rgba(214,150,46,0.25);
}

.dash-nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dash-user {
  font-size: 0.88rem;
  color: rgba(238,244,255,0.68);
}

.dash-logout {
  font-size: 0.82rem;
  color: rgba(238,244,255,0.72);
  padding: 8px 16px;
  border: 1px solid rgba(238,244,255,0.22);
  border-radius: 100px;
  transition: all 0.25s var(--ease);
}

.dash-logout:hover { background: rgba(238,244,255,0.10); color: var(--white); border-color: rgba(238,244,255,0.42); }

.dash-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 28px 60px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 18px;
}

.dash-header h1 { font-size: 1.85rem; color: var(--text); margin-bottom: 6px; }
.dash-header p  { font-size: 0.95rem; margin: 0; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.dash-stat {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s var(--ease);
}

.dash-stat:hover { box-shadow: var(--shadow-sm); border-color: var(--tan-light); transform: translateY(-2px); }

.dash-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
  line-height: 1;
}

.dash-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Filter */
.dash-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
}

.filter-btn:hover { border-color: var(--tan); color: var(--brown); }
.filter-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

/* Section heading inside dash */
.dash-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 36px;
}

.dash-section-title h2 {
  font-size: 1.25rem;
  font-family: var(--font);
  font-weight: 700;
  color: var(--text);
}

.dash-section-title .count {
  background: var(--cream);
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.dash-section-title.pending .count {
  background: var(--warning-soft);
  color: #8a6810;
}

.jobs-list { display: flex; flex-direction: column; gap: 16px; }

.job-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  transition: all 0.3s var(--ease);
  position: relative;
}

.job-card:hover { box-shadow: var(--shadow); }
.job-card.highlight { box-shadow: 0 0 0 3px var(--tan), var(--shadow-md); animation: pulseHighlight 1.5s ease-out; }

@keyframes pulseHighlight {
  0%   { box-shadow: 0 0 0 0   rgba(45,108,223,0.6), var(--shadow-md); }
  50%  { box-shadow: 0 0 0 8px rgba(45,108,223,0.0), var(--shadow-md); }
  100% { box-shadow: 0 0 0 3px var(--tan), var(--shadow-md); }
}

.job-card.claimed { border-left: 4px solid var(--success); background: var(--cream-light); }
.job-card.available { border-left: 4px solid var(--tan); }
.job-card.pending { border-left: 4px solid var(--warning); }

.job-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.job-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brown);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.job-status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.job-status-badge.available { background: var(--tan-soft); color: var(--brown); }
.job-status-badge.claimed   { background: var(--success-soft); color: var(--success); }
.job-status-badge.pending   { background: var(--warning-soft); color: #8a6810; }

.job-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.job-meta-item svg { flex-shrink: 0; color: var(--tan-dark); }

.job-notes {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-soft);
  border-left: 3px solid var(--tan);
  line-height: 1.65;
}

.job-claimed-by {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--success-soft);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--success);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.job-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.job-actions .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-claim {
  background: var(--success);
  color: white;
  box-shadow: 0 2px 8px rgba(46,139,87,0.25);
}
.btn-claim:hover { background: #246B43; }

.btn-claim.disabled,
.btn-claim:disabled {
  background: var(--gray-200);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-push {
  background: var(--success);
  color: white;
}
.btn-push:hover { background: #246B43; }

.btn-delete {
  background: var(--danger-soft);
  color: var(--danger);
}
.btn-delete:hover { background: var(--danger); color: white; }

.btn-small {
  font-size: 0.8rem;
  padding: 6px 14px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
}
.btn-small:hover { background: var(--cream); color: var(--brown); }

.job-date-posted { font-size: 0.78rem; color: var(--text-muted); text-align: right; margin-top: 4px; }

.dash-empty {
  background: var(--white);
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 72px 24px;
  text-align: center;
}

.dash-empty-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.dash-empty h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.dash-empty p  { font-size: 0.95rem; color: var(--text-muted); }

/* === Modal === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,29,66,0.58);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease-out;
}

.modal-overlay.show { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s var(--ease-soft);
}

.modal-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.modal-card .modal-sub { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 24px; }
.modal-card .modal-actions { display: flex; gap: 10px; margin-top: 8px; }
.modal-card .modal-actions .btn { flex: 1; }

/* === Notification toast === */
.notify-stack {
  position: fixed;
  top: calc(var(--nav-height) + 12px);
  right: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
  pointer-events: none;
}

.notify {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  animation: notifySlide 0.4s var(--ease-soft);
  position: relative;
  border-left: 4px solid var(--tan);
}

@keyframes notifySlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.notify-icon {
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.notify-body { flex: 1; }
.notify-title { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.notify-text  { font-size: 0.84rem; color: var(--text-soft); margin-bottom: 8px; line-height: 1.5; }

.notify-actions {
  display: flex;
  gap: 8px;
}

.notify-actions button {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
}

.notify-actions .notify-view {
  background: var(--brown);
  color: var(--white);
}
.notify-actions .notify-view:hover { background: var(--brown-dark); }

.notify-actions .notify-dismiss {
  background: var(--cream);
  color: var(--text-soft);
}

.notify-close {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 4px 8px;
  background: transparent;
}

.notify-close:hover { color: var(--text); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { grid-template-columns: 1fr; }
  .about-visual   { aspect-ratio: 3/2; max-height: 480px; }
  .dash-stats     { grid-template-columns: repeat(2, 1fr); }
  .book-layout    { grid-template-columns: 1fr; }
  .book-sidebar   { position: static; }
  .founders-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .photo-grid     { grid-template-rows: 240px 240px; }
  .warriors-band  { flex-direction: column; text-align: center; gap: 28px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-height: 68px; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: calc(var(--nav-height) + 56px); padding-bottom: 72px; }
  .hero-stats { gap: 28px; padding-top: 24px; }

  .trust-grid    { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; gap: 18px; }

  .form-row      { grid-template-columns: 1fr; }
  .about-values  { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
  .dash-stats    { grid-template-columns: 1fr 1fr; }
  .job-card      { grid-template-columns: 1fr; }
  .job-actions   { align-items: stretch; }
  .job-actions .btn { width: 100%; }
  .form-card     { padding: 32px 24px; }
  .login-card    { padding: 40px 28px; }
  .photo-grid    { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .photo-tile    { aspect-ratio: 16/10; }
  .photo-tile:nth-child(1), .photo-tile:nth-child(3) { grid-row: auto; grid-column: auto; }
  .mission-block { padding: 48px 28px; }
  .mission-block::after { font-size: 6rem; left: 20px; top: 0; }
  .founding-story { padding: 32px 24px; }
  .warriors-band  { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cta-actions   { flex-direction: column; align-items: stretch; }
  .dash-stats    { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .notify-stack  { right: 12px; left: 12px; max-width: none; }
}
