/* ---- CSS RESET & BASE ---- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F4F5F7;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- BRAND FONTS ---- */
h1, h2, h3, h4, h5, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ---- COLORS ---- */
:root {
  --brand-primary: #23427A;
  --brand-secondary: #F4F5F7;
  --brand-accent: #F2A933;
  --brand-accent-light: #FFF4DE;
  --brand-shadow: rgba(35,66,122,0.12);
  --creative-magenta: #F52C9E;
  --creative-green: #35D4A4;
  --creative-blue: #34A0DB;
  --creative-lilac: #BDA9F8;
  --creative-orange: #F57D1F;
}

/* ---- TYPOGRAPHY ---- */
h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.5px;
  line-height: 1.18;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--creative-magenta);
  margin-bottom: 16px;
  line-height: 1.19;
}
h3 {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--creative-blue);
  margin-bottom: 12px;
}
.lead {
  font-size: 1.18rem;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}

/* Artistic font for display */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* ---- LINKS & BUTTONS ---- */
a {
  color: var(--creative-magenta);
  text-decoration: none;
  transition: color .2s cubic-bezier(.47,1.64,.41,.8);
}
a:hover, a:focus {
  color: var(--creative-green);
}
.cta-primary, .cta-secondary {
  border: none;
  outline: none;
  display: inline-block;
  padding: 14px 32px;
  margin: 24px 0 0 0;
  border-radius: 30px 8px 30px 8px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--brand-shadow), 0 2px 4px 0px #fff;
  transition: background .28s, color .2s, box-shadow .26s cubic-bezier(.47,1.64,.41,.8);
  position: relative;
  overflow: hidden;
}
.cta-primary {
  background: var(--brand-primary);
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--creative-magenta);
  color: #fff;
  box-shadow: 0 8px 36px var(--creative-magenta), 0 2px 4px 0px #fff;
}
.cta-secondary {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--creative-green);
  color: #fff;
  box-shadow: 0 6px 20px var(--creative-green), 0 2px 4px 0px #fff;
}

button, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ---- LAYOUT SYSTEM ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 10px;
  }
  .container {
    padding: 0 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 2px 14px var(--brand-shadow);
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow .22s, transform .22s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  box-shadow: 0 8px 36px var(--creative-magenta);
  transform: translateY(-6px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 22px 7px 22px 7px;
  box-shadow: 0 2px 10px var(--creative-lilac), 0 1px 8px #eee;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 560px;
  color: #232338;
  font-size: 1.05rem;
  position: relative;
  transition: box-shadow .18s cubic-bezier(.47,1.64,.41,.8);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--creative-magenta), 0 1px 8px #eee;
}
.testimonial-card blockquote {
  quotes: "\201C" "\201D" "\2018" "\2019";
  font-size: 1.1rem;
  line-height: 1.5;
  font-style: italic;
  margin-right: 12px;
  color: var(--creative-magenta);
}
.testimonial-card strong {
  color: var(--brand-primary);
}
.testimonial-card span {
  font-size: 1.1rem;
  letter-spacing: 1.2px;
  color: var(--brand-accent);
}
@media (max-width: 900px) {
  .testimonial-card {
    max-width: 100%;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
}

/* ---- NAVIGATION ---- */
header {
  background: #fff;
  border-bottom: 2px solid var(--brand-accent-light);
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 16px;
  min-height: 68px;
  width: 100%;
}
.main-nav > a {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 14px 4px 14px 4px;
  transition: background .20s, color .18s;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.main-nav > a.cta-primary {
  margin-left: auto;
}
.main-nav > a:not(.cta-primary):hover, .main-nav > a:not(.cta-primary):focus {
  background: var(--creative-lilac);
  color: var(--creative-magenta);
}
.main-nav > a.cta-primary {
  margin-left: 22px;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-weight: 800;
  border-radius: 25px 7px 25px 7px;
}
.main-nav > a.cta-primary:hover {
  background: var(--creative-magenta);
  color: #fff;
}
.main-nav img {
  height: 40px;
  margin-right: 26px;
}

/* Responsive NAV */
.mobile-menu-toggle {
  display: none;
  background: var(--creative-magenta);
  color: #fff;
  border: none;
  padding: 11px 14px;
  border-radius: 18px 5px 18px 5px;
  font-size: 1.7rem;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 14px;
  z-index: 250;
  transition: background .2s;
}
.mobile-menu-toggle:hover {
  background: var(--creative-green);
  color: #fff;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 32px var(--brand-shadow);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.63,-0.05,.1,1.23);
  padding-top: 32px;
  padding-bottom: 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 19px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  cursor: pointer;
  z-index: 1105;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 50px 24px 0 30px;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--brand-accent-light);
  padding: 11px 20px;
  border-radius: 20px 6px 20px 6px;
  margin-bottom: 4px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover {
  background: var(--creative-magenta);
  color: #fff;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
    padding-right: 50px;
  }
}
@media (max-width: 900px) {
  .main-nav > a {
    font-size: .97rem;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Overlay for mobile menu */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100%; height: 100vh;
  background: rgba(35,66,122,0.20);
  z-index: 1000;
  backdrop-filter: blur(2px);
}
.mobile-menu.open + .mobile-menu-backdrop {
  display: block;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(-6deg, var(--creative-blue) 0%, var(--brand-secondary) 80%);
  padding: 60px 0 50px 0;
  text-align: left;
  min-height: 280px;
  margin-bottom: 24px;
  border-bottom: 3px dotted var(--brand-accent);
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--brand-primary);
  font-weight: 800;
  text-shadow: 2px 4px 0 var(--brand-accent-light);
}
.hero .lead {
  font-size: 1.3rem;
  color: var(--creative-magenta);
}

@media (max-width: 900px) {
  .hero {
    padding: 38px 0 28px 0;
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.38rem;
  }
}

/* ---- FEATURES & ICON LISTS ---- */
.features-list, .course-levels-list, .course-benefits, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  width: 100%;
}
.features-list li, .course-levels-list li {
  background: var(--brand-accent-light);
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 1px 7px var(--brand-shadow);
  padding: 24px 20px 16px 20px;
  min-width: 180px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow .18s, transform .12s cubic-bezier(.47,1.64,.41,.8);
}
.features-list li:hover, .course-levels-list li:hover {
  box-shadow: 0 4px 24px var(--creative-green);
  transform: translateY(-4px) scale(1.02);
}
.features-list img, .course-levels-list img, .contact-details img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
  filter: drop-shadow(2px 3px 0px var(--creative-magenta));
}
.features-list strong, .course-levels-list strong {
  font-weight: 700;
  color: var(--creative-blue);
  font-size: 1.13rem;
}

