/* =============================
   CSS RESET & BASE 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #fff;
  color: #161616;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  color: #161616;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.45, .05, .55, .95);
}
a:focus {
  outline: 2px solid #212121;
  outline-offset: 2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
ul, ol {
  list-style-position: inside;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
strong {
  font-weight: 600;
}
small {
  font-size: 0.9em;
}

/* =============================
   COLOR PALETTE & FONTS
   ============================= */
:root {
  --primary: #161616;
  --secondary: #545454;
  --bg: #fff;
  --muted-bg: #f4f4f4;
  --brand-dark: #161616;
  --brand-light: #f9f9f9;
  --brand-gray: #ececec;
  --brand-accent: #FFFFFF;
  --brand-border: #dedede;
  --brand-deep: #1a1a1a;
  --brand-shadow: rgba(30,30,30,0.06);

  /* Typography - use Montserrat for headings, Roboto for body */
  --font-body: 'Roboto', Arial, sans-serif;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--primary);
  font-family: var(--font-body);
}

/* =============================
   TYPOGRAPHY & HEADINGS
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.subheadline {
  color: #383838;
  font-size: 1.17rem;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  font-family: var(--font-body);
}

a:hover, .main-menu a:hover, .footer-menu a:hover, .mobile-nav a:hover {
  color: #212121;
  text-decoration: underline;
}

/* Visual divider for monochrome separation */
hr {
  border: none;
  height: 1px;
  background: var(--brand-border);
  margin: 32px 0;
}

/* =============================
   PAGE LAYOUT & CONTAINER
   ============================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
/* ===== Cards and Content Wrap ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-light);
  box-shadow: 0 3px 18px var(--brand-shadow);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative; /* for overlays only, not absolute cards */
  transition: box-shadow 0.24s cubic-bezier(.45, .05, .55, .95), transform 0.2s;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34,34,36,0.13);
  transform: translateY(-4px) scale(1.012);
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonials-section {
  background: var(--brand-light);
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid var(--brand-border);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  box-shadow: 0 3px 12px var(--brand-shadow);
  border-radius: 16px;
  padding: 20px 32px 20px 24px;
  margin-bottom: 24px;
  font-style: italic;
  color: #232323;
  position: relative;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-meta {
  font-style: normal;
  font-size: 1rem;
  margin-left: 16px;
  color: #545454;
  font-weight: 500;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 28px;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: var(--muted-bg);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--brand-shadow);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.2s cubic-bezier(.45,.05,.55,.95), transform .18s;
}
.feature-grid > div img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  margin-bottom: 6px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(34,34,36,.18);
  transform: translateY(-3px) scale(1.015);
}

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

.section ul, .section ol, .content-wrapper ul, .content-wrapper ol {
  margin-bottom: 1.3em;
  padding-left: 20px;
}
.section li, .content-wrapper li {
  margin-bottom: 8px;
  color: var(--secondary);
}

/* ====== Blog Lists & Related Posts ====== */
.blog-teasers, .related-posts, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.blog-teasers > div,
.related-posts > div,
.blog-post-list > article {
  background: var(--muted-bg);
  border-radius: 14px;
  box-shadow: 0 1px 10px var(--brand-shadow);
  padding: 20px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s,cubic-bezier(.45,.05,.55,.95),transform .18s;
}
.blog-teasers > div:hover,
.related-posts > div:hover,
.blog-post-list > article:hover {
  box-shadow: 0 5px 26px rgba(42,42,48,0.14);
  transform: translateY(-2px) scale(1.010);
}
.blog-teasers a,
.related-posts a,
.blog-post-list a {
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid #222;
  padding-bottom: 1px;
  transition: border-color 0.23s, color 0.2s;
}
.blog-teasers a:hover,
.related-posts a:hover,
.blog-post-list a:hover {
  color: #111;
  border-bottom-color: #444;
}

/* Sidebar and filter utilities */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  font-size: 1rem;
}
.categories-filter a {
  color: #353535;
  background: #eaeaeb;
  border-radius: 6px;
  padding: 3px 14px;
  transition: background 0.18s,
    color 0.20s;
}
.categories-filter a:hover {
  background: #C1C1C8;
  color: #101010;
}

.search-bar {
  margin-bottom: 22px;
}
.search-bar input {
  width: 92%;
  padding: 10px 16px;
  border-radius: 7px;
  border: 1px solid #cdcdce;
  background: #fafafd;
  font-size: 1rem;
  color: #292929;
  transition: border-color 0.15s;
}
.search-bar input:focus {
  border-color: #161616;
  outline: none;
}

/* FAQ styling (kontakt) */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-list > div {
  background: var(--muted-bg);
  border-radius: 10px;
  padding: 16px 18px;
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px var(--brand-shadow);
}

/* Service categories (reiseangebote) */
.service-categories ul {
  margin-bottom: 28px;
  padding-left: 20px;
}

