/* RESET & BASELINE 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, 
main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FAFAF7;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-style: none;
}
a {
  color: #155A4A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C2A13C;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #155A4A;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* LUXURY PREMIUM THEME */
:root {
  --brand-primary: #155A4A;
  --brand-secondary: #F2CB05;
  --brand-gold: #C2A13C;
  --brand-gold-dark: #927A28;
  --brand-background: #FAFAF7;
  --brand-card-bg: #FFFFFF;
  --brand-gray: #ECE6D3;
  --brand-accent: #155A4A;
  --brand-box-shadow: 0 4px 24px rgba(21, 90, 74, 0.08), 0 2px 8px rgba(194, 161, 60, 0.08);
  --header-height: 70px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 90, 74, 0.08);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  padding: 0 20px;
  min-height: var(--header-height);
  height: var(--header-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
}
.button-primary {
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-secondary));
  color: #222;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(194, 161, 60, 0.09);
  transition: background 0.25s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin-left: 8px;
  letter-spacing: 0.03em;
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(90deg, var(--brand-gold-dark), var(--brand-gold));
  color: #fff;
  box-shadow: 0 4px 16px rgba(194, 161, 60, 0.18);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  display: none;
  margin-left: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--brand-gold);
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(21, 90, 74, 0.88);
  backdrop-filter: blur(3px);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.3,0.7,0.4,1);
  padding: 28px 0 0 0;
  box-shadow: 0 8px 48px rgba(21,90,74,0.12);
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 20px;
  margin-bottom: 12px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  padding: 5px 12px 5px 8px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 40px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.23s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
}

/* HERO SECTION */
.hero {
  min-height: 380px;
  padding: 60px 0 40px 0;
  background: linear-gradient(115deg, #FFF 40%, var(--brand-gold) 190%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  gap: 24px;
  padding: 24px 0;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.75rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.25rem;
  color: #4B4B44;
  margin-bottom: 16px;
}

/* FLEX LAYOUT COMPONENTS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.feature-item {
  background: var(--brand-card-bg);
  box-shadow: var(--brand-box-shadow);
  border-radius: 16px;
  padding: 32px 24px 26px 24px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #ECE6D3;
  transition: box-shadow 0.23s, border-color 0.2s, transform 0.19s;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-item h3, .feature-item h2 {
  margin-bottom: 0;
  color: var(--brand-primary);
  font-size: 1.22rem;
}
.feature-item p {
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 36px rgba(194, 161, 60, 0.16), 0 2px 8px rgba(21, 90, 74, 0.07);
  border-color: var(--brand-gold);
  transform: translateY(-3px) scale(1.02);
}

.text-section {
  font-size: 1rem;
  color: #2B2B25;
  background: none;
}
.text-section strong {
  color: var(--brand-gold-dark);
}
.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  font-size: 1.04rem;
  color: var(--brand-primary);
  font-weight: 500;
}
.quick-stats li {
  margin-bottom: 0;
}
.trust-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0;
  font-size: 1.15rem;
}
.trust-badges img {
  width: 32px;
  height: 32px;
  margin-right: 3px;
}
/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-card-bg);
  box-shadow: var(--brand-box-shadow);
  border-radius: 16px;
  padding: 34px 24px 26px 24px;
  min-width: 240px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.5px solid #ECE6D3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* TESTIMONIALS */
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  background: #fff9ef;
  border-left: 6px solid var(--brand-gold);
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(194, 161, 60, 0.10);
  color: #262319;
  min-width: 260px;
  max-width: 420px;
  font-size: 1.08rem;
  transition: box-shadow 0.17s, border-color 0.23s;
}
.testimonial-card p {
  color: #2B2617;
  font-style: italic;
  margin-bottom: 0px;
  margin-right: 10px;
}
.testimonial-card span, .testimonial-card strong {
  color: var(--brand-primary);
  font-weight: bold;
  margin-left: 7px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 32px rgba(194, 161, 60, 0.17);
  border-left: 6px solid var(--brand-gold-dark);
}

.project-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.project-highlight {
  background: #fff;
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(21, 90, 74, 0.06);
  flex: 1 1 210px;
  min-width: 190px;
  max-width: 340px;
  margin-bottom: 20px;
}
.project-highlight h3 {
  color: var(--brand-gold-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  margin: 32px 0 24px 0;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--brand-box-shadow);
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 18px 18px 16px 18px;
  font-size: 1.03rem;
}
.pricing-table thead tr {
  background: #fdf6e0;
}
.pricing-table th {
  color: var(--brand-gold-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}
.pricing-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #E3DAC8;
}
.pricing-table tr:nth-child(even) td {
  background: #FBF8F3;
}

