/* =======================
    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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display:block;
}
body {
  line-height:1.5;
  background: #FAF8F5;
  color: #3A2C18;
  font-family: 'Roboto', Arial, sans-serif;
}
ol,ul {list-style:none;}
blockquote,q {quotes:none;}
blockquote:before,blockquote:after,q:before,q:after {content:''; content:none;}
strong,b {font-weight:bold;}
a {color: inherit; text-decoration: none; transition: color 0.20s cubic-bezier(.4,0,.2,1);}
img {max-width:100%; height:auto; display:block;}
input,button,select,textarea {font-family: inherit; font-size:inherit;}
button {border: none; background: none; cursor: pointer;}

/* ======================
     BRAND VARIABLES
   ======================*/
:root {
  --color-primary: #3A2C18;
  --color-secondary: #826A47;
  --color-accent: #EDE8DF;
  --color-white: #fff;
  --color-black: #1C160D;
  --color-gold: #CFB97A; /* True luxury gold */
  --color-muted: #9C8C71;
  --color-grey: #EDE8DF;
  --shadow-card: 0 3px 16px 0 rgba(58,44,24,0.08), 0 1.5px 5px 0 rgba(58,44,24,0.06);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =======================
     TYPOGRAPHY CONTROLS
   ======================*/
h1 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 16px;
}
@media (min-width:900px) {
  h1 {font-size: 3.2rem;}
}
h2 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
@media (min-width:900px) {
  h2 {font-size: 2.4rem;}
  h3 {font-size: 1.7rem;}
}
p,li,span,blockquote,ol,ul {
  color: var(--color-primary);
  font-size: 1.07rem;
  line-height: 1.65;
}
p {
  margin-bottom: 18px;
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-secondary);
  border-left: 3px solid var(--color-gold);
  margin-bottom: 12px;
  padding-left: 18px;
  font-style: italic;
  background: #f6f3ed;
}
ul,ol {
  margin-bottom: 18px;
  padding-left: 18px;
}
ul li,ol li {
  margin-bottom: 10px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  background: var(--color-gold);
  width: 5px; height: 5px; border-radius: 50%; margin-right: 10px;
  vertical-align: middle;
}
ol li:before {
  display: none;
}
@media (min-width:900px) {
  h1,h2,h3 {margin-bottom: 24px;}
  p, ul, ol {font-size: 1.17rem;}
}
hr {
  border: none;
  border-bottom: 1px solid var(--color-accent);
  margin: 32px 0;
}

/* Headline refinement */
.subheadline {
  font-size: 1.22rem;
  font-family: var(--font-body);
  color: var(--color-muted);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

/* =======================
   GENERAL CONTAINERS
   =======================*/
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Section spacing requirements */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
/* Always use flex for multi-block layout */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
  min-width: 270px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .content-grid { flex-direction: column; }
  .card-container { flex-direction: column; }
  .service-highlight-grid { flex-direction: column; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  min-width: 240px;
  max-width: 330px;
  flex: 1 0 250px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 3px 4px rgba(100,80,34,0.07));
}
.feature-item h3 { color: var(--color-secondary); margin-bottom: 10px; }
.feature-item:hover {
  box-shadow: 0 7px 26px 0 rgba(130,106,71,0.13), 0 1.5px 5px 0 rgba(58,44,24,0.10);
  transform: translateY(-6px);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.service-highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  width: 100%;
}
.service-card {
  flex: 1 0 280px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px 20px 18px 28px;
  min-width: 250px;
  max-width: 352px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #f0eadd;
  position: relative;
}
.service-card:before {
  content: '';
  display: block;
  width: 38px; height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 55%, var(--color-accent) 100%);
  border-radius: 2px 2px 2px 2px;
  margin-bottom: 18px;
}
.service-card:hover {
  box-shadow: 0 16px 38px 0 rgba(58,44,24,0.09), 0 0.5px 1px 0 rgba(58,44,24,0.03);
  transform: translateY(-5px) scale(1.01);
}

/* Price info boxes */
.price-info {
  font-size: 1.08rem;
  color: var(--color-primary);
  background: #f8f3ea;
  border-left: 6px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 15px 24px;
  margin-top: 17px; 
  margin-bottom: 18px;
}

/* =======================
   HERO SECTION
   =======================*/
