/* =============================
   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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body { line-height: 1.5; background: #F5F6FA; -webkit-font-smoothing: antialiased; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; border: 0; display: block; }
input, button, textarea, select { font: inherit; }

/* ============================
   ROOT AND VARIABLES
============================ */
:root {
  --brand-primary: #182736;
  --brand-secondary: #D4AF67;
  --brand-accent: #F5F6FA;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --border-radius: 14px;
  --card-radius: 16px;
  --btn-radius: 44px;
  --shadow-card: 0 4px 24px 0 rgba(24, 39, 54, 0.09);
  --shadow-light: 0 1.5px 7px 0 rgba(212,175,103,0.07);
  --max-content-width: 1120px;
  --gold: #D4AF67;
  --white: #fff;
  --dark: #0d141b;
}

/* ========================
   BASE TYPOGRAPHY
======================== */
body {
  font-family: var(--font-body);
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 16px;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.38rem; margin-bottom: 14px; }
h4 { font-size: 1.12rem; }
p, ul li, ol li {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--brand-primary);
}
strong { color: var(--brand-primary); font-weight: 700; font-family: var(--font-display); }
a { transition: color 0.15s; color: var(--brand-primary); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
  width: 100%;
  background: var(--white);
  border-bottom: 1.5px solid #ebe7dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 30;
}
header > a img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: var(--btn-radius);
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gold);
  color: var(--white);
}
.cta-button {
  background: var(--brand-primary);
  color: var(--gold);
  padding: 12px 36px;
  border-radius: var(--btn-radius);
  box-shadow: 0 2px 12px 0 rgba(24, 39, 54, 0.08);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
  border: 1.5px solid var(--gold);
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--gold);
  color: var(--brand-primary);
  box-shadow: 0 4px 18px 0 rgba(212,175,103,0.23);
}
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.18s;
  cursor: pointer;
  z-index: 35;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: var(--gold);
}
@media (max-width: 1023px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .cta-button { margin-left: 0; margin-right: 9px; }
}

/* ==========================
   MOBILE MENU
========================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,39,54,0.93);
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(0.42,0,0.58,1);
  z-index: 1000;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: var(--gold);
  font-size: 2.1rem;
  border: none;
  padding: 18px 22px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 2;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 32px 36px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.19rem;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(212,175,103,0.18);
  transition: color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--white);
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ==================================
   HERO SECTIONS, GENERAL SECTION
================================== */
.hero {
  background: var(--brand-primary);
  color: var(--gold);
  padding: 58px 0 48px 0;
}
.hero h1,
.hero h2,
.hero p {
  color: var(--gold);
}
.hero .cta-button {
  background: var(--gold);
  color: var(--brand-primary);
  border: 1.5px solid var(--gold);
}
.hero .cta-button:hover, .hero .cta-button:focus{
  background: var(--brand-primary);
  color: var(--gold);
}

.section, section {
  background: var(--brand-accent);
}

.features ul, .services-preview ul,
.collection-categories ul, .highlights ul,
.capsule-collection ul, .testimonials,
.tips-list ul, .team ul, .about ul,
.editorial ul, .contact ul, .newsletter-signup ul, .legal ul,
 .contact-form ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features ul li, .testimonials .testimonial-card, .services-preview ul li, .collection-categories ul li, .highlights ul li, .capsule-collection ul li, .team ul li,
.tips-list ul li, .about ul li, .editorial ul li, .contact ul li, .newsletter-signup ul li, .legal ul li,
.contact-form ul li {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 18px 24px;
  margin-bottom: 0;
  box-shadow: 0 2px 7px 0 rgba(24,39,54,0.08);
  border-left: 6px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 1rem;
}
.features ul li img, .contact ul li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  flex-shrink: 0;
}
@media (max-width: 650px){
  .features ul, .services-preview ul,
  .collection-categories ul, .highlights ul,
  .capsule-collection ul, .testimonials,
  .tips-list ul, .team ul, .about ul,
  .editorial ul, .contact ul, .newsletter-signup ul, .legal ul,
   .contact-form ul {
    gap: 16px;
  }
  .features ul li, .testimonials .testimonial-card, .services-preview ul li, .collection-categories ul li, .highlights ul li, .capsule-collection ul li, .team ul li,
  .tips-list ul li, .about ul li, .editorial ul li, .contact ul li, .newsletter-signup ul li, .legal ul li,
  .contact-form ul li {
    padding: 12px 9px;
    font-size: 0.95rem;
    gap: 14px;
  }
}

/* ===========================
   CARDS & CARD CONTAINER
=========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  background: var(--white);
  padding: 28px 26px;
  min-width: 250px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(212,175,103,0.23);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* ==================
   RESPONSIVE LAYOUT & FLEX
================== */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 24px;
  }
}

