/* ======================================================
   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,
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F3F7F9;
  color: #232323;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #23577A;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5A623;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  border-radius: 0;
}
input[type="submit"], button {
  cursor: pointer;
}

/* Selection Colors */
::selection {
  background: #F5A623;
  color: #232323;
}

/* ======================================================
   BRAND COLORS & LUXURY VARIANTS
   ====================================================== */
:root {
  --primary: #23577A;
  --secondary: #232323;
  --background: #F3F7F9;
  --accent: #F5A623; /* Brand accent, warm gold */
  --white: #fff;
  --card: #fff;
  --border: #e3e6ea;
  --shadow: rgba(35, 87, 122, 0.07);
  --luxury-gold: #c6a96b;
  --luxury-dark: #21222B;
  --footer-bg: #232323;
  --footer-text: #e9e4db;
}

/* -------- LUXURY TYPOGRAPHY -------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -1px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-top: 32px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
}
strong {
  font-weight: 600;
  color: var(--primary);
}

/* Typography visual hierarchy */
.text-section h2 {
  color: var(--primary);
  font-size: 1.35rem;
}
.text-section ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.text-section ul li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 8px;
  background: var(--luxury-gold);
  border-radius: 50%;
}

/* Luxury gold effect with accent fallback */
.gold {
  color: var(--luxury-gold);
}

/* ======================================================
   CONTAINERS & LAYOUT
   ====================================================== */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 40px;
  }
  .section {
    padding: 60px 0;
  }
}

/* ======================================================
   HEADER & NAVIGATION
   ====================================================== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px 0 var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.06));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--white);
}
.main-nav .btn-primary {
  margin-left: 10px;
}
/* Burger button */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  margin-left: 20px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0,0,0,0.0);
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--background);
  color: var(--accent);
}

/* Hide for desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #19191cfa;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.74,.04,.26,.98);
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--luxury-gold);
  font-size: 2.3rem;
  margin: 32px 32px 0 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2020;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 60px;
  background: var(--white);
  padding: 36px 36px 52px 36px;
  border-radius: 28px 0 0 28px;
  width: 90%;
  min-width: 220px;
  box-shadow: 0 9px 32px 0 var(--shadow);
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 9px 6px 9px 2px;
  border-radius: 4px;
  min-width: 160px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn-primary, .btn-secondary, .cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  padding: 14px 34px;
  box-shadow: 0 2px 10px 0 var(--shadow);
  display: inline-block;
  outline: 0;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, border 0.12s;
  line-height: 1.1;
}
.btn-primary {
  background: linear-gradient(90deg,#c6a96b 0%, #f5a623 85%);
  color: var(--white);
  letter-spacing: 0.03em;
  border: 2px solid var(--accent);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--luxury-gold);
  color: var(--secondary);
  border-color: var(--luxury-gold);
}
.btn-secondary {
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: var(--white);
}

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero-section {
  background: var(--white);
  background-image: linear-gradient(135deg,rgba(245,166,35,0.04) 0%,rgba(35,87,122,0.09) 60%,transparent 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px 0 var(--shadow);
  min-height: 440px;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-section .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 340px;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero-section h1 {
  color: var(--luxury-dark);
  margin-bottom: 12px;
  font-size: 2.15rem;
}
.hero-section p {
  font-size: 1.13rem;
  color: var(--secondary);
}

/* ======================================================
   FLEXBOX CARD AND FEATURE STYLES
   ====================================================== */
.feature-grid, .service-list, .testimonial-list, .case-study-list, .blog-list, .brand-logos-grid, .topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid > li, .service-list > li, .blog-list > article, .case, .testimonial-card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 var(--shadow);
  padding: 26px 22px;
  margin-bottom: 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.17s;
  border: 1.5px solid transparent;
}
.feature-grid > li:hover, .service-list > li:hover, .blog-list > article:hover, .case:hover {
  box-shadow: 0 6px 32px 0 rgba(198, 169, 107,.17);
  border-color: var(--luxury-gold);
  transform: translateY(-3px) scale(1.01);
}
.feature-grid img, .service-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  object-fit: contain;
}
.service-list > li h3, .service-list > li h2 {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}
.service-list > li .price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--luxury-gold);
  color: #fff;
  border-radius: 16px;
  padding: 4px 14px;
  font-weight: 700;
  font-size: 0.93rem;
  margin-left: 9px;
}
.service-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
}
.service-list a:hover {
  color: var(--primary);
}

