/* ============================================================
   PAOLA RUIZ — U.S. Education Consultant
   styles.css
   ============================================================ */

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

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

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: #f0ede8;
  color: #1a1a1a;
  line-height: 1.7;
}

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

/* ---- CSS VARIABLES ---- */
:root {
  --cream: #f0ede8;
  --cream-dark: #e5e1da;
  --dark: #222220;
  --darker: #1a1917;
  --taupe: #6b6558;
  --taupe-section: #7a7266;
  --blue: #4a90d9;
  --blue-hover: #357abd;
  --text: #1a1a1a;
  --text-light: #f0ede8;
  --text-mid: #4a4740;
  --rule: #c8c4bc;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-ui: 'Jost', sans-serif;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px 12px;
  gap: 16px;
}

.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.2s;
  padding-bottom: 2px;
}

.nav-link:hover { color: var(--text); }

.nav-link.active {
  color: var(--text);
  border-bottom: 1px solid var(--text);
}

.header-brand {
  text-align: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
}

.header-contact {
  text-align: right;
}

.header-email {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.header-email:hover { color: var(--text); }

/* Sub-bar: lang switcher + tagline */
.header-sub {
  display: flex;
  align-items: center;
  padding: 6px 48px 8px;
  position: relative;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: var(--cream-dark);
  border-color: var(--taupe);
  color: var(--text);
}

.lang-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.lang-btn span { font-size: 0.76rem; }

.header-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}

.header-rule {
  height: 1px;
  background: var(--rule);
  margin: 0 48px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--text);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 10px 26px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--text);
  color: var(--cream);
}

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(240,237,232,0.5);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-outline-light:hover {
  background: rgba(240,237,232,0.15);
  border-color: var(--text-light);
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-heading-serif {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.section-heading-serif.light { color: var(--text-light); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  background: var(--cream);
  padding: 80px 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 340px;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  max-width: 700px;
}

.hero-cta {
  flex-shrink: 0;
  padding-bottom: 8px;
}

/* ============================================================
   HOME — WHY I STARTED
   ============================================================ */
.why-section {
  background: var(--cream);
  padding: 0 48px 80px;
}

.campus-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 60px;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-text-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.why-text-wrap p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
}

/* ============================================================
   HOME — MY STORY PREVIEW
   ============================================================ */
.story-preview {
  background: var(--cream-dark);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.story-sub {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.story-heading {
  font-size: 2.6rem;
  margin: 24px 0 20px;
}

.story-preview p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.story-curious {
  font-size: 0.9rem !important;
  margin-top: 40px !important;
  margin-bottom: 16px !important;
}

.story-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   DARK DIVIDER
   ============================================================ */
.dark-divider {
  height: 10px;
  background: var(--dark);
}

/* ============================================================
   HOME — TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream-dark);
  padding: 80px 48px;
}

.testimonials-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 60px;
  color: var(--text);
}

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

.testimonial-card {
  border: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}

/* ============================================================
   HOME — PROGRAMS (DARK)
   ============================================================ */
.programs {
  background: var(--dark);
  padding: 80px 48px;
}

.programs-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 48px;
}

.program-rule {
  height: 1px;
  background: rgba(240,237,232,0.2);
  margin-bottom: 0;
}

.program-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}

.program-icon {
  padding-top: 4px;
}

.program-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 12px;
}

.program-desc {
  font-size: 0.92rem;
  color: rgba(240,237,232,0.75);
  max-width: 560px;
  margin-bottom: 24px;
}

.program-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.program-grade {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(240,237,232,0.6);
  letter-spacing: 0.04em;
}

.program-learn {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.program-learn:hover { color: var(--blue); }

/* ============================================================
   HOME — CONTACT CTA (DARK)
   ============================================================ */
.contact-cta {
  background: var(--darker);
  padding: 72px 48px;
  text-align: center;
}

.contact-cta-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.contact-cta-buttons {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOME — CONTACT FORM
   ============================================================ */
.contact-form-section {
  background: var(--cream);
  padding: 100px 48px;
}

.contact-form-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-inner h2 { margin-bottom: 12px; }
.contact-form-inner > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--rule);
  background: #fff;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--text);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  align-self: flex-start;
  padding: 15px 40px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 0 48px 48px;
  color: var(--text-light);
}

.footer-rule {
  height: 1px;
  background: rgba(240,237,232,0.2);
  margin-bottom: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

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

.footer-nav a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(240,237,232,0.75);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text-light); }

