/* ===================================
   BASE SETUP & VARIABLES
   =================================== */

/* Base Variables */
:root {
  --black: #000;
  --white: #fff;
  --gold: #cc9933;
  --gray: #ccc;
  --dark-gold: #996633;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --container-width: min(90%, 1440px);
  --z-base: 1;           /* Default layer */
  --z-dropdown: 100;     /* Dropdowns, tooltips */
  --z-sticky: 200;       /* Sticky elements */
  --z-fixed-header: 300; /* Fixed headers, navigation */
  --z-overlay: 400;      /* Overlays, modals */
  --z-modal: 500;        /* High priority modals */
  --z-toast: 600;        /* Notifications, alerts */
  --z-mobile-menu: 700;  /* Mobile menu overlay */
  --z-hamburger: 800;    /* Hamburger icon */
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

body {
  margin: 0;
  padding: 80px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-display: swap;
  font-size: 22px;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--black);
  text-align: center;
  overflow-x: hidden;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

/* Better keyboard focus */
a:focus-visible,
.button:focus-visible,
.nav-contact:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Typography Scale */
h1, .h1, .big-text1,
h2, .h2, .big-text2,
h3, .h3, .big-text3,
.hero-text,
.mini-head-text {
    margin: 10px 0 1rem;
    line-height: 1.4;
    text-align: center;
}

h1, .h1, .big-text1 {
    font-size: calc(22px + 2vw);
    color: var(--gold);
    font-weight: 600;
}

h2, .h2, .big-text2 {
    font-size: calc(22px + 1.5vw);
    color: var(--white);
    font-weight: 200;
}

h3, .h3, .big-text3,
.area-highlight,
.areas-title {
    font-size: calc(16px + 1vw);
    color: var(--white);
    font-weight: 400;
    margin: 10px 0 1rem;
    line-height: 1.4;
    text-align: center;
}

.hero-text {
    font-size: calc(16px + 1vw);
    color: var(--white);
    font-weight: 200;
    margin-bottom: 1.4rem;
    /* CLS Prevention */
    min-height: 2.5em;
    contain: layout;
}

.text-italic {
    font-style: italic;
}

.mini-head-text {
    margin-top: 10px;
    font-weight: 200;
    font-size: calc(16px + 0.7vw);
    color: var(--gold);
}

.text-center {
  text-align: center;
}

.area-highlight {
    color: var(--gold);
}

/* ===================================
   LAYOUT & CONTAINERS
   =================================== */

.page-container {
  width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: 2rem 1rem;
  width: 100%;
}

/* Vertical Containers */
.vertical-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.vertical-container.three-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.vertical-container.three-columns .vertical-section {
  flex: 0 1 calc(33.333% - 20px);
  box-sizing: border-box;
  padding: 20px;
  height: auto;
  contain: layout style;
}

.vertical-container.two-columns .vertical-section {
  flex: 1;
  min-width: calc(50% - 20px);
  padding: 10px;
  box-sizing: border-box;
}

.vertical-section {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

.vertical-container.two-columns .vertical-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   IMAGES & MEDIA
   =================================== */

img {
  max-width: 100%;
  height: auto;
  display: block;
}



picture img {
    width: 100%;
    height: auto;
}

/* Hero Image */
.full-width-image {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
  max-width: 100vw;
  margin: 0 0 20px 0;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16/9;
  contain: size layout;
}

.full-width-image img {
  position: relative;
  z-index: var(--z-base);
  width: 100%;
  height: auto;
  display: block;
}

.full-width-image img[fetchpriority="high"] {
  width: 100%;
  height: auto;
}

/* Image Rows */
.image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    /* CLS Prevention */
    min-height: 400px;
    contain: layout style;
}

.image-column {
    flex: 1;
    min-width: calc(50% - 20px);
    padding: 10px;
    box-sizing: border-box;
    /* CLS Prevention */
    min-height: 300px;
    contain: layout;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
}

/* Lazy loaded images with aspect ratio */
.image-column img[loading="lazy"] {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Image Containers */
.full-width-image, 
.vertical-section,
.image-container {
  display: block;
  position: relative;
}

/* Hero Gallery */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 20px;
  /* CLS Prevention */
  min-height: 600px;
  contain: content;
}

.image-container {
  position: relative;
  overflow: hidden;
  /* CLS Prevention */
  min-height: 200px;
  contain: layout;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-container img:hover {
  transform: scale(1.02);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  position: relative;
  z-index: calc(var(--z-base) + 1);
  contain: layout;
  min-height: 500px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-content {
  position: relative;
  z-index: calc(var(--z-base) + 1);
  contain: layout;
  /* CLS Prevention */
  min-height: 450px;
  contain: layout style paint;
}

/* ===================================
   HERO HEADLINE & SUPPORT
   =================================== */

.hero-headline {
  text-align: center;
  padding: 40px 20px 0;
}

.hero-support {
  text-align: center;
  padding: 20px;
}

.hero-review {
  font-style: italic;
  color: var(--white);
  font-size: 1.1rem;
  margin: 20px 0 10px;
}

.hero-credibility {
  margin: 20px 0;
}

.hero-credibility .stars {
  color: var(--gold);
  font-size: 1.2rem;
}

.hero-credibility p {
  font-size: 1rem;
  color: var(--gray);
}

/* ===================================
   NAVIGATION
   =================================== */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: var(--z-fixed-header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 233px;
  height: 70px;
  flex-shrink: 0;
}

.logo img {
  width: 233px;
  height: 70px;
  aspect-ratio: 213 / 70;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-contact {
  padding: 0.6rem 1.2rem;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 6px;
  transition: var(--transition);
}

.nav-contact:hover {
  background-color: var(--dark-gold);
  color: var(--white);
}

/* ===================================
   BUTTONS & CTA
   =================================== */

.gold-button .button,
.black-gold-button .button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  text-rendering: optimizeSpeed;
}

.gold-button .button {
  color: var(--black);
  background-color: var(--gold);
}

.gold-button .button:hover {
  background-color: var(--dark-gold);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.black-gold-button .button {
  color: var(--gold);
  background-color: var(--black);
  border: 2px solid var(--gold);
}

.black-gold-button .button:hover {
  background-color: rgba(204, 153, 51, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(204, 153, 51, 0.2);
}

.gold-button .button:active,
.black-gold-button .button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.gold-button .button:focus,
.black-gold-button .button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(153, 102, 51, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  position: relative;
  z-index: calc(var(--z-base) + 2);
  will-change: transform;
}

.gold-badge {
  background: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
  contain: content;
  padding: 2rem 1rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 2rem 0;
  contain: layout style;
}

.service-item {
  background: rgba(26, 26, 26, 0.05);
  padding: 30px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  min-height: 420px;
  contain: layout style paint;
  transition: var(--transition);
  border: 1px solid #333;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.service-benefits {
  margin-bottom: auto;
  text-align: center;
}

.service-benefits p {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}

.service-benefits strong {
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
  font-weight: 300;
  text-align: center;
}

.service-item .button {
  margin-top: auto;
  align-self: center;
}

.service-item .step-circle {
  width: 60px;
  height: 60px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 auto 20px;
  will-change: transform;
  contain: layout paint style;
  transition: var(--transition);
}

.service-item:hover .step-circle {
  transform: scale(1.1);
  background-color: var(--dark-gold);
  color: var(--white);
}

.booking-guarantee {
  contain: layout style;
  background: rgba(204, 153, 51, 0.1);
  border: 1px solid var(--gold);
  padding: 25px;
  border-radius: 8px;
  margin: 30px auto;
  max-width: 700px;
  text-align: center;
}

/* ===================================
   LISTS
   =================================== */

.indented-list {
  padding-left: 2rem;
  list-style: none;
  margin: 1.5rem 0 0 3rem;
  max-width: 100%;
  text-align: left;
}

.indented-list li {
  position: relative;
  margin-bottom: 1.2rem;
  padding-right: 1rem;
  transition: transform 0.2s ease;
}

.indented-list li::before {
  content: '✓';
  color: var(--gold);
  position: absolute;
  left: -1.5rem;
  top: 0.1rem;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.indented-list li:hover::before {
  transform: scale(1.1) rotate(-5deg);
}

.indented-list ul {
  list-style: disc;
  padding-left: 2rem;
  margin-top: 0.5rem;
}

.indented-list ul li::before {
  content: none; /* Remove custom checkmark for nested items */
}

.indented-list li .highlight {
  display: block;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: left;
}

.indented-list li .details {
  display: block;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
  font-weight: 200;
  transition: color 0.2s ease;
  text-align: left;
}

.indented-list li:hover .details {
  color: var(--white);
}

.value-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  text-align: left;
}

.value-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1.4;
  display: inline-block;
  transition: transform 0.2s ease;
}

.value-point:hover .bullet {
  transform: scale(1.1) rotate(-5deg);
}

.trust-indicator {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
  min-height: 600px;
  contain: layout;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    contain: layout style;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
}

.client-info {
    flex: 1;
    text-align: left;
}

.client-info h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.client-subtitle {
    color: var(--gold);
    font-style: italic;
    margin: 0.3rem 0;
    font-size: 1.2rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.testimonial-quote {
    color: var(--gray);
    text-align: left;
    line-height: 1.6;
    margin: 0;
    font-size: 1.4rem;
}

/* ===================================
   BLOG & ARTICLES
   =================================== */

.article-preview {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.article-preview:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(204, 153, 51, 0.1);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.article-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.article-cta {
  margin-top: 2rem;
  text-align: center;
}

.filter-section {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-button {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
  background: var(--gold);
  color: var(--black);
}

.articles-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.articles-header {
  text-align: center;
  margin-bottom: 3rem;
}

.articles-header h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro-text {
  color: var(--white);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-badge {
  background: rgba(204, 153, 51, 0.1);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}

.read-value {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 30px;
}

/* ===================================
   SCHEDULER
   =================================== */

.scheduler-section {
  padding: 40px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.scheduler-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gold);
}

.scheduler-header {
  text-align: center;
  margin-bottom: 30px;
}

.scheduler-header h2 {
  color: var(--gold);
  margin-bottom: 15px;
}

.scheduler-header p {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
}

#scheduler-embed {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  overflow: hidden;
}

#scheduler-embed iframe {
  width: 100% !important;
  min-height: 700px;
  border: none;
  background: transparent;
}

.scheduler-loading {
  padding: 40px;
  text-align: center;
  color: var(--gray);
}

/* ===================================
   COOKIE BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black);
  color: var(--white);
  padding: 20px 20px; /* ✅ NEW: horizontal padding added */
  z-index: var(--z-toast);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  contain: layout style paint;
  will-change: opacity, visibility;
  min-height: 120px;
}

/* Lift CTA when cookie banner is visible */
.cookie-banner.show ~ .floating-cta {
  bottom: 110px;
}


.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: left;
  contain: layout style;
}

.cookie-content h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-display: swap;
  contain: layout style;
}

.cookie-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  min-height: 2.5em;
  contain: layout;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  contain: layout style;
  min-height: 50px;
}

.cookie-button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  contain: layout style;
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
}

