/* Albion - jazykova skola | hlavny stylopis */

:root {
  --bg: #fbfaf8;
  --text: #2c2925;
  --text-muted: #756f68;
  --text-body: #4a4640;
  --border: #ddd9d3;
  --border-light: #e6e3df;
  --white: #fdfdfc;
  --warm-100: #f4f2ef;

  --blue-dark: #33538c;
  --blue: #4a72c4;
  --blue-light: #dbe4f7;
  --blue-pale: #f5f8fd;

  --amber-bg: #fbe8d3;
  --amber-text: #8a5a1c;
  --amber: #e0a545;
  --amber-strong: #c9832a;
  --amber-dark: #3d2b12;
  --amber-mid: #d99a4e;

  --green-bg: #e1f5e4;
  --green-border: #7dc98f;
  --green-text: #1f5c30;

  --red: #c0392b;

  --footer-bg: #2b2823;
  --footer-border: #48433d;
  --footer-muted: #b3aea7;
  --footer-muted2: #94897f;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 12px 40px rgba(40, 30, 15, 0.12);
  --shadow-sm: 0 4px 16px rgba(40, 30, 15, 0.08);

  --font-heading: 'Segoe UI Semibold', 'Segoe UI', 'Trebuchet MS', Verdana, Arial, sans-serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button { font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 24px; }

main { flex: 1; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.page-section { animation: fadeIn 0.35s ease both; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-dark);
  color: #f3f6fc;
  font-size: 13px;
  text-align: center;
  padding: 7px 16px;
}
.topbar a { color: #f3f6fc; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-mark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--blue-dark);
}
.logo-sub { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.main-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a.active { color: var(--blue-dark); border-bottom-color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  background: var(--blue-light);
  border: none;
  border-radius: 10px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-dark);
  cursor: pointer;
}
.menu-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  display: none;
}
.mobile-nav {
  border-top: 1px solid var(--border);
  padding: 8px 24px 16px;
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
}
.mobile-nav a {
  padding: 10px 4px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a.active { color: var(--blue-dark); }
.mobile-nav.open { display: flex; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 14px 26px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
}
.btn-amber { background: var(--amber); color: var(--amber-dark); }
.btn-amber:hover { background: var(--amber-strong); color: var(--amber-dark); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; padding: 12px 24px; font-weight: 700; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-outline {
  background: none;
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}
.btn-dark { background: var(--amber-dark); color: #fff; }
.btn-sm { padding: 10px 16px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 70px 24px 90px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--amber-bg);
  color: var(--amber-text);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 46px; font-weight: 800; margin-bottom: 18px; }
.hero p { font-size: 18px; line-height: 1.6; opacity: 0.92; margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; height: 340px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { height: 240px; order: -1; }
}

/* ---------- Stats bar ---------- */
.stats-wrap { max-width: 1200px; margin: -46px auto 0; padding: 0 24px; position: relative; z-index: 5; }
.stats-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px;
}
.stat-item { text-align: center; padding: 0 12px; border-right: 1px solid var(--border-light); }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-heading); font-size: 32px; font-weight: 800; color: var(--blue-dark); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ---------- Section titles ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 24px 40px; }
.section-title { font-family: var(--font-heading); font-size: 30px; font-weight: 800; text-align: center; margin-bottom: 10px; }
.section-lead { text-align: center; color: var(--text-muted); max-width: 560px; margin: 0 auto 44px; }
.section-head-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 34px; }

/* ---------- Grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 26px;
}
.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue-dark);
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-bottom: 14px;
}
.card-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ---------- Courses ---------- */
.section-alt { background: var(--warm-100); padding: 70px 24px; }
.course-card {
  background: var(--white); border-radius: 14px; padding: 26px;
  border: 1px solid var(--border-light); display: block;
}
.course-card:hover { border-color: var(--blue); }
.course-code { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--blue-dark); margin-bottom: 6px; }
.course-name { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--text); }
.course-levels { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.course-price { font-weight: 700; font-size: 14px; color: var(--amber-text); }

.course-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  border: 1px solid var(--border-light); border-radius: 16px; padding: 28px; align-items: center;
}
.course-row .course-code { font-size: 40px; text-align: center; margin-bottom: 0; }
.course-row-name { font-weight: 800; font-size: 20px; margin-bottom: 6px; }
.course-row-desc { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 10px; }
.course-row-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); }
.course-row-meta b { color: var(--text); }
.course-row-meta .price { color: var(--amber-text); }
@media (max-width: 700px) {
  .course-row { grid-template-columns: 1fr; text-align: left; }
  .course-row .course-code { text-align: left; font-size: 30px; }
}