.footer-email {
  text-align: center;
}

.footer-email a {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(240,237,232,0.75);
  transition: color 0.2s;
}

.footer-email a:hover { color: var(--text-light); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-legal a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(240,237,232,0.7);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-light); }

.footer-bottom {
  border-top: 1px solid rgba(240,237,232,0.15);
  padding-top: 24px;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(240,237,232,0.5);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-full {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  padding: 80px 48px;
  background: var(--cream);
}

.story-full-text h1 { font-size: 2.8rem; margin-bottom: 36px; }

.story-full-text p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.8;
}

.story-full-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

/* Background (dark) */
.background-section {
  background: var(--dark);
  padding: 80px 48px;
}

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

.background-left h2 { margin-bottom: 28px; }

.background-left p {
  font-size: 0.92rem;
  color: rgba(240,237,232,0.75);
  margin-bottom: 24px;
  line-height: 1.8;
}

.bg-quote {
  font-size: 1.3rem !important;
  color: rgba(240,237,232,0.9) !important;
  line-height: 1.5 !important;
  font-style: normal;
}

.credential-block { margin-bottom: 28px; }

.credential-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.credential-block p,
.credential-block li {
  font-size: 0.9rem;
  color: rgba(240,237,232,0.8);
  line-height: 1.7;
}

.credential-block ul { padding-left: 0; }
.credential-block li { padding-left: 16px; position: relative; }
.credential-block li::before {
  content: '·';
  position: absolute;
  left: 4px;
}

.credential-rule {
  height: 1px;
  background: rgba(240,237,232,0.2);
  margin: 24px 0;
}

/* What's in it for you */
.whats-in-it {
  background: var(--cream);
  padding: 80px 48px;
}

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

.whats-header p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding-top: 8px;
}

.whats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 360px;
  gap: 0;
  border: 1px solid var(--rule);
}

.whats-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}

.whats-card h3 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.whats-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: auto;
  padding-top: 40px;
}

.whats-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   BOARDING SCHOOL & UNIVERSITY — HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 48px;
  flex: 1;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
}

.page-hero-cta {
  position: absolute;
  bottom: 28px;
  right: 48px;
  z-index: 2;
}

/* ============================================================
   BOARDING / UNIVERSITY — IDEAL CANDIDATES
   ============================================================ */
.page-section {
  background: var(--cream);
  padding: 80px 48px;
}

.ideal-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.ideal-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.2;
}

.ideal-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.ideal-icon {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ideal-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.ideal-item strong { color: var(--text); font-weight: 600; }

.ideal-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

/* benefit (university) */
.benefit-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.benefit-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.25;
}

.benefit-section > div > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.75;
}

.benefit-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.benefit-list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  font-size: 1.2rem;
}

.benefit-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   HOW I HELP — TWO CARDS
   ============================================================ */
.help-section {
  background: var(--cream);
  padding: 80px 48px;
  border-top: 1px solid var(--rule);
}

.help-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}

.help-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.help-card {
  padding: 40px 36px;
}

.help-card.outlined { border: 1.5px solid var(--rule); border-radius: 4px; }

.help-card.filled {
  background: var(--cream-dark);
  border-radius: 4px;
}

.help-card-title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.help-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.help-card-subtitle {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin: 24px 0 12px;
}

.help-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-card li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.help-card li::before {
  content: '·';
  position: absolute;
  left: 4px;
}

.help-card-divider {
  height: 1px;
  background: var(--rule);
  margin: 28px 0;
}

/* ============================================================
   APPLICATION PROCESS (TAUPE/DARK SECTION)
   ============================================================ */
.process-section {
  background: var(--taupe-section);
  padding: 80px 48px;
}

.process-section h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.process-row {
  display: contents;
}

.process-card {
  background: rgba(240,237,232,0.12);
  border-radius: 8px;
  padding: 24px 20px;
  position: relative;
}

.process-num {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.process-card p {
  font-size: 0.82rem;
  color: rgba(240,237,232,0.85);
  line-height: 1.65;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.4rem;
  align-self: center;
}

/* ============================================================
   PRE-CHECK CTA
   ============================================================ */
.precheck-section {
  background: var(--cream-dark);
  padding: 80px 48px;
  text-align: center;
}

.precheck-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--text);
}

.precheck-card {
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 40px 48px;
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: left;
}

