/* ===========================================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1a1d1e;
  color: #F8F5F2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #C36C24;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8F5F2;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
}
button {
  cursor: pointer;
  outline: none;
}

/* ===========================================
   VARIABLES (WITH FALLBACKS)
   =========================================== */
:root {
  --color-primary: #25303B;
  --color-primary-dark: #1a1d1e;
  --color-secondary: #F8F5F2;
  --color-secondary-light: #fff;
  --color-accent: #C36C24;
  --color-accent-dark: #A05317;
  --color-metal: #B0B8BF;
  --color-metal-dark: #5C646C;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(37,48,59,0.17);
  --shadow-hover: 0 4px 16px rgba(37,48,59,0.24);
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&family=Open+Sans:wght@400;600&display=swap');
h1, .h1 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #F8F5F2;
  margin-bottom: 16px;
  line-height: 1.16;
}
h2, .h2 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-metal, #B0B8BF);
  margin-bottom: 20px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent, #C36C24);
  line-height: 1.22;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'PT Serif', Georgia, serif;
  font-weight: 700;
  color: var(--color-metal-dark, #5C646C);
}
p, ul, ol, li, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #e6e2db;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding-left: 16px;
  margin: 16px 0 16px 0;
  color: var(--color-secondary);
}
strong {
  color: var(--color-accent-dark);
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 7px;
}

/* ===========================================
   CONTAINER AND SECTION LAYOUTS
   =========================================== */