.cookie-button.accept {
  background-color: var(--gold);
  color: var(--black);
}

.cookie-button.accept:hover {
  background-color: var(--dark-gold);
  color: var(--white);
}

.cookie-button.essential {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid var(--gold);
}

.cookie-button.essential:hover {
  background-color: rgba(204, 153, 51, 0.1);
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 10px;
  white-space: nowrap;
  contain: layout;
}

.cookie-link:hover {
  color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */

.enhanced-footer {
  background-color: #000;
  color: var(--gray);
  padding-top: 40px;
  padding-bottom: 160px; /* 120px banner + 40px breathing room */
  width: 100%;
  border-top: 1px solid var(--gold);
}

.service-areas-section {
  padding: 20px 0 30px;
  background-color: rgba(0, 0, 0, 0.95);
}

.service-areas-section .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.service-areas-section .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-col h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: left;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.contact-col p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.contact-col a {
  color: var(--white);
  transition: var(--transition);
}

.contact-col a:hover {
  color: var(--gold);
}

.footer-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: var(--gold);
  color: var(--black) !important;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-cta:hover {
  background-color: var(--dark-gold);
  color: var(--white) !important;
}

.footer-bottom {
  padding: 15px 0 50px;
  width: 100%;
}

.footer-legal {
  text-align: center;
  margin: 20px 0 70px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray);
}