.offers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.offer-item {
  background: var(--muted-bg);
  box-shadow: 0 1px 12px var(--brand-shadow);
  border-radius: 13px;
  padding: 18px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.offer-item:hover {
  box-shadow: 0 8px 24px rgba(34,34,34,.15);
}

.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--brand-light);
  border-radius: 14px;
  box-shadow: 0 1px 7px var(--brand-shadow);
  padding: 18px 18px 18px 20px;
  margin-top: 16px;
  gap: 13px;
  max-width: 420px;
}

.newsletter-section {
  background: #f6f6f7;
  border-top: 1px solid #e5e5e5;
  padding-bottom: 50px;
}

.cta-section {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 18px;
}

/* =============================
   HERO SECTIONS
   ============================= */
.hero {
  background: #fff;
  padding: 66px 0 40px 0;
  border-bottom: 2px solid #eaeaea;
  min-height: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.confirmation-section {
  padding: 60px 0 60px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.legal-section {
  background: #fafafd;
  border-radius: 18px;
  box-shadow: 0 2px 22px var(--brand-shadow);
  margin-bottom: 52px;
  padding: 40px 20px 28px 20px;
}

/* =============================
   BUTTONS & INTERACTIONS
   ============================= */
.btn-primary, a.btn-primary {
  appearance: none;
  background: #fff;
  border: 2px solid #111;
  color: #161616;
  border-radius: 30px;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 18px var(--brand-shadow);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.19s, border-color 0.19s, box-shadow 0.16s, transform 0.17s;
  display: inline-block;
  margin-top: 8px;
}
.btn-primary:hover, a.btn-primary:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #232323;
  box-shadow: 0 10px 28px rgba(30,30,32,0.15);
  transform: translateY(-2px) scale(1.015);
}

.btn-secondary {
  appearance: none;
  background: #fff;
  border: 2px solid #888;
  color: #161616;
  border-radius: 30px;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(32,32,34,0.08);
  cursor: pointer;
  transition: background 0.16s, color 0.18s, border-color 0.21s, box-shadow .15s, transform .17s;
  margin-top: 8px;
}
.btn-secondary:hover {
  background: #232323;
  color: #fff;
  border-color: #161616;
}

/* Small button for cookie banner */
.btn-small {
  padding: 7px 18px;
  font-size: 0.99rem;
  border-radius: 24px;
}

/* =============================
   HEADER / MAIN NAVIGATION
   ============================= */
.site-header {
  background: #fff;
  box-shadow: 0 2px 24px var(--brand-shadow);
  border-bottom: 2px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  justify-content: space-between;
}

.site-header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: #232323;
  opacity: .88;
  padding: 5px 4px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.18s, color 0.18s, opacity 0.13s;
}
.main-nav a:hover {
  color: #111;
  border-bottom: 2px solid #111;
  opacity: 1;
}
.main-nav a.btn-primary {
  margin-left: 18px;
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: #181818;
  color: #eee;
  padding: 44px 0 22px 0;
  border-top: 2px solid #ececec;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 20px;
}
.main-menu, .footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-menu a, .main-menu a {
  color: #e0e0e0;
  opacity: 0.78;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: color .17s, opacity .15s;
}
.footer-menu a:hover, .main-menu a:hover {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
}

.contact-info {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.contact-info img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  margin-right: 12px;
}
.contact-info div {
  font-size: 1rem;
  line-height: 1.7;
  color: #e8e8e8;
}
.contact-info a {
  color: #a9c2ae;
  word-break: break-all;
  font-weight: 500;
  text-decoration: underline dotted;
}
.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  filter: grayscale(1) contrast(1.3);
  opacity: .88;
  transition: filter .17s, opacity .15s;
}
.social-links a:hover img {
  filter: grayscale(0) contrast(1.1);
  opacity: 1;
}
.site-footer small {
  color: #c1c1c1;
  font-size: 0.97em;
  justify-self: flex-end;
}