/* ---------- Testimonials ---------- */
.stars { color: var(--amber); font-size: 15px; margin-bottom: 10px; }
.testimonial-text { font-size: 14px; line-height: 1.6; color: var(--text-body); margin-bottom: 14px; }
.testimonial-name { font-weight: 700; font-size: 13px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--amber-mid), var(--amber)); padding: 60px 24px; }
.cta-band-inner { max-width: 800px; margin: 0 auto; text-align: center; color: var(--amber-dark); }
.cta-band h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-band p { font-size: 15px; margin-bottom: 24px; opacity: 0.9; }

/* ---------- Blog ---------- */
.blog-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; display: block; }
.blog-card:hover { border-color: var(--blue); }
.blog-img { height: 150px; width: 100%; object-fit: cover; }
.blog-img-sm { height: 130px; }
.blog-body { padding: 18px; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; margin-bottom: 6px; }
.blog-title { font-weight: 700; font-size: 15px; margin-bottom: 8px; line-height: 1.3; color: var(--text); }
.blog-date { font-size: 12px; color: var(--text-muted); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-top: 8px; }

/* ---------- Page header ---------- */
.page-header { padding: 60px 0 10px; }
.page-header h1 { font-size: 38px; font-weight: 800; margin-bottom: 14px; }
.page-header p { font-size: 16px; color: var(--text-muted); max-width: 640px; }
.page-body { padding-bottom: 90px; }