.inclusions-exclusions {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-top: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.inclusions-exclusions > div {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px 12px 24px;
  box-shadow: 0 1px 10px rgba(21, 90, 74, 0.06);
  min-width: 260px;
  max-width: 350px;
}
.inclusions-exclusions h2 {
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

/* FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #fcfcfb;
  border-radius: 8px;
  padding: 20px 26px;
  box-shadow: 0 1px 8px rgba(21, 90, 74, 0.06);
}
.faq-item h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-us-prompt {
  margin-top: 10px;
  background: #fff7e4;
  border-left: 5px solid var(--brand-gold);
  border-radius: 6px;
  padding: 18px 20px;
  color: #2B2511;
}
.contact-us-prompt h2 {
  color: var(--brand-gold-dark);
  margin-bottom: 5px;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #f6f6f4;
  border: 1.5px dashed var(--brand-gold);
  border-radius: 10px;
  padding: 22px 20px 20px 24px;
  margin-bottom: 18px;
}

/* FOOTER */
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 40px 0 0 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 8px 0 0 0;
}
.footer-nav a {
  color: var(--brand-gold);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  color: #fef6d6;
  font-size: 1rem;
  margin: 7px 0;
  text-align: center;
}
.footer-copy {
  color: #fceca8;
  font-size: 0.97rem;
  margin: 12px 0 0 0;
  letter-spacing: 0.01em;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 3px solid var(--brand-gold);
  box-shadow: 0 -2px 24px rgba(21,90,74,0.10);
  z-index: 2500;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.4,0.44,0.4,1), opacity 0.3s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-text {
  color: #3B2C09;
  max-width: 460px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.15s;
  background: var(--brand-gold);
  color: #2B2B1D;
  box-shadow: 0 1px 5px rgba(21,90,74,0.07);
}
.cookie-button.accept {
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-secondary));
  color: #111;
}
.cookie-button.reject {
  background: none;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold-dark);
}
.cookie-button.settings {
  background: #fbf7ea;
  color: var(--brand-primary);
  border: 2px solid #ECE6D3;
}
.cookie-button:hover, .cookie-button:focus {
  background: var(--brand-gold-dark);
  color: #fff;
  box-shadow: 0 3px 16px rgba(194,161,60,0.14);
}
.cookie-button.reject:hover, .cookie-button.reject:focus {
  background: #fff;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.cookie-button.settings:hover, .cookie-button.settings:focus {
  background: var(--brand-gold-dark);
  color: #fff;
  border-color: var(--brand-gold);
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,90,74,0.57);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 90%;
  padding: 36px 30px 22px 30px;
  box-shadow: 0 4px 32px rgba(194,161,60,0.17), 0 2px 8px rgba(21,90,74,0.07);
  z-index: 3200;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-popin 0.39s cubic-bezier(0.25,0.7,0.36,1);
}
@keyframes modal-popin {
  0% { transform: scale(0.88) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-option-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  font-size: 1.03rem;
  padding: 6px 0;
}
.cookie-option-row label {
  flex: 1 1 60%;
  color: #2a2417;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #f6eab4;
  border-radius: 14px;
  border: 1.5px solid #ECE6D3;
  position: relative;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.14s;
  display: flex;
  align-items: center;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--brand-gold);
  border-color: var(--brand-gold-dark);
}
.cookie-toggle .toggle-knob {
  display: block;
  background: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 1px 5px rgba(21,90,74,0.12);
  transition: left 0.16s;
}
.cookie-toggle[aria-checked="true"] .toggle-knob {
  left: 17px;
}
.cookie-modal-bottom {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-button {
  min-width: 110px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--brand-gold-dark);
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-gold);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .features-grid, .project-overview {
    flex-direction: column;
    gap: 22px;
  }
  .inclusions-exclusions {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    min-height: 57px;
    height: 57px;
    gap: 10px;
    padding: 0 10px;
  }
  .hero .content-wrapper {
    max-width: 98vw;
    padding: 0 6px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 28px;
  }
  .testimonials-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 18px 12px;
    min-width: unset;
    max-width: 100vw;
  }
  .card-container, .features-grid, .project-overview {
    flex-direction: column;
    gap: 20px;
  }
  .inclusions-exclusions {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    font-size: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px 8px 8px 8px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 9px;
  }
  .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 460px) {
  .hero h1 {
    font-size: 1.27rem;
    margin-bottom: 15px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .pricing-table thead, .pricing-table th, .pricing-table td {
    font-size: 0.97rem;
    padding: 10px 6px 7px 7px;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 18px 4vw 10px 4vw;
  }
}

/* FORM FIELDS (for contact, cookie modal) */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #ECE6D3;
  border-radius: 8px;
  background: #fafaf7;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  transition: border-color 0.18s;
}
input:focus, textarea:focus {
  border-color: var(--brand-gold-dark);
  outline: none;
}
::placeholder {
  color: #A9A189;
  opacity: 1;
}

/* ANIMATION CLASSES */
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(0.44,0.35,0.33,1) both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-in-x {
  animation: slideInX 0.36s cubic-bezier(.38,1.4,.52,1);
}
@keyframes slideInX {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* MISC UTILS */
.mt-2 { margin-top: 8px; } 
.mb-2 { margin-bottom: 8px; } 
.mt-3 { margin-top: 16px; } 
.mb-3 { margin-bottom: 16px; }

/* Fix for body scroll on modal/mobile-menu open */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* LUXURY DETAILS & SEPARATORS (underlines, borders) */
h1, h2, h3, .footer-nav a.active {
  position: relative;
}
h2:after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-gold);
  margin-top: 6px;
}
.button-primary:after {
  content: '';
  position: absolute;
  right: 12px;
  bottom: 7px;
  width: 18px;
  height: 4px;
  border-radius: 4px;
  background: var(--brand-gold-dark);
  opacity: 0.07;
  pointer-events: none;
}

/* .text-image-section */
.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;
    gap: 18px;
  }
}

/* Accessibility focus styles */
a:focus,
.button-primary:focus,
.cookie-button:focus,
.mobile-menu-close:focus,
.cookie-modal-close:focus {
  outline: 2px solid var(--brand-gold-dark);
  outline-offset: 1px;
}

/* Hide visually (for cookie essential switches etc.) */
.sr-only {  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
