/* ==========================================================================
   ΓΛΥΚΟ & ΨΩΜΙ ΤΟΠΟΥΖΟΓΛΟΥ - ΒΑΣΙΚΟ ΣΤΥΛ & ΠΡΟΣΒΑΣΙΜΟΤΗΤΑ (WCAG 2.1 AA)
   ========================================================================== */

:root {
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-surface-warm: #f4ede4;
  --color-text: #211c18;
  --color-text-muted: #544941;
  --color-gold: #7d5a1b; /* Αντίθεση > 5:1 σε λευκό/κρεμ φόντο */
  --color-gold-hover: #5e4312;
  --color-espresso: #1a1512;
  --color-border: #e3d9cd;
  --color-accent: #a33820;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-current: var(--font-sans);
  
  --site-max-width: 1200px;
  --header-height: 80px;
  --espa-height: 70px;
  --border-radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.09);
  --transition: all 0.25s ease-in-out;
  
  --font-scale: 1rem;
}

/* Skip link για ανάγνωση από πληκτρολόγιο */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: #000000;
  color: #ffffff;
  padding: 12px 20px;
  z-index: 10000;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: underline;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 10px;
  outline: 3px solid #ffcc00;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-current);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: var(--font-scale);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: var(--transition);
}
a:hover, a:focus {
  color: var(--color-gold-hover);
}
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   1. STICKY BANNER ΕΣΠΑ (ΠΑΡΑΜΕΝΕΙ ΣΤΑΘΕΡΟ ΚΑΘΩΣ ΚΥΛΑΕΙ Η ΣΕΛΙΔΑ)
   ========================================================================== */
.espa-sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #003399; /* Επίσημο μπλε ΕΕ */
  box-shadow: 0 4px 12px rgba(0, 51, 153, 0.12);
  z-index: 1000;
  padding: 6px 16px;
}

.espa-sticky-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.espa-banner-link {
  display: block;
  flex: 1;
  max-width: 820px;
  text-decoration: none;
}

.espa-banner-link img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.espa-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.espa-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid #003399;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.espa-lang-btn {
  background: #ffffff;
  color: #003399;
}
.espa-lang-btn:hover, .espa-lang-btn:focus {
  background: #003399;
  color: #ffffff;
}

.espa-info-btn {
  background: #003399;
  color: #ffffff;
}
.espa-info-btn:hover, .espa-info-btn:focus {
  background: #002266;
}

/* ==========================================================================
   2. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 900;
}

.header-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.main-nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
}
.nav-link:hover, .nav-link:focus {
  color: var(--color-gold);
}

.espa-highlight-link {
  color: #003399 !important;
  font-weight: 700;
  border: 1px solid #003399;
  padding: 4px 10px;
  border-radius: 4px;
}
.espa-highlight-link:hover {
  background: #003399;
  color: #ffffff !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-text);
  margin: 4px 0;
  border-radius: 2px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-surface-warm);
  color: var(--color-espresso);
  text-decoration: none;
  transition: var(--transition);
}
.social-icon-link:hover, .social-icon-link:focus {
  background: var(--color-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(rgba(24, 18, 14, 0.80), rgba(24, 18, 14, 0.88)),
              url('../images/hero_bakery.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 85px 20px 95px;
  text-align: center;
}

.hero-logo-box {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-logo {
  max-height: 140px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}
.hero-main-logo:hover {
  transform: scale(1.03);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e5cd96;
  margin-bottom: 18px;
}

.hero-description {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: #f0eae1;
  line-height: 1.7;
}

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

.btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--color-gold);
  color: #ffffff;
  border: 2px solid var(--color-gold);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover, .btn-outline:focus {
  background: #ffffff;
  color: var(--color-espresso);
}

/* ==========================================================================
   4. SECTIONS COMMON
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: 12px;
}

.title-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section-lead {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.grid {
  display: grid;
  gap: 30px;
}
.grid-2-col {
  grid-template-columns: repeat(2, 1fr);
}

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

/* ==========================================================================
   5. HISTORY & TRADITION
   ========================================================================== */
