/* ============================================================
   TIBER & LAUREL INC — MAIN STYLESHEET
   Color Palette: #606C38 | #9BA17B | #DDA15E | #FEFAE0
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --dark-sage:   #606C38;
  --mid-sage:    #9BA17B;
  --amber:       #DDA15E;
  --cream:       #FEFAE0;
  --cream-dark:  #F5F0D0;
  --dark-text:   #2C2C1E;
  --body-text:   #4A4A36;
  --light-text:  #7A7A60;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(96,108,56,.10);
  --shadow-md:   0 6px 24px rgba(96,108,56,.15);
  --shadow-lg:   0 16px 48px rgba(96,108,56,.20);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
  --font-heading:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', 'Segoe UI', Arial, sans-serif;
  --nav-height:  72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--dark-sage);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--amber); }

ul { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── UTILITY CLASSES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-sage   { color: var(--dark-sage); }
.text-amber  { color: var(--amber); }
.text-cream  { color: var(--cream); }

.bg-dark-sage  { background-color: var(--dark-sage); }
.bg-mid-sage   { background-color: var(--mid-sage); }
.bg-amber      { background-color: var(--amber); }
.bg-cream      { background-color: var(--cream); }
.bg-cream-dark { background-color: var(--cream-dark); }

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

/* Section Heading */
.section-heading {
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--dark-sage);
}

/* Section Subtext */
.section-sub {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

/* Decorative Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mid-sage), transparent);
  flex: 1;
}

.divider-icon {
  color: var(--amber);
  font-size: 1.1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--dark-sage);
  color: var(--cream);
  border-color: var(--dark-sage);
}

.btn-primary:hover {
  background: #4e5a2e;
  border-color: #4e5a2e;
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96,108,56,.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-secondary:hover {
  background: var(--cream);
  color: var(--dark-sage);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--dark-text);
  border-color: var(--amber);
}

.btn-amber:hover {
  background: #c8904a;
  border-color: #c8904a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221,161,94,.35);
}

.btn-outline-sage {
  background: transparent;
  color: var(--dark-sage);
  border-color: var(--dark-sage);
}

.btn-outline-sage:hover {
  background: var(--dark-sage);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(254,250,224,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(96,108,56,.12);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--dark-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(5deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);          /* White over hero by default */
  line-height: 1.1;
  transition: color var(--transition);
}

.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254,250,224,.6);
  transition: color var(--transition);
}

/* Scrolled state — revert logo to dark */
#navbar.scrolled .nav-logo-text        { color: var(--dark-text); }
#navbar.scrolled .nav-logo-text span   { color: var(--light-text); }

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

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(254,250,224,.9);  /* Cream/white over hero */
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width var(--transition);
}

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

.nav-links a:hover { color: var(--amber); }

/* Scrolled state — revert links to dark */
#navbar.scrolled .nav-links a          { color: var(--body-text); }
#navbar.scrolled .nav-links a:hover    { color: var(--dark-sage); }

.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  background: rgba(96,108,56,.85) !important; /* Slightly transparent dark sage over hero */
  color: var(--cream) !important;
  padding: 10px 24px !important;
  padding-bottom: 10px !important;           /* Override the 4px from parent */
  border-radius: 50px;
  line-height: 1 !important;
  transition: all var(--transition) !important;
}

#navbar.scrolled .nav-cta {
  background: var(--dark-sage) !important;
}

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

.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--dark-text) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-sm) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  align-self: center;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(254,250,224,.9);   /* White over hero */
  border-radius: 2px;
  transition: all var(--transition);
}

/* Scrolled — revert hamburger to dark */
#navbar.scrolled .nav-hamburger span  { background: var(--dark-text); }

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(254,250,224,.98);
  backdrop-filter: blur(16px);
  padding: 24px 28px 32px;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transform: translateY(-16px);
  opacity: 0;
  transition: all var(--transition);
}

.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark-text);
  border-bottom: 1px solid rgba(96,108,56,.1);
  text-decoration: none;
}

.nav-mobile a:hover { color: var(--amber); padding-left: 8px; }
.nav-mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-sage);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/team-celebration.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(96,108,56,.55) 0%,
    rgba(44,44,30,.65) 50%,
    rgba(221,161,94,.25) 100%
  );
}

