/* ----------------------------------------------------------
   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.6;
  background: #F6F9FA;
  color: #232323;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

/* ----------------------------------------------------------
   FONT IMPORT (Google Fonts: Oswald + Roboto)
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #1B2838;
  --color-secondary: #E8482E;
  --color-accent: #F6F9FA;
  --color-gold: #C7A240;
  --color-gold-dark: #A38932;
  --color-text: #232323;
  --color-neutral-70: #4C4C53;
  --color-neutral-40: #B0B0BC;
  --color-white: #fff;
  --color-footer-bg: #181C22;
  --shadow-base: 0 2px 8px 0 rgba(27, 40, 56, 0.08);
  --shadow-deep: 0 6px 24px 0 rgba(27, 40, 56, 0.16);
}

/* ----------------------------------------------------------
   LUXURY PREMIUM BASE TYPOGRAPHY
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.18;
}
h4, h5, h6 {
  font-size: 1.1rem;
  line-height: 1.15;
}
p, ul, ol, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-text);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: var(--color-gold);
}

/* Typography scale for luxury & clarity */
@media (min-width: 600px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
  p, li { font-size: 1.1rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.6rem; }
}

/* ----------------------------------------------------------
   GLOBAL CONTAINER & LAYOUT SETTINGS
---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-base);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    border-radius: 0;
    margin-bottom: 36px;
  }
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION (LUXURY STYLE)
---------------------------------------------------------- */
header {
  width: 100%;
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 2px 14px 0 rgba(27, 40, 56, 0.04);
  z-index: 1000;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 18px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  width: 100%;
}

.main-nav > a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--color-primary);
  padding: 8px 2px;
  border-radius: 5px;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.main-nav > a:not(.cta-btn):hover,
.main-nav > a:not(.cta-btn):focus {
  color: var(--color-gold);
  background: rgba(198, 162, 64, 0.10);
}
.main-nav > a.cta-btn {
  background: var(--color-gold);
  color: #fff;
  padding: 8px 22px;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 44px;
  margin-left: 8px;
  box-shadow: 0 2px 10px 0 rgba(198,162,64,0.11);
  border: 2px solid var(--color-gold);
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.main-nav > a.cta-btn:hover,
.main-nav > a.cta-btn:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
  box-shadow: 0 3px 18px 0 rgba(161, 137, 50, 0.23);
}

.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 20px;
}

/* ----------------------------------------------------------
   MOBILE MENU
---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-gold);
  font-size: 2.2em;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  z-index: 2002;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(198,162,64,0.16);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,33,44, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.22s;
  pointer-events: none;
  z-index: 2001;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 32px 0 0;
  font-size: 2.2em;
  color: var(--color-gold);
  background: unset;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2003;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(198,162,64,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: clamp(9vh, 18vw, 24vh);
  width: 70vw;
  max-width: 320px;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 6px;
  border-radius: 5px;
  width: 100%;
  display: block;
  transition: background .19s, color .19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(198,162,64, 0.12);
  color: var(--color-gold);
}

@media (max-width: 980px) {
  header .container {
    flex-direction: row;
    padding: 0 10px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
    font-size: 1rem;
  }
  .main-nav > a.cta-btn {
    padding: 7px 13px;
  }
}
@media (max-width: 820px) {
  .main-nav > a:not(:first-child) {
    display: none;
  }
  .main-nav > a.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 821px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ----------------------------------------------------------
   HERO SECTION
---------------------------------------------------------- */
.hero {
  background: linear-gradient(115deg, #fff 75%, #fff3dc 100%);
  border-bottom: 2.5px solid var(--color-gold);
  box-shadow: 0 3px 22px rgba(198,162,64,0.07);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 30px 0;
}
.hero .container {
  align-items: center;
  justify-content:center;
  min-height: 230px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 1px 0 #f9f4e5;
}
.hero p {
  color: var(--color-neutral-70);
  font-size: 1.18rem;
  font-weight: 400;
  max-width: 500px;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .hero {
    padding: 30px 0 13px 0;
  }
  .hero h1 { font-size: 2rem; }
}

/* ----------------------------------------------------------
   FLEXBOX LAYOUT CLASSES
---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-base);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 350px;
  padding: 30px 22px 28px;
  transition: transform 0.19s, box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-deep);
}
.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;
  background: #fff9ed;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(198,162,64,0.06);
  flex-direction: column;
  transition: box-shadow 0.18s, background 0.2s;
  border: 1.5px solid var(--color-gold);
}
.testimonial-card p {
  color: #2b2c36;
  font-size: 1.10rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 1em;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 20px 16px;
}
/* Feature card icons */
.feature-item img, .feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 9px;
}

