/* ==== CSS RESET & NORMALIZATION ==== */
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;
}
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #363A4B;
  background-color: #F7F7FA;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #DAA76B;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0.5em;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 18px;
  min-width: 90px;
  text-align: left;
}
th {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: #EEE8E2;
  color: #363A4B;
  border-bottom: 2px solid #DAA76B;
}
td {
  font-size: 1rem;
  vertical-align: top;
}
tr:nth-child(odd) td {
  background-color: #FAF9F6;
}

/* ==== BRAND AND TYPOGRAPHY ==== */
:root {
  --color-primary: #363A4B;
  --color-secondary: #F7F7FA;
  --color-accent: #DAA76B;
  --color-gold: #DAA76B;
  --color-bg-dark: #262837;
  --color-muted: #B4B6C0;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  color: #363A4B;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.18;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* ==== CONTAINERS & LAYOUT ==== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
main {
  flex: 1 0 auto;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Mandatory section margins */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 6px 36px 0 rgba(54,58,75,0.06), 0 1.5px 3px 0 rgba(218,167,107,0.11);
  border: 1px solid #EEE8E2;
  transition: box-shadow 0.24s, border 0.24s;
}
.card:hover {
  box-shadow: 0 12px 40px 0 rgba(54,58,75,0.13), 0 6px 12px 0 rgba(218,167,107,0.10);
  border: 1.5px solid var(--color-gold);
  z-index: 1;
}
.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: 28px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(54,58,75,0.08);
  border: 1.5px solid #EEE8E2;
  border-radius: 14px;
  color: #363A4B;
  font-size: 1rem;
  transition: box-shadow 0.22s, border 0.22s;
}
.testimonial-card span {
  margin-top: 8px;
  font-size: 0.98rem;
  color: #8f8b7e;
}
.testimonial-card:hover {
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 6px 28px 0 rgba(54,58,75,0.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(54,58,75,0.06);
  padding: 0;
  z-index: 3000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 77px;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 64px;
  padding-right: 28px;
}
.logo-link img {
  display: block;
  height: 48px;
  min-width: 120px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  color: #363A4B;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.18s;
  letter-spacing: 0.01em;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.cta-primary {
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 32px;
  padding: 11px 28px;
  font-size: 1.08rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(218,167,107,0.14);
  border: none;
  margin-left: 28px;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #c98c40;
  color: #fff;
  box-shadow: 0 4px 16px rgba(218,167,107,0.24);
}
.cta-secondary {
  color: var(--color-gold);
  background: #fff8f0;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 32px;
  padding: 9px 24px;
  font-size: 1.04rem;
  border: 1px solid var(--color-gold);
  margin-top: 20px;
  display: inline-block;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 2px 10px rgba(218,167,107,0.19);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  display: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #363A4B;
  cursor: pointer;
  padding: 5px 14px;
  z-index: 3250;
  margin-left: 20px;
  transition: color 0.22s;
}
.mobile-menu-toggle:focus {
  color: var(--color-gold);
}

/* ==== MOBILE NAV OVERLAY ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(54,58,75,0.95);
  z-index: 4100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.73,.14,.33,1.01);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 6px 0;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #DAA76B;
  transition: color 0.16s;
  cursor: pointer;
  z-index: 4200;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
}
.mobile-nav a {
  color: #DAA76B;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  background: none;
  width: 100%;
  text-align: center;
  transition: background 0.12s, color 0.12s;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(218,167,107,0.08);
  color: #fff;
}

/* ==== HERO / SECTION PREVIEWS ==== */
.hero {
  padding: 56px 0 40px 0;
  background: linear-gradient(120deg, #fffbee 70%, #FFFDF8 100%);
  border-bottom: 3px solid #dcc19833;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 600px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 42px;
  margin: 22px 0 0 0;
  padding: 0;
}
.features .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
  font-size: 1.04rem;
  color: #58546a;
  min-width: 230px;
  flex: 1 1 270px;
}
.features .content-wrapper ul img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.services-preview .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.services-preview .service-tile {
  background: #fff;
  border: 1.3px solid #EEE8E2;
  border-radius: 13px;
  padding: 24px 18px 22px 18px;
  width: 235px;
  min-width: 200px;
  box-shadow: 0 2px 13px 0 rgba(54,58,75,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, border 0.18s;
  margin-bottom: 20px;
}
.service-tile h3 {
  font-size: 1.13rem;
  margin-bottom: 4px;
  color: #363A4B;
}
.service-tile p {
  color: #727070;
  font-size: 0.99rem;
}
.service-tile img {
  margin-bottom: 0;
  height: 36px;
}
.service-tile:hover, .service-tile:focus {
  border: 1.3px solid var(--color-gold);
  box-shadow: 0 4px 20px 0 rgba(218,167,107,0.13);
}

.about-preview, .about-section, .highlights-section, .privacy-policy-section, .gdpr-section, .cookie-policy-section, .terms-section, .thank-you-section {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about-preview .content-wrapper, .about-section .content-wrapper, .privacy-policy-section .content-wrapper, .gdpr-section .content-wrapper, .cookie-policy-section .content-wrapper, .terms-section .content-wrapper, .thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta {
  background: linear-gradient(90deg, #F7F7FA, #fff7ef 90%);
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 46px 20px 42px 20px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* ==== SERVICES & PRICING PAGE ==== */
.services-list-section, .process-overview-section, .pricing-section, .pricing-note, .location-section, .contact-section, .booking-section {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services-list-section .service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin: 22px 0 0 0;
  padding: 0;
}
.service-list li {
  background: #fbf8f4;
  border: 1.1px solid #EEE8E2;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 22px 18px 18px;
  min-width: 260px;
  flex: 1 1 350px;
}
.service-list li img {
  height: 50px;
  margin-top: 3px;
}
.service-list li div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list li h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
}
.service-list li p {
  font-size: 0.99rem;
  color: #58546a;
  margin-bottom: 0;
}
.service-list .price {
  margin-top: 7px;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-display);
}
.pricing-section table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px 0 rgba(54,58,75,.07);
  overflow: hidden;
  margin-top: 24px;
}
.pricing-section tr {
  border-bottom: 1px solid #EEE8E2;
}
.pricing-note ul {
  list-style: disc;
  margin-left: 1.5em;
}
.faqs {
  margin-top: 22px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.faqs li strong {
  color: var(--color-gold);
  display: block;
  margin-bottom: 6px;
}

/* ==== TEAM, TESTIMONIALS, GALLERY ==== */
.team-section, .testimonials-section, .inspiration-section {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.team-section .team-members {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 20px 0 0 0;
}
.team-section .team-members li {
  background: #fbf8f4;
  border: 1px solid #EEE8E2;
  border-radius: 10px;
  padding: 16px 13px 14px 15px;
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.6;
  box-shadow: 0 1.5px 8px 0 rgba(54,58,75,.06);
}
.team-section .team-members strong {
  color: #363A4B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}

.testimonials-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inspiration-section .success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 23px 0;
}
.inspiration-section .testimonial-card {
  flex: 1 1 240px;
  min-width: 220px;
}
.inspiration-section .service-highlights ul {
  margin: 10px 0 0 0;
  padding-left: 1.1em;
  list-style: disc;
  color: #363A4B;
}

/* ==== FOOTER ==== */
footer {
  background: #262837;
  padding-top: 32px;
  padding-bottom: 28px;
  color: #f4f1eb;
  margin-top: auto;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-menu a {
  color: #FFE9C7;
  font-size: .97rem;
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-gold);
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-branding img {
  height: 40px;
}
.footer-branding p {
  font-size: 0.95rem;
  color: #b8ae9e;
}

/* ==== CONTACT & BOOKING ==== */
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* ==== COOKIE CONSENT BANNER (MANDATORY) ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #363A4B;
  color: #fff;
  padding: 22px 11px 18px 11px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 18px 0 rgba(54,58,75,0.16);
  animation: fadeInUp 0.8s cubic-bezier(.23,1.03,.39,.98);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-text {
  font-size: 0.97rem;
  color: #fff9ee;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 7px;
}
.cookie-consent-banner .cookie-btn {
  background: var(--color-gold);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 28px;
  font-size: 0.99rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 1px 7px rgba(218,167,107,0.12);
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: #c98c40;
}
.cookie-consent-banner .cookie-btn.cookie-settings {
  background: #fff;
  color: var(--color-gold);
  border: 1.2px solid var(--color-gold);
}
.cookie-consent-banner .cookie-btn.cookie-settings:hover, .cookie-consent-banner .cookie-btn.cookie-settings:focus {
  background: #f8e4c9;
  color: #b88949;
}

/* ==== COOKIE SETTINGS MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(54,58,75,0.74);
  z-index: 5200;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeInModal 0.32s cubic-bezier(.73,.14,.33,1.01);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #363A4B;
  border-radius: 14px;
  max-width: 430px;
  width: 96vw;
  padding: 42px 34px 29px 34px;
  box-shadow: 0 4px 40px 0 rgba(54,58,75,0.20);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalScaleIn 0.32s cubic-bezier(.69,.11,.27,1.02);
}
@keyframes modalScaleIn {
  from { transform: scale(0.97); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 1.22rem;
  font-family: var(--font-display);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-category input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: var(--color-gold);
  border-radius: 4px;
}
.cookie-category.essential label {
  color: var(--color-muted);
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 19px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn-modal {
  background: var(--color-gold);
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 28px;
  font-size: 1.00rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-btn-modal:hover, .cookie-modal .cookie-btn-modal:focus {
  background: #c98c40;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  right: 14px; top: 10px;
  background: none;
  border: none;
  font-size: 1.52rem;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  color: var(--color-gold);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
    padding: 0 12px;
  }
}
@media (max-width: 990px) {
  .main-nav {
    gap: 17px;
  }
  .container {
    padding: 0 8px;
  }
  .service-list li {
    flex: 1 1 240px;
    min-width: 170px;
    padding: 18px 11px 14px 11px;
  }
}
@media (max-width: 900px) {
  .hero .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .footer-menu {
    gap: 10px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.20rem; }
  h3 { font-size: 1.06rem; }
  .section, .about-preview, .about-section, .highlights-section, .privacy-policy-section, .gdpr-section, .cookie-policy-section, .terms-section, .thank-you-section, .team-section, .testimonials-section, .inspiration-section, .services-list-section, .process-overview-section, .pricing-section, .pricing-note, .location-section, .contact-section, .booking-section {
    padding: 27px 7px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
  .features .content-wrapper ul, .services-list-section .service-list, .services-preview .content-wrapper, .inspiration-section .success-stories {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: 12px;
    padding: 9px 18px;
    font-size: 1.00rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  body, html {
    font-size: 15px;
  }
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.04rem; }
  .logo-link img {
    height: 34px;
    min-width: 75px;
  }
  .footer-branding img {
    height: 24px;
  }
  .testimonial-card {
    padding: 14px 7px;
    font-size: 0.96rem;
  }
  .service-list li {
    padding: 9px 7px 7px 7px;
    gap: 13px;
  }
  .service-tile {
    padding: 13px 7px 11px 7px;
    min-width: 140px;
  }
  .mobile-menu {
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 22px 7px 19px 7px;
  }
}
@media (max-width: 480px) {
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

/* ==== ANIMATIONS ==== */
.cta-primary, .cta-secondary, .service-tile, .testimonial-card, .card, .cookie-btn, .cookie-btn-modal {
  transition: box-shadow 0.18s, border 0.19s, background 0.16s, color 0.16s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus, .cta-secondary:hover, .cta-secondary:focus,
.service-tile:hover, .service-tile:focus, .testimonial-card:hover, .testimonial-card:focus, .card:hover, .card:focus {
  transform: translateY(-2.5px) scale(1.016);
  box-shadow: 0 8px 30px 0 rgba(218,167,107,0.13);
}

/* ==== SELECTION COLORS ==== */
::selection {
  background: #DAA76B44;
  color: #363A4B;
}

/* ==== SCROLLBAR (subtle) ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F7FA;
}
::-webkit-scrollbar-thumb {
  background: #eccda7;
  border-radius: 5px;
}

/* ==== UTILITIES ==== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 24px !important; }

/* ==== END ==== */