/* Floating organic shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(221,161,94,.08);
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-1 { width: 400px; height: 400px; top: -80px; right: -80px; animation-delay: 0s; }
.hero-shape-2 { width: 280px; height: 280px; bottom: 80px; left: -60px; animation-delay: 3s; }
.hero-shape-3 { width: 180px; height: 180px; top: 30%; right: 15%; animation-delay: 6s; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,161,94,.2);
  border: 1px solid rgba(221,161,94,.4);
  color: var(--amber);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideDown 1s ease both 0.2s;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  color: var(--cream);
  margin-bottom: 24px;
  animation: fadeSlideDown 1s ease both 0.4s;
  text-shadow: 0 2px 32px rgba(0,0,0,.3);
}

.hero-title em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(254,250,224,.82);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeSlideDown 1s ease both 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 1s ease both 0.8s;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(254,250,224,.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeSlideDown 1s ease both 1.2s;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(254,250,224,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(254,250,224,.08);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(254,250,224,.12);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(254,250,224,.15);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(254,250,224,.12);
  animation: fadeSlideUp 1s ease both;
}

.stat-item:last-child { border-right: none; }
.stat-item:nth-child(1) { animation-delay: 1s; }
.stat-item:nth-child(2) { animation-delay: 1.1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(254,250,224,.7);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── ABOUT ── */
#about {
  background: var(--cream);
  overflow: hidden;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-main:hover img {
  transform: scale(1.04);
}

.about-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.about-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--amber);
  color: var(--dark-text);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: floatShape 6s ease-in-out infinite;
}

.about-badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.about-content .section-label { margin-bottom: 12px; }

.about-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(96,108,56,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-sage);
  font-size: 1rem;
}

.about-feature-text h4 {
  margin-bottom: 4px;
  color: var(--dark-text);
}

.about-feature-text p {
  font-size: 0.93rem;
  color: var(--light-text);
  margin: 0;
}

/* ── SERVICES ── */
#services {
  background: var(--cream-dark);
  overflow: hidden;
}

.services-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(96,108,56,.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-sage), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(96,108,56,.15), rgba(221,161,94,.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.75;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-sage);
  transition: gap var(--transition), color var(--transition);
}

.service-card:hover .learn-more { gap: 10px; color: var(--amber); }

/* ── WHY CHOOSE US ── */
#why-us {
  background: var(--dark-sage);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(221,161,94,.06);
  pointer-events: none;
}

#why-us::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(155,161,123,.08);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-content .section-label { color: var(--amber); }
.why-content h2 { color: var(--cream); }
.why-content p { color: rgba(254,250,224,.8); }

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

.pillar {
  background: rgba(254,250,224,.06);
  border: 1px solid rgba(254,250,224,.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition);
}

.pillar:hover {
  background: rgba(221,161,94,.12);
  border-color: rgba(221,161,94,.3);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.pillar h4 {
  color: var(--cream);
  margin-bottom: 6px;
  font-size: 1rem;
}

.pillar p {
  font-size: 0.85rem;
  color: rgba(254,250,224,.65);
  margin: 0;
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.8s ease;
}

.why-image:hover img { transform: scale(1.04); }

.why-quote {
  position: absolute;
  bottom: 32px;
  left: -32px;
  right: 32px;
  background: rgba(254,250,224,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.why-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-text);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}

.why-quote cite {
  font-size: 0.8rem;
  color: var(--amber);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── GALLERY ── */
#gallery {
  background: var(--cream);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1 / 3; min-height: 460px; }
.gallery-item:nth-child(2) { grid-column: 7 / 10; grid-row: 1; min-height: 220px; }
.gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1; min-height: 220px; }
.gallery-item:nth-child(4) { grid-column: 7 / 10; grid-row: 2; min-height: 220px; }
.gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2; min-height: 220px; }
.gallery-item:nth-child(6) { grid-column: 1 / 5; grid-row: 3; min-height: 240px; }
.gallery-item:nth-child(7) { grid-column: 5 / 9; grid-row: 3; min-height: 240px; }
.gallery-item:nth-child(8) { grid-column: 9 / 13; grid-row: 3; min-height: 240px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(96,108,56,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(254,250,224,.15);
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(221,161,94,.3); }

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--cream-dark);
  overflow: hidden;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(96,108,56,.08);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--mid-sage);
  opacity: 0.2;
  position: absolute;
  top: -8px;
  left: 24px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: var(--amber); font-size: 0.95rem; }

.testimonial-text {
  font-size: 0.97rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid-sage), var(--dark-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--light-text);
}

