/* ============================================
   ORLEANS BATH AND TILE — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ---- DESIGN TOKENS ---- */
:root {
  --black:        #0a0908;
  --dark:         #141210;
  --dark-2:       #1e1c19;
  --dark-3:       #282420;
  --accent:       #c8a96e;
  --accent-light: #d9be8e;
  --accent-dark:  #a88c52;
  --white:        #ffffff;
  --off-white:    #f8f5f1;
  --warm-grey:    #edeae4;
  --text-primary:   #1a1714;
  --text-secondary: #6b6258;
  --text-muted:     #9e9690;
  --text-light:     #e8e3dc;
  --border:       #e2ddd7;
  --border-dark:  #2e2b27;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-width:  1180px;
  --nav-height: 80px;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-secondary); }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav__links > li > a {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav__links > li > a:hover { color: var(--accent); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  min-width: 250px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.6rem);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  color: var(--text-light) !important;
  letter-spacing: 0.03em;
  text-transform: none !important;
}
.nav__dropdown-menu a:hover {
  color: var(--accent) !important;
  background: rgba(200,169,110,0.07);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__links { list-style: none; }
.mobile-nav__links > li { border-bottom: 1px solid var(--border-dark); }
.mobile-nav__links > li > a {
  display: block;
  padding: 1rem 0;
  color: var(--text-light);
  font-size: 1.15rem;
  font-family: var(--font-heading);
}
.mobile-nav__sub { list-style: none; padding: 0 0 1rem 1rem; }
.mobile-nav__sub a {
  display: block;
  padding: 0.45rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.mobile-nav__cta { margin-top: 2rem; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,9,8,0.88) 0%,
    rgba(10,9,8,0.60) 55%,
    rgba(10,9,8,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 5rem) 2rem 7rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero__inner { max-width: 680px; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 1px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 560px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-height) + 5rem) 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,169,110,0.08) 0%, transparent 70%);
}
.page-hero__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-hero__title { color: var(--white); margin-bottom: 1.25rem; }
.page-hero__sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.85;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--accent-light); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.1rem 2rem;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.trust-item__icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; }

/* ---- SECTIONS ---- */
.section { padding: 6rem 0; }
.section--dark { background: var(--dark); color: var(--text-light); }
.section--dark p { color: var(--text-muted); }
.section--darker { background: var(--dark-2); color: var(--text-light); }
.section--dark p, .section--darker p { color: var(--text-muted); }
.section--warm { background: var(--warm-grey); }

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 620px;
  margin-top: 1rem;
}
.section-header--center .section-lead { margin: 1rem auto 0; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}
.service-card {
  background: var(--dark-2);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--dark-3); }
.service-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.service-card__title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card__link:hover { gap: 0.85rem; }
.service-card__arrow { transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__arrow { transform: translateX(4px); }

/* ---- SPLIT / TWO-COL ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split__img-wrap {
  position: relative;
  overflow: hidden;
}
.split__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.split__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 55%; height: 55%;
  border: 2px solid rgba(200,169,110,0.4);
  pointer-events: none;
}
.split__body { padding: 1rem 0; }

/* ---- FEATURE LIST ---- */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.5rem 0 2rem; }
.feature-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.feature-list--light li { color: var(--text-muted); }
.feature-list li::before {
  content: '';
  width: 18px; min-width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%23c8a96e' stroke-width='1.5'/%3E%3Cpath d='M5.5 9l2.5 2.5 4.5-4.5' fill='none' stroke='%23c8a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 0.1rem;
}

/* ---- STATS ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  margin: 3.5rem 0;
}
.stat {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--border-dark);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- PHOTO SHOWCASE ---- */
.photo-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 620px;
}
.photo-showcase__main {
  grid-row: span 2;
  overflow: hidden;
}
.photo-showcase__main img,
.photo-showcase__side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.photo-showcase__main:hover img,
.photo-showcase__side:hover img { transform: scale(1.04); }
.photo-showcase__side { overflow: hidden; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.9) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item__caption { transform: translateY(0); }
.gallery-item__label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}
.gallery-item__sub { color: var(--accent); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }

/* ---- SERVICE DETAIL (inner pages) ---- */
.service-content { padding: 5rem 0; }
.service-content__intro {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.service-content h2 {
  color: var(--text-primary);
  margin: 3rem 0 1rem;
  font-size: 1.65rem;
}
.service-content h3 {
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}
.service-content p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
}
.service-content strong { color: var(--text-primary); font-weight: 600; }

/* ---- SERVICE SIDEBAR ---- */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.sidebar-card {
  background: var(--dark);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.sidebar-card__title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.sidebar-card__cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-links a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  transition: var(--transition);
}
.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(200,169,110,0.06);
  padding-left: 1rem;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--accent);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--dark); margin-bottom: 1rem; }
.cta-banner p { color: rgba(10,9,8,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-dark { background: var(--dark); color: var(--white); }
.cta-banner .btn-dark:hover { background: var(--black); }

/* ---- CONTACT FORM ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}
.contact-info { padding: 1rem 0; }
.contact-info h3 { margin-bottom: 0.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 1.25rem; color: var(--accent); margin-top: 0.1rem; }
.contact-info-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 1rem; color: var(--text-primary); font-weight: 500; }
.contact-info-value a { color: var(--text-primary); }
.contact-info-value a:hover { color: var(--accent); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- AREA PILLS ---- */
.area-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.area-pill {
  background: var(--dark-3);
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-radius: 1px;
  border: 1px solid var(--border-dark);
}
.area-pill--primary {
  background: rgba(200,169,110,0.12);
  color: var(--accent);
  border-color: rgba(200,169,110,0.3);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 1.5rem;
}
.footer__col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links a { font-size: 0.85rem; color: var(--text-muted); }
.footer__links a:hover { color: var(--accent); }
.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.footer__contact-line a { color: var(--text-muted); }
.footer__contact-line a:hover { color: var(--accent); }
.footer__contact-icon { color: var(--accent); font-size: 0.9rem; }
.footer__certs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.25rem; }
.cert-badge {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-radius: 1px;
  text-transform: uppercase;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- UTILITIES ---- */
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.fw-400 { font-weight: 400; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .split__img-wrap img { height: 360px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border-dark); }
  .photo-showcase { grid-template-columns: 1fr; height: auto; }
  .photo-showcase__main { grid-row: span 1; height: 420px; }
  .photo-showcase__side { height: 280px; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav__links, .nav__cta-link { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 4rem 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 1.25rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