.precheck-card > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.precheck-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.precheck-list li {
  font-size: 0.92rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}

.precheck-list li::before {
  content: '·';
  position: absolute;
  left: 6px;
  font-size: 1.2rem;
}

.precheck-divider {
  width: 60px;
  height: 1px;
  background: var(--rule);
  margin: 32px auto;
}

.precheck-note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.precheck-price {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-page {
  background: var(--cream);
  padding: 80px 48px 100px;
  max-width: 880px;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--text);
}

.policy-page h1.uppercase { text-transform: uppercase; }

.policy-page .policy-intro {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 48px;
  line-height: 1.75;
}

.policy-page .policy-updated {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  font-style: italic;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}

.policy-section h3 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 8px;
  text-transform: none;
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 8px;
}

.policy-section ul {
  padding-left: 4px;
  margin-top: 8px;
}

.policy-section li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 3px 0 3px 20px;
  position: relative;
}

.policy-section li::before {
  content: '•';
  position: absolute;
  left: 4px;
}

/* Accessibility alternating sections */
.accessibility-support {
  background: var(--cream-dark);
  padding: 60px 48px;
}

.accessibility-support h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.accessibility-support p {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
}

.accessibility-contact {
  background: var(--cream);
  padding: 80px 48px;
  text-align: center;
}

.accessibility-contact h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.accessibility-contact p {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.accessibility-rule {
  width: 80px;
  height: 1px;
  background: var(--rule);
  margin: 48px auto 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .header-main { padding: 16px 32px 12px; }
  .header-sub { padding: 6px 32px 8px; }
  .header-rule { margin: 0 32px; }

  .hero { padding: 60px 32px 48px; flex-direction: column; gap: 32px; min-height: auto; }
  .hero-cta { align-self: flex-start; }

  .why-section { padding: 0 32px 60px; }
  .why-content { grid-template-columns: 1fr; gap: 32px; }

  .story-preview { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
  .story-img { height: 360px; }

  .testimonials { padding: 60px 32px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  .programs { padding: 60px 32px; }
  .contact-cta { padding: 60px 32px; }
  .contact-form-section { padding: 60px 32px; }
  .site-footer { padding: 0 32px 40px; }

  .story-full { grid-template-columns: 1fr; padding: 60px 32px; }
  .story-full-image img { height: 360px; }

  .background-inner { grid-template-columns: 1fr; gap: 48px; }
  .background-section { padding: 60px 32px; }

  .whats-in-it { padding: 60px 32px; }
  .whats-header { grid-template-columns: 1fr; gap: 24px; }
  .whats-grid { grid-template-columns: 1fr; }
  .whats-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .whats-photo img { height: 280px; }

  .ideal-section { grid-template-columns: 1fr; gap: 48px; }
  .benefit-section { grid-template-columns: 1fr; gap: 48px; }
  .help-cards { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .page-section { padding: 60px 32px; }
  .process-section { padding: 60px 32px; }
  .precheck-section { padding: 60px 32px; }
  .precheck-card { padding: 32px 28px; }

  .policy-page { padding: 60px 32px 80px; }
  .accessibility-support { padding: 48px 32px; }
  .accessibility-contact { padding: 60px 32px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-email { text-align: left; }
}

@media (max-width: 768px) {
  .header-main { grid-template-columns: 1fr auto; padding: 14px 20px 10px; }
  .header-contact { display: none; }
  .header-sub { padding: 6px 20px 8px; }
  .header-rule { margin: 0 20px; }

  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 2.6rem; }

  .why-section { padding: 0 20px 48px; }
  .campus-img { height: 260px; }

  .story-preview { padding: 48px 20px; }

  .testimonials { padding: 48px 20px; }
  .programs { padding: 48px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .contact-cta { padding: 48px 20px; }
  .contact-cta-buttons { flex-direction: column; align-items: center; gap: 16px; }
  .contact-form-section { padding: 48px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .site-footer { padding: 0 20px 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { align-items: flex-start; }

  .page-section { padding: 48px 20px; }
  .process-section { padding: 48px 20px; }
  .precheck-section { padding: 48px 20px; }
  .policy-page { padding: 48px 20px 60px; }
  .accessibility-support { padding: 40px 20px; }
  .accessibility-contact { padding: 48px 20px; }
  .background-section { padding: 48px 20px; }
  .whats-in-it { padding: 48px 20px; }
}