.course-benefits li{
  background: none;
  box-shadow: none;
  padding: 0 0 0 18px;
  font-weight: 600;
  color: var(--brand-primary);
  border-left: 4px solid var(--brand-accent);
  margin: 6px 0;
}

/* ---- ABOUT & TEXT SECTIONS ---- */
.text-section {
  max-width: 700px;
}
.text-section ul {
  list-style: disc outside;
  margin-left: 18px;
  margin-bottom: 8px;
}
.text-section li {
  margin-bottom: 6px;
  color: var(--brand-primary);
  font-weight: 500;
}
@media (max-width: 740px) {
  .text-section {
    max-width: 100%;
  }
  .features-list, .course-levels-list {
    flex-direction: column;
    gap: 16px;
  }
}
/* ---- TEAM & BIOS ---- */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.team-highlight {
  background: var(--creative-lilac);
  padding: 22px 20px 18px 20px;
  border-radius: 22px 7px 22px 7px;
  box-shadow: 0 1px 7px var(--brand-shadow);
  flex: 1 1 220px;
  min-width: 185px;
  color: var(--brand-primary);
  font-weight: 600;
  transition: box-shadow .17s;
}
.team-highlight strong {
  color: var(--creative-magenta);
  font-size: 1rem;
}
.teacher-bios ul {
  list-style: square inside;
  margin-left: 12px;
}
.teacher-bios li {
  color: var(--brand-primary);
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .team-section {
    flex-direction: column;
    gap: 18px;
  } 
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  border-radius: 20px 6px 20px 6px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 2px 14px var(--brand-shadow);
  background: #fff;
  font-size: 1.05rem;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #ededed;
  color: var(--brand-primary);
}
.pricing-table th {
  background: var(--creative-blue);
  color: #fff;
  font-weight: 800;
  font-size: 1.12rem;
}
.pricing-table tbody tr:nth-child(odd) {
  background: var(--brand-accent-light);
}
.pricing-table ul {
  margin: 0;
  padding-left: 17px;
}
.pricing-table li {
  margin-bottom: 4px;
}

