/* ============================== */
/* 1. CSS RESET & NORMALIZE        */
/* ============================== */

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,
b, 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 {
  line-height: 1.15;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #1B2E59;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #197278;
  transition: color .25s;
}
ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 10px 12px;
}

/* ============================== */
/* 2. FONT FACE                   */
/* ============================== */

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #1B2E59;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p, ul, ol, li, cite, span, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #1B2E59;
  font-size: 1rem;
}

strong { font-weight: 700; }

/* ============================== */
/* 3. BRAND COLORS & VARIABLES    */
/* ============================== */

:root {
  --primary: #1B2E59;
  --secondary: #197278;
  --accent: #F8E9AF;
  --text: #1B2E59;
  --bg: #fff;
  --section-bg: #F8E9AF13;
  --border: #E0E3EA;
  --card-bg: #fff;
  --cta-shadow: 0 6px 18px 0 rgba(25,114,120,0.10), 0 2px 8px rgba(27,46,89,0.06);
  --radius: 16px;
  --shadow: 0 6px 24px 0 rgba(27,46,89,0.13);
  --focus: #ffd600;
  --danger: #ec3d38;
}

/* ============================== */
/* 4. CONTAINER & SECTION STYLES  */
/* ============================== */

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--radius);
}

@media (max-width: 600px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ============================== */
/* 5. HEADER, LOGO, NAVIGATION    */
/* ============================== */

header {
  background: linear-gradient(90deg, var(--primary) 68%, var(--accent) 100%);
  box-shadow: var(--shadow);
  padding: 0;
  position: relative;
  z-index: 10;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFF;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: .02em;
  padding: 4px 0;
  border-bottom: 2.5px solid transparent;
  transition: color .22s, border-bottom .22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}

.cta-button {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-weight: 900;
  font-size: 1.09rem;
  letter-spacing: .03em;
  border-radius: 28px;
  padding: 12px 30px;
  box-shadow: var(--cta-shadow);
  margin-left: 18px;
  cursor: pointer;
  transition: background .22s, color .22s, box-shadow .22s, transform .18s;
  outline: 0;
  text-shadow: 0 2px 4px #fff3;
}
.cta-button:active {
  transform: scale(.97);
}
.cta-button:hover,
.cta-button:focus {
  filter: brightness(1.1);
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(25,114,120,0.13);
}
.cta-button.secondary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow);
  text-shadow: none;
}
.cta-button.secondary:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 14px 0 rgba(27,46,89,0.06);
}

.text-link {
  color: var(--secondary);
  border-bottom: 2px solid var(--accent);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 6px;
  transition: color .19s, border-color .17s;
}
.text-link:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
}

/* ============================ */
/* 6. MOBILE NAV & BURGER MENU  */
/* ============================ */

.mobile-menu-toggle {
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 10px;
  display: none;
  z-index: 1060;
  transition: color .22s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--accent);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: var(--primary);
  box-shadow: -2px 0 40px 0 rgba(27,46,89,0.22);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  visibility: hidden;
  opacity: 0;
  z-index: 1050;
  transition: transform .35s cubic-bezier(.69,.23,.27,.83), opacity .25s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--accent);
  margin: 28px 24px 8px 0;
  cursor: pointer;
  z-index: 1060;
  transition: color .22s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
  outline: 2px solid var(--accent);
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 36px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.17rem;
  font-weight: 700;
  padding: 9px 0 5px 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-bottom .18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* HEADER NAV ON MOBILE */

@media (max-width: 990px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav { display: none; }
  .cta-button { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 600px) {
  header .container { padding: 0 8px; min-height: 66px; }
}

/* ========================= */
/* 7. HERO & PAGE SECTIONS   */
/* ========================= */

main section {
  margin-bottom: 60px;
  background: var(--bg);
  border-radius: var(--radius);
}
main section .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

@media (max-width: 600px) {
  main section { margin-bottom: 32px; }
  main section .container { padding: 0; }
}

.hero, section:first-child .container {
  padding-top: 32px;
}

/* Artistic accent banner for Hero titles */
h1 {
  position: relative;
  padding-left: 6px;
  z-index: 1;
}
h1:before {
  content: "";
  display: block;
  position: absolute;
  left: -10px; top: 8px;
  width: 56px;
  height: 16px;
  background: var(--accent);
  opacity: 0.36;
  border-radius: 7px;
  z-index: -1;
}

@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  h1:before { width: 40px; height: 9px; top: 7px; }
}

/* =================== */
/* 8. FEATURES GRID, CARDS, ITEMS                    */
/* =================== */

