/* ------------------------------------
   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,
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.5;
  background: #F8F7FA;
  color: #34315C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus, button:focus {
  outline: 2px solid #B09BCC;
  outline-offset: 2px;
}

/* -----------------------------
   Font Import
------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* -------------------------------
   Variables (with fallback)
----------------------------------*/
:root {
  --color-primary: #34315C;
  --color-secondary: #B09BCC;
  --color-accent: #F8F7FA;
  --color-gold: #C9B15B;
  --color-gold-dark: #AF9853;
  --color-white: #fff;
  --color-black: #18152D;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* -------------------------------
   Containers & Layout
----------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .card-grid, .features, .post-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(52,49,92,0.07), 0 1px 4px rgba(201,177,91,0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 40px rgba(201, 177, 91, 0.16), 0 1.5px 6px rgba(52,49,92,0.07);
}
.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;
  background: var(--color-white);
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(181,155,204,0.09);
  border-left: 5px solid var(--color-gold);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(52,49,92,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------------
   Header & Navigation
----------------------------------*/
header {
  background: var(--color-white);
  box-shadow: 0 1px 12px rgba(52,49,92, 0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
}
header nav a:hover,
header nav a.active {
  color: var(--color-gold);
  background: rgba(176,155,204,0.09);
}
header img {
  height: 46px;
  width: auto;
  margin-right: 12px;
}
.primary-cta {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 28px;
  padding: 12px 36px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 3px 20px rgba(201,177,91,0.05);
  transition: background 0.18s, color 0.15s, transform 0.13s;
  text-align: center;
  position: relative;
}
.primary-cta:hover,
.primary-cta:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.03);
}

/* ------------------------------
   Mobile Menu
-------------------------------*/
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  font-size: 32px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(201,177,91,0.10);
  transition: background 0.15s, color 0.15s;
  z-index: 120;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  box-shadow: 0 0 40px rgba(52,49,92,.17);
  z-index: 200;
  transform: translateX(-110vw);
  transition: transform 0.3s cubic-bezier(.85,0,.45,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 24px;
}
.mobile-menu.open {
  transform: translateX(0vw);
}
.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 32px;
  background: none;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 220;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-gold-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 60px;
}
.mobile-nav a {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 600;
  padding: 12px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-gold-dark);
}

/* ---------------------------------
   Typography
-----------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), serif;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.21;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}
p, ul li, ol li, blockquote {
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ---------------------------------
   Hero Section
-----------------------------------*/
.hero {
  background: linear-gradient(115deg, var(--color-accent) 65%, #F4F2E9 100%);
  padding-top: 52px;
  padding-bottom: 52px;
  margin-bottom: 56px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero .content-wrapper {
  max-width: 680px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.9rem;
  margin-bottom: 18px;
}
.hero p {
  color: #665E89;
  font-size: 1.13rem;
  margin-bottom: 32px;
}

/* --------------------------------
   Features
---------------------------------*/
.features {
  gap: 24px;
}
.features ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.features li {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(52,49,92,0.078);
  flex: 1 1 180px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 32px 20px 28px 28px;
  transition: box-shadow .18s, border-color .15s;
  border-left: 5px solid var(--color-gold);
  margin-bottom: 20px;
}
.features li img {
  height: 40px;
  margin-bottom: 10px;
}
.features li strong {
  color: var(--color-primary);
  font-size: 1.18rem;
  font-family: var(--font-display), serif;
}
.features li p {
  font-size: 1rem;
  color: #5A5575;
}

/* -------------------------------
   About Preview & About Page
----------------------------------*/
.about-preview, .about {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(176,155,204,0.07);
  margin-bottom: 48px;
  padding: 40px 26px;
}
.about-preview ul, .about ul {
  margin-bottom: 16px;
}
.about-preview ul li, .about ul li {
  list-style: disc inside;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}
.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.values li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-primary);
  background: #f5f1fa;
  border-radius: 14px;
  padding: 18px 18px 18px 14px;
  margin-bottom: 14px;
}
.values li img {
  width: 30px;
  height: 30px;
}

