/* RESET & BASE STYLES */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #1B2430;
  color: #F4F6F8;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F2994A;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:active, a:focus {
  color: #fff;
  outline: none;
}

/* FONT-FACE (Recommended to host fonts locally for performance) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #F4F6F8;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  color: #fff;
}
h2 {
  font-size: 2rem;
  color: #F2994A;
}
h3 {
  font-size: 1.3rem;
  color: #F4F6F8;
  font-weight: 700;
  margin-top: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #F4F6F8;
}
p, ul, ol {
  color: #D0D4DB;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
  color: #F2994A;
}

ul {
  padding-left: 1.2em;
}
li {
  margin-bottom: 10px;
}

/* BRANDING & COLOR PALETTE */
:root {
  --color-primary: #253858;
  --color-primary-dark: #1B2430;
  --color-secondary: #F2994A;
  --color-accent: #F4F6F8;
  --color-metal: #CED1D4;
  --color-gradient-dark: #232C3A;
  --color-card-bg: #222932;
  --color-footer-bg: #18202A;
  --color-shadow: rgba(88,100,114,0.12);
}

/* CONTAINER & SECTION LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 700px;
}

.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;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 8px;
  box-shadow: 0 6px 24px var(--color-shadow);
  padding: 24px 24px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #313A48;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  background: #F4F6F8;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(28,32,41,0.17);
  margin-bottom: 20px;
  border-left: 6px solid #F2994A;
  color: #222933;
  min-width: 0;
}
.testimonial-card p {
  color: #253858;
  font-size: 1.1rem;
  font-weight: 500;
}
.testimonial-card span {
  color: #444;
  font-size: 1rem;
  font-style: italic;
}

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

/* MAIN NAVIGATION */
header {
  background: #1B2430;
  border-bottom: 3px solid #232C3A;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 0;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #F4F6F8;
  padding: 7px 16px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.14s cubic-bezier(.4,0,.2,1), color 0.14s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #232C3A;
  color: #F2994A;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 11px 26px;
  background: #253858;
  color: #fff;
  border-radius: 20px;
  font-weight: 900;
  font-size: 1.1rem;
  border: 0;
  box-shadow: 0 2px 10px rgba(79,85,102,0.10);
  transition: background 0.16s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  outline: none;
  margin-left: 28px;
  letter-spacing: 0.03em;
}
.button-primary:hover, .button-primary:focus {
  background: #F2994A;
  color: #222933;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 24px #F2994A33;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #F2994A;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 100;
}
.mobile-menu-toggle:focus {
  outline: 2px dashed #F2994A;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  max-width: 375px;
  height: 100vh;
  background: #232C3A;
  box-shadow: -4px 0 24px #00000056;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,0,.5,1);
  padding: 30px 28px 18px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  border: none;
  background: none;
  font-size: 2.1rem;
  color: #F2994A;
  cursor: pointer;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  padding: 14px 0;
  border-radius: 8px;
  letter-spacing: 0.02em;
  background: none;
  transition: color 0.18s, background 0.18s;
  width: 100%;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2994A;
  background: #253858;
}

@media (max-width: 998px) {
  .main-nav ul {
    gap: 16px;
  }
  .button-primary {
    margin-left: 10px;
  }
}

@media (max-width: 850px) {
  .main-nav ul,
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 850px) {
  .main-nav {
    justify-content: space-between;
  }
}

@media (max-width: 500px) {
  .mobile-menu {
    width: 100vw;
    max-width: none;
    padding: 28px 9vw 18px 12vw;
  }
}

/* HERO SECTIONS */
.hero {
  min-height: 360px;
  background: linear-gradient(120deg, #232C3A 30%, #253858 80%);
  border-bottom: 3px solid #232C3A;
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px #1b243088;
}
.hero p {
  color: #D0D4DB;
  font-size: 1.2rem;
  margin-bottom: 26px;
}

/* FEATURES & CARDS */
.features ul, .services ul, .brand-highlights ul, .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  list-style-type: none;
  padding: 0;
}
.features ul li, .services ul li, .brand-highlights ul li {
  background: #232C3A;
  border-radius: 9px;
  padding: 26px 22px 18px 22px;
  box-shadow: 0 3px 14px rgba(46,52,65,0.09);
  min-width: 230px;
  min-height: 160px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid #F2994A;
  position: relative;
  margin-bottom: 20px;
  gap: 10px;
}
.features ul li b, .services ul li b {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  color: #F2994A;
  margin-bottom: 8px;
  font-weight: 700;
}
.features ul li p, .services ul li p, .brand-highlights ul li p {
  color: #D0D4DB;
  font-size: 1rem;
}
.features ul li img,
.brand-highlights ul li img {
  height: 32px;
  width: 32px;
  margin-bottom: 2px;
  filter: grayscale(40%);
}
.services ul li span {
  font-size: 1rem;
  color: #8A919F;
  font-weight: 700;
  margin-left: 8px;
}