.brand-logos-grid {
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}
.brand-logos-grid img {
  width: 78px;
  height: auto;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,0.04));
}

.topics-grid {
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.topics-grid span {
  background: var(--luxury-gold);
  color: #fff;
  border-radius: 8px;
  padding: 4px 14px;
  font-size: 0.97rem;
}

/* Card containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 0;
}

/* Content-grid pattern */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px;
  background: #fffdfa;
  border-radius: 18px;
  border: 1.5px solid var(--luxury-gold);
  box-shadow: 0 3px 34px 0 rgba(245, 166, 35, 0.08);
  color: #232323;
  min-width: 270px;
  max-width: 420px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.07rem;
  margin-bottom: 8px;
}
.client-name {
  display: block;
  font-style: italic;
  color: var(--luxury-gold);
  margin-top: 4px;
  font-weight: 700;
  letter-spacing:0.01em;
  font-size: 1rem;
}

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

/* Blog list */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  min-width: 240px;
  max-width: 400px;
}
.blog-list h2 {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.blog-list h2 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.19s;
}
.blog-list h2 a:hover {
  color: var(--luxury-gold);
  text-decoration: underline;
}

/* Case study cards */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case {
  min-width: 260px;
  max-width: 480px;
}

/* Confirmation message (thank you) */
.confirmation-message {
  color: var(--primary);
  background: #ecf1f7;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 1.05rem;
  margin-bottom: 16px;
  border-left: 6px solid var(--luxury-gold);
}

/* Map Mockup */
.map-embed {
  background: #ece9e2;
  border: 1px solid var(--luxury-gold);
  border-radius: 12px;
  color: #965e09;
  font-style: italic;
  padding: 16px 10px;
  margin-bottom: 16px;
  text-align: center;
}

/* Subscribe form */
.subscribe-form {
  background: #f2f0eb;
  border-radius: 12px;
  color: #987406;
  padding: 16px 16px;
  font-size: 1rem;
  margin-top: 10px;
}

