/* ==========================================================================
   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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* ==========================================================================
   BRAND AND INDUSTRIAL MODERN VARIABLES
   ========================================================================== */

:root {
  --primary: #1c5074;     /* brand blue */
  --primary-dark: #162f3a;
  --metallic: #686d76;    /* urban/industrial gray */
  --metal-sheen: #b4bbc0; /* metallic highlight */
  --accent: #b06c08;      /* metallic bronze */
  --accent-light: #d8a13b;
  --secondary: #e0e5e8;   /* light interface gray */
  --background: #20262c;  /* dark background for industrial */
  --background-soft: #23292f;
  --surface: #29313a;
  --surface-light: #313942;
  --white: #fff;
  --shadow: 0 4px 16px rgba(28, 80, 116, 0.13);
  --radius: 10px;
  --radius-lg: 14px;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* Fallback fonts for IE/legacy support */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Regular'), local('Roboto-Regular');
}

/* ==========================================================================
   BODY & TYPOGRAPHY
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--background);
  color: var(--secondary);
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.16;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent);
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--metal-sheen);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  font-family: var(--font-display);
  font-weight: 500;
}

strong {
  color: var(--accent);
  font-weight: 700;
}

/* Industrial Modern Details (fonts, metallic, spacing) */
.label {
  display: inline-block;
  background: var(--metal-sheen);
  color: var(--primary-dark);
  border-radius: 7px;
  font-size: 0.85em;
  padding: 2px 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-left: 10px;
  vertical-align: middle;
}

/* Service price labels */
.service-price {
  color: var(--accent);
  background: var(--surface-light);
  border-radius: 6px;
  font-size: 0.97em;
  font-weight: 500;
  padding: 2px 8px;
  margin-left: 8px;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   CONTAINER, SECTION & LAYOUT
   ========================================================================== */
.container {
  max-width: 1132px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}
.cta-section {
  margin-bottom: 0;
  background: linear-gradient(90deg, var(--primary), var(--background-soft));
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

/* Spacing for text/image combinations */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .container {
    padding: 0 8px;
  }

  .section, .cta-section {
    padding: 28px 7px;
  }
}

.card-container,
.feature-grid,
.service-list,
.idea-list,
.team-bio-list,
.product-list,
.workshop-overview,
.benefit-list,
.consulting-services,
.value-points,
.quick-tips,
.footer-nav,
.footer-contact,
.footer-legal,
.next-steps,
.step-list,
.step-by-step-guide,
.content-grid,
.testimonials,
.appointment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.feature-grid,
.product-list,
.idea-list,
.service-list {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 240px;
  min-height: 140px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(28,80,116,0.23);
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent-light);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

/**** Testimonial Cards ****/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  color: var(--primary-dark);
  border-radius: var(--radius-lg);
  min-width: 245px;
  box-shadow: var(--shadow);
  margin-bottom: 0;
  border-left: 5px solid var(--accent);
  transition: box-shadow 0.21s, border-color 0.18s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(28, 80, 116, 0.25);
  border-color: var(--primary);
}
.testimonial-meta {
  color: var(--metallic);
  font-size: 1em;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/**** Responsive Layouts for Lists ****/
@media (max-width: 950px) {
  .feature-grid, .service-list, .idea-list, .product-list, .workshop-overview, .team-bio-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .content-wrapper, .footer-nav, .footer-contact, .footer-legal {
    flex-direction: column;
    gap: 14px;
  }
}

/**** Secondary Lists ****/
ol.step-list,
ol.step-by-step-guide {
  display: flex;
  flex-direction: column;
  gap: 13px;
  counter-reset: steps;
  margin-left: 10px;
}
ol.step-list li, ol.step-by-step-guide li {
  position: relative;
  padding-left: 30px;
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.6;
}
ol.step-list li:before, ol.step-by-step-guide li:before {
  counter-increment: steps;
  content: counter(steps) ".";
  position: absolute;
  left: 0;
  top: 0.7em;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15em;
}

ul.quick-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/**** Map Placeholder (Kontakt) ****/
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface-light);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

/**** Contact Info ****/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 16px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--metal-sheen);
  font-size: 1rem;
  font-family: var(--font-body);
}
.contact-info img {
  width: 18px;
  height: 18px;
  filter: grayscale(30%) brightness(97%);
}

/**** Appointment Links (Kontakt) ****/
.appointment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/**** Booking Info (Beratung) ****/
.booking-info {
  margin-top: 16px;
  color: var(--accent-light);
  font-style: italic;
  background: var(--surface-light);
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 1em;
}