.hero {
  width: 100vw;
  min-height: 420px;
  background: linear-gradient(100deg, #EFE8D9 75%, #E5DFC7 100%);
  display: flex;
  align-items: center;
  padding: 0;
  padding-top: 38px;
  padding-bottom: 32px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.70);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 26px 0 rgba(58,44,24,0.09), 0 0.5px 1px 0 rgba(58,44,24,0.03);
  padding: 40px 26px;
  max-width: 500px;
  margin: 0 auto;
  gap: 20px;
}

/* ================
   BUTTONS & LINKS
   ================*/
.cta-button, .cta-button:visited {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.14rem;
  border-radius: var(--radius-md);
  padding: 14px 36px;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 10px rgba(58,44,24,0.055);
  border: none;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color .2s, box-shadow 0.22s;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 5px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 5px 18px rgba(58,44,24,0.12);
  text-decoration: none;
}
.link {
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1.08rem;
  border-bottom: 1.5px solid var(--color-gold);
  transition: color .2s, border-color .22s;
  letter-spacing: 0.01em;
}
.link:hover, .link:focus {
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

/* Special gold font effect */
.gold {
  color: var(--color-gold);
  letter-spacing: 0.02em;
  font-weight: bold;
}

/* ================
   NAVIGATION
   ================*/
header {
  box-shadow: 0 2px 16px 0 rgba(58,44,24,0.03);
  background: #fff;
  position: sticky;
  top: 0; left: 0; right: 0; z-index: 50;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 0 0;
  min-height:64px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}
.main-nav a {
  padding: 0 6px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .19s, background .18s, box-shadow .18s;
  position: relative;
  border-radius: var(--radius-sm);
  line-height: 54px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
  box-shadow: 0 2px 8px 0 rgba(130,106,71,0.045);
}
.main-nav img {
  height: 38px;
  margin-right: 14px;
  margin-left: 3px;
  vertical-align: middle;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  width: 44px; height: 44px;
  padding: 0 0;
  z-index: 120;
  position: absolute; right: 16px; top: 13px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

@media (min-width: 950px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(58,44,24,0.92);
  z-index: 9005;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
  transition: transform 0.48s cubic-bezier(.19,1,.22,1), opacity 0.28s;
}
.mobile-menu-close {
  font-size: 2.0rem;
  color: var(--color-gold);
  background: none;
  border: none;
  margin: 32px 24px 10px 0;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center; align-items: center;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-grey);
  color: var(--color-black);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 22px; margin-left: 44px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--color-white);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 2.3;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color .18s, border-color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
}

@media (min-width:950px) {
  .main-nav {display: flex !important;}
  .mobile-menu {display: none !important;}
}
@media (max-width:950px) {
  .main-nav {
    display: none !important;
  }
  header {
    position: sticky;
    top: 0;
    width: 100vw;
    background: #fff;
    z-index: 19000;
    min-height: 64px;
  }
}

/* =======================
     FOOTER
   =======================*/
footer {
  background: #fff6ea;
  border-top: 1.5px solid #e0d5c1;
  padding: 38px 15px 28px 15px;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 500;
  border-bottom: 1.5px solid transparent;
  transition: border-color .16s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 1.5px solid var(--color-gold);
  color: var(--color-primary);
}
.footer-contact {
  text-align: center;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.74;
}
.footer-contact a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color .18s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-secondary);
}

/* ========================
     TESTIMONIALS
   ========================*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(130,106,71,0.07);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-left: 5px solid var(--color-gold);
}
.testimonial-card p {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0;
  line-height: 1.7;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1.01rem;
  font-family: var(--font-body);
  font-style: italic;
}
@media (max-width:600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

/* ========================
     FAQ ACCORDION
   ========================*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 20px 16px 20px;
  border-left: 4px solid var(--color-gold);
  transition: box-shadow 0.19s;
}
.faq-accordion div:hover {
  box-shadow: 0 7px 25px 0 rgba(130,106,71,0.10);
}
.faq-accordion h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--color-secondary);
}

/* ========================
     ADDRESS, HOURS
   ========================*/
.address-details,
.opening-hours {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(58,44,24,0.04);
  padding: 16px 18px;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 1.03rem;
}
.address-details strong, .opening-hours strong {
  color: var(--color-secondary);
  font-size: 1.08rem;
  font-family: var(--font-display);
}

/* ===============
  BLOCKQUOTES
=============== */
.small-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.small-quotes blockquote {
  font-size: 1.07rem;
  padding: 8px 16px;
  background: #f5eddc;
  color: var(--color-secondary);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  font-style: italic;
  margin: 0;
}

