

/* =========================
   FONTS
========================= */
@font-face {
  font-family: "Cooper Hewitt";
  src: url("fonts/cooper-hewitt/CooperHewitt-Book.woff2") format("woff2"),
    url("fonts/cooper-hewitt/CooperHewitt-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   FONTS
========================= */
@font-face {
  font-family: "PT Serif";
  src: url("fonts/pt-serif/PTSerif-Regular.woff2") format("woff2"),
    url("fonts/pt-serif/PTSerif-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-gold: #c7a25c;
  --primary-gold-dark: #b18f4f;

  --bg-light: #f7f2ec;
  --bg-beige: #f6f1eb;
  --bg-taupe: #efe7df;

  --text-dark: #4a3b32;
  --text-grey: #6f6660;
  --white: #ffffff;

  --font-heading: "PT Serif", "Playfair Display", serif;
  --font-body: "Cooper Hewitt", "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --spacing-lg: 4rem;
  --spacing-xl: 7rem;

  --padding-section: 50px 0 50px 0;
}

/* Reset */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ul li {
  font-family: var(--font-body);
  /* margin: 0 0 1.2rem 0; */
  line-height: 1.8;
  color: var(--text-grey);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

p {
  margin: 0 0 1.2rem 0;
  line-height: 1.8;
  color: var(--text-grey);
}

.value-icon i {
  font-size: 45px;
  opacity: 1;
  transform: scale(0.92);
  -webkit-text-stroke: 0.7px transparent;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  margin: 0 0 1rem 0;
  color: var(--text-dark);
}

h1 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 36px;
  font-weight: 500;
}

h4 {
  font-size: 1.1rem;
  font-weight: 100;
  letter-spacing: 0.4px;
}

h5.section-label {
  font-size: 0.9rem;
  font-family: var(--font-heading);
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-style: italic;
}

section {
  scroll-margin-top: 118px;
  /* height of your header */
}

.script-text {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-pill {
  border-radius: 9999px;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--primary-gold-dark);
}

/* Header (transparent over hero, turns white on scroll) */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  padding: 18px 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

#header .logo .image {
  background: url("logoscroll.png") center / cover no-repeat;
  visibility: hidden;
}

#header.scrolled {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 130px;
  /* Increased from 72px */
  transition: height 0.25s ease;
}

#header.scrolled .logo .image {
  visibility: visible;
  width: 222px;
  height: 90px;
}

#header.scrolled .logo img {
  display: none;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Default (on hero): white links */
.desktop-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

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

/* When scrolled: dark links */
#header.scrolled .desktop-nav a {
  color: var(--text-dark);
}

#header.scrolled .desktop-nav a:hover {
  color: var(--primary-gold);
}

/* CONTACT pill in nav — matches your image */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gold);
  color: #fff !important;
  padding: 0.8rem 1.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  letter-spacing: 1.6px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid transparent;
}

.nav-cta:hover {
  background: var(--primary-gold-dark);
  color: #fff !important;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
}

#header.scrolled .mobile-toggle {
  color: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 14, 0.94);
  z-index: 2000;
  display: none;
  padding: 28px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 64px 0 0 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.mobile-menu a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.close-menu {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}

.nav-cta--mobile {
  width: fit-content;
  margin-top: 10px;
}

/* HERO */
.hero-section {
  padding: var(--spacing-xl) 0 0.2rem 0;
  background-image: url(Homepage.jpg);
  background-repeat: no-repeat;
  background-size: auto 102%;
  position: relative;
  min-height: 90vh;
  background-position: center;
}

.hero-div {
  background: linear-gradient(90deg, #4a3b32, var(--bg-beige));
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
  /* header offset */
}

.hero-text {
  max-width: 600px;
  /* Reduced to 350px */
  margin-left: 4%;
  /* Restored left margin as per user confirmation */
  text-align: left;
}

.hero-text h1 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1.7rem;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 200;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub--tight {
  font-size: 1.2rem;
  margin-bottom: 30px;
  /* Reduced to 0.5rem to pull button significantly higher */
}

/* VALUES SECTION */
.values-section {
  padding: 2rem 0px 5rem 0px;
  background-color: var(--bg-beige);
  /* Light beige background */
  text-align: center;
}

.about-section {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  /* Gold color */
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #4a3b32;
  /* Darker brown/grey for headings */
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.value-item p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-grey);
  max-width: 90%;
  margin: 0 auto;
  text-align: left;
  /* Left align text to match design indentation */
}