.services-preview ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-preview ul li {
  background: #232C3A;
  border-radius: 9px;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 3px 12px rgba(46,52,65,0.07);
  flex: 1 1 230px;
  min-width: 230px;
  margin-bottom: 20px;
  border-left: 4px solid #F2994A;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.services-preview ul li b {
  color: #F2994A;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.services-preview ul li span {
  color: #AAA;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 7px;
}

/* CTA */
.cta {
  background: #232C3A;
  border-radius: 10px;
  box-shadow: 0 2px 13px rgba(38,38,48,0.14);
  margin-bottom: 44px;
  text-align: center;
}
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: #F4F6F8;
  margin-bottom: 14px;
}
.cta p {
  color: #D0D4DB;
  margin-bottom: 20px;
}

.cta .button-primary {
  margin-top: 18px;
}

/* STORY CARDS (Reiseberichte) */
.stories .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.stories .text-section {
  background: #232C3A;
  border-radius: 9px;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 3px 12px rgba(46,52,65,0.08);
  flex: 1 1 270px;
  margin-bottom: 20px;
  border-left: 4px solid #F2994A;
}

/* ABOUT & BRAND HIGHLIGHTS */
.brand-highlights ul li {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* CONTACT & LEGAL */
.legal .text-section {
  background: #232C3A;
  border-radius: 9px;
  padding: 30px 28px 22px 28px;
  box-shadow: 0 3px 13px rgba(46,52,65,0.07);
  margin-bottom: 32px;
  border-left: 4px solid #F2994A;
}

.contact .text-section img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
  vertical-align: bottom;
  filter: grayscale(20%);
}

.confirmation .text-section {
  background: #232C3A;
  border-radius: 9px;
  padding: 44px 36px 28px 36px;
  box-shadow: 0 3px 14px rgba(46,52,65,0.09);
  margin-bottom: 0;
  border-left: 5px solid #F2994A;
}
.confirmation h1 {
  margin-bottom: 16px;
  color: #F2994A;
}

/* FOOTER */
footer {
  background: var(--color-footer-bg);
  color: #ADB3BE;
  font-size: 1rem;
  padding: 36px 0 24px 0;
  border-top: 2px solid #232C3A;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-branding img {
  height: 40px;
  width: auto;
}
.footer-branding p {
  color: #F4F6F8;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2px;
  font-size: 0.95rem;
  color: #8A919F;
}
.footer-links a {
  color: #F2994A;
  font-weight: 600;
  transition: color 0.13s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ADB3BE;
  font-size: 0.95rem;
}
.contact-details img {
  height: 16px;
  width: 16px;
  vertical-align: bottom;
  margin-right: 8px;
  filter: grayscale(25%);
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%);
  opacity: 0.74;
  transition: filter 0.16s, opacity 0.17s;
}
.social-links a:hover img {
  filter: grayscale(10%);
  opacity: 1;
}