/* ===================
   TESTIMONIAL CARD
=================== */
.testimonials {
  padding-top: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-light);
  padding: 22px 28px;
  margin-bottom: 20px;
  border-left: 5px solid var(--gold);
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  max-width: 650px;
}
.testimonial-card p {
  margin-bottom: 0;
  color: var(--brand-primary);
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.02rem;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 14px 11px; }
}

/* ===============
   FEATURES BLOCK
=============== */
.features {
  background: var(--brand-accent);
}
.features h2 {
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
   NEWSLETTER SIGNUP
=============== */
.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  margin-top: 18px;
}
.newsletter-signup input[type=email] {
  padding: 10px 18px;
  border-radius: var(--btn-radius);
  border: 1px solid #d7c8a9;
  font-size: 1rem;
  outline: none;
  min-width: 220px;
  flex: 1 0 150px;
  background: var(--white);
  margin-right: 0;
  transition: border 0.14s, box-shadow 0.15s;
}
.newsletter-signup input[type=email]:focus {
  border: 1.5px solid var(--brand-secondary);
  box-shadow: 0 0 0 2px rgba(212,175,103,.09);
}
.newsletter-signup button[type=submit] {
  background: var(--gold);
  color: var(--brand-primary);
  border-radius: var(--btn-radius);
  padding: 11px 28px;
  font-weight: 600;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.14s;
  border: 1px solid var(--gold);
}
.newsletter-signup button[type=submit]:hover, .newsletter-signup button[type=submit]:focus {
  background: var(--brand-primary);
  color: var(--gold);
  box-shadow: 0 2px 15px 0 rgba(24,39,54,0.09);
}
@media (max-width:500px){ 
  .newsletter-signup form { flex-direction: column; gap: 10px;  }
  .newsletter-signup input[type=email] { min-width: 0; width: 100%; }
}

/* ===============
   CONTACT FORM
=============== */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
  margin: 0 auto;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  background: var(--white);
  border: 1px solid #d7c8a9;
  border-radius: var(--btn-radius);
  padding: 12px 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border 0.15s, box-shadow 0.17s;
  resize: none;
  min-width: 0;
}
.contact-form textarea {
  min-height: 92px;
  border-radius: var(--border-radius);
}
.contact-form input:focus, .contact-form textarea:focus {
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,103,.07);
  outline: none;
}
.contact-form button[type=submit] {
  background: var(--brand-primary);
  color: var(--gold);
  border-radius: var(--btn-radius);
  padding: 12px 46px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 1.5px solid var(--gold);
  transition: background 0.15s, color 0.11s, box-shadow 0.17s;
  cursor: pointer;
}
.contact-form button[type=submit]:hover, .contact-form button[type=submit]:focus{
  background: var(--gold);
  color: var(--brand-primary);
  box-shadow: 0 2px 16px 0 rgba(212,175,103,0.25);
}

/* =================
   LEGAL PAGES BLOCK
================== */
.legal {
  background: var(--brand-accent);
  padding-top: 52px;
  padding-bottom: 62px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--brand-primary);
}
.legal a {
  color: var(--brand-secondary);
  text-decoration: underline;
}
.legal a:focus, .legal a:hover {
  color: var(--brand-primary);
}