/* -------------------------------
   Services
----------------------------------*/
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.services ul li {
  flex: 1 1 240px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 1.5px 14px rgba(52,49,92,0.07);
  padding: 24px 18px;
  min-width: 220px;
  margin-bottom: 20px;
}
.services ul li strong {
  font-family: var(--font-display), serif;
  color: var(--color-gold-dark);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.services ul li p {
  color: #686080;
  font-size: 0.97rem;
}
.benefits {
  margin-top: 32px;
  background: #f4f0fb;
  border-radius: 10px;
  padding: 18px 22px;
}
.benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.benefits li {
  color: var(--color-primary);
  font-weight: 500;
}

/* --------------------------------
   Process
---------------------------------*/
.process ol {
  margin: 0 0 28px 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.process ol li {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

/* --------------------------------
   FAQ
---------------------------------*/
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq li {
  background: #f7f6fa;
  border-radius: 12px;
  padding: 22px 18px;
  color: #564c7c;
  font-weight: 500;
}

/* ----------------------------
   Case Study
-----------------------------*/
.case-studies .content-wrapper {
  gap: 28px;
}
.case-study-card {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 3px 22px rgba(52,49,92,0.08);
  margin-bottom: 24px;
  padding: 28px 22px;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow 0.18s;
}
.case-study-card:hover {
  box-shadow: 0 8px 28px rgba(201,177,91,0.11);
  border-left: 5px solid var(--color-gold);
}
.case-study-card h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.case-study-card p {
  color: #544a7b;
}

.achievements ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.achievements li {
  font-weight: 600;
  background: #f4f1fb;
  color: var(--color-primary);
  border-radius: 10px;
  padding: 12px 18px;
}

/* ----------------------------
   Testimonials
-----------------------------*/
.testimonials-preview, .testimonials {
  margin-bottom: 56px;
}
.testimonials-preview h2, .testimonials h2 {
  margin-bottom: 24px;
}
.testimonials-preview .testimonial-card, .testimonials .testimonial-card {
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 22px;
  border-left: 5px solid var(--color-gold);
}
.testimonials-preview .testimonial-card strong,
.testimonials .testimonial-card strong {
  color: var(--color-gold-dark);
  font-size: 1.023em;
  font-weight: 700;
}
.star-rating {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-bottom: 10px;
}
.star-rating img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* Color contrast for testimonial text */
.testimonial-card p {
  color: #2C2850;
}

/* ----------------------------
   Blog/Posts
-----------------------------*/
.post-list ul {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.post-list li,
.blog-preview ul li {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  position: relative;
}
.post-list li strong a,
.blog-preview ul li a {
  color: var(--color-secondary);
  font-family: var(--font-display), serif;
  font-weight: 700;
  transition: color 0.12s;
}
.post-list li strong a:hover,
.blog-preview ul li a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.category-filters {
  margin-bottom: 18px;
  font-size: 1rem;
}
.category-filters a {
  color: var(--color-primary);
  padding: 3px 10px;
  border-radius: 8px;
  background: #f4f2e9;
  margin: 0 5px;
}
.category-filters a:hover {
  background: var(--color-gold);
  color: var(--color-black);
}
.newsletter {
  background: #edeaec;
  border-radius: 15px;
  padding: 32px 28px;
}
.newsletter-signup p {
  color: var(--color-primary);
  font-weight: 500;
  margin-top: 10px;
}

/* ------------------------------
   CTA Sections
-------------------------------*/
.cta {
  background: linear-gradient(115deg, var(--color-gold) 62%, var(--color-secondary) 100%);
  box-shadow: 0 2px 26px rgba(201,177,91,0.09);
  padding: 40px 24px;
  border-radius: 20px;
  margin-bottom: 50px;
}
.cta h2 {
  color: var(--color-white);
}
.cta p {
  color: #E6DFEC;
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.cta .primary-cta {
  background: var(--color-primary);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  transition: background 0.2s, color 0.13s, border 0.13s;
}
.cta .primary-cta:hover,
.cta .primary-cta:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* ---------------------------------
   Contact Section
-----------------------------------*/
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 11px;
  font-weight: 500;
}
.contact-info img, .location-map img {
  width: 25px;
  height: 25px;
}
.location-map {
  margin-top: 16px;
  font-size: 1rem;
}

/* ---------------------------------
   Legal/Policy
-----------------------------------*/
.legal {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1.5px 14px rgba(52,49,92,0.07);
  margin-bottom: 38px;
  padding: 40px 24px;
}
.legal h1 {
  color: var(--color-primary);
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.22rem;
  color: var(--color-gold-dark);
}

/* --------------------------------
   Footer
----------------------------------*/
footer {
  background: var(--color-white);
  box-shadow: 0 -2px 14px rgba(176,155,204,0.06);
  border-top: 3px solid var(--color-gold);
  padding: 0 0 22px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 12px;
}
.footer-brand img {
  height: 38px;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
  padding: 4px 7px;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
.contact-snippet p {
  font-size: 14px;
  color: #777395;
  line-height: 1.5;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 13px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #f7f1fa;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  justify-content: center;
  transition: background .15s;
}
.social-links a:hover {
  background: var(--color-gold);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* --------------------------------
   Cookie Consent Banner
----------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 999;
  box-shadow: 0 -7px 38px rgba(52,49,92,.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 20px 12px;
  gap: 18px;
  animation: cookie-slide-in 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  border-radius: 28px;
  border: none;
  padding: 10px 26px;
  margin: 0;
  transition: background 0.13s, color 0.11s, border 0.11s;
}
.cookie-accept-btn {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-accept-btn:hover { background: var(--color-gold-dark); color: var(--color-white); }
.cookie-reject-btn {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-reject-btn:hover { background: var(--color-accent); color: var(--color-primary); }
.cookie-settings-btn {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cookie-settings-btn:hover { background: var(--color-gold); color: var(--color-primary); }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1001;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(52,49,92,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal .3s cubic-bezier(.61,0,.14,1);
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  padding: 38px 26px 26px;
  max-width: 410px;
  width: 92vw;
  box-shadow: 0 8px 44px rgba(176,155,204,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: slide-in-modal .37s cubic-bezier(.71,0,.17,1);
}
@keyframes slide-in-modal {
  from { transform:translateY(58px); opacity: 0; }
  to   { transform:translateY(0); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 28px;
  cursor: pointer;
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  cursor: pointer;
}
/* lock body scroll when modal open */
body.cookie-modal-open {
  overflow: hidden;
}

/* ------------------------------
   Buttons & Links
-------------------------------*/
button, .primary-cta {
  transition: background 0.18s, color 0.12s, box-shadow 0.16s, border-color 0.12s, transform 0.10s;
}
[tabindex]:focus, button:focus, .primary-cta:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* General Links */
a {
  color: var(--color-gold-dark);
}
a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ---------------------------------
   Spacing Utility Classes
-----------------------------------*/
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.pb-2 { padding-bottom: 8px; }
.pb-3 { padding-bottom: 16px; }
.pt-2 { padding-top: 8px; }
.pt-3 { padding-top: 16px; }

/* ---------------------------------
   Responsive Styles
-----------------------------------*/
@media (max-width: 1100px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .container { max-width: 770px; padding-left: 15px; padding-right: 15px; }
  .features ul,
  .services ul,
  .values ul,
  .achievements ul {
    gap: 14px !important;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 3px; padding-bottom: 3px;
  }
  header nav {
    display: none !important;
  }
  .primary-cta {
    margin-left: 8px;
    padding: 10px 18px;
    font-size: 15px;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .section, .about-preview, .about, .values, .newsletter {
    padding: 28px 8px !important;
    margin-bottom: 32px;
  }
  .content-grid, .features ul, .services ul, .values ul, .achievements ul {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .card-container,
  .card-grid,
  .post-list ul {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px !important;
    gap: 10px;
  }
  .cta {
    padding: 25px 10px;
    border-radius: 14px;
  }
  .hero {
    padding-top: 30px; padding-bottom: 32px;
    margin-bottom: 32px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-top: 22px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.13rem; }
  .container { padding-left: 6px; padding-right: 6px; }
  .hero .content-wrapper { max-width: 98vw; }
  .footer-brand img { height: 30px; }
}

/* ---------------------------------------------
   Hide Desktop Nav & Show Mobile on Small View
----------------------------------------------*/
@media (max-width: 950px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* ---------------------------------------------
   Hide Cookie Banner if not needed
----------------------------------------------*/
.cookie-banner.hidden,
.cookie-modal-overlay.hidden {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

/* ---------------------------------------------
   Accessibility / Misc
----------------------------------------------*/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
}

/*
  LUXURY & PREMIUM FLAVOUR
  - Gold signature borders, accents, and controls
  - Higher contrast, exquisite font accents, generous white space
*/
h1, h2 {
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
h1::after, h2::after {
  content: '';
}
.card, .testimonial-card, .case-study-card, .about-preview, .about, .values, .newsletter, .legal, .newsletter-signup, .cta, .services ul li {
  box-shadow: 0 2px 22px rgba(201, 177, 91, 0.08) !important;
}
.primary-cta, .cookie-accept-btn {
  box-shadow: 0 3px 18px rgba(201,177,91,0.065);
  border: 2px solid var(--color-gold);
}
.primary-cta:active { transform: scale(0.96); }

/* FORM FIELDS (future proof) */
input, textarea, select {
  border: 1.5px solid var(--color-secondary);
  border-radius: 10px;
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(201,177,91,0.06);
  margin-bottom: 15px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold);
  outline: 0;
}

/* END OF STYLES */