.testimonials-cta {
  text-align: center;
  margin-top: 48px;
  padding: 28px;
  background: rgba(96,108,56,.06);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(96,108,56,.2);
}

.testimonials-cta p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin: 0;
}

/* ── CAREERS CTA ── */
#careers-cta {
  background: linear-gradient(135deg, var(--dark-sage) 0%, #4A5528 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

#careers-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/whiteboard-training.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.careers-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.careers-inner h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.careers-inner p {
  color: rgba(254,250,224,.8);
  font-size: 1.08rem;
  margin-bottom: 40px;
}

.careers-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}

.perk-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(254,250,224,.1);
  border: 1px solid rgba(254,250,224,.2);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}

.perk-chip span { font-size: 1rem; }

/* ── CONTACT ── */
#contact {
  background: var(--cream);
  overflow: hidden;
}

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

.contact-info h2 { margin-bottom: 16px; }

.contact-info p {
  color: var(--light-text);
  margin-bottom: 36px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(96,108,56,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-sage);
  font-size: 1rem;
  transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--dark-sage);
  color: var(--cream);
  transform: scale(1.08);
}

.contact-item-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.97rem;
  color: var(--dark-text);
  margin: 0;
  transition: color var(--transition);
}

.contact-item-text a:hover { color: var(--amber); }

.map-wrapper {
  margin-top: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(96,108,56,.12);
}

/* Contact Form */
.contact-form-card {
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--body-text);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.form-group label .req { color: var(--amber); margin-left: 3px; }

.form-control {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(96,108,56,.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.97rem;
  color: var(--dark-text);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--dark-sage);
  box-shadow: 0 0 0 3px rgba(96,108,56,.1);
}

.form-control::placeholder { color: var(--light-text); opacity: 0.7; }

select.form-control { appearance: none; cursor: pointer; }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--dark-sage);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.04em;
}

.form-submit-btn:hover {
  background: #4e5a2e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-submit-btn:active { transform: translateY(0); }

.form-message {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  background: rgba(96,108,56,.12);
  color: var(--dark-sage);
  border: 1px solid rgba(96,108,56,.25);
  display: block;
}

.form-message.error {
  background: rgba(200,80,60,.1);
  color: #a83030;
  border: 1px solid rgba(200,80,60,.2);
  display: block;
}

/* ── FOOTER ── */
#footer {
  background: var(--dark-text);
  color: rgba(254,250,224,.8);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(254,250,224,.08);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(254,250,224,.6);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--dark-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 700;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-contact-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(254,250,224,.7);
}

.footer-contact-chip i {
  color: var(--amber);
  font-size: 0.9rem;
  width: 16px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(254,250,224,.6);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 4px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(254,250,224,.6);
}

.footer-hour-row .day { color: rgba(254,250,224,.8); }

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

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(254,250,224,.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(254,250,224,.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--amber); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(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; }
.reveal-delay-5 { transition-delay: 0.5s; }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--dark-sage);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 500;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--amber);
  transform: translateY(-3px);
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: var(--dark-sage);
  padding: 120px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.2) 0%, transparent 100%);
}

.page-header h1 {
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(254,250,224,.75);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(254,250,224,.55);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a { color: rgba(254,250,224,.7); }
.breadcrumb a:hover { color: var(--amber); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin: 40px 0 12px;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--dark-sage);
  margin: 28px 0 10px;
}

.legal-content p {
  color: var(--body-text);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--body-text);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-date {
  display: inline-block;
  background: rgba(96,108,56,.08);
  color: var(--dark-sage);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 36px;
}

/* ── APPLICATION PAGE ── */
.apply-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.apply-form-card {
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
}

.apply-form-card .form-section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-sage);
  padding: 0 0 12px;
  margin: 36px 0 24px;
  border-bottom: 2px solid rgba(96,108,56,.15);
}

.apply-form-card .form-section-title:first-of-type {
  margin-top: 0;
}

.file-upload-wrap {
  border: 2px dashed rgba(96,108,56,.25);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: all var(--transition);
}

.file-upload-wrap:hover {
  border-color: var(--dark-sage);
  background: rgba(96,108,56,.04);
}

.file-upload-wrap input[type="file"] {
  display: none;
}

.file-upload-icon { font-size: 2rem; margin-bottom: 8px; }

.file-upload-wrap p {
  font-size: 0.9rem;
  color: var(--light-text);
  margin: 0;
}