/**** Footer layout ****/
footer .container {
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-nav, .footer-legal {
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.footer-nav a, .footer-legal a {
  color: var(--metal-sheen);
  font-family: var(--font-display);
  margin-bottom: 5px;
  font-size: 1em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--accent);
}
.footer-contact {
  gap: 12px;
  color: var(--secondary);
  font-size: 0.98em;
}
.brand-claim {
  color: var(--metallic);
  margin-top: 16px;
  font-size: 1em;
  letter-spacing: 0.02em;
  letter-spacing: 0.1em;
}

/* =======================================================================
   HEADER, LOGO & NAVIGATION
   ======================================================================= */
header {
  width: 100%;
  background: var(--background-soft);
  box-shadow: 0 2px 10px rgba(28,80,116, 0.09);
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  width: 165px;
  height: auto;
  display: block;
  filter: brightness(95%) grayscale(12%);
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.07em;
  white-space: nowrap;
}
.main-nav a {
  color: var(--metal-sheen);
  padding: 5px 10px;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.main-nav a:hover {
  background: var(--accent-light);
  color: var(--surface);
}

/**** Call-To-Action Button ****/
.cta-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.13em;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(176,108,8,0.12);
  border: 1px solid var(--accent-light);
  margin-left: 14px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(176,108,8,0.18);
}

/**** Mobile Navigation ****/
.mobile-menu-toggle {
  display: none;
  background: var(--surface);
  color: var(--accent-light);
  font-size: 2.1rem;
  border-radius: 9px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 5px rgba(28,80,116,0.09);
  z-index: 28;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(176,108,8,0.18);
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 0;
  }
}

/**** MOBILE MENU OVERLAY ****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(106deg, var(--surface-light), var(--background) 80%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(.85,-0.04,.42,1.01), opacity 0.22s;
  box-shadow: 0 4px 32px rgba(28,80,116,0.28);
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.3rem;
  padding: 18px 26px 0 18px;
  background: transparent;
  color: var(--accent-light);
  align-self: flex-end;
  border-radius: 9px;
  margin-bottom: 20px;
  transition: background 0.18s, color 0.17s;
  z-index: 1000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-light);
  color: var(--primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
  padding: 38px 34px 16px 40px;
}
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25em;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.19s, background 0.18s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-light);
  color: var(--primary-dark);
}

@media (max-width: 480px) {
  .mobile-nav {
    padding: 24px 14px 12px 18px;
    font-size: 1.18em;
  }
}

/* =======================================================================
   CARDS, LISTS & COMPONENTS
   ======================================================================= */

/* Feature & service list items */
.feature-grid > li,
.service-list > li,
.idea-list > li,
.product-list > li,
.team-bio-list > li,
.workshop-overview > li,
.consulting-services > li,
.value-points > li,
.benefit-list > li {
  background: var(--surface-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 20px 20px 20px;
  min-width: 225px;
  min-height: 120px;
  margin-bottom: 0;
  color: var(--secondary);
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
}
.feature-grid > li:hover,
.service-list > li:hover,
.idea-list > li:hover,
.product-list > li:hover,
.workshop-overview > li:hover,
.team-bio-list > li:hover {
  box-shadow: 0 8px 30px 0 rgba(28, 80, 116, 0.22);
  transform: translateY(-5px) scale(1.03);
  border-left: 3px solid var(--accent-light);
  z-index: 2;
}
.feature-grid img, .product-list img, .idea-list img {
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
  filter: grayscale(1%) brightness(98%);
}

.team-bio-list .team-name {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 1.12em;
  margin-bottom: 5px;
}

/**** Responsive padding for components ****/
@media (max-width: 760px) {
  .feature-grid>li, .service-list>li, .idea-list>li, .product-list>li, .team-bio-list>li {
    padding: 16px 10px;
    min-width: 160px;
  }
}

/**** Next Steps List (Thank-you) ****/
ul.next-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--secondary);
}
ul.next-steps li::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 900;
  margin-right: 3px;
}

/**** GENERAL CARD COMPONENT ****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/**** Form elements ****/
input, textarea, select {
  border: 1px solid var(--metallic);
  border-radius: 7px;
  background: var(--surface-light);
  color: var(--secondary);
  padding: 12px;
  margin-bottom: 18px;
  font-size: 1.01em;
  font-family: var(--font-body);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--white);
}

/**** Button Base Styles ****/
button, .button {
  background: var(--metallic);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15em;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 24px;
  margin: 0 8px 0 0;
  transition: background 0.19s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(104,109,118,0.13);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(176,108,8,0.17);
}