.share-buttons {
  display: flex;
  justify-content: center;
  color: var(--white);
  gap: 15px;
  margin: 10px 0;
}

.social-icon {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.social-icon svg {
  fill: var(--white);
  transition: var(--transition);
}

.social-icon:hover svg {
  fill: var(--gold);
  transform: scale(1.1);
}

.social-icon:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.link-colour {
  color: var(--white);
  transition: var(--transition);
}

.link-colour:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ===================================
   MOBILE MENU & HAMBURGER
   =================================== */

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: var(--z-hamburger);
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: var(--gold);
}

/* ===================================
   UTILITIES
   =================================== */

.gold-line {
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  margin: 0.25rem 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet breakpoint - maintain three columns until 768px */
@media (max-width: 1024px) and (min-width: 769px) {
  .vertical-container.three-columns .vertical-section {
    min-width: calc(33.333% - 20px);
    flex-basis: calc(33.333% - 20px);
  }
  
  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-col {
    min-width: calc(50% - 30px);
  }
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .hamburger-menu {
    display: flex;
    z-index: var(--z-hamburger);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: var(--z-mobile-menu);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-menu.active {
    opacity: 1;
    z-index: var(--z-mobile-menu);
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-menu li {
    margin: 15px 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
  }
  
  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.6s ease forwards;
  }
  
  .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
  .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }
  .nav-menu.active li:nth-child(6) { animation-delay: 0.6s; }
  
  .nav-menu a {
    font-size: 1.8rem;
    width: 100%;
    display: block;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
  }
  
  .nav-menu a:hover,
  .nav-menu a:focus {
    color: var(--gold);
    background-color: rgba(204, 153, 51, 0.1);
    transform: scale(1.05);
  }
  
  .nav-contact {
    margin-top: 20px;
    background-color: var(--gold) !important;
    color: var(--black) !important;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
  }
  
  .nav-contact:hover {
    background-color: var(--dark-gold) !important;
    color: var(--white) !important;
    transform: scale(1.05);
  }
  
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--gold);
  }
  
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background-color: var(--gold);
  }

  .hero-section,
  .hero-content,
  .full-width-image {
    z-index: var(--z-base);
  }
}