.history-section {
  background: var(--color-surface);
}

.history-card {
  background: var(--color-surface-warm);
  padding: 36px 32px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-gold);
}

.history-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-espresso);
  margin-bottom: 14px;
}

.history-synodi-box {
  display: flex;
  gap: 20px;
  align-items: center;
}
.history-synodi-text {
  flex: 1;
}
.history-synodi-img-wrap {
  flex-shrink: 0;
  width: 140px;
  text-align: center;
}
.history-synodi-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-gold);
}
.history-img-caption {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 5px;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26, 21, 18, 0.85);
  color: #d1bd7f;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(209, 189, 127, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.history-banner {
  margin-top: 48px;
  padding: 30px;
  background: #faf5ed;
  border-radius: var(--border-radius);
  border: 1px dashed var(--color-border);
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-espresso);
  margin-bottom: 10px;
}
.quote-author {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* ==========================================================================
   6. PRODUCTS GRID
   ========================================================================== */
.products-section {
  background: var(--color-bg);
}

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

.product-card {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f4ede4;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-espresso);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. GELATO
   ========================================================================== */
.gelato-section {
  background: linear-gradient(135deg, #251d17, #15110e);
  color: #ffffff;
}

.gelato-grid {
  align-items: center;
  gap: 48px;
}

.gelato-text-col {
  padding-right: 15px;
}

.gelato-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f2ede6;
  margin-bottom: 16px;
}

.gelato-img-col {
  display: flex;
  justify-content: center;
}

.gelato-photo {
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.text-gold {
  color: #d1bd7f !important;
}

.text-white {
  color: #ffffff !important;
}

.title-divider.align-left {
  margin-left: 0;
}

/* ==========================================================================
   8. QUALITY & ORDER
   ========================================================================== */
.quality-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.quality-desc {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}
.btn-order {
  background: #a33820;
  color: #ffffff;
  font-size: 1.1rem;
  padding: 14px 34px;
}
.btn-order:hover, .btn-order:focus {
  background: #7d2612;
  color: #ffffff;
}

/* ==========================================================================
   9. STORES
   ========================================================================== */
.stores-section {
  background: var(--color-bg);
}

.store-card {
  background: var(--color-surface);
  padding: 34px 28px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-gold);
}

.store-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-espresso);
  margin-bottom: 16px;
}

.store-address, .store-phone, .store-hours {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.store-svg {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.store-phone a {
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.svg-inline {
  vertical-align: middle;
  display: inline-block;
  margin-left: 6px;
}

/* ==========================================================================
   10. FULL ESPA SECTION (ΣΥΜΜΟΡΦΩΣΗ)
   ========================================================================== */
.espa-full-section {
  background: #f0f4fa;
  border-top: 2px solid #003399;
}

.espa-box {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #cce0ff;
}

.espa-banner-display {
  margin-bottom: 36px;
}
.espa-img-preview {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.espa-text-grid {
  gap: 30px;
  margin-bottom: 30px;
}

.espa-lang-block {
  background: #f7faff;
  padding: 24px;
  border-radius: 6px;
  border-left: 3px solid #003399;
}

.espa-lang-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #003399;
  margin-bottom: 10px;
}

.espa-desc-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2b3b5c;
}

.espa-poster-download {
  border-top: 1px solid #d9e5f7;
  padding-top: 24px;
}
.espa-poster-download p {
  margin-bottom: 12px;
  font-size: 1rem;
}
.espa-poster-download .btn {
  background: #003399;
  color: #ffffff;
  border: none;
}
.espa-poster-download .btn:hover {
  background: #002266;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-espresso);
  color: #e5ded7;
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.footer-socials .social-icon-link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.footer-socials .social-icon-link:hover, .footer-socials .social-icon-link:focus {
  background: var(--color-gold);
  color: #ffffff;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #d1c6bb;
  text-decoration: none;
}
.footer-links a:hover, .footer-links a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.btn-text-link {
  background: none;
  border: none;
  color: #e5cd96;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 8px;
  padding: 0;
}
.btn-text-link:hover, .btn-text-link:focus {
  color: #ffffff;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.875rem;
  color: #a89d92;
}

/* ==========================================================================
   12. ACCESSIBILITY WIDGET & PANEL (WCAG 2.1 AA)
   ========================================================================== */
.a11y-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #003399;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s ease, background 0.2s ease;
}
.a11y-floating-btn:hover, .a11y-floating-btn:focus {
  transform: scale(1.05);
  background: #002266;
}
.a11y-icon {
  font-size: 1.3rem;
}

.a11y-panel {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 320px;
  max-width: 90vw;
  background: #ffffff;
  border: 2px solid #003399;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 10000;
  overflow: hidden;
}

.a11y-panel-header {
  background: #003399;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a11y-panel-title {
  font-size: 1.05rem;
  font-weight: 700;
}
.a11y-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
}

.a11y-panel-body {
  padding: 16px;
}
.a11y-control-group {
  margin-bottom: 16px;
}
.a11y-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-espresso);
  margin-bottom: 6px;
}
.a11y-btn-group {
  display: flex;
  gap: 8px;
}
.a11y-btn {
  flex: 1;
  background: #f0f4fa;
  border: 1px solid #cce0ff;
  color: #003399;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.a11y-btn:hover, .a11y-btn:focus {
  background: #003399;
  color: #ffffff;
}
.a11y-btn[aria-pressed="true"] {
  background: #003399;
  color: #ffffff;
}

