/* === 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;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background: #FAF8F4;
  color: #233144;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ========== BRAND VARIABLES (CSS custom properties, with fallbacks) =========== */
:root {
  --primary: #295073;
  --secondary: #8CC1A3;
  --accent: #F9F6F2;
  --lux-gold: #B39864;
  --lux-gold-light: #f3ead7;
  --lux-gold-dark: #836d46;
  --main-bg: #FAF8F4;
  --card-bg: #FFFFFF;
  --contrast-dark: #181E29;
  --contrast-light: #ffffff;
  --shadow: 0 8px 32px 0 rgba(40, 60, 90, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
}

/* =======================================
    TYPOGRAPHY (Luxury & Premium)
======================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: var(--contrast-dark);
  font-size: 1rem;
  margin-bottom: 14px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.tagline {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--lux-gold-dark);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-top: 14px;
}

/* ================= CONTAINER =============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: var(--contrast-light);
  box-shadow: 0 2px 16px rgba(39, 80, 115, 0.06);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 16px;
  position: relative;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 24px;
}
.main-nav a {
  color: var(--primary);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.17s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: var(--lux-gold);
  border-radius: var(--radius-sm);
  transition: width 0.25s;
  margin-top: 2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--lux-gold-dark);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 80%;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--contrast-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 34px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(39, 80, 115, 0.10);
  border: none;
  text-decoration: none;
  margin-left: 32px;
  transition: background 0.18s, transform 0.15s, box-shadow 0.3s;
  position: relative;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--lux-gold);
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(179, 152, 100, 0.16);
  transform: translateY(-2px) scale(1.027);
}

/* ========== MOBILE MENU ============= */
.mobile-menu-toggle {
  background: var(--lux-gold);
  color: var(--primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 60;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(179, 152, 100, 0.10);
  transition: background 0.18s, color 0.18s, transform 0.1s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--lux-gold);
  outline: 2px solid var(--lux-gold-dark);
  transform: scale(1.075) rotate(5deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--card-bg);
  box-shadow: 0 0 80px var(--lux-gold-light);
  z-index: 2000;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.42s cubic-bezier(.44,.1,.17,1.14), opacity 0.22s cubic-bezier(.4,1,.7,1);
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--lux-gold);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin: 24px 18px 0 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: var(--lux-gold);
  outline: 2px solid var(--lux-gold-dark);
  transform: scale(1.08) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 50px 32px 20px 38px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.24rem;
  text-decoration: none;
  padding: 13px 0 10px 0;
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--lux-gold-dark);
  text-shadow: 0 1px 6px var(--lux-gold-light);
}

@media (max-width: 992px) {
  .main-nav {
    gap: 18px;
    margin-left: 8px;
  }
  .cta-primary {
    margin-left: 12px;
    font-size: 1rem;
    padding: 12px 24px;
  }
  header img {
    height: 36px;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    min-height: 60px;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 28px 10px 8px 16px;
    gap: 16px;
  }
}

/* =================== HERO SECTION ==================== */
.hero {
  background: linear-gradient(122deg, var(--accent) 65%, var(--lux-gold-light) 100%);
  border-bottom: 1px solid var(--lux-gold-light);
  padding: 0;
  margin-bottom: 48px;
}
.hero .container {
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  letter-spacing: 0.009em;
  text-shadow: 0 2px 12px rgba(128,111,76,0.09);
}
.hero p {
  max-width: 600px;
  color: var(--contrast-dark);
  font-size: 1.22rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.hero .cta-primary {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* =================== SECTIONS, LAYOUT, CARDS ============= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
}
.features-grid > div {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 24px 31px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 220px;
  max-width: 280px;
  border-left: 6px solid var(--lux-gold);
  transition: box-shadow 0.2s, transform 0.19s, border-color 0.15s;
  margin-bottom: 20px;
}
.features-grid > div img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
  filter: drop-shadow(0 4px 14px #f8efe4) brightness(0.89) drop-shadow(0 0 0 var(--lux-gold));
}
.features-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(179,152,100,0.17), var(--shadow);
  transform: translateY(-3px) scale(1.03);
  border-left: 6px solid var(--lux-gold-dark);
}