/* =============================
   BURGER MENU MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.25rem;
  border: none;
  color: #151515;
  z-index: 110;
  margin-left: 11px;
  margin-right: 0;
  padding: 12px 12px 8px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ececec;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,250,250,0.97);
  box-shadow: 0 0 80px 20px rgba(10,10,10,0.12);
  z-index: 120;
  padding: 32px 28px 20px 36px;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(.66,.04,.49,1),box-shadow 0.17s;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #191919;
  font-size: 2.4rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 26px;
  cursor: pointer;
  padding: 10px 8px 8px 10px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ececec;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-top: 20px;
}
.mobile-nav a {
  display: block;
  font-size: 1.23rem;
  color: #161616;
  padding: 10px 2px;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  border-radius: 7px;
  transition: background 0.12s, color .17s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #222;
  color: #fff;
}

/* Hide mobile menu by default on desktop */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* SHOW mobile menu and burger below 1024px */
@media (max-width: 1024px) {
  .site-header .container {
    gap: 6px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================
   RESPONSIVE (MOBILE-FIRST)
   ============================= */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .content-wrapper {
    padding: 0 4px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .hero {
    padding: 46px 0 18px 0;
  }
  .site-header .container,
  .footer-nav,
  .content-grid, .feature-grid, .card-container, .testimonials-section, .blog-teasers, .related-posts, .blog-post-list, .faq-list, .offers-list {
    flex-direction: column;
    gap: 18px !important;
  }
  .contact-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonials-section {
    padding: 28px 0;
  }
  .section, section, .legal-section {
    margin-bottom: 38px;
    padding: 22px 0 20px 0;
  }
  .card, .feature-grid > div, .blog-teasers > div, .related-posts > div, .blog-post-list > article, .newsletter-signup, .offer-item, .faq-list > div {
    min-width: unset;
    max-width: 100%;
    padding: 18px 10px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .newsletter-signup {
    max-width: 100%;
  }
  .cta-section {
    gap: 6px;
    flex-direction: column;
    align-items: stretch;
  }
  .mobile-menu {
    padding: 22px 10px 10px 18px;
  }
}

@media (max-width: 540px) {
  .site-header img { height: 32px; }
  .content-wrapper { padding: 0; }
  .container { padding: 0 5px; }
  .legal-section { padding: 18px 3px; }
}

/* Flex rules for .text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* =============================
   COOKIE CONSENT BANNER + MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 140;
  background: #161616;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 26px 18px 18px 18px;
  box-shadow: 0 -2px 32px rgba(34,34,34,0.27);
  font-size: 1.04rem;
  transition: transform 0.35s cubic-bezier(.45, .05, .55, .95);
  gap: 28px;
}
.cookie-banner.closed {
  transform: translateY(140%);
}
.cookie-banner p {
  margin: 0;
  color: #fff;
  flex: 2;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  background: #fff;
  color: #232323;
  border: 2px solid #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.045rem;
  padding: 8px 18px;
  margin-top: 2px;
  border-radius: 25px;
  transition: background .16s, color .16s, border-color .18s, transform .12s;
  cursor: pointer;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #262626;
  color: #fff;
  border-color: #aaa;
  transform: translateY(-1px) scale(1.03);
}
.cookie-banner .btn-link {
  background: transparent;
  color: #fff;
  border: none;
  text-decoration: underline;
  font-weight: 500;
  padding: 0;
  font-size: 1rem;
  margin-left: 14px;
  margin-right: 10px;
  border-radius: 0;
  transition: color .15s;
}
.cookie-banner .btn-link:hover {
  color: #bbb;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 9999;
  background: rgba(12,12,12,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.23s cubic-bezier(.58, .12, .52, 1);
}
.cookie-modal.closed {
  opacity: 0;
  pointer-events: none;
}
.cookie-preferences {
  background: #fff;
  border-radius: 19px;
  padding: 36px 28px 28px 28px;
  max-width: 430px;
  width: 90vw;
  box-shadow: 0 5px 38px rgba(48,48,52,0.18);
  color: #181818;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 1rem;
  position: relative;
}
.cookie-pref-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  color: #111;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 7px;
}
.cookie-pref-close:hover { background: #f0f0f0; }
.cookie-preferences h2 {
  font-size: 1.29rem;
  color: #181818;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size:1.03rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type='checkbox'] {
  accent-color: #161616;
  width: 19px; height: 19px;
  margin-right: 7px;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-category.essential label {
  color: #1a1a1a;
}
.cookie-category.essential input { display: none; }
.cookie-preferences .cookie-actions {
  justify-content: flex-end;
  gap: 14px;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 6px 12px 8px;
    gap: 10px;
    font-size: 0.98rem;
  }
  .cookie-preferences {
    padding: 19px 7px 14px 7px;
    min-width: 0;
  }
}

/* =============================
   TRANSITION UTILITIES
   ============================= */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  a, button, .btn-primary, .btn-secondary,
  .feature-grid > div, .card, .blog-teasers > div, .offer-item,
  .main-nav a, .footer-menu a, .social-links a img {
    transition: all 0.2s cubic-bezier(.45, .05, .55, .95);
  }
}

/* =============================
   MISC CLASSES (FORMS, ETC.)
   ============================= */
input[type=text], input[type=email], textarea {
  border: 1px solid #adaeb1;
  border-radius: 9px;
  padding: 12px 18px;
  font-size: 1rem;
  width: 100%;
  background: #fafafd;
  color: #181818;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: #232323;
  outline: none;
}
label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-weight: 500;
}

/* =============================
   ARIA & VISIBILITY UTILITIES
   ============================= */
.visually-hidden, .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap !important;
  border: 0 !important;
}

/* =============================
   END OF STYLE.CSS
   Only flexbox used for layout! No grid/columns.
   ============================= */