/* MISSION SECTION (Redonner du sens) */
.mission-section {
  padding: 0 0 2rem 0;
  background-color: var(--white);
}

.mission-box {
  background-color: var(--bg-beige);
  /* Light beige background */
  padding: 1rem;
  text-align: center;
}

.mission-box h3 {
  font-size: 36px;
  margin-bottom: 1rem;
  max-width: 915px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.mission-col p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-grey);
  padding: 1rem 2rem 0 2rem;
}

.mission-quote {
  font-family: var(--font-heading);
  /* Serif font for italic feel */
  font-style: italic;
  font-size: 22px;
  color: #4a3b32;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle divider if needed, or just space */
  padding-top: 1rem;
}

/* TRUST STATS SECTION */
.trust-section {
  padding: 1rem 0;
  background-color: var(--white);
  text-align: center;
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1 rem;
}

.trust-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 80px;
  color: #e5e0dc;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-item h4 {
  font-size: 26px;
  font-weight: 500;
  color: #4a3b32;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* REFINED ABOUT SECTION */
.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #4a3b32;
  /* Brown color from image */
  font-weight: 500;
  text-transform: uppercase;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-grey);
  margin-bottom: 1rem;
  text-align: justify;
  /* Justify text to match clean block look */
}

.about-content strong {
  font-weight: 700;
  color: #4a3b32;
}

/* Ensure image mask fits well */
.arch-mask {
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  position: relative;
}


/* FINAL COLOR POLISH */
.mission-box h3,
.section-title-center {
  color: #4a3b32 !important;
  /* Force correct brown design color */
}

.mission-quote {
  border-top: 1px solid #d2c8c0;
  /* Slightly darker divider for visibility */
}

.services-cta {
  width: 87%;
  padding-left: 40px;
  padding-top: 30px;
}

/* ABOUT SECTION LAYOUT */
.about-grid {
  display: flex !important;
  align-items: stretch;
  /* Stretch to match height */
  gap: 0.5rem;
  /* Slight adjust to look good */
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.about-image {
  flex: 0 0 45%;
  max-width: 420px;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}

.about-content .btn {
  margin-top: auto;
  margin-bottom: auto;
  /* Pushes button to bottom */
  align-self: flex-start;
}

.contact-logo-small {
  margin: auto;
}

.site-footer {
  /* background-color: var(--bg-beige); */
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer span,
.site-footer a {
  font-family: "Cooper Hewitt", "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.85rem;
  color: #4a3b32;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-sep {
  opacity: 0.4;
}

/* Modal base */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.legal-modal[aria-hidden="false"] {
  display: block;
}

/* Overlay */
.legal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.legal-modal-content {
  position: relative;
  max-width: 620px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 10vh auto;
  background: var(--bg-beige);
  padding: 2.5rem;
  border-radius: 12px;
  font-family: "Cooper Hewitt", "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #4a3b32;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  -webkit-overflow-scrolling: touch;
  padding-right: 3rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 59, 50, 0.35) transparent;
}

/* WebKit (Chrome, Safari, Edge) */
.legal-modal-content::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(74, 59, 50, 0.35);
  border-radius: 10px;
}

.legal-modal-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(74, 59, 50, 0.55);
}

.legal-modal-content h3 {
  font-family: "Cooper Hewitt", "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  top: 0;
  background: var(--bg-beige);
  padding-top: 0.5rem;
  z-index: 1;
}

.legal-modal-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.legal-modal-content a {
  color: inherit;
  text-decoration: underline;
}

/* Close button */
.legal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #4a3b32;
  cursor: pointer;
}

/* Fade transition */
#legalContent {
  opacity: 1;
  transition: opacity 0.25s ease;
}

#legalContent.is-fading {
  opacity: 0;
}