.body-text { font-size: 16px; line-height: 1.7; color: var(--text-body); margin-bottom: 16px; }
.photo-frame { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 44px; box-shadow: var(--shadow-sm); }
.photo-frame img { width: 100%; height: 280px; object-fit: cover; }
h2.subhead { font-size: 24px; font-weight: 800; margin-bottom: 20px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 50px; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 10px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 14px; text-align: center; }
.team-role { font-size: 12px; color: var(--text-muted); text-align: center; }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 50px; }
.value-card { border: 1px solid var(--border-light); border-radius: 12px; padding: 20px; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Formats ---------- */
.format-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.format-card { border-radius: 16px; padding: 30px; border: 2px solid var(--border-light); }
.format-card.highlight { border-color: var(--blue); }
.format-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.format-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
.format-price { font-weight: 800; color: var(--amber-text); font-size: 18px; }
@media (max-width: 700px) { .format-cards { grid-template-columns: 1fr; } }

.compare-table {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: 14px; overflow: hidden;
}
.compare-table > div { background: var(--white); padding: 16px; font-size: 13px; }
.compare-table > div.head { font-weight: 700; }
@media (max-width: 700px) {
  .compare-table { grid-template-columns: 1fr; }
}

/* ---------- Exam steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px;
}
.step-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Corporate ---------- */
.quote-box { background: var(--warm-100); border-radius: 16px; padding: 30px; margin-bottom: 20px; }
.quote-box p { font-size: 15px; line-height: 1.7; color: var(--text-body); }
.quote-author { font-weight: 700; font-size: 13px; margin-top: 12px; }

/* ---------- Quiz ---------- */
.quiz-panel { background: var(--warm-100); border-radius: 18px; padding: 36px; }
.quiz-panel h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.quiz-panel > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.quiz-progress { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.quiz-question { font-weight: 700; font-size: 17px; margin-bottom: 16px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; max-width: 480px; }
.quiz-option {
  text-align: left; background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 16px; font-size: 14px; cursor: pointer;
}
.quiz-option:hover { border-color: var(--blue); }
.quiz-result-label { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.quiz-result-value { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: var(--blue-dark); margin-bottom: 10px; }
.quiz-result-desc { font-size: 14px; color: var(--text-body); margin-bottom: 18px; max-width: 520px; }
.quiz-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hidden { display: none !important; }

/* ---------- Shop ---------- */
.product-card { border: 1px solid var(--border-light); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; background: var(--white); }
.product-img { height: 130px; width: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; }
.product-name { font-weight: 700; font-size: 14px; line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.product-price { font-weight: 800; font-size: 16px; margin-top: 6px; }
.add-cart-btn { background: var(--blue); color: #fff; border: none; padding: 10px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; }
.add-cart-btn:hover { background: var(--blue-dark); }
.shop-note { margin-top: 40px; font-size: 13px; color: var(--text-muted); }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.cart-item { display: flex; gap: 14px; border-bottom: 1px solid var(--border-light); padding-bottom: 16px; margin-bottom: 16px; }
.cart-item-name { font-weight: 700; font-size: 15px; }
.cart-item-price { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.qty-control { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 15px; }
.qty-value { font-weight: 700; font-size: 14px; min-width: 16px; text-align: center; }
.remove-link { margin-left: auto; font-size: 12px; color: var(--red); background: none; border: none; cursor: pointer; }
.cart-line-total { font-weight: 800; font-size: 15px; white-space: nowrap; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; padding-top: 10px; border-top: 1px solid var(--border-light); }
.cart-empty { text-align: center; color: var(--text-muted); padding: 60px 0; font-size: 15px; }
.checkout-box { border: 1px solid var(--border-light); border-radius: 14px; padding: 26px; position: sticky; top: 100px; }
@media (max-width: 850px) { .cart-layout { grid-template-columns: 1fr; } .checkout-box { position: static; } }

/* ---------- Forms ---------- */
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-stack input, .form-stack textarea, .form-stack select {
  padding: 13px; border-radius: 10px; border: 1px solid var(--border); font-size: 14px; width: 100%;
}
.form-stack textarea { resize: vertical; }
.form-note { font-size: 11px; color: var(--text-muted); }
.form-message { border-radius: 12px; padding: 20px; font-size: 14px; }
.form-message.success { background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green-text); }
.form-message.error { background: #fbe2df; border: 1px solid #e2a49c; color: var(--red); }
.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.info-card { border: 1px solid var(--border-light); border-radius: 14px; padding: 26px; margin-bottom: 20px; }
.info-card-title { font-weight: 800; margin-bottom: 14px; }
.info-card p, .info-card div.info-text { font-size: 14px; color: var(--text-body); line-height: 1.8; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-body); }
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.map-placeholder {
  height: 180px; border-radius: 14px; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 13px; color: var(--blue-dark); font-weight: 600; padding: 16px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.legal-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.legal-page p { font-size: 14px; line-height: 1.8; color: var(--text-body); margin-bottom: 18px; }
.legal-page b { color: var(--text); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--white);
  border-top: 1px solid var(--border); padding: 18px 24px; z-index: 60;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -8px 24px rgba(40,30,15,0.08);
}
.cookie-banner p { font-size: 13px; color: var(--text-body); max-width: 640px; }
.cookie-banner.hidden { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #d9d5cf; padding: 56px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-brand { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: var(--footer-muted); max-width: 280px; }
.footer-col-title { font-weight: 700; color: #fff; margin-bottom: 12px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--footer-muted); }
.footer-links a:hover { color: #fff; }
.footer-news-form { display: flex; gap: 8px; }
.footer-news-form input { flex: 1; padding: 9px 10px; border-radius: 8px; border: none; font-size: 12px; }
.footer-news-form button { background: var(--blue); color: #fff; border: none; padding: 9px 14px; border-radius: 8px; font-weight: 700; font-size: 12px; cursor: pointer; }
.footer-news-ok { font-size: 13px; color: #8fd6a1; }
.footer-bottom {
  border-top: 1px solid var(--footer-border); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--footer-muted2);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--amber-dark); color: #fff;
  padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow); z-index: 100; opacity: 0; transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 700px) {
  .hero h1 { font-size: 34px; }
  .section-title, .page-header h1 { font-size: 28px; }
}