/* ================
   FOOTER
================ */
footer {
  background: var(--brand-primary);
  color: var(--gold);
  padding: 42px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: center;
}
.footer-nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  opacity: 0.84;
  transition: color 0.14s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--white);
  opacity: 1;
}
.mini-contact-details {
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  text-align: center;
  color: var(--gold);
}
.mini-contact-details p {
  margin-bottom: 2px;
  font-size: 0.99rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mini-contact-details img {
  width: 21px;
  height: 21px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 9px;
}
.social-links a {
  display: flex;
  background: var(--gold);
  border-radius: 50%;
  padding: 6px;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, box-shadow 0.14s;
  box-shadow: 0 1px 4px 0 rgba(212,175,103,0.12);
}
.social-links a img {
  width: 22px;
  height: 22px;
}
.social-links a:hover, .social-links a:focus {
  background: var(--white);
  box-shadow: 0 3px 11px 0 rgba(212,175,103,0.18);
}

@media (max-width: 780px){
  footer .container { gap: 20px; }
  .footer-nav { gap: 12px 16px; font-size: 0.93rem; }
}

/* ========================
   UTILS: SPACING & FLEX
======================== */
.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 TYPOGRAPHY & LAYOUT
================================ */
@media (max-width: 1023px) {
  .container {
    max-width: 97vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding: 32px 9px;
    margin-bottom: 40px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 700px){
  .section { padding: 22px 0; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1rem; }
}
@media (max-width: 499px){
  .card-container, .content-grid, .footer-nav, .social-links {
    gap: 10px;
  }
  .mini-contact-details p, .footer-nav a, .main-nav a, .mobile-nav a, .newsletter-signup button[type=submit], .cta-button {
    font-size: 0.96rem;
  }
  .container { padding-left: 3px; padding-right: 3px; }
}

/* ===============================
   BUTTONS, MICROINTERACTIONS
================================ */
button, .cta-button, .newsletter-signup button[type=submit], .contact-form button[type=submit] {
  transition: background 0.16s, color 0.16s, transform 0.15s, box-shadow 0.18s;
}
button:active, .cta-button:active, .newsletter-signup button[type=submit]:active, .contact-form button[type=submit]:active {
  transform: scale(0.96);
}

input, textarea {
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 2px 5px 0 rgba(212,175,103,0.14);
}

/* ===============
  COOKIE CONSENT BANNER
================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--brand-primary);
  box-shadow: 0 -3px 24px 0 rgba(24,39,54,0.06);
  padding: 26px 24px 20px 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  min-height: 60px;
  font-size: 1rem;
  border-top: 4px solid var(--brand-secondary);
  opacity: 1;
  animation: slideInUp 0.5s;
}
@keyframes slideInUp {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 2px;
}
.cookie-consent-banner button {
  background: var(--gold);
  color: var(--brand-primary);
  border: none;
  border-radius: var(--btn-radius);
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.13s;
  border: 1.5px solid var(--gold);
}
.cookie-consent-banner button:focus, .cookie-consent-banner button:hover {
  background: var(--brand-primary);
  color: var(--gold);
  box-shadow: 0 2px 8px 0 rgba(24, 39, 54, 0.11);
}
.cookie-consent-banner .secondary {
  background: var(--brand-primary);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-consent-banner .secondary:hover, .cookie-consent-banner .secondary:focus {
  background: var(--gold);
  color: var(--brand-primary);
}
@media (max-width: 580px){
  .cookie-consent-actions { flex-direction: column; gap: 9px; width: 100%; }
  .cookie-consent-banner { padding: 16px 7px 10px 7px; font-size: 0.89rem; gap: 12px; }
}

/* ===============
   COOKIE MODAL
================ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,39,54,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn { 
  0% {opacity:0;}
  100% {opacity:1;}
}
.cookie-modal {
  background: var(--white);
  color: var(--brand-primary);
  border-radius: 21px;
  box-shadow: 0 8px 38px 0 rgba(24,39,54,0.22);
  padding: 40px 28px 32px 28px;
  min-width: 310px;
  max-width: 98vw;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  animation: slideInModal 0.46s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideInModal {
  0% { transform: scale(0.80) translateY(35px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  color: var(--brand-primary);
  margin-top: 0;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 13px 0;
  width: 100%;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  width: 100%;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type=checkbox] {
  width: 36px;
  height: 19px;
  appearance: none;
  background: #e9e4cf;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.12s;
  border: 1.2px solid #cfc2a2;
}
.cookie-toggle input[type=checkbox]:checked {
  background: var(--brand-secondary);
}
.cookie-toggle input[type=checkbox]::after {
  content: '';
  position: absolute;
  top: 1.8px; left: 2.6px;
  width: 15px; height: 15px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(0);
  transition: transform 0.13s;
  box-shadow: 0 2px 8px 0 rgba(24,39,54,0.12);
}
.cookie-toggle input[type=checkbox]:checked::after {
  transform: translateX(16px);
}
.cookie-toggle [disabled], .cookie-toggle input[type=checkbox][disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--brand-secondary);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--brand-primary);
}
.cookie-modal button {
  background: var(--gold);
  color: var(--brand-primary);
  border: none;
  border-radius: var(--btn-radius);
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
  border: 1.5px solid var(--gold);
}
.cookie-modal button.secondary {
  background: var(--brand-primary);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-modal button:hover, .cookie-modal button:focus{
  background: var(--brand-primary);
  color: var(--gold);
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus{
  background: var(--gold);
  color: var(--brand-primary);
}
@media (max-width:480px){.cookie-modal{padding:18px 7px 12px 7px;}}

/* =================
   SCROLLBAR (luxury subtle)
================== */
::-webkit-scrollbar {
  width: 10px;
  background: #ece7db;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* =====================
   MISC (SUPPORT CLASSES)
===================== */
.gold-text { color: var(--gold); }
.text-primary { color: var(--brand-primary); }
.bg-secondary { background: var(--gold); }
.bg-primary { background: var(--brand-primary); color: var(--gold); }
.rounded { border-radius: var(--border-radius); }

/* For accessibility: hides visually but remains for screen readers */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =====================
   FONTS IMPORT
===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');