/* ======================================================
   PRICING TABLES
   ====================================================== */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  max-width: 700px;
  margin: 32px 0 12px 0;
  box-shadow: 0 3px 18px 0 var(--shadow);
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 16px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #e6e2d9;
}
.pricing-table thead th {
  background: var(--luxury-gold);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 2px solid var(--luxury-gold);
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.price-info {
  color: #555;
  font-size: 0.97rem;
  margin-top: 8px;
  font-style: italic;
}

/* ======================================================
   TEXT IMAGE SECTIONS & OTHERS
   ====================================================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.text-section {
  margin-bottom: 22px;
}
.contact-details p {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  width: 100%;
  padding: 0;
  margin: 0;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px 0 14px 0;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: var(--footer-text);
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: .84;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 3px 8px;
  border-radius: 6px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--luxury-gold);
  background: #181818;
}
.footer-contact p {
  color: #b5a47a;
  font-size: 1.01rem;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 10px 0 0 0;
}
.footer-social img {
  width: 28px;
  filter: brightness(0.95) sepia(0.19) hue-rotate(13deg) contrast(0.93);
  transition: filter 0.14s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: brightness(1.18) sepia(0.58) saturate(2) hue-rotate(25deg);
}
.legal {
  color: #b5a47a;
  font-size: 0.97rem;
  opacity: 0.8;
  margin-top: 10px;
  margin-bottom: 3px;
}

/* Footer on desktop: grid-like flex */
@media (min-width: 992px) {
  footer .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-brand, .footer-menu, .footer-contact, .footer-social {
    flex: 0 0 auto;
  }
}

/* ======================================================
   COOKIE CONSENT BANNER & MODAL
   ====================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdfa;
  border-top: 3px solid var(--luxury-gold);
  box-shadow: 0 -2px 32px 0 var(--shadow);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 10vw 22px 10vw;
  gap: 30px;
  transition: transform 0.4s cubic-bezier(.74,.04,.26,.98);
  font-size: 1.01rem;
  color: #232323;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-msg {
  flex: 1 1 0;
  font-size: 1.04rem;
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-right: 6px;
  min-width: 130px;
  font-size: 0.99rem;
  padding: 11px 24px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--luxury-gold);
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 var(--shadow);
  transition: background 0.17s, color 0.12s, border 0.14s;
}
.cookie-banner .cookie-btn.btn-secondary {
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
  margin-left: 0;
}
.cookie-banner .cookie-btn.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-btn.btn-settings {
  color: var(--luxury-gold);
  border: 2px solid var(--luxury-gold);
  background: none;
  margin-left: 0;
}
.cookie-banner .cookie-btn.btn-settings:hover {
  background: var(--luxury-gold);
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top:0;
  width: 100vw;
  height: 100vh;
  background: rgba(29,29,33,0.74);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fffdfa;
  border-radius: 18px;
  max-width: 400px;
  width: 90vw;
  padding: 34px 28px 22px 28px;
  box-shadow: 0 8px 40px 0 var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  text-align: left;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--luxury-gold);
  cursor: pointer;
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.06rem;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
}
.cookie-switch {
  display: inline-flex;
  width: 40px;
  height: 22px;
  background: #eae2c4;
  border-radius: 16px;
  position: relative;
  align-items: center;
  margin-left: 10px;
  user-select: none;
  transition: background 0.18s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--luxury-gold);
  transition: left 0.17s;
}
.cookie-switch input:checked + .slider {
  left: 21px;
  background: var(--accent);
}
.cookie-category.essential label {
  color: var(--luxury-dark);
  opacity: .64;
}
.cookie-category.essential .cookie-switch {
  background: #f4e0b0;
}
.cookie-category.essential .slider {
  background: #d2b272;
}

/* ================== Section Spacing & Flex Layout Patterns ================== */
.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;
}

/* ================== Media Queries & Responsive Adjustments ================== */
@media (max-width: 1280px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 10px;
  }
  header .container {
    min-height: 52px;
    height: 60px;
  }
  .footer-brand img { height: 34px; }
}
@media (max-width: 768px) {
  h1    { font-size: 2rem;  }
  h2    { font-size: 1.4rem; }
  .section { padding: 29px 7px 35px 7px; }
  .hero-section { min-height: 260px; padding-top: 28px; padding-bottom: 28px; }
  .hero-section .container { min-height: 190px; }
  .feature-grid, .service-list, .blog-list, .case-study-list, .testimonial-list, .brand-logos-grid { gap: 13px; }
  .footer-menu { gap: 12px; }
  .footer-social { gap: 13px; }
  .content-wrapper { gap: 22px; }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  .section { padding: 16px 3px 24px 3px; }
  .footer-brand img { height: 27px; }
  .blog-list, .feature-grid, .service-list, .case-study-list {
    flex-direction: column;
    gap: 12px;
  }
  .footer-menu, .footer-contact, .footer-social {
    font-size: 0.98rem;
  }
}

/* ================== Micro-Interactions & Transitions ================== */
.card,
.testimonial-card,
.btn-primary,
.btn-secondary,
.footer-social img,
.cookie-banner, .cookie-modal-content {
  transition-property: box-shadow, transform, background, color, border, opacity, filter;
  transition-duration: 0.18s;
  transition-timing-function: cubic-bezier(.74,.04,.26,.98);
}

/* Accessible focus ring for keyboard nav */
a:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus {
  outline: 3px solid var(--luxury-gold);
  outline-offset: 1px;
  z-index: 1001;
}

/* No unwanted content overlap spacing */
.section > *, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ================== Hide On Print ================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