.file-upload-wrap p strong { color: var(--dark-sage); }

.consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.consent-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: var(--dark-sage);
  cursor: pointer;
}

.consent-wrap label {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
  cursor: pointer;
}

.honeypot { display: none !important; }

/* ── LOADING SPINNER ── */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.form-submit-btn.loading .spinner { display: inline-block; }
.form-submit-btn.loading .btn-text { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ── */

/* ── 1280px and below ── */
@media (max-width: 1280px) {
  .why-quote { left: -16px; right: 16px; }
}

/* ── 1100px and below ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

/* ── 1024px and below ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }

  /* Gallery: switch to 3-col at this size */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
}

/* ── 900px and below ── */
@media (max-width: 900px) {
  .section-pad { padding: 80px 0; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
  .about-image-main { aspect-ratio: 16/10; }
  .about-image-accent {
    bottom: -20px;
    right: -12px;
    width: 140px;
  }
  .about-badge {
    right: -8px;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-visual { display: none; }
  .why-pillars { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Gallery: 2 col */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }

  /* Testimonials */
  .testimonials-track {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 48px auto 0;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── 768px and below (tablets / large phones) ── */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section-pad { padding: 64px 0; }
  .container { padding: 0 18px; }

  /* ── NAV ── */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* ── HERO ── */
  .hero-content { padding: 90px 18px 60px; }
  .hero-sub { font-size: 1rem; }

  .hero-stats-inner {
    grid-template-columns: repeat(3, 1fr);  /* Keep 3 col on tablet */
  }
  .stat-number { font-size: clamp(1.4rem, 5vw, 2.2rem); }

  /* ── ABOUT ── */
  .about-image-accent { width: 110px; bottom: -16px; right: -8px; }
  .about-badge { right: -4px; top: 20px; padding: 10px 14px; }
  .about-badge-num { font-size: 1.5rem; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }

  /* ── WHY US ── */
  .why-pillars { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pillar { padding: 18px 14px; }

  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { min-height: 170px; }

  /* ── TESTIMONIALS ── */
  .testimonials-track { max-width: 100%; }

  /* ── CAREERS ── */
  .careers-perks { gap: 8px; }
  .perk-chip { padding: 7px 14px; font-size: 0.83rem; }

  /* ── CONTACT ── */
  .contact-form-card { padding: 28px 20px; }
  .map-wrapper iframe { height: 220px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bottom-links { flex-wrap: wrap; gap: 14px; }

  /* ── FORMS ── */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .apply-form-card { padding: 28px 18px; }

  /* ── BACK TO TOP ── */
  #back-to-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ── 600px and below ── */
@media (max-width: 600px) {
  /* Hero stats → single column */
  .hero-stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(254,250,224,.12);
    padding: 18px 20px;
  }
  .stat-item:last-child { border-bottom: none; }
}

/* ── 480px and below (small phones) ── */
@media (max-width: 480px) {
  :root { --nav-height: 60px; }

  .section-pad { padding: 52px 0; }
  .container { padding: 0 16px; }

  /* ── NAV ── */
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo-icon { width: 38px; height: 38px; font-size: 0.9rem; }

  /* ── HERO ── */
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* ── ABOUT ── */
  .about-image-accent { display: none; }  /* Hide accent image on very small screens */
  .about-badge { display: none; }
  .about-features { gap: 16px; }

  /* ── SERVICES ── */
  .service-card { padding: 28px 20px; }

  /* ── WHY US ── */
  .why-pillars { grid-template-columns: 1fr; }

  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item { min-height: 200px; }

  /* ── TESTIMONIALS ── */
  .testimonial-card { padding: 28px 20px; }

  /* ── CAREERS ── */
  .careers-perks { flex-direction: column; align-items: center; }
  .perk-chip { width: 100%; max-width: 260px; justify-content: center; }

  /* ── CONTACT ── */
  .contact-details { gap: 16px; }
  .contact-form-card { padding: 24px 16px; border-radius: var(--radius-lg); }

  /* ── FOOTER ── */
  #footer { padding-top: 52px; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }

  /* ── APPLY FORM ── */
  .apply-form-card { padding: 24px 16px; border-radius: var(--radius-lg); }

  /* ── LEGAL ── */
  .legal-content { padding: 48px 16px; }

  /* ── PAGE HEADER ── */
  .page-header { padding-top: 110px !important; padding-bottom: 48px !important; }
}