/* Desktop: show regular nav, hide hamburger */
@media (min-width: 992px) {
  .hamburger-menu { display: none !important; }
  .nav-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: 80px !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Typography */
  h1, .h1, .big-text1 {
    font-size: calc(20px + 2vw);
  }

  h2, .h2, .big-text2 {
    font-size: calc(18px + 1.5vw);
  }

  h3, .h3, .big-text3 {
    font-size: calc(16px + 1vw);
  }

  .hero-text {
    font-size: calc(18px + 1vw);
  }

  /* Layout adjustments */
  .full-width-image {
    margin: 0;
  }
  
  .vertical-container {
    flex-direction: column;
  }
  
  .vertical-container.three-columns .vertical-section,
  .vertical-container.two-columns .vertical-section {
    min-width: 100%;
    flex-basis: 100%;
  }

  /* Images */
  .image-row {
    flex-direction: column;
    min-height: 600px;
  }
  
  .image-column {
    min-width: 100%;
    flex-basis: 100%;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    min-height: 1200px;
  }

  /* Lists */
  .indented-list {
    padding-left: 1.75rem;
  }

  .indented-list li::before {
    left: -1.5rem;
  }

  .value-points {
    margin: 1rem 0;
  }
  
  .value-point {
    gap: 0.5rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-item {
    min-height: 420px;
    contain: layout style paint;
  }

  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .button {
    width: 100%;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-image {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
  }

  /* Footer */
  .footer-col {
    min-width: 100%;
  }

  .service-areas-section .row {
    flex-direction: column;
  }

  /* Cookie banner */
  .cookie-banner {
    min-height: 180px;
    padding: 15px;
  }
  
  .cookie-content p {
    font-size: 14px;
    min-height: 3em;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    min-height: 120px;
  }
  
  .cookie-button, .cookie-link {
    width: 100%;
    text-align: center;
    margin: 5px 0;
    min-width: auto;
  }
}

/* Animation keyframes */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Body scroll prevention */
body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100vh !important;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .nav-menu.active {
    position: fixed;
    z-index: var(--z-modal);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
  }
  
  body.menu-open {
    -webkit-overflow-scrolling: none;
    touch-action: none;
  }
}
/* Reduce space between hero and contact form */
.hero-section + .section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.contact-page .hero-content {
  min-height: 0;
}

/* Floating CTA (bottom-right) – identical to top gold CTA */
/* Floating CTA – wrapper only (no visuals) */
.floating-cta {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: var(--z-toast);
  /* remove any visual styles: */
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Optional: tweak size on small screens */
@media (max-width: 768px) {
  .floating-cta { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); }
  .floating-cta .button { font-size: 1.2rem; padding: 0.7rem 1.2rem; }
}

.site-credit {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

.site-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.site-credit-logo {
  height: 14px;      /* small and tidy */
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* === HERO (full-bleed banner) — moved from inline === */
.hero{position:relative;width:100%;height:90vh;min-height:520px;max-height:1000px;overflow:hidden}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.6) 0%,rgba(0,0,0,.35) 40%,rgba(0,0,0,0) 72%);pointer-events:none}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.hero-overlay{position:absolute;top:50%;left:clamp(16px,6vw,80px);transform:translateY(-50%);z-index:2;max-width:min(640px,80vw);color:var(--white)}
.hero-overlay h1{display:none}
@media (min-width:601px){.hero-overlay h1{display:block}}
@media (min-width:601px){.mobile-hero-below h1{display:none}}
/* Mobile-only hero copy below image */
.mobile-hero-below{padding:14px 16px 0;text-align:center}
.mobile-hero-below h1{
  font-size:clamp(28px,6vw,40px);
  color:var(--gold);
  margin-bottom:14px;
  line-height:1.2;
  display:block;            /* <-- ensure visible by default (≤600px) */
}
.mobile-hero-below p{margin:8px 0;font-size:1rem;line-height:1.5}
.mobile-hero-below .cta-buttons{display:flex;justify-content:center;margin:16px auto 0;min-height:55px}
.mobile-hero-below .gold-button .button{min-width:260px;min-height:50px;font-size:1.25rem}
@media (max-width:600px){
  .hero{height:70vh;min-height:480px}
  .hero-overlay{left:50%;transform:translate(-50%,-50%);text-align:center;max-width:90vw}
  .hero::after{background:none}
  .hero-overlay p,.hero .cta-buttons{display:none}
  .hero-img{object-position:right center}
}

