/*
Theme Name: Alpha Globe Ltd
Theme URI: https://alphaglobeltd.com
Author: Alpha Globe Ltd
Author URI: https://alphaglobeltd.com
Description: Professional supported living care theme for Alpha Globe Ltd, Kent, England.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alphaglobeltd
Tags: care, health, supported-living, professional
*/

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --teal:       #1B5E6F;
  --teal-dark:  #0F3D4A;
  --teal-light: #2E8099;
  --gold:       #C49A3C;
  --gold-light: #E8C06A;
  --cream:      #F7F3ED;
  --cream-dark: #EDE7DC;
  --white:      #FFFFFF;
  --text:       #1C2B30;
  --text-mid:   #3D5560;
  --text-light: #6B8A96;
  --border:     #D6CEC4;
  --shadow:     0 4px 24px rgba(27,94,111,0.10);
  --shadow-lg:  0 12px 48px rgba(27,94,111,0.18);
  --radius:     6px;
  --radius-lg:  14px;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--teal-dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1.2em; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* =====================
   LAYOUT UTILITIES
   ===================== */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}
.section { padding: 90px 0; }
.section--cream { background: var(--cream); }
.section--teal  { background: var(--teal-dark); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto 50px; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* =====================
   HEADER & NAV
   ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
}
.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-menu a:hover, .nav-menu a.current { color: var(--teal); }
.nav-menu a:hover::after, .nav-menu a.current::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--teal-dark);
  transition: all var(--transition);
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,60,0.2);
  border: 1px solid rgba(196,154,60,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }

.hero h1 { color: var(--white); margin-bottom: 24px; font-weight: 700; }
.hero h1 span { color: var(--gold-light); display: block; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {}
.hero-stat .number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
}
.hero-card h3 { color: var(--white); margin-bottom: 20px; font-size: 1.3rem; }
.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hero-card-icon {
  width: 38px; height: 38px;
  background: rgba(196,154,60,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.hero-card-text .title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.hero-card-text .desc  { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
  background: var(--cream);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item .icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =====================
   ABOUT STRIP (HOME)
   ===================== */
.about-strip {}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 3rem;
  gap: 16px;
}
.about-img-placeholder span { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  font-family: var(--font-head);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .num { font-size: 2.4rem; font-weight: 700; line-height: 1; display: block; }
.about-badge .txt { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 4px; display: block; }

.about-content { padding-left: 20px; }
.about-content p { font-size: 1.05rem; }
.about-founders { display: flex; gap: 24px; margin-top: 32px; }
.founder-card {
  flex: 1;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.founder-card .role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.founder-card .name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--teal-dark); margin-bottom: 4px; }
.founder-card .desc { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* =====================
   SERVICES
   ===================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: var(--cream);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; margin: 0; }

/* =====================
   FEATURES / WHY US
   ===================== */
.features-section { background: var(--teal-dark); }
.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,0.1); }
.feature-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.feature-body h4 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.feature-body p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }

.features-intro { margin-bottom: 48px; }
.features-intro h2 { color: var(--white); }
.features-intro p   { color: rgba(255,255,255,0.7); max-width: 560px; }

/* =====================
   TESTIMONIAL / QUOTE
   ===================== */
.quote-section { background: var(--cream); }
.quote-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--teal);
  line-height: 1;
}
.quote-text { font-family: var(--font-head); font-size: 1.5rem; color: var(--teal-dark); line-height: 1.5; margin-bottom: 24px; font-style: italic; }
.quote-author { font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }

/* =====================
   CTA BAND
   ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail .icon {
  width: 44px; height: 44px;
  background: rgba(196,154,60,0.2);
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); font-weight: 600; margin-bottom: 4px; }
.contact-detail .value { font-size: 0.95rem; color: var(--white); font-weight: 500; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.03em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,94,111,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold-light); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text .name { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.footer-col h5 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col .address-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-col .address-item span:first-child { opacity: 0.5; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  gap: 20px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* =====================
   ABOUT PAGE SPECIFICS
   ===================== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.5);
}
.team-card-body { padding: 24px; }
.team-card-body .role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.team-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.team-card-body p { font-size: 0.88rem; margin: 0; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-icon { font-size: 1.6rem; flex-shrink: 0; }
.value-body h4 { margin-bottom: 6px; font-size: 1rem; }
.value-body p  { font-size: 0.85rem; margin: 0; }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb span { color: var(--text-mid); margin: 0 8px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-founders { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .trust-items { gap: 24px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-visual { display: none; }
  .hero-inner { padding: 40px 0; }
  .about-content { padding-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.15s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.30s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.45s; opacity: 0; }

/* =====================
   WORDPRESS CLASSES
   ===================== */
.wp-block-image { margin-bottom: 1.5em; }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.wp-caption-text { font-size: 0.85em; color: var(--text-light); text-align: center; }