/* ---- FAQ LIST ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 14px;
}
.faq-list dt {
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: var(--brand-primary);
  margin-bottom: 2px;
  font-size: 1.08rem;
}
.faq-list dd {
  margin-bottom: 7px;
  margin-left: 12px;
  color: #3a2a42;
}

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
  width: 100%;
  margin: 18px 0 10px 0;
  background: var(--brand-accent-light);
  border-radius: 18px 5px 18px 7px;
  box-shadow: 0 1px 7px rgba(244,245,247, 0.10);
}
.map-placeholder img {
  width: 90px;
  height: 90px;
  margin-left: 20px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 34px 0 18px 0;
}
footer .content-wrapper {
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 6px;
  justify-content: center;
}
.footer-nav a {
  color: var(--brand-accent);
  font-size: 1.01rem;
  font-weight: 600;
  transition: color .18s;
  border-radius: 10px 3px 10px 2px;
  padding: 4px 8px;
}
.footer-nav a:hover {
  color: var(--creative-green);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  font-size: .93rem;
  align-items: center;
  color: #fff;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 4px;
}
footer img[alt="LinguaVirtuose Logo"] {
  height: 30px;
}
footer small {
  color: #f2e7cb;
  letter-spacing:.1em;
  margin-top: 8px;
  display: block;
}
@media (max-width: 800px) {
  .footer-contact,
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* ---- THANK YOU SECTION ---- */
.thankyou {
  background: var(--creative-green);
  color: #fff;
  border-radius: 26px 8px 26px 8px;
  box-shadow: 0 2px 12px var(--brand-shadow);
  padding: 50px 20px 40px 20px;
  margin: 38px 0;
  text-align: center;
}
.thankyou h1 {
  color: #fff;
  text-shadow: 2px 4px 0 var(--creative-blue);
}
.thankyou a.cta-primary {
  background: #fff;
  color: var(--brand-primary);
  margin-top: 24px;
  font-weight: 600;
}
.thankyou a.cta-primary:hover {
  background: var(--creative-blue);
  color: #fff;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #21202c;
  box-shadow: 0 -2px 20px var(--brand-shadow);
  padding: 20px 10vw 20px 10vw;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 5001;
  flex-wrap: wrap;
  font-size: 1.01rem;
  border-top: 3px solid var(--brand-accent);
  animation: cookie-banner-in .42s cubic-bezier(.63,-0.05,.1,1.23);
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin-left: 0;
  margin-right: 10px;
  padding: 10px 28px;
  border-radius: 20px 6px 20px 5px;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px var(--brand-shadow);
  transition: background .18s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--creative-green);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--creative-magenta);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn:hover {
  opacity: 0.92;
  box-shadow: 0 4px 14px var(--brand-shadow);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 20px 6vw;
    font-size: .98rem;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    margin: 6px 0 0 0;
  }
}
/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed; z-index: 5010;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,66,122,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .3s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px 7px 20px 7px;
  box-shadow: 0 6px 28px var(--brand-shadow);
  min-width: 310px;
  max-width: 95vw;
  padding: 40px 32px 28px 32px;
  color: var(--brand-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  color: var(--creative-magenta);
  font-size: 1.2rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.04rem;
}
.cookie-category-item input[type="checkbox"] {
  appearance: none;
  width: 23px; height: 23px;
  border: 3px solid var(--creative-blue);
  border-radius: 6px;
  background: #fff;
  margin-right: 8px;
  transition: background .15s;
}
.cookie-category-item input[type="checkbox"]:checked {
  background: var(--creative-green);
  border-color: var(--creative-green);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.cookie-modal .cookie-btn {
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 19px 5px 19px 5px;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border: none;
}
.cookie-modal .cookie-btn.primary {
  background: var(--creative-green);
  color: #fff;
}
.cookie-modal .cookie-btn.close {
  background: var(--creative-magenta);
  color: #fff;
}
.cookie-modal .cookie-btn:hover {
  opacity: 0.92;
}
.cookie-modal .cookie-category-item .desc {
  margin-left: 3px;
  font-style: italic;
  color: #666;
  font-size: .95em;
}
.cookie-modal .category-essential input[type="checkbox"] {
  background: var(--creative-blue);
  border-color: var(--creative-blue);
  pointer-events: none;
}
.cookie-modal .category-essential label {
  font-weight: 600;
  color: var(--creative-blue);
}
.cookie-modal .category-essential input[type="checkbox"]:checked {
  background: var(--creative-blue);
  border-color: var(--creative-blue);
}
.cookie-modal-close-x {
  position: absolute;
  right: 17px; top: 13px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor: pointer;
  z-index: 90;
}

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--brand-secondary);
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--creative-lilac);
  border-radius: 9px;
}

/* ---- MICRO-INTERACTIONS & DECORATIVE ---- */
.hero:before {
  content: '';
  position: absolute;
  left: -120px; bottom: -85px;
  width: 250px; height: 170px;
  background: var(--creative-magenta);
  opacity: 0.09;
  border-radius: 50% 50% 40% 60%/50% 60% 40% 50%;
  z-index: 0;
  pointer-events:none;
}
.hero:after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 200px; height: 120px;
  background: var(--creative-blue);
  opacity: 0.10;
  border-radius: 56% 50% 60% 64%/60% 46% 52% 62%;
  z-index: 0;
  pointer-events:none;
  transform: rotate(-7deg);
}
.card:after, .team-highlight:after {
  content: '';
  position: absolute;
  right: -25px; top: -17px;
  width: 38px; height: 38px;
  background: var(--creative-green);
  opacity: .11;
  border-radius: 80% 60% 70% 48%;
  z-index: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 650px) {
  .container {
    padding: 0 2px;
  }
  .card, .team-highlight{
    min-width: 95vw;
    padding: 18px 10px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 1.18rem;
  }
  .hero {
    padding: 24px 0 16px 0;
    min-height: 90px;
  }
}

/* ---- ACCESSIBILITY ---- */
:focus-visible, .cta-primary:focus, .cta-secondary:focus {
  outline: 3px dashed var(--creative-green);
  outline-offset: 2px;
}

/* ---- UTILITIES ---- */
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ---- PRINT OPTIMIZATION ---- */
@media print {
  .main-nav, .footer-nav, .cta-primary, .cta-secondary,
  .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