/**** List details ****/
ul ul, ul ol, ol ul, ol ol {
  margin-left: 18px;
  margin-bottom: 6px;
}

/**** Details for metallic accents ****/
hr {
  border: 0;
  border-top: 1.5px solid var(--metallic);
  margin: 28px 0;
}

/* =======================================================================
   ANIMATIONS & MICROINTERACTIONS
   ======================================================================= */
.cta-button, .button, button, .card, .feature-grid>li, .testimonials .testimonial-card, .testimonial-card, .main-nav a, .footer-nav a, .mobile-menu, .mobile-menu-toggle {
  transition-property: background, color, box-shadow, border, transform, opacity;
  transition-duration: 0.18s, 0.15s, 0.22s, 0.15s, 0.23s, 0.12s;
  transition-timing-function: cubic-bezier(.66,.04,.35,1.01);
}

/**** Fade & slidein classes (menu and modals) ****/
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu, .cookie-consent-banner, .cookie-preferences-modal {
    will-change: transform, opacity;
  }
}

/* =======================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: var(--surface);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 36px 22px 24px;
  box-shadow: 0 -2px 14px 2px rgba(28,80,116,0.17);
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.57,-0.03,.34,1.17), opacity 0.22s;
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-banner-text {
  flex: 1 0 100%;
  color: var(--white);
  font-size: 1.04em;
  margin-bottom: 8px;
}
.cookie-action-group {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent-light);
  padding: 10px 28px;
  border-radius: 9px;
  font-size: 1em;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  margin-right: 4px;
  transition: background-color .16s, color .16s, box-shadow 0.19s;
}
.cookie-btn.reject {
  background: var(--metallic);
  color: var(--white);
  border: 1px solid var(--metal-sheen);
}
.cookie-btn.settings {
  background: var(--surface-light);
  color: var(--accent);
  border: 1px solid var(--metallic);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-light);
  color: var(--surface);
  box-shadow: 0 2px 12px rgba(176,108,8,0.11);
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 9px;
    border-radius: 12px 12px 0 0;
    font-size: 0.99em;
  }
  .cookie-action-group {
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
}

/**** Cookie Preferences Modal ****/
.cookie-preferences-modal {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(28,80,116, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-preferences-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-preferences-content {
  background: var(--background-soft);
  color: var(--white);
  border-radius: 14px;
  width: 96%;
  max-width: 440px;
  box-shadow: 0 4px 32px 0 rgba(28,80,116,0.33);
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-preferences-close {
  align-self: flex-end;
  background: none;
  color: var(--accent-light);
  font-size: 2.1rem;
  border-radius: 9px;
  padding: 7px 12px 2px 2px;
  margin-bottom: 10px;
  transition: background 0.18s;
}
.cookie-preferences-close:hover,
.cookie-preferences-close:focus {
  background: var(--accent-light);
  color: var(--primary-dark);
}
.cookie-preferences-content h2 {
  color: var(--accent-light);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  background: var(--surface);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 11px;
  font-size: 1.01em;
}
.cookie-category label {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
  color: var(--accent);
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  outline: 2px solid var(--accent-light);
  width: 22px;
  height: 22px;
  margin-right: 13px;
}
.cookie-category input[type="checkbox"]:disabled + span {
  color: var(--metallic);
  opacity: 0.7;
}

/**** Essential badge ****/
.cookie-category .essential-badge {
  background: var(--metallic);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.87em;
  padding: 2px 7px;
  font-family: var(--font-body);
  margin-left: 9px;
}

/**** Modal Save Buttons ****/
.cookie-preferences-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-preferences-actions .cookie-btn {
  padding: 9px 22px;
}

/**** Cookie Modal Responsive ****/
@media (max-width: 490px) {
  .cookie-preferences-content {
    padding: 18px 4px 11px 4px;
    width: 97vw;
  }
}

/* =======================================================================
   MEDIA QUERIES: GLOBAL RESPONSIVE ADJUSTMENTS
   ======================================================================= */
@media (max-width: 520px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .cta-button { font-size: 1em; padding: 10px 16px; }
}

@media (max-width: 370px) {
  .cta-button { font-size: 0.89em; padding: 8px 12px; }
  h1, h2 { font-size: 1rem; }
}

/* =======================================================================
   UTILITIES & ACCESSIBILITY
   ======================================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
[tabindex]:focus-visible,
button:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  z-index: 9999;
}

::selection {
  background: var(--accent-light);
  color: var(--background-soft);
}

/* =======================================================================
   END OF INDUSTRIAL MODERN GENERIC CSS
   ======================================================================= */