.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section, 
section:not(.hero):not(.cta):not(.confirmation) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(37, 48, 59, 0.73);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
section.hero,
.hero {
  margin-bottom: 60px;
  padding: 54px 20px 48px 20px;
  background: linear-gradient(110deg, #23272C 88%, #353b41 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 40px 0 rgba(21,24,27,0.22);
  display: flex;
  align-items: center;
  min-height: 270px;
}
section.cta {
  background: linear-gradient(120deg, var(--color-accent, #C36C24) 55%, transparent 120%);
  box-shadow: var(--shadow-hover);
  padding: 40px 20px;
  margin-bottom: 60px;
  border-radius: var(--radius);
  color: #fff;
}
section.confirmation {
  padding: 54px 20px 48px;
  text-align: center;
  background: linear-gradient(120deg,#23272C 90%,#353b41 120%);
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
}

/* ===========================================
   FLEXBOX LAYOUT HELPERS (MANDATORY)
   =========================================== */
.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; flex-direction: column; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }


/* ============
   HEADER & NAVIGATION (INDUSTRIAL MODERN)
   ============ */
header {
  background: #22262a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 20px;
  box-shadow: 0 2px 24px #23272c80, inset 0 1px 0 rgba(153,169,188,0.04);
  position: relative;
  z-index: 101;
}
header > img {
  height: 54px;
  width: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
header nav a {
  color: var(--color-secondary-light);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.24s, color 0.24s;
  letter-spacing: 0.025em;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: rgba(195,108,36,0.10);
  color: var(--color-accent);
}
.btn-primary {
  background: var(--color-accent, #C36C24);
  color: #fff !important;
  padding: 10px 28px;
  border-radius: var(--radius);
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1.13rem;
  font-weight: 700;
  text-shadow: 0 1px 1px #2224;
  box-shadow: 0 2px 18px -6px #C36C2470, 0 2px 10px #ae6b2a57;
  border: none;
  margin-left: 24px;
  transition: background 0.22s, transform 0.13s, box-shadow 0.18s;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-dark, #A05317);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 40px -2px #A0531790;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: var(--color-metal);
  margin-left: 26px;
  border: none;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  transition: background 0.16s;
}
header .mobile-menu-toggle:focus,
header .mobile-menu-toggle:hover {
  background: #31363C;
  color: var(--color-accent);
}

/* ============
   MOBILE MENU
   ============ */
.mobile-menu {
  position: fixed;
  top: 0; 
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,26,28,0.96);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.87,0,.13,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  background: none;
  color: var(--color-accent);
  font-size: 2.3rem;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.21s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #332D29;
}
.mobile-nav {
  margin: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  padding: 12px 10px 12px 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 4px;
  border-bottom: 1px solid #2b2d30;
  min-width: 160px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #23272C;
  color: var(--color-accent);
}

/* ===========================================
   MAIN LAYOUT & CARDS
   =========================================== */
main {
  padding-bottom: 36px;
  min-height: 58vh;
  margin-top: 0;
}
.card, .testimonial-card, .service-block, .event-item {
  background: #23272C;
  color: #f7f7f7;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  border: 1.5px solid #2d363f;
  display: flex;
  flex-direction: column;
}
.card:hover, .testimonial-card:hover, .service-block:hover, .event-item:hover {
  box-shadow: 0 8px 36px -2px #2b2d3390, 0 1.5px 6px #C36C2425;
  transform: translateY(-3px) scale(1.015);
}
.card img, .service-block img, .feature-item img{
  margin-bottom: 13px;
  filter: brightness(0.92) contrast(1.13);
}
.feature-grid, .service-list, .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature-item, .service-block, .event-item {
  min-width: 230px;
  flex: 1 1 232px;
  box-sizing: border-box;
}

/* Testimonials - always light on dark except review cards */
.testimonials {
  background: #252930;
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 3px 22px 0 #25293044;
}
.testimonial-card {
  background: #F8F5F2;
  color: #23272C;
  border: 1.5px solid #B0B8BF;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px #b0b8bf25;
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card p {
  color: #23272C;
}
.testimonial-meta {
  margin-top: 8px;
  color: var(--color-accent-dark,#A05317);
  font-size: 0.97rem;
  font-weight: bold;
  letter-spacing: 0.015em;
}

/* About short, contact etc. sections */
.about-short, .about, .contact, .confirmation {
  background: rgba(37, 48, 59, 0.89);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
  color: #e6e2db;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 0 4px;
  color: #B0B8BF;
  font-size: 1rem;
}
.contact-details ul {
  margin-top: 8px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.07rem;
  line-height: 1.41;
  color: #e6e2db;
}
.contact-details img {
  width: 24px; height: 24px;
  filter: grayscale(65%) brightness(0.78);
}

/* Price, highlight, info */
.price, .event-highlight, .ticket-info {
  font-family: 'PT Serif', serif;
  font-size: 1.15rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.event-highlight {
  color: var(--color-metal);
}
.ticket-info {
  color: var(--color-accent-dark);
}
.feature-quote {
  font-size: 1.1rem;
  color: var(--color-accent-dark);
  font-style: italic;
  margin: 14px 0 20px 0;
}

/**** GUEST SPOT and FEEDBACK SNIPPET ****/
.guest-spotlight {
  background: #23272C;
  color: #F8F5F2;
  border-radius: var(--radius);
  padding: 22px 18px;
  margin: 20px 0 0 0;
}
.feedback-snippet {
  margin: 20px 0 0 0;
  font-size: 1rem;
}
.feedback-snippet blockquote {
  color: #C36C24;
  border-left: 4px solid #C36C24;
  background: #fff;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background: #22262A;
  padding: 28px 20px 46px 20px;
  color: #B0B8BF;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  border-top: 2px solid #1a1d1f;
  margin-top: 44px;
}
footer img {
  height: 42px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #C36C24;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  transition: color 0.23s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer address {
  text-align: center;
  font-style: normal;
  font-size: 0.98rem;
  color: #B0B8BF;
  line-height: 1.5;
  margin-top: 12px;
}
footer a { color: #B0B8BF; }
footer a:hover { color: #fff; }

/* ===========================================
   RESPONSIVENESS (MOBILE-FIRST)
   =========================================== */
@media (max-width: 991px) {
  .feature-grid,
  .service-list,
  .event-list,
  .card-container {
    gap: 18px;
  }
  .feature-item, .service-block, .event-item {
    min-width: 180px;
    font-size: 0.96rem;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.44rem; }
}
@media (max-width: 768px) {
  header nav, .btn-primary {
    display: none !important;
  }
  header .mobile-menu-toggle { display: inline-flex; }
  .feature-grid, .service-list, .event-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-block, .event-item {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .hero, section.hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 12px 36px 12px;
    min-height: unset;
  }
  .section, section, .confirmation {
    padding: 30px 10px;
    border-radius: 14px;
  }
  .map-placeholder img { 
    max-width: 90vw; 
  }
  .testimonial-card {
    padding: 15px 7px;
  }
  .mobile-nav {
    padding: 0 18px;
    gap: 16px;
  }
  .container {
    padding: 0 8px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.46rem; }
  h2, .h2 { font-size: 1.11rem; }
  .footer address, footer nav a {
    font-size: 0.84rem;
  }
  .testimonial-card, .card {
    padding: 11px 5px;
  }
}

/* ===========================================
   BUTTONS & INTERACTION EFFECTS
   =========================================== */
button, .btn-primary, .mobile-menu-close {
  user-select: none;
  border: none;
  appearance: none;
  outline: none;
}
.btn-primary:active {
  background: var(--color-metal-dark);
}
.btn-primary:focus {
  box-shadow: 0 0 0 2px var(--color-metal);
}
button:active {
  transform: scale(0.97);
}

/* ===========================================
   COOKIE CONSENT BANNER & MODAL
   =========================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #292d32;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  padding: 22px 9px 20px 20px;
  box-shadow: 0 -2px 26px -12px #23272c88;
  font-size: 1rem;
  animation: cookieSlideUp 0.6s cubic-bezier(.77,0,.18,1);
  gap: 20px;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(120%); opacity: 0; }
  85%{ opacity:1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  max-width: 520px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner button {
  margin: 0;
  border-radius: var(--radius);
  padding: 7px 20px;
  font-family: inherit;
  font-size: 1rem;
  min-width: 105px;
  font-weight: 600;
  background: none;
  border: 1.4px solid #B0B8BF;
  color: #F8F5F2;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-banner .accept {
  background: var(--color-accent, #C36C24);
  color: #fff;
  border-color: var(--color-accent, #C36C24);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent-dark,#A05317);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #23272C;
  color: #fcba63;
  border-color: #A05317;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #C36C24;
  border-color: #C36C24;
}

/* ========== Cookie Modal ========== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 1200;
  background: rgba(12,14,16,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.5s;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #22262a;
  color: #fff;
  border-radius: var(--radius);
  max-width: 410px;
  width: 94vw;
  padding: 34px 24px 26px 24px;
  box-shadow: 0 10px 32px 0 #14161766;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cookie-modal h2 {
  color: var(--color-accent, #C36C24);
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.modal-close {
  background: none;
  border: none;
  color: #C36C24;
  font-size: 1.4rem;
  position: absolute;
  top: 22px;
  right: 26px;
  cursor: pointer;
  transition: color 0.1s;
}
.modal-close:hover, .modal-close:focus {
  color: #A05317;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category .toggle {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #2d363f;
  position: relative;
  cursor: pointer;
  margin-inline-end: 7px;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-category .toggle.enabled {
  background: var(--color-accent,#C36C24);
}
.cookie-category .toggle.disabled {
  background: #27282c;
}
.cookie-category .knob {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 2px; left: 2px;
  background: #fff;
  box-shadow: 0 2px 6px #0002;
  transition: left 0.19s, background 0.18s;
}
.cookie-category .toggle.enabled .knob {
  left: 18px;
  background: var(--color-accent);
}
.cookie-category input[type=checkbox] {
  display: none;
}
.cookie-modal .modal-footer {
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .modal-footer button {
  border-radius: var(--radius);
  padding: 7px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: 1.4px solid #B0B8BF;
  background: none;
  color: #fff;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-modal .modal-footer .accept {
  background: var(--color-accent, #C36C24);
  color: #fff;
  border-color: var(--color-accent, #C36C24);
}
.cookie-modal .modal-footer .accept:hover, .cookie-modal .modal-footer .accept:focus {
  background: var(--color-accent-dark,#A05317);
}
.cookie-modal .modal-footer .decline:hover, .cookie-modal .modal-footer .decline:focus {
  background: #23272C;
  color: #fcba63;
  border-color: #A05317;
}

/* =============================
   MISC HELPERS
   ============================= */
/* Spacing helpers for lists, forms, grids */
.service-list, .event-list {
  gap: 24px;
}
section ul li, section ol li {
  margin-bottom: 6px;
  color: #e7e0d5;
  font-size: 1rem;
}
/* Space between cards and within grids */
.card-container .card,
.feature-grid .feature-item,
.service-list .service-block,
.event-list .event-item {
  margin-bottom: 20px;
}
.content-wrapper > * + * {
  margin-top: 0px;
}
.card:only-child, .service-block:only-child, .event-item:only-child {
  margin-bottom: 0;
}
h1 ~ .subheadline {
  font-size: 1.13rem;
  color: #B0B8BF;
  margin-bottom: 22px;
  margin-top: -7px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===========================================
   INDUSTRIAL MODERN VISUALS
   =========================================== */
.card, .testimonial-card, .service-block, .event-item, .feature-item {
  box-shadow: 0 2.5px 12px #222d2c11, 0 1px 4px #714c2b18;
  border: 1.5px solid #23262b;
  background: linear-gradient(119deg, #22262A 96%, #252930 120%);
}
.card:hover, .service-block:hover, .event-item:hover {
  box-shadow: 0 12px 38px -7px #C36C2438, 0 0.5px 24px #23262b44;
  border-color: #B0B8BF;
}
.testimonial-card {
  background: #F8F5F2 !important;
  color: #2d2d2d !important;
  box-shadow: 0 5px 26px #b0b8bf15;
  border: 1.5px solid #C36C24;
}
.testimonial-card:hover {
  border-color: #A05317;
  box-shadow: 0 8px 48px -6px #A0531788;
}
.feature-item img, .service-block img, .card img, .event-item img {
  filter: grayscale(55%) sepia(0.13) contrast(1.10) brightness(0.96);
  border-radius: 0;
  box-shadow: none;
}

/* Metallic accent lines/titles */
h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,#C36C24 35%, #B0B8BF 100%);
  border-radius: 3px;
  margin-top: 10px;
}
h3:after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: #B0B8BF;
  margin-top: 3px;
  border-radius: 1.5px;
}

/* Subtle metallic border for hero/cta */
section.hero, .cta {
  border-bottom: 3.5px solid #B0B8BF12;
}
section.cta {
  border-bottom: 3px solid #C36C2421;
  background: linear-gradient(115deg, #23272C 90%, #A05317 140%);
  color: #fff;
}

/* ===============
   MISC AND OVERRIDES
   =============== */
/* Focus state for accessibility */
a:focus, button:focus, .btn-primary:focus, input:focus {
  outline: 2px dashed var(--color-accent);
  outline-offset: 2.5px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #23272C;
}
::-webkit-scrollbar-thumb {
  background: #C36C24;
  border-radius: 6px;
}

/* Hide scrollbar when mobile menu open */
body.menu-open {
  overflow: hidden;
}

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

/* Accessibility: visually hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