/* SERVICE HIGHLIGHTS, BLOG POSTS, ETC. */
.service-highlights,
.service-list,
.blog-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.service-highlights > div,
.service-list > div,
.blog-posts-list > div {
  background: var(--color-white);
  border-radius: 13px;
  box-shadow: var(--shadow-base);
  padding: 18px 20px 15px;
  min-width: 240px;
  flex: 1 1 200px;
  margin-bottom: 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-left: 3.2px solid var(--color-gold);
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
}
.service-highlights > div:hover,
.service-list > div:hover,
.blog-posts-list > div:hover {
  border-left-color: var(--color-gold-dark);
  box-shadow: 0 4px 20px 0 rgba(198,162,64,0.13);
  transform: translateY(-2px);
}
@media (max-width: 800px) {
  .service-highlights, .service-list, .blog-posts-list {
    flex-direction: column;
    gap: 14px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  padding: 18px 16px 12px;
  min-width: 210px;
  flex: 1 1 200px;
  border-bottom: 3.5px solid var(--color-gold);
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.13s;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.feature-grid > div:hover {
  border-bottom-color: var(--color-gold-dark);
  box-shadow: 0 6px 22px 0 rgba(198,162,64,0.13);
  transform: scale(1.024);
}

.categories-overview {
  background: #faf7ef;
  border-radius: 13px;
  box-shadow: 0 1px 6px 0 rgba(198,162,64,0.07);
  margin-top: 26px;
  padding: 17px 19px 9px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.categories-overview h4 {
  font-weight: 700;
  color: var(--color-gold);
  font-family: 'Oswald';
}
.categories-overview ul li {
  background: none;
  font-size: 1.02em;
  color: var(--color-primary);
  padding: 0 0 6px 0;
}

.how-to-guides ul li {
  padding-left: 14px;
  margin-bottom: 6px;
  position: relative;
}
.how-to-guides ul li:before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* RESPONSIVE FLEX CONTAINERS */
@media (max-width: 820px) {
  .content-grid, .feature-grid, .card-container, .service-highlights, .service-list, .blog-posts-list {
    flex-direction: column !important;
    gap: 13px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ----------------------------------------------------------
   BUTTONS & LINK STYLES
---------------------------------------------------------- */
.cta-btn, .btn, button, input[type="submit"] {
  background: var(--color-gold);
  color: #fff !important;
  padding: 9px 32px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 44px;
  box-shadow: 0 1.5px 8px 0 rgba(198,162,64,0.08);
  border: 2px solid var(--color-gold);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.15s;
  margin: 10px 0;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus,
.btn:hover, .btn:focus,
button:hover, button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white) !important;
  box-shadow: 0 4px 16px 0 rgba(161, 137, 50, 0.13);
}

/* Custom link style */
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.16s;
}
a:hover, a:focus {
  color: var(--color-gold);
}

/* ----------------------------------------------------------
   SPECIFIC SECTIONS, LISTS, TEXT BLOCKS
---------------------------------------------------------- */
.text-section, .contact-details, .contact-map {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04em;
  color: var(--color-primary);
}
.contact-details ul li img {
  height: 22px;
  width: 22px;
}

/* Responsive images (like logo) */
.brand img {
  height: 42px;
  width: auto;
}

/* ----------------------------------------------------------
   FOOTER (PREMIUM DARK THEME)
---------------------------------------------------------- */
footer {
  background: var(--color-footer-bg);
  color: #f1e9d4;
  font-size: 1.04em;
  border-top: 2.5px solid var(--color-gold);
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 20px 28px 20px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.footer-menu a {
  color: #f5ecd7;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  padding: 3px 0 3px 2px;
  border-radius: 4px;
  transition: color 0.13s, background .17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: rgba(198,162,64,0.11);
  color: var(--color-gold);
}
.brand {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 100px;
  margin-bottom: 12px;
}
footer .contact-details {
  color: #ece2c2;
}
footer .contact-details p {
  color: #ece2c2;
  font-size: 1em;
}
footer .contact-details img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 2px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 10px 18px 10px;
  }
  .brand {
    align-items: center;
    margin-bottom: 0;
  }
}

/* ----------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 -2px 18px 0 rgba(27,40,56,0.08);
  border-top: 2px solid var(--color-gold);
  padding: 24px 18px 24px 18px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookie-slide-in 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(130%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  color: #373838;
  margin-bottom: 8px;
  text-align: center;
  max-width: 490px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cookie-btn {
  background: var(--color-gold);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 32px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 6px 32px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 3px 18px 0 rgba(161, 137, 50, 0.05);
  transition: background 0.17s, box-shadow 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-gold-dark);
}
.cookie-settings-btn {
  background: #fff9ed;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ffe49d;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,33,44,.82);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: modal-fadein 0.35s cubic-bezier(.77,0,.18,1);
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232323;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(27,40,56,0.14);
  max-width: 445px;
  width: 97vw;
  padding: 26px 30px 21px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-slide 0.68s cubic-bezier(.69,0,.15,1);
}
@keyframes cookie-modal-slide {
  from { transform: translateY(80px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  color: var(--color-gold);
  font-size: 2em;
  border: none;
  cursor: pointer;
  z-index: 4001;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: var(--color-primary);
  margin-bottom: 0;
  margin-top: 6px;
}
.cookie-modal-category {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-modal-category label {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: var(--color-primary);
}
.cookie-modal-category input[type='checkbox'] {
  width: 23px;
  height: 23px;
  accent-color: var(--color-gold);
  margin-right: 3px;
}
.cookie-essential-label {
  color: var(--color-gold-dark);
  font-weight: 700;
  font-size: 1.01rem;
  margin-left: 6px;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 12px 8px 13px 8px;
    min-width: 0;
  }
  .cookie-banner {
    padding: 18px 3px 18px 3px;
  }
}

/* ----------------------------------------------------------
   MISCELLANEOUS UTILITIES & ANIMATIONS
---------------------------------------------------------- */
.shadow {
  box-shadow: 0 8px 36px 0 rgba(198,162,64,0.08);
}
.rounded {
  border-radius: 12px;
}
.text-right {
  text-align: right;
}
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.t-bold { font-weight: 700; }

/* Spacing helpers */
.mt-4 { margin-top: 4px; }
.mb-4 { margin-bottom: 4px; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* ----------------------------------------------------------
   FORM ELEMENTS
---------------------------------------------------------- */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  border: 1.5px solid var(--color-gold);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 1em;
  background: #fff;
  color: var(--color-primary);
  margin-bottom: 12px;
  transition: border-color 0.15s;
  min-width: 120px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
  border-color: var(--color-gold-dark);
}
label {
  color: var(--color-primary);
  font-weight: 500;
}

/* ----------------------------------------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
---------------------------------------------------------- */
@media (max-width: 600px) {
  .container, .content-wrapper {
    max-width: 100% !important;
    padding: 0 7px !important;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .feature-grid > div,
  .service-highlights > div,
  .service-list > div,
  .blog-posts-list > div {
    padding: 12px 7px;
    min-width: 0;
  }
  .feature-grid, .content-grid, .card-container, .service-highlights, .service-list, .blog-posts-list {
    gap: 9px;
  }
  .testimonial-card {
    padding: 13px 7px;
    font-size: 0.98rem;
  }
}

/* Reduce base padding/gap at very small screens */
@media (max-width: 430px) {
  .container { padding: 0 2px !important; }
  .section { padding: 22px 2px 22px 2px; }
}

/* ----------------------------------------------------------
   ACCESSIBILITY UTILS
---------------------------------------------------------- */
:focus {
  outline: 2.5px solid var(--color-gold-dark);
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }

/* ----------------------------------------------------------
   OVERRIDE UNWANTED DEFAULTS
---------------------------------------------------------- */
.card, .feature-grid > div, .service-list > div, .service-highlights > div, .testimonial-card, .content-wrapper, .text-section {
  box-sizing: border-box;
}