.features-grid, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: stretch;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .features-grid, .content-grid, .card-container {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .features-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

.feature-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 3px 14px 0 rgba(27,46,89,0.11);
  padding: 28px 18px;
  min-width: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px dashed var(--accent);
  position: relative;
  transition: box-shadow .18s, transform .13s;
  margin-bottom: 20px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 22px 0 rgba(25,114,120,0.13);
  transform: translateY(-5px) scale(1.025);
  border-color: var(--secondary);
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px #19727822);
}
.feature-item h3 {
  color: var(--secondary);
  font-weight: 900;
  letter-spacing: .02em;
}
.feature-item p {
  color: #27345d;
  font-size: 1rem;
  font-weight: 400;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding: 26px 20px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .14s;
  z-index: 0;
}
.card:hover { box-shadow: 0 6px 26px 0 rgba(25,114,120,0.16); transform: translateY(-3px) scale(1.01); }

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* =================== */
/* 9. COURSE TEASER CARDS       */
/* =================== */

.course-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
.course-teaser-card {
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(25,114,120,0.08);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 10px solid var(--accent);
  position: relative;
  transition: box-shadow .16s, transform .12s;
}
.course-teaser-card .label {
  position: absolute;
  top: 12px; right: 14px;
  background: var(--secondary);
  color: #fff;
  border-radius: 11px;
  font-size: .89rem;
  padding: 2px 16px 3px 16px;
  box-shadow: 0 2px 6px #19727822;
}
.course-teaser-card:hover,
.course-teaser-card:focus-within {
  box-shadow: 0 6px 18px 0 rgba(27,46,89,0.11);
  border-left-color: var(--secondary);
}

@media (max-width: 900px) {
  .course-teaser-list { flex-direction: column; gap: 10px; }
  .course-teaser-card { min-width: unset; }
}

/* =================== */
/* 10. TESTIMONIALS              */
/* =================== */

.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 6px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(30,45,91,0.11);
  min-width: 270px;
  max-width: 410px;
  margin-bottom: 20px;
  border-left: 7px solid var(--secondary);
  transition: box-shadow .17s, transform .14s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(25,114,120,0.11);
  border-left-color: var(--accent);
  transform: translateY(-5px) scale(1.021);
}
.testimonial-card p {
  color: #292a32;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.testimonial-card cite,
.testimonial-card span {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .01em;
}

@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list { flex-direction: column; gap: 14px; }
}

@media (max-width: 600px) {
  .testimonial-card { padding: 16px 11px; min-width: unset; }
}

/* =================== */
/* 11. SERVICE & CASE CARDS    */
/* =================== */

.service-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(25,114,120,0.08);
  padding: 20px 18px 18px 22px;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-left: 6px solid var(--accent);
  transition: box-shadow .15s, border-color .13s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 5px 18px rgba(27,46,89,0.10);
  border-left-color: var(--secondary);
}

.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.01em;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service-list, .service-pricing-table {
  margin: 10px 0 24px 0;
}

.service-pricing-table thead {
  background: var(--accent);
}
.service-pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: var(--primary);
  font-weight: 900;
}

.service-pricing-table tbody tr:nth-child(even) {
  background: #F8E9AF22;
}
.service-pricing-table td {
  color: var(--secondary);
  font-size: 0.98rem;
}

@media (max-width: 600px) {
  .service-pricing-table th, .service-pricing-table td {
    padding: 6px 7px;
    font-size: .98rem;
  }
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}
.case-teaser {
  background: var(--card-bg);
  border-left: 6px solid var(--secondary);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(25,114,120,0.08);
  padding: 18px 18px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .16s;
}
.case-teaser:hover {
  border-left-color: var(--accent);
}

/* =================== */
/* 12. ALIGNMENTS                 */
/* =================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item, .card, .testimonial-card, .case-teaser, .course-teaser-card, .service-card {
  margin-bottom: 20px !important;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.team-profiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 18px 0;
}

.about-teaser {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-content {
  display: flex;
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
}
.contact-details, .contact-info-hint {
  flex: 1 1 200px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .contact-content { flex-direction: column; gap: 16px; }
}

/* =================== */
/* 13. FOOTER                     */
/* =================== */

footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 24px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 30px #1B2E5918;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-branding {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-branding img {
  height: 32px;
  width: auto;
}
.footer-branding span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--accent);
}
.footer-menu {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  transition: color .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.footer-contact {
  flex: 2 1 300px;
  color: #fff;
  font-size: 0.98rem;
}
.footer-contact p{
  color: white;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-branding { gap: 7px; }
}

/* =================== */
/* 14. TABLE STYLES                */
/* =================== */

.service-pricing-table {
  border-radius: 9px;
  overflow: hidden;
  background: var(--card-bg);
  margin-bottom: 28px;
}
.service-pricing-table th, .service-pricing-table td {
  border-bottom: 1px solid var(--border);
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}

/* =================== */
/* 15. ARTISTIC ACCENTS            */
/* =================== */

/* Add artistic colored brush accents */
.feature-item:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -13px; left: -15px;
  width: 50px; height: 18px;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 50px 14px 40px 19px;
  filter: blur(0.5px);
  pointer-events: none;
}
.feature-item:last-child:after {
  content: '';
  position: absolute;
  bottom: -10px; right: -12px;
  width: 39px; height: 13px;
  background: var(--secondary);
  opacity: 0.2;
  border-radius: 40px 19px 50px 12px;
  filter: blur(1px);
  pointer-events: none;
}

