/* ==========================
   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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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 {
  height: 100%;
  scroll-behavior: smooth;
  background: #F3F2EF;
}
body {
  min-height: 100vh;
  background: #F3F2EF;
  color: #234155;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #234155;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #C4A850;
  outline-offset: 2px;
}
strong { font-weight: 700; }
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
}

/* ==========================
   VARIABLES (Fallbacks)
   ========================== */
:root {
  --color-primary: #234155;
  --color-secondary: #8DAB7F;
  --color-accent: #F3F2EF;
  --color-gold: #C4A850;
  --color-text: #234155;
  --color-light: #FFFFFF;
  --color-border: #eae5da;
  --color-shadow: rgba(35,65,85,0.08);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ==========================
   LAYOUT & CONTAINERS
   ========================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent, #F3F2EF);
  border-radius: 18px;
  box-shadow: 0 6px 36px var(--color-shadow);
}

/* ==========================
   TYPOGRAPHY
   ========================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--color-primary);
  margin-bottom: 24px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 8px;
}
p, li {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
blockquote {
  font-style: italic;
  background: #FCFAF6;
  border-left: 4px solid var(--color-gold);
  padding: 18px 24px;
  margin-bottom: 18px;
  color: #222;
  border-radius: 10px;
}

ul, ol {
  margin: 0 0 24px 0;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* Visual hierarchy with spacing */
.section h2, .section h1 {
  margin-bottom: 20px;
}
h2 + p {
  margin-top: -12px;
  margin-bottom: 30px;
}

/* ==========================
   HEADER & NAVIGATION
   ========================== */
header {
  background: var(--color-light);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 0;
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
header img {
  height: 50px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-gold);
  background: #f6f4ec;
}
.cta-btn {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  background: var(--color-primary);
  color: var(--color-gold);
  padding: 12px 30px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 18px var(--color-shadow);
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, box-shadow .18s;
  text-shadow: 0 2px 6px rgba(35,65,85,0.09);
  letter-spacing: .04em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(35,65,85,0.15);
}

/* MOBILE BURGER BUTTON */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  padding: 6px 18px;
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 50px;
  border: none;
  margin-left: 12px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  position: relative;
  z-index: 105;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-gold);
  box-shadow: 0 2px 12px var(--color-shadow);
}

/* ==========================
   MOBILE MENU OVERLAY
   ========================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px 24px 24px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: var(--color-accent);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  box-shadow: 3px 0 20px rgba(34, 65, 85, .07);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: var(--color-gold);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-primary);
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-primary);
  padding: 10px 0;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold);
  color: var(--color-light);
  padding-left: 8px;
}

/* ==========================
   HERO SECTION
   ========================== */
.hero {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-gold);
  min-height: 290px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 12px 54px rgba(35,65,85,0.10);
  margin-bottom: 36px;
  padding-top: 28px;
  padding-bottom: 36px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-gold);
}
.hero h1, .hero h2, .hero h3, .hero p {
  color: var(--color-gold);
}
.hero h1 {
  font-size: 2.7rem;
  letter-spacing: .01em;
  font-weight: 700;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.hero .cta-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 2px 14px rgba(240,205,75,0.13);
  margin-left: 0;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}

/* ==========================
   FEATURE LISTS / SECTIONS
   ========================== */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-item {
  background: var(--color-light);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(35,65,85,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  border: 1px solid #ece5d2;
  transition: box-shadow 0.19s, border-color 0.17s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  filter: grayscale(0.2) brightness(1.13);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0px rgba(196,168,80, 0.15);
  border-color: var(--color-gold);
  z-index: 1;
}

/* ==========================
   TRENDS PREVIEW & LISTING
   ========================== */
.trends-preview, .trend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.trend-item, .trend-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-light);
  border-radius: 15px;
  padding: 24px 20px 24px 20px;
  box-shadow: 0 4px 22px rgba(35,65,85,0.07);
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  gap: 12px;
  transition: box-shadow 0.18s, border 0.14s;
  border: 1px solid #ece5d2;
}
.trend-item img, .trend-detail img {
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
}
.trend-item:hover, .trend-detail:hover {
  box-shadow: 0 8px 34px 0px rgba(196,168,80, 0.10);
  border: 1.5px solid var(--color-gold);
  z-index: 1;
}

/* ==========================
   SERVICES / GUIDES / CASELIST
   ========================== */
.services-summary, .services-list, .guides-list, .case-studies, .team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-item, .guide-item, .case-item, .team-member {
  background: var(--color-light);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(133,111,60,0.07);
  padding: 22px 22px 20px 22px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  border: 1px solid #eadcbe;
  display: flex;
  flex-direction: column;
}
.service-item h3, .guide-item h3, .case-item h3, .team-member h3 {
  margin-bottom: 12px;
  font-size: 1.17rem;
  font-family: var(--font-display);
  color: var(--color-primary);
}
.service-item:hover, .guide-item:hover, .case-item:hover, .team-member:hover {
  box-shadow: 0 8px 36px rgba(196,168,80,0.12);
  border: 1.5px solid var(--color-gold);
}
.services-list {
  margin-bottom: 14px;
}
.services-list .service-item { gap: 10px; }