/* SERVICES SECTION */
.services-section {
  padding: var(--padding-section);
  background-color: var(--bg-beige);
  /* Light background */
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-img-wrapper {
  /* Adjust based on image */
  margin-bottom: 1.5rem;
}

.arch-mask--service {
  border-radius: 180px 180px 0 0;
  /* Arch shape */
  overflow: hidden;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #4a3b32;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.6;
  max-width: 90%;
}

.services-cta-bar {
  background-color: #4a3b32;
  color: #fff;
  padding: 2rem;
  justify-content: space-between;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 1rem;
  text-align: left;
  /* display: flex !important; */
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  display: inline-flex;
}

.services-cta-text {
  width: 450px;
}

.services-cta-text h3 {
  color: #fff;
  min-width: 110%;
}

.services-cta-text p {
  color: #d2c8c0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.services-cta-button {
  margin-top: 45px;
}

/* PROCESS SECTION (4 Etapes) */
.process-section {
  padding: var(--padding-section);
  background-color: var(--white);
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
  margin-top: 3rem;
}

.process-step {
  flex-direction: column;
  align-items: center;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
  margin-top: 3rem;
  padding-left: 50px;
}

.service-step {
  flex-direction: column;
  align-items: center;
  width: 373px;
  text-align: center;
}

.service-step h4 {
  font-size: 24px;
}

.service-step p {
  font-size: 17px;
  margin: 0px;
  line-height: 1.5;
}

.img-service-slice {
  height: 340px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #4a3b32;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 80%;
}

.process-step p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-grey);
}

.reviews-section {
  padding: var(--padding-section);
}

/* FAQ GRID LAYOUT */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
  margin-top: 3rem;
  text-align: left;
}

.faq-block h4 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: #4a3b32;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.faq-block p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-grey);
}

/* REVIEWS REFACTOR */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.review-item {
  text-align: left;
}

.review-item cite {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #4a3b32;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.review-item .stars {
  color: var(--primary-gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.review-item .quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.5;
}

/* FAQ SECTION - NEW */
.faq-section {
  padding: var(--padding-section);
  background-color: var(--bg-beige);
  /* Beige background per user request */
}


/* NEW CONTACT SECTION (Footer Style) */
.contact-final {
  background-color: var(--bg-beige);
  padding: var(--padding-section);
  overflow: hidden;
  position: relative;
  justify-content: center;
  display: grid;
}

.contact-final .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-left {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 730px;
}

.contact-logo-small img {
  height: 60px;
  margin-bottom: 2rem;
}

.contact-final h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: #4a3b32 !important;
  ;
  /* Or lighter grey/brown? Image looks greyish-brown */
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 500px;
}

.contact-final .btn {
  padding: 1rem 3rem;
  margin-bottom: 0.5rem;
}

.contact-details-final {
  color: var(--text-grey);
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-label {
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}

.contact-right {
  flex: 1;
  height: 100%;
}

.contact-right .arch-mask {
  border-radius: 300px 300px 0 0;
  /* Taller arch */
  height: 590px;
  width: 359px;
  max-width: 400px;
  margin: 0 auto;
}

.contact-right img {
  object-fit: cover;
  object-position: center;
}

.back-to-top-circle {
  margin-top: 4rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  cursor: pointer;
}

.back-to-top-text {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-grey);
  margin-bottom: 5px;
  transform: rotate(-15deg);
  /* Artistic rotation */
}

/* FORCE TITLE CENTERING */
.section-title-center {
  text-align: center !important;
}


/* CONTACT FOOTER & BACK TO TOP FIXES */
.contact-final .contact-footer-container {
  display: flex !important;
  justify-content: center !important;
  /* Force center alignment */
  align-items: center;
  margin-top: 4rem;
  width: 100%;
}

.back-to-top-img {
  width: 120px;
  height: auto;
  mix-blend-mode: multiply;
  /* Make white background transparent */
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  /* Clip white corners */
}

.back-to-top-img:hover {
  opacity: 1;
}

.contact-logo-small img {
  width: 200px !important;
  /* Move inline style here */
  height: auto;
}

/* HERO REFINEMENTS */
.logo img {
  height: 90px;
  /* Increase logo size */
}

.desktop-nav a {
  font-size: 17px;
  /* Bigger menu text */
  font-weight: 500;
}

.hero-text h1 {
  font-size: 2.2rem;
  /* Bigger headline */
}

.hero-sub {
  font-size: 1.35rem;
  /* Bigger subtext */
}

.hero-section {
  background-position: center 35%;
  /* Pull the lady down (show lower part of image) */
}


/* =========================
   RESPONSIVE QUERIES
========================= */

/* Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .container {
    width: 90%;
    /* Increased breathing room */
    max-width: 100%;
  }

  /* Fix Contact Section Overflow */
  .contact-left {
    width: 100%;
    max-width: 100%;
  }

  /* Stack Contact Section earlier for better layout */
  .contact-final .container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-right {
    width: 100%;
    order: 2;
    margin-right: 20px;
  }

  .contact-right .arch-mask {
    /* height: 450px;
    width: 100%; */
    max-width: 600px;
    margin: 0 auto;
  }

  /* Services Grid - Ensure no spill */
  .service-grid {
    gap: 2rem;
    padding-left: 0;
    /* FIX: Remove desktop padding that causes spill */
  }

  .service-step {
    width: 100%;
    /* FIX: Allow fluid width to prevent spill */
    max-width: 100%;
  }

  .service-step img {
    width: 100%;
    height: auto;
  }

  /* Services CTA responsiveness */
  .services-cta-bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    /* FIX: Reduced padding size */
  }

  .services-cta-text h3 {
    min-width: auto;
	margin: 0px;
  }

  /* Hero Tablet Tweaks */
  .hero-section {
    background-position: 85% center;
    /* Shift lady further right per user request */
  }

  .hero-text {
    max-width: 60%;
    /* Keep text off the face */
  }
}

/* Tablets / Mobile Landscape (max-width: 992px) */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  :root {
    --spacing-xl: 4rem;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
	
:root {
  --padding-section: 20px 0 20px 0;
}

.logo img 
 {
    height: 80px;
}
  
  
  /* Typography - Fluid Scaling */
  h1 {
    font-size: 30px;
  }

  h2,
  h3 {
    font-size: 30px;
  }

.mission-box h2, .about-content h2, .contact-final h2 {
    font-size: 30px;
}

.about-content h3, .mission-box h3, .services-cta-text h3 {
	font-size: 26px;
}

.process-step h4, .faq-block h4 {
	font-size: 24px;
}

	.container {
     padding: 0 2px;
    }

  .script-text {
    font-size: 2.2rem;
  }
  
  .btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    font-size: 14px;
	padding: 15px;
  }

  /* Hero Section - Professional Layout (No overlays) */
  .hero-section {
    background: none;
    /* background-position: 65% center; */
    /* Keep subject visible but off-center */
    min-height: 85vh;
    /* Ensure full viewport feel */
    display: flex;
    align-items: center;
    /* Vertically center content */
    padding-bottom: 2rem;
    /* background-size: cover; */
  }


  .hero-div {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url(Homepage.jpg) center / cover no-repeat;
    background-position: 70% center;
  }

  .hero-content-wrapper {
    padding-top: 270px;
    /* Space for header */
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    padding: 0 0px;

    /* Clean text, no box. Text shadow for readability if needed */
    background: none;
    border-radius: 0;
    backdrop-filter: none;
   /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);*/
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  .hero-sub {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
  }

/*  .hero-sub--tight {
    margin-bottom: 10px;
  }
*/

  /* BUTTON CENTERING FIX */
  .hero-text .btn,
  .about-content .btn {
    display: inline-block;
	margin: 5px auto 0 auto;
  }

  /* Values Section */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .values-section {
    padding-top: 5px;
    padding-bottom: 30px;
  }
  
  .about-grid {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }

  .about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
    /* Center align for mobile usually looks better */
  }

.about-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

  /* Mission Section */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

.mission-quote {
	line-height: 28px;
    font-weight: bold;
	font-size: 17px;
}

.mission-col p {
    padding: 0px;
}

  /* Trust Stats */
  .trust-grid {
    gap: 2rem;
    padding: 0 1rem;
  }

  /* Services Section */
  .service-grid {
    /* 1 Column for mobile */
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 3rem;
  }

  /* Services CTA */
  .services-cta {
    width: 100%;
    padding-left: 0px;
  }

  .services-cta-bar {
    width: 100%;
    padding: 10px;
    /* Compact padding for mobile too */
  }

.services-cta-button {
    margin-top: 5px;
}


  /* Process Section */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 5px;
	margin-top: 5px;
  }

  /* FAQ & Reviews */
  .faq-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
	margin-top: 5px;
  }

  /* Contact Final - Improved Typography & Spacing */
  .contact-final {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .contact-final .btn {
    padding: 1rem 2rem;
    /* Balanced button size */
    width: 100%;
    /* Full width button on mobile acts better */
    max-width: 350px;
    /* But not too wide on tablets */
  }

  .contact-right .arch-mask {
    /* height: 300px; */
    /* proportional height */
    /* width: 100%; */
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
	text-align: center;
    padding: 5px;
  }

  .footer-sep {
    display: none;
  }

  /* Modal */
  .legal-modal-content {
    width: 95%;
    margin: 10vh auto;
    padding: 1.5rem;
  }
}