/* Artistic shadow under h2 */
h2:after {
  content: '';
  display: block;
  width: 42px;
  height: 5px;
  background: var(--secondary);
  opacity: 0.13;
  border-radius: 4px;
  margin-top: 3px;
}

/* =================== */
/* 16. MICRO INTERACTIONS/ANIMs  */
/* =================== */

.card, .feature-item, .service-card, .testimonial-card,
.course-teaser-card, .case-teaser {
  transition: box-shadow .18s cubic-bezier(.65,.04,.29,.87), border-left-color .14s, transform .13s;
}
.text-link, .main-nav a, .mobile-nav a {
  transition: color .17s, border-bottom .11s, background .13s;
}
.cta-button {
  transition: background .19s, color .17s, box-shadow .18s, transform .16s;
}

/* =================== */
/* 17. COOKIE BANNER & MODAL     */
/* =================== */

.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120%);
  width: 97vw;
  max-width: 540px;
  padding: 22px 28px 24px 28px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -4px 40px #1B2E5916, 0 1px 2px #19727833;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.73,.11,.19,1.01), opacity .23s;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-banner p {
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}

.cookie-btn {
  padding: 9px 20px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 23px;
  cursor: pointer;
  margin-right: 0;
  transition: background .18s, color .18s, box-shadow .15s;
  box-shadow: 0 2px 14px #F8E9AF38;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 2050;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%) scale(0.9);
  background: #fff;
  color: var(--primary);
  border-radius: 19px;
  box-shadow: 0 8px 70px #1B2E591d, 0 1px 2px #19727822;
  width: 98vw;
  max-width: 470px;
  padding: 34px 35px 27px 35px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s, transform .33s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 23px 0 20px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--secondary);
}
.cookie-modal .always-on {
  font-size: .98rem;
  color: var(--secondary);
  margin-left: 10px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .cookie-modal, .cookie-banner {
    max-width: 97vw;
    padding: 14px 7vw 18px 7vw;
  }
}

/* Cookie modal close background overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2040;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1B2E5933;
  opacity: 0;
  transition: opacity .23s;
  pointer-events: none;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* =================== */
/* 18. GENERAL BUTTONS             */
/* =================== */
button, .cta-button {
  outline: none;
}
button:focus-visible, .cta-button:focus-visible,
.mobile-menu-toggle:focus-visible,
.mobile-menu-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* =================== */
/* 19. ARTISTIC FONTS FOR AWARDS, LABELS        */
/* =================== */
.label, .badge, .award {
  font-family: 'Montserrat', cursive, sans-serif;
  font-weight: 900;
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  padding: 2px 17px;
  font-size: .94rem;
  display: inline-block;
  letter-spacing: .06em;
  box-shadow: 0 2px 4px #F8E9AF83;
}

/* =================== */
/* 20. ACCESSIBILITY                 */
/* =================== */
:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 1.5px;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =================== */
/* 21. RESPONSIVE; FONTS & SPACING        */
/* =================== */
@media (max-width: 800px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.1rem; }
}
@media (max-width: 560px) {
  .container { padding: 0 3vw; }
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1.02rem; }
  h3 { font-size: 0.97rem; }
}

/* ----- Artistic Responsive Scaling ----- */
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section, main section {
    margin-bottom: 30px;
    padding: 18px 4vw;
  }
}

/* =================== */
/* 22. MISC. UTILITIES */
/* =================== */
.text-center     { text-align: center; }
.flex-row        { display: flex; flex-direction: row; }
.flex-col        { display: flex; flex-direction: column; }
.align-center    { align-items: center; }
.justify-center  { justify-content: center; }
.gap-12          { gap: 12px; }
.gap-24          { gap: 24px; }
.mt-20           { margin-top: 20px; }
.mb-20           { margin-bottom: 20px; }

/* Prevent overlapping, adequate padding */
.card-container > *, .features-grid > *, .content-grid > *, .testimonial-list > *, .testimonial-slider > *, .service-list > *, .team-profiles > *, .case-studies > * {
  margin-bottom: 20px;
}

/* Remove absolute for content, position:relative only for art/accents */

/* =================== */
/* END CSS */