@media (max-width: 900px) {
  .features-grid {
    gap: 16px;
  }
}
@media (max-width: 650px) {
  .features-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .features-grid > div {
    max-width: 100%;
    min-width: 0;
  }
}

ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.47;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 44px 0 rgba(179,152,100,0.19), 0 2px 12px 0 rgba(0,0,0,0.03);
  transform: translateY(-4px) scale(1.025);
  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;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: var(--contrast-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 24px 32px;
  max-width: 350px;
  min-width: 230px;
  flex: 1 1 280px;
  color: var(--contrast-dark);
  border-left: 5px solid var(--lux-gold);
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.15s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(179,152,100,0.18), var(--shadow);
  border-left-color: var(--lux-gold-dark);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.53;
  color: #262c36;
  margin-bottom: 14px;
}
.testimonial-card span {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
@media (max-width: 650px) {
  .testimonials-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ========== MAP PLACEHOLDER, CONTACT CARDS =========== */
.map-placeholder {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.1em 1.4em;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
  border-left: 4px solid var(--lux-gold);
}

/* ========== FOOTER (luxury premium style) ========== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0 0 0 0;
  margin-top: 70px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  box-shadow: 0 -3px 28px 0 rgba(40, 80, 115, 0.06);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 38px 20px 28px 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 42px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 44px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--lux-gold);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
}
.footer-contact h4 {
  color: var(--lux-gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  margin-bottom: 7px;
}
.footer-contact ul {
  list-style: none;
  padding-left: 0;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--accent);
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: brightness(0.85) sepia(1) hue-rotate(13deg) saturate(1.2);
}
.footer-newsletter h4 {
  color: var(--lux-gold);
  margin-bottom: 8px;
}
.footer-newsletter p {
  color: var(--accent);
  font-size: 0.97rem;
  margin-bottom: 4px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}
.footer-copyright {
  text-align: center;
  background: var(--lux-gold);
  color: var(--primary);
  padding: 14px 0 12px 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 24px; align-items: stretch; }
  .footer-links { flex-direction: column; gap: 20px; }
}
@media (max-width: 650px) {
  footer .container { padding: 24px 10px 28px 10px; }
  .footer-links { gap: 8px; }
}

/* =========== BUTTONS, INTERACTIONS ============ */
button, .button, [type=submit], .cta-primary {
  border: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  outline: none;
}
.button,
[type=submit] {
  background: var(--primary);
  color: var(--accent);
  font-size: 1rem;
  padding: 12px 32px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px 0 rgba(41, 80, 115, 0.08);
}
.button:hover, .button:focus, [type=submit]:hover, [type=submit]:focus {
  background: var(--lux-gold);
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(179,152,100,0.16);
  transform: translateY(-1px) scale(1.025);
}

/* =========== MICRO-INTERACTIONS, HOVER, TRANSITION ============ */
a, button {
  transition: color 0.12s, box-shadow 0.16s, background 0.12s, transform 0.12s;
}

/* =========== COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--contrast-light);
  color: var(--contrast-dark);
  border-top: 3px solid var(--lux-gold);
  box-shadow: 0 -6px 36px 0 rgba(179,152,100,0.12);
  padding: 28px 28px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  z-index: 4000;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  animation: cookieSlideIn 0.7s cubic-bezier(.32,1.28,.21,1.02);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__title {
  color: var(--primary);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1rem;
  margin-right: 4px;
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(41,80,115,0.08);
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.cookie-btn.accept {
  background: var(--lux-gold);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.settings {
  background: var(--contrast-light);
  color: var(--primary);
  border: 2px solid var(--lux-gold);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--contrast-dark);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--lux-gold-dark);
  color: var(--contrast-light);
  border: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus{
  background: var(--lux-gold-light);
  color: var(--primary);
}

/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(35, 49, 68, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  animation: modalFadeIn 0.3s cubic-bezier(.34,1.34,.33,1.05);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__card {
  background: var(--contrast-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px 0 rgba(179,152,100,0.22);
  padding: 34px 30px 24px 30px;
  max-width: 430px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 5px solid var(--lux-gold);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cookie-modal__title {
  color: var(--primary);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}
.cookie-modal__close {
  background: var(--lux-gold);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--primary);
  color: var(--lux-gold);
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.cookie-toggle .toggle-switch {
  width: 46px;
  height: 24px;
  position: relative;
  display: inline-block;
}
.toggle-switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--lux-gold-light);
  border-radius: 24px;
  transition: background 0.2s;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: var(--lux-gold);
  border-radius: 50%;
  transition: transform 0.23s cubic-bezier(.44,.1,.17,1.14);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--secondary);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(22px);
  background: var(--primary);
}
.cookie-modal__footer {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 2px;
}
.cookie-modal__body .category-description {
  font-size: 0.99rem;
  margin-top: 0px;
  color: #555b60;
}
.cookie-modal__body .category-essential {
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal__body .category-analytics,
.cookie-modal__body .category-marketing {
  color: var(--primary);
  font-weight: 500;
}

@media (max-width: 550px) {
  .cookie-modal__card {
    padding: 20px 7vw 18px 7vw;
    min-width: 0;
    max-width: 95vw;
  }
  .cookie-banner {
    padding: 15px 7vw 10px 5vw;
  }
}

/* ===================== UTILITIES ====================== */
.hide-mobile {
  display: block;
}
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

.hide-desktop {
  display: none;
}
@media (max-width: 768px) {
  .hide-desktop { display: block !important; }
}

.text-center {
  text-align: center !important;
}
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-20 { gap: 20px !important; }
.gap-30 { gap: 30px !important; }

/* === SCROLLBAR LUXURY LOOK === */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--lux-gold-light);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lux-gold);
}

/* ========== ACCESSIBILITY FOCUS ============= */
a:focus, button:focus {
  outline: 2px solid var(--lux-gold-dark);
  outline-offset: 2px;
}

/* ========== RESPONSIVE TYPOGRAPHY ============= */
@media (max-width: 650px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
  body, p { font-size: 0.98rem; }
}

/* ========== LUXURY DETAILS ON SECTIONS ============= */
.section {
  box-shadow: 0 2px 16px 0 rgba(179,152,100,0.04);
  border-radius: var(--radius-lg);
  background: var(--accent);
}

/* ========== END OF STYLE.CSS ========== */