/* === Tiny utilities to replace inline bits === */
.mt-6{margin-top:6px !important}
.mt-8{margin-top:8px !important}
.mt-10{margin-top:10px !important}
.fs-1rem{font-size:1rem !important}
.fs-22{font-size:22px !important}
.text-gold{color:var(--gold) !important}
.fw-500{font-weight:500 !important}

.img-cover{max-width:100%;height:auto;object-fit:cover}
.img-cover-43{aspect-ratio:4/3}
.img-fluid-cover{max-width:100%;height:auto;object-fit:cover}

.panel-gold{
  background:rgba(26,26,26,.95);
  border:1px solid var(--gold);
  border-radius:12px;
  padding:30px;
  height:100%;
}

.note-gold{
  background:rgba(204,153,51,.1);
  padding:25px;
  border-radius:8px;
  margin:30px 0;
  text-align:center;
  border:1px solid #cc9933;
}
.note-gold--tight{padding:20px;margin:20px 0}

/* === Hero copy visibility (fix duplicate H1/text on tablets) === */
/* Default: desktop/tablet use overlay; mobile-only block hidden */
.hero .hero-overlay { display: block; }
.mobile-hero-below { display: none; }

/* Phones ≤600px: hide overlay, show copy below image */
@media (max-width: 600px) {
  .hero .hero-overlay { display: none; }
  .mobile-hero-below { display: block; }
}

/* Tablets and up ≥601px: show overlay, keep mobile block hidden */
@media (min-width: 601px) {
  .hero .hero-overlay { display: block; }
  .mobile-hero-below { display: none; }
}

/* === Hero image crop fix (iPad/tablets) === */
.hero picture,
.hero .hero-img{
  display:block;
  width:100%;
  height: clamp(520px, 72vh, 860px); /* good visual height on tablets */
  object-fit: cover;                 /* fill without distortion */
}

/* iPad portrait + most tablets: bring the face into frame */
@media (min-width:601px) and (max-width:1024px){
  .hero .hero-img{ object-position: 60% center; }
}

/* Desktop safety */
@media (min-width:1025px){
  .hero .hero-img{ object-position: 50% center; }
}