/* ===============
     RESPONSIVE
=============== */
@media (max-width: 540px) {
  html {font-size: 100%;}
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.25rem;}
  h3 {font-size: 1.11rem;}
  .container {padding: 0 7px;}
  .section {padding: 25px 0; margin-bottom: 34px;}
  .feature-item, .service-card {padding: 18px 12px;}
  .content-wrapper, .service-highlight-grid {gap: 16px;}
}

@media (max-width: 768px) {
  .main-nav, .footer-nav {gap: 12px;}
}

/* ===================
 COOKIE CONSENT
=================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff9ef;
  color: var(--color-primary);
  box-shadow: 0 -2px 18px 0 rgba(130,106,71,0.08);
  z-index: 8888;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 18px 22px 18px;
  gap: 17px;
  transition: transform 0.28s, opacity 0.24s;
}
.cookie-consent-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
}
.cookie-consent-text {
  font-size: 1rem;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 7px;
  max-width: 700px;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 13px 27px;
  min-width: 120px;
  border-radius: var(--radius-md);
  font-size: 1.01rem;
  box-shadow: 0 1px 6px rgba(58,44,24,0.037);
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow .13s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn.secondary {
  background: #eee5d1;
  color: var(--color-secondary);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(58,44,24,0.60);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.19s;
  opacity: 1;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 9px 32px 0 rgba(130,106,71,0.12);
  padding: 35px 32px 24px 32px;
  min-width: 330px;
  max-width: 97vw;
  transition: transform 0.22s, opacity 0.19s;
  transform: translateY(16px) scale(1);
  opacity: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal.hide {
  opacity: 0; pointer-events: none; transform: translateY(70px) scale(0.96);
}
.cookie-modal h2 {
  font-size: 1.31rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.cookie-modal-cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 23px;
  width: 100%;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
}
.cookie-cat label {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-toggle {
  width: 34px; height: 20px;
  border-radius: 20px;
  background: #e7dbbf;
  position: relative;
  transition: background 0.19s;
  margin-left: 7px;
  cursor: pointer;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  display: block;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
  box-shadow: 0 1px 5px rgba(58,44,24,0.13);
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  left: 16px;
  background: var(--color-gold);
}
.cookie-toggle input[type="checkbox"]:checked {
  /* Add glow? */
}
.cookie-cat .cat-description {
  font-size: 1.02rem;
  color: var(--color-muted);
}
.cookie-close-modal {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none;
  font-size: 1.75rem;
  color: var(--color-gold);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.12s, color 0.13s;
  padding: 4px;
}
.cookie-close-modal:hover, .cookie-close-modal:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}

/* ============
  ANIMATIONS
============= */
@keyframes menuSlideIn {
  0% {transform: translateX(-100vw); opacity: 0;}
  100% {transform: translateX(0); opacity: 1;}
}
@keyframes menuSlideOut {
  from {transform: translateX(0); opacity: 1;}
  to {transform: translateX(-100vw); opacity: 0;}
}
@keyframes cookieBannerIn {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
@keyframes cookieModalIn {
  0% {transform: scale(0.97) translateY(90px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}

.cookie-consent-banner {animation: cookieBannerIn 0.67s cubic-bezier(.68,-0.55,.27,1.55) 1;}
.cookie-modal {animation: cookieModalIn 0.31s cubic-bezier(.68,-0.55,.27,1.55) 1;}

/* ============
  EXTRAS
============= */
::-webkit-scrollbar {
  width: 9px;
  background: #faf8f5;
}
::-webkit-scrollbar-thumb {
  background: #ebdfcb;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4bb8a;
}

/* =======================
   MISCELLANEOUS
   =======================*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Extra utility for visually distinctive lists on content blocks */
.text-section ul,
.text-section ol {
  background: #f7f2e8;
  border-radius: var(--radius-sm);
  padding: 10px 14px 10px 24px;
  margin-bottom: 8px;
}
.text-section ul li {
  margin-bottom: 6px; font-size: 1.02rem;
}

/* Responsive font fallback improvement if font not loaded */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Playfair Display'), url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
}

/* ==========================
  ACCESSIBILITY ENHANCEMENTS
============================*/
:focus {
  outline: 2px dashed var(--color-gold);
  outline-offset: 2px;
}

/* ==========================
  CRITICAL FLEX LAYOUT ENFORCEMENT
============================*/
/* All cards and section blocks use flex */
.feature-grid, .service-highlight-grid, .small-quotes, .card-container, .content-grid, .testimonial-card, .footer-nav, .cookie-buttons, .faq-accordion, .mobile-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
/* No grid properties are used anywhere */