/* ==========================
   TESTIMONIALS
   ========================== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px 20px 18px;
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(196, 168, 80, 0.10);
  border: 1.3px solid #ebded1;
  min-width: 250px;
  max-width: 340px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border 0.15s;
  color: #1f2830;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 3px solid var(--color-gold);
  color: #272b2f;
  margin-bottom: 6px;
  padding-left: 18px;
  padding-right: 0;
}
.testimonial-card p strong {
  color: var(--color-primary);
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  padding-top: 0;
}
.testimonial-stars img {
  width: 22px;
  height: 22px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 48px 0 rgba(35, 65, 85, 0.16);
  border: 1.8px solid var(--color-gold);
  z-index: 2;
}

/* Expert quotes (trendy.html) */
.expert-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.expert-profile {
  background: var(--color-light);
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(196,168,80,0.10);
  padding: 22px 22px 22px 22px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  color: #232425;
}
.expert-profile h3 {
  color: var(--color-primary);
  margin-bottom: 11px;
  font-size: 1.12rem;
}
.expert-profile blockquote {
  font-size: 1.07rem;
  color: #2d3841;
  border: none;
  padding-left: 0;
}

/* ==========================
   FAQ
   ========================== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.faq-item {
  flex: 1 1 240px;
  min-width: 230px;
  background: var(--color-light);
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(35,65,85,0.04);
  padding: 20px 18px 16px 16px;
  margin-bottom: 20px;
  border: 1.2px solid #eadcbe;
}
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.faq-answer {
  font-size: .99rem;
  color: #205054;
}

/* ==========================
   CONTACT SNIPPET/DETAILS
   ========================== */
.contact-snippet, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-snippet img, .contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  margin-bottom: -3px;
}
.contact-details p, .contact-details > span {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 48px 0 16px 0;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -6px 24px rgba(35,65,85,0.07);
  font-family: var(--font-body);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s, text-decoration 0.17s;
  text-decoration: underline transparent;
  text-underline-offset: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-light);
  text-decoration: underline var(--color-gold);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-accent);
  align-items: center;
  justify-content: center;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  margin-bottom: -3px;
}
.footer-copy {
  display: block;
  color: var(--color-light);
  font-size: .92rem;
  margin-top: 12px;
  letter-spacing: .01em;
}

/* ==========================
   LINKS & CTA-LINKS
   ========================== */
.cta-link {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: underline;
  padding: 3px 6px;
  border-radius: 6px;
  transition: background 0.17s, color 0.15s;
}
.cta-link:hover, .cta-link:focus {
  background: var(--color-gold);
  color: var(--color-light);
  text-decoration: none;
}

/* ==========================
   MICRO-INTERACTIONS
   ========================== */
.feature-item, .trend-item, .trend-detail, .service-item, .guide-item, .case-item, .team-member, .testimonial-card, .faq-item {
  transition: box-shadow 0.2s, border 0.14s, transform 0.14s;
}
.feature-item:hover, .trend-item:hover, .trend-detail:hover, .service-item:hover, .guide-item:hover, .case-item:hover, .team-member:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 8px 36px 0px rgba(196,168,80,0.14);
}

/* ==========================
   COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 300;
  background: var(--color-light);
  box-shadow: 0 -2px 16px 0 rgba(35,65,85,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 16px 22px 16px;
  border-radius: 22px 22px 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  color: var(--color-text);
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--color-primary);
  color: var(--color-gold);
  border-radius: 20px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(35,65,85,0.07);
  transition: background 0.16s, color 0.14s;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-btn.reject {
  background: #eae5da;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: var(--color-gold);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: var(--color-light);
}

/* ----- Cookie preferences MODAL ----- */
.cookie-modal-backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 400;
  background: rgba(35,65,85,0.23);
  opacity: 1;
  transition: opacity .3s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--color-light);
  min-width: 320px;
  max-width: 98vw;
  border-radius: 28px;
  box-shadow: 0 8px 46px 0 rgba(196,168,80,0.21);
  padding: 34px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 19px;
  height: 19px;
  border-radius: 6px;
  margin-right: 4px;
}
.cookie-modal .cookie-btn {
  margin-top: 12px;
}
.cookie-modal .btn-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 33px;
  padding: 0;
  text-align: center;
  transition: background .15s, color .15s;
}
.cookie-modal .btn-close:hover, .cookie-modal .btn-close:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}

/* ==========================
   GENERAL FLEXBOX CLASSES
   ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(35,65,85,0.05);
  background: var(--color-light);
  padding: 18px;
}
.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;
}

/* Supplementary: team, expert-quotes, etc already flexed above */

/* ==========================
   RESPONSIVE DESIGN
   ========================== */
@media (max-width: 960px) {
  header .container {
    max-width: 97vw;
    padding: 0 17px;
    gap: 14px;
  }
  .content-wrapper {
    max-width: 99vw;
    padding: 0 3vw;
  }
}
@media (max-width: 768px) {
  /* Layout: flex-direction to column */
  .features, .trends-preview, .trend-list, .services-summary, .services-list, .guides-list,
  .case-studies, .testimonials, .expert-quotes, .faq-list, .team,
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .hero {
    min-height: 170px;
    border-radius: 0 0 20px 20px;
    padding-bottom: 20px;
  }
  .hero .container, .hero .content-wrapper {
    padding: 0 10px;
    align-items: flex-start;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
  .footer-contact, .footer-nav {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 1.6rem; }
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.13rem; }
  .container { padding: 0 4vw; }
  .footer-copy { font-size: .85rem; }
  .section { padding: 17px 1px; }
}

/* Hamburger hides nav on mobile, show nav on desktop */
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
    visibility: hidden;
  }
  header nav {
    display: flex;
    align-items: center;
  }
}

/* ==========================
   ACCESSIBILITY & FOCUS STATES
   ========================== */
*:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ==========================
   OTHER STYLE DETAILS
   ========================== */
.text-section {
  margin-bottom: 18px;
}
.text-section h3 {
  margin-top: 14px;
}

ol {
  list-style: decimal inside;
  margin-left: 1em;
}

ol li {
  margin-bottom: 8px;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

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