.a11y-reset-btn {
  width: 100%;
  background: #fff0f0;
  color: #c00;
  border-color: #fcc;
  margin-bottom: 10px;
}
.a11y-reset-btn:hover {
  background: #c00;
  color: #fff;
}

.a11y-statement-link {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: #003399;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 4px;
}

/* ==========================================================================
   13. MODALS (ΕΣΠΑ & ΔΗΛΩΣΗ ΠΡΟΣΒΑΣΙΜΟΤΗΤΑΣ)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 20px;
}
.modal-backdrop[hidden] {
  display: none !important;
}

.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  position: relative;
}

.modal-header {
  background: #003399;
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
.modal-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

.modal-body {
  padding: 28px 24px;
}
.modal-banner-img {
  margin-bottom: 24px;
}
.modal-text-section {
  background: #f7faff;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #003399;
  margin-bottom: 20px;
}
.modal-text-section h3 {
  font-size: 1.1rem;
  color: #003399;
  margin-bottom: 8px;
}
.modal-actions {
  margin-top: 24px;
}

.statement-subtitle {
  font-size: 1.15rem;
  color: #003399;
  margin: 18px 0 8px;
}
.statement-list {
  padding-left: 20px;
  margin-bottom: 16px;
}
.statement-list li {
  margin-bottom: 6px;
}
.statement-date {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   14. ACCESSIBILITY THEMES (HIGH CONTRAST & DYSLEXIA FONT)
   ========================================================================== */
body.high-contrast {
  background-color: #000000 !important;
  color: #ffffff !important;
}
body.high-contrast * {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}
body.high-contrast a {
  color: #ffff00 !important;
  text-decoration: underline !important;
}
body.high-contrast .btn, body.high-contrast .espa-btn {
  background: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
}
body.high-contrast .espa-sticky-header, body.high-contrast .modal-box, body.high-contrast .a11y-panel {
  background: #000000 !important;
  border: 3px solid #ffffff !important;
}

body.inverted-colors {
  filter: invert(1) hue-rotate(180deg);
}

body.underline-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}

body.dyslexia-font {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.5px !important;
  word-spacing: 2px !important;
  line-height: 1.9 !important;
}

/* ==========================================================================
   15. RESPONSIVE DESIGN (MOBILE / TABLET)
   ========================================================================== */
@media (max-width: 900px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .grid-2-col {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .main-nav .nav-list.is-open {
    display: flex;
  }
  .espa-sticky-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .espa-controls {
    justify-content: flex-end;
  }
  .hero-section {
    padding: 60px 16px 70px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .section {
    padding: 50px 0;
  }
}