/* SPACING & LAYOUT (Mandatory Patterns, Flex ONLY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE DESIGN (Mobile-First) */
@media (max-width: 1020px) {
  .container { max-width: 94vw; }
  .features ul, .services-preview ul, .brand-highlights ul, .stories .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .features ul li, .services-preview ul li, .brand-highlights ul li, .stories .text-section {
    min-width: 0;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, section { padding: 28px 6vw; }
  .hero { padding: 40px 0 24px 0; }
  .footer-branding img { height: 32px; }
  .testimonial-card { padding: 18px 10px; }
  .features ul li, .services-preview ul li, .brand-highlights ul li { padding: 16px 12px 12px 12px; }
  .stories .text-section { padding: 14px 10px 11px 10px; }
  .confirmation .text-section { padding: 22px 14px 14px 14px; }
  .main-nav > a img { height: 30px; }
  .cta { padding: 14px 0; }
}
@media (max-width: 700px) {
  .container { max-width: 100vw; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 22px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .footer-branding { flex-direction: column; gap: 6px; }
  .footer-links, .contact-details { font-size: 0.88rem; }
}
@media (max-width: 420px) {
  .section, section { padding: 9vw 2vw; }
}

/* HOVER/FOCUS EFFECTS AND MICRO-INTERACTIONS */
.card, .features ul li, .services-preview ul li, .stories .text-section {
  transition: box-shadow 0.2s, border-color 0.18s, transform 0.18s;
}
.card:hover, .features ul li:hover, .services-preview ul li:hover, .stories .text-section:hover {
  box-shadow: 0 5px 24px #F2994A33, 0 1.5px 9px #22293324;
  border-left: 4px solid #F2994A;
  transform: translateY(-2px) scale(1.01);
}

.button-primary:active {
  background: #232C3A;
  color: #F2994A;
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1B2430;
  color: #F4F6F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 32px #11172655;
  padding: 26px 8vw 18px 8vw;
  z-index: 7000;
  font-size: 1rem;
  gap: 16px;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: #253858;
  cursor: pointer;
  margin-right: 10px;
  box-shadow: 0 1px 8px rgba(40,43,54,0.19);
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner button:last-child { margin-right: 0; }
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F2994A;
  color: #253858;
  box-shadow: 0 5px 18px #F2994A28;
  outline: none;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14,19,30,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #232C3A;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 60px #0000005e;
  padding: 38px 28px 26px 28px;
  min-width: 340px;
  min-height: 240px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #F2994A;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #313A48;
  font-size: 1.02rem;
}
.cookie-modal-content .toggle {
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
}
.cookie-modal-content .switch {
  width: 38px;
  height: 22px;
  border-radius: 18px;
  background: #8A919F;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  margin-left: 10px;
}
.cookie-modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal-content .slider {
  position: absolute;
  top: 2px;
  left: 3px;
  height: 18px;
  width: 18px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.16s;
  box-shadow: 0 2px 7px rgba(23,28,37,0.10);
}
.cookie-modal-content .switch input:checked + .slider {
  left: 17px;
  background: #F2994A;
}
.cookie-modal-content .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal-content button {
  padding: 9px 22px;
  border-radius: 18px;
  background: #253858;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 6px;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-modal-content button:last-child { margin-right: 0; }
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #F2994A;
  color: #222933;
}
.cookie-modal-content .cookie-close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #F2994A;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-content .cookie-close:hover, .cookie-modal-content .cookie-close:focus {
  color: #fff;
}
.cookie-modal-content .cookie-category[data-essential="true"] .cookie-category-label {
  color: #8A919F;
}
.cookie-modal-content .cookie-category[data-essential="true"] .switch {
  background: #657187;
  pointer-events: none;
}
.cookie-modal-content .cookie-category[data-essential="true"] .slider {
  background: #F2994A;
  left: 17px;
}

/* INDUSTRIAL MODERN AESTHETIC */
body, section, .container, .main-nav, footer {
  background-color: #1B2430;
}
.card, .features ul li, .services-preview ul li, .stories .text-section, .confirmation .text-section, .legal .text-section {
  border: 1.5px solid #313A48;
  background: #232C3A;
  box-shadow: 0 4px 24px #00000133;
}
p, span, li, .card, .features ul li {
  font-family: "Roboto", Arial, sans-serif;
  color: #D0D4DB;
  font-size: 1rem;
}
.card, .features ul li, .services ul li, .stories .text-section {
  border-left: 4px solid #F2994A;
}
hr, .section-divider {
  height: 2px;
  background-color: #313A48;
  border: none;
  margin: 24px 0;
}

/* Metallic accents using border and shadow */
.card, .features ul li, .services-preview ul li, .stories .text-section {
  box-shadow: 0 1px 6px var(--color-shadow), 0 0.5px 2px #CED1D4;
}

/* Hide scrollbars on modal and mobile menu (modern browsers) */
.mobile-menu::-webkit-scrollbar,
.cookie-modal-content::-webkit-scrollbar { display: none; }
.mobile-menu, .cookie-modal-content { -ms-overflow-style: none; scrollbar-width: none; }

/* Accessibility contrast fix for testimonials */
.testimonial-card { color: #1B2430; }
.testimonial-card p { color: #253858; }
.testimonial-card b { color: #253858; }

/* Misc. */
::-webkit-input-placeholder { color: #8A919F; }
::-moz-placeholder { color: #8A919F; }
:-ms-input-placeholder { color: #8A919F; }
::placeholder { color: #8A919F; }

/* Hide cookie/modal by default (implementation should toggle .hide) */
.cookie-banner.hide, .cookie-modal.hide { display: none; }

/* SMOOTH FADE-IN FOR LOADABLE SECTIONS */
.section, .hero, .cta, .testimonial-card, .confirmation, .legal {
  opacity: 0;
  animation: fadeInSection 0.88s cubic-bezier(.5,0,.2,1) 0.15s forwards;
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}

/* FOCUS VISIBLE for accessibility */
a:focus-visible, .button-primary:focus-visible, button:focus-visible {
  outline: 2px dashed #F2994A;
  outline-offset: 2px;
}

/* Hide visually but keep for accessiblity (for JS toggling) */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
