/***************************
 * GLOBAL & RESET
 ***************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter Display', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
/* ========================================
   Font Face Declarations
   ======================================== */
@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Display';
  src: url('/fonts/InterDisplay-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   Custom Variables for Precision Control
   - Desktop defaults
   ======================================== */
:root {
  --font-size-h1: clamp(3rem, 7vw, 5.5rem);
  --font-size-h2: 2rem;
  --font-size-h3: clamp(2rem, 5vw, 3rem);
  --font-size-h4: clamp(1.5rem, 4vw, 2rem);
  --font-size-p: 1.125rem;
  --font-weight-h: 700;
  --font-weight-p: 500;
  --line-height-p: 1.15;

  --section-padding: clamp(5rem, 12vw, 9rem);
  --hero-min-height: 100vh;
  --hero-font-size-h1: clamp(2.5rem, 8vw, 4.5rem);
  --hero-font-size-p: clamp(1.375rem, 3.2vw, 1.75rem);

  --banner-grid-columns: 740px 1fr;
  --banner-font-size-h2: clamp(2.5rem, 8vw, 4.5rem);
  --banner-font-size-p: clamp(1.3rem, 3.3vw, 2.3rem);

  --header-grid-columns: 1fr 740px;
  --header-font-size-small: clamp(0.875rem, 2vw, 1rem);
  --header-font-size-large: clamp(1.3rem, 3.3vw, 2.3rem);

  --gallery-grid-minmax: 320px;
  --gallery-font-size-caption: clamp(0.875rem, 1.8vw, 1rem);

  --full-screen-aspect: 16 / 9;
  --full-screen-font-size-caption: clamp(0.95rem, 1.6vw, 1.05rem);

  --two-column-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
  --two-column-font-size-left: clamp(0.95rem, 1.8vw, 1.05rem);
  --two-column-font-size-right: clamp(0.85rem, 1.6vw, 0.95rem);

  --services2-grid-minmax: 340px;
  --services2-font-size-h3: 1.4rem;
  --services2-font-size-li: 0.95rem;

  --quote-font-size-text: clamp(1.0rem, 2.0vw, 1.1rem);
  --quote-font-size-name: 1.0rem;
  --quote-font-size-title: 0.95rem;

  --contact-font-size-title: clamp(2rem, 5vw, 2.8rem);
  --contact-font-size-subtitle: 1.15rem;
  --contact-padding: clamp(2.5rem, 6vw, 5rem);

  --footer-padding: clamp(4rem, 8vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  --footer-grid-minmax: 180px, 320px;
  --footer-font-size-h4: 1.0rem;
  --footer-font-size-p: 0.90rem;

  --back-to-top-button-size: 3.5rem;
  --back-to-top-icon-size: 2.2rem;
  --back-to-top-padding: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'Inter Display', system-ui;
  font-weight: var(--font-weight-h);
  line-height: 0.9;
  margin-bottom: 0.5em;
}
h1 {
  font-size: var(--font-size-h1);
}
h2 {
  font-size: var(--font-size-h2);
}
h3 {
  font-size: var(--font-size-h3);
}
h4 {
  font-size: var(--font-size-h4);
}
p {
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  margin-bottom: 1.5em;
  font-weight: var(--font-weight-p);
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
a:hover {
  text-decoration: none;
}
/* Hero H1 Animation */
.hero h1 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
  font-weight: 700;
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Reusable colored text spans */
.text-highlight {
  color: #ff4600;
  font-weight: 500;
}
.text-gray {
  color: #d3d3d3;
}
.text-green {
  color: #00cc99;
}
.text-gold {
  color: #ffd700;
}

.highlight-behind {
  position: relative;
  display: inline-block;
  padding: 0.12em 0.12em;          /* inner spacing – text looks lifted */
  margin: -0.12em -0.12;         /* negative margin cancels the padding visually */
  z-index: 1;
}

.highlight-behind::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff4600;
  transform: skew(4deg);         /* gentle slant – feels modern */
  border-radius: 0em;
  z-index: -1;
}

/* ========================================
   Pulse Animation
   ======================================== */
@keyframes pulse-gentle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}
.pulse-resume {
    animation: pulse-gentle 2s ease-in-out infinite;
    display: inline-block;
}

/* ==========================================
   NAVBAR – Updated Modern Version (2025–2026 style)
   • Matches content padding perfectly
   • Fluid clamp() padding
   • Premium mobile spacing
   • Keeps your original glow, colors, structure
========================================== */

:root {
  --nav-height-desktop: 4.9rem;
  --nav-height-mobile: 4.2rem;
  --logo-height-desktop: 62px;
  --logo-height-mobile: 44px;
  --primary: #ff4600;
  --text-light: #ffffff;
  --text-dark: #f0f0f0;
  --divider-light: rgba(255, 255, 255, 0.08);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  color: var(--text-light);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 25, 0.55);           /* slightly stronger modern glass */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

/* ── Main container – NOW matches .container padding ── */
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);    /* ← same as your .container ! */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height-desktop);
}

/* ── Logo  ─────────────────────────────── */
.logo {
  position: relative;
}

.logo img {
  height: var(--logo-height-desktop);
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* ── Desktop Links ───────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── Mobile Toggle (+ → ×) ───────────────────────────── */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-toggle::before { transform: translate(-50%, -50%) rotate(90deg); }
.nav-toggle.active::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.active::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.nav-toggle.active span   { opacity: 0; }

.nav-toggle:hover span,
.nav-toggle:hover::before,
.nav-toggle:hover::after {
  background: var(--primary);
}

/* ── Full-screen Mobile Menu ─────────────────────────── */
@media (max-width: 992px) {
  .nav-toggle { display: block; }

  .nav-container {
    padding-inline: clamp(1rem, 5vw, 1.75rem);  /* ~16–28px on phones – feels clean */
    height: var(--nav-height-mobile);
  }

  .logo img {
    height: var(--logo-height-mobile);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: rgba(15, 15, 25, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    position: relative;
  }

  .nav-links a {
    display: block;
    padding: 1.4rem 2rem;
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.35s ease, padding 0.35s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  /* Subtle dividers */
  .nav-links li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--divider-light);
    transform: scaleX(0);
    transition: transform 0.5s ease;
  }

  .nav-links li:hover::after,
  .nav-links.active li::after {
    transform: scaleX(1);
  }
}

/* Desktop reset – prevent mobile styles leaking */
@media (min-width: 993px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    flex-direction: row !important;
    gap: 2.5rem !important;
  }
}

/***************************
 * HERO
 ***************************/
.hero {
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #f8f9fa url('../images/hero-btr-2.jpg') center/cover no-repeat fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero h1 {
  font-size: var(--hero-font-size-h1);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 1.3rem;
  margin-bottom: 2rem;
  color: #ffffff;
}
.hero p {
  font-size: var(--hero-font-size-p);
  max-width: 720px;
  margin: 0 auto 3rem;
  opacity: 0.92;
  color: #ffffff;
  font-weight: 400;
}

/* =========================================
   HERO SCROLL PROMPT
   ========================================= */

.scroll-prompt {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3;

  /* Start hidden (for delayed reveal) */
  opacity: 0;
  pointer-events: none;

  /* Animation + transitions */
  animation: scroll-float 2.4s ease-in-out infinite;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Visible after delay */
.scroll-prompt.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hidden after interaction */
.scroll-prompt.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
}

/* SVG container */
.scroll-prompt svg {
  width: 52px;
  height: 52px;
  opacity: 0.85;
}

/* CHEVRON (IMPORTANT – SVG does NOT inherit stroke) */
.scroll-prompt polyline {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Floating animation */
@keyframes scroll-float {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.6;
  }
}

/***************************
 * BANNER
 ***************************/
.banner {
  background: #ffffff;
  padding: var(--section-padding) 0;
  border-bottom: 1px solid #eeeeee;
}
.banner-grid {
  display: grid;
  grid-template-columns: var(--banner-grid-columns);
  gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}
.banner-left h2 {
  font-size: var(--banner-font-size-h2);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #111111;
}
.banner-left p {
  font-size: var(--banner-font-size-p);
  font-weight: 500;
  max-width: 800px;
  opacity: 0.88;
  line-height: 1.05;
  color: #555555;
}
.banner-right p {
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 400px;
  margin-left: auto;
  opacity: 0.88;
  line-height: 1.4;
  color: #555555;
}
/***************************
 * SECTION HEADERS (shared styles)
 ***************************/
.section-header,
.gallery-menu,
.services,
.services2 {
  padding: var(--section-padding) 0;
  background: #ffffff;
  border-bottom: 1px solid #d3d3d3;
}
.header-grid,
.gallery-header-grid,
.services-header-grid,
.services2-header-grid {
  display: grid;
  grid-template-columns: var(--header-grid-columns);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}
.header-left h2,
.gallery-header-left,
.services-header-left,
.services2-header-left {
  font-size: var(--header-font-size-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  padding-top: 0.35em;
  margin-bottom: 3rem;
}
.header-right h2,
.gallery-header-right h2,
.services-header-right h2,
.services2-header-right h2 {
  font-size: var(--header-font-size-large);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2.75rem;
  opacity: 0.88;
  color: #111111;
}
.header-left p {
  font-size: 0.85rem;
  font-weight: 500;
  max-width: 400px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 1.6rem;
  opacity: 0.88;
  line-height: 1.4;
  color: #555555;
}
/***************************
 * REVEAL ANIMATIONS – CLEAN & COMPREHENSIVE
 ***************************/
/* Base hidden state */
h2,
h3,
p,
.gallery-item,
.gallery-caption,
.full-screen-image-item,
.full-screen-image-header h2,
.quote-pod,
.service-card,
.service-card h3,
.header-left p,
.banner p,
.banner-left h2,
.banner-right p,
.two-column-list li,
.service-card li,
.standard-paragraph {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
/* Visible state */
h2.is-visible,
h3.is-visible,
p.is-visible,
.gallery-item.is-visible,
.gallery-caption.is-visible,
.full-screen-image-item.is-visible,
.full-screen-image-header h2.is-visible,
.quote-pod.is-visible,
.service-card.is-visible,
.service-card h3.is-visible,
.header-left p.is-visible,
.banner p.is-visible,
.banner-left h2.is-visible,
.banner-right p.is-visible,
.two-column-list li.is-visible,
.service-card li.is-visible,
.standard-paragraph.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered timing for natural flow */
.header-left p { transition-delay: 0.15s; }
.banner-left p { transition-delay: 0.15s; }
.banner-right p { transition-delay: 0.35s; }
.gallery-caption { transition-delay: 0.25s; }
.service-card h3 { transition-delay: 0.15s; }
.service-card p { transition-delay: 0.25s; }
.service-card li { transition-delay: 0.1s; }
.two-column-list li:nth-child(1) { transition-delay: 0.15s; }
.two-column-list li:nth-child(2) { transition-delay: 0.25s; }
.two-column-list li:nth-child(3) { transition-delay: 0.35s; }
.two-column-list li:nth-child(4) { transition-delay: 0.45s; }
.two-column-list li:nth-child(5) { transition-delay: 0.55s; }

/***************************
 * GALLERY MENU
 ***************************/
.gallery-menu {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.gallery-header {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.gallery-header-left {
  font-size: var(--header-font-size-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  padding-top: 0.35em;
}
.gallery-grid {
  padding-top: clamp(1rem, 2vw, 1rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--gallery-grid-minmax), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  overflow: visible;
  min-height: 0;  
}
.gallery-item:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease;
}
.gallery-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 0.5rem;
  border: 1px solid #dddddd;
}
.gallery-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-caption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: var(--gallery-font-size-caption);
  line-height: 1.40;
  opacity: 0.80;
  font-weight: 500;
}
.caption-left { text-align: left; }
.caption-right { text-align: right; }

/***************************
 * FULL SCREEN IMAGE STACK
 ***************************/
.full-screen-image {
  padding-top: 1.5rem;
  background: #ffffff;
}
.full-screen-image-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.5rem);
}
.full-screen-image-item {
  position: relative;
  width: 100%;
  aspect-ratio: var(--full-screen-aspect);
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 0.75rem;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, box-shadow 0.35s ease, filter 0.35s ease;
}
.full-screen-image-item:hover {
  box-shadow:
    inset 0 0 0 4px #ff4600,
    inset 0 0 0 8px rgba(0, 198, 255, 0.3),
    0 0 0 4px rgba(0, 198, 255, 0.15);
  transform: scale(1.015);
  filter: brightness(1.05);
}
.full-screen-image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.full-screen-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.10) 100%);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  font-size: var(--full-screen-font-size-caption);
  line-height: 1.4;
  opacity: 0.95;
  pointer-events: none;
  font-weight: 400;
}
.full-screen-image-item .caption-left {
  font-weight: 600;
}
.full-screen-image-item .caption-right {
  font-weight: 500;
  opacity: 0.85;
}

/***************************
 * TWO-COLUMN LIST (Services)
 ***************************/
.two-column-list {
  margin-top: 3rem;
  width: 100%;
}
.two-column-list__item {
  display: grid;
  grid-template-columns: var(--two-column-grid-columns);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.4rem, 3.5vw, 1.8rem) 0;
  border-bottom: 1px solid #eeeeee;
}
.two-column-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.two-column-list__left {
  font-weight: 700;
  font-size: var(--two-column-font-size-left);
  line-height: 1.3;
  color: #000000;
}
.two-column-list__right {
  font-size: var(--two-column-font-size-right);
  line-height: 1.4;
  opacity: 0.9;
  color: #444444;
  font-weight: 400;
}
.two-column-list__right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: right;
}
.two-column-list__left--with-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.two-column-list__icon {
  width: 0.8em;
  height: 0.8em;
  flex-shrink: 0;
  opacity: 0.85;
}

/***************************
 * CAPABILITIES (service cards)
 ***************************/
.services2-content {
  padding-top: clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--services2-grid-minmax), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fafafa;
}
.service-card h3 {
  font-size: var(--services2-font-size-h3);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: var(--services2-font-size-li);
  opacity: 0.9;
  font-weight: 400;
}
.service-card li::before {
  content: "•";
  margin-right: 0.6rem;
  color: #000;
}
/***************************
 * QUOTE POD
 ***************************/
.quote-pod {
  background: #111111;
  color: #ffffff;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: 1rem;
  margin-top: 3rem;
}
.quote-pod__text {
  font-size: var(--quote-font-size-text);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.quote-pod__author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.quote-pod__avatar {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 2px solid #ff4600;
  flex-shrink: 0;
}
.quote-pod__name {
  font-size: var(--quote-font-size-name);
  font-weight: 700;
}
.quote-pod__title {
  font-size: var(--quote-font-size-title);
  opacity: 0.75;
  color: #cccccc;
  font-weight: 400;
}
.quote-pod--align-right {
  margin-left: auto;
  margin-right: 0;
  max-width: none;
}

/***************************
 * CONTACT FORM – FULL WIDTH (Desktop & Mobile)
 ***************************/
.contact-form {
  width: 100%;
  max-width: none;                  /* Removes width cap for full stretch */
  margin: 0 auto;                   /* Centers the form horizontally */
  padding: var(--contact-padding); /* More breathing room on larger screens */
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-form-title {
  font-size: var(--contact-font-size-title);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: center;               /* Centered for better balance in full-width */
}

.contact-form-subtitle {
  font-size: var(--contact-font-size-subtitle);
  color: #555555;
  font-weight: 500;
  opacity: 0.92;
  margin: 0;
  line-height: 1.4;
  text-align: center;               /* Centered subtitle */
}

.contact-form-inner .form-group {
  margin-bottom: 1.25rem;
}

.contact-form-inner input,
.contact-form-inner textarea {
  width: 100%;
  padding: 1.1rem 1.4rem;
  font-family: 'Inter Display', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111111;
  background: #fafafa;
  border: 1px solid #dddddd;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-sizing: border-box;           /* Ensures padding doesn't overflow */
}

.contact-form-inner input::placeholder,
.contact-form-inner textarea::placeholder {
  color: #888888;
  font-weight: 500;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
  outline: none;
  border-color: #ff4600;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 70, 0, 0.15);
}

.contact-form-inner textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-submit {
  width: 100%;
  padding: 1.1rem;
  font-family: 'Inter Display', system-ui;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  background: #ff4600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 70, 0, 0.25);
}

.contact-form-submit:hover {
  background: #ff4600;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 70, 0, 0.35);
}

.contact-form-submit:active {
  transform: translateY(0);
}

/* ==========================================
   SINGLE BRAND LOGO – Footer Optimized
   - Logo centered above copyright text
   - Responsive sizing
   - Clean vertical stacking with flex
========================================== */

/* Make the whole copyright block stack vertically and center everything */
.footer-copyright {
  text-align: center;
  display: flex;
  flex-direction: column;         /* logo on top, text below */
  align-items: center;            /* center horizontally */
  gap: 1rem;                      /* nice space between logo and text */
  margin-top: 2.5rem;             /* breathing room from footer columns */
  padding-top: 1rem;
}

/* The logo container */
.single-brand-logo {
  height: 1.5rem;                 /* desktop size – looks good in footer */
  width: auto;
  margin: 0 auto;                 /* extra centering safety */
}

/* Ensure the image fills the container properly */
.single-brand-logo img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;            /* preserves proportions, no distortion */
}

/* Optional: subtle hover (still nice to have) */
.single-brand-logo:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/***************************
 * FOOTER
 ***************************/
.footer {
  background: #000000;
  color: #ffffff;
  padding: var(--footer-padding);
  display: flex;
  justify-content: center;           /* centers the content block */
}

.footer-grid {
  width: 100%;
  max-width: 1280px;                 /* ← ← ← crucial: prevents unlimited stretching */
  margin: 0 auto;                    /* centers inside parent */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--footer-grid-minmax)));
  gap: 1.75rem 2rem;                 /* row-gap | column-gap – tighter horizontally */
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-column h4 {
  font-size: var(--footer-font-size-h4);
  color: #d2d2d2;
  font-weight: 500;
  opacity: 0.90;
  margin-bottom: 0.5rem;
}
.footer-column p,
.footer-column a {
  font-size: var(--footer-font-size-p);
  color: #e8e8e8;
  opacity: 0.75;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 0rem;
  padding-top: 0;
}
.footer-column a:hover {
  opacity: 1;
  color: #ffffff;
}
.footer-copyright {
  margin-top: clamp(3rem, 8vw, 5rem);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

/***************************
 * BACK TO TOP BUTTON
 ***************************/
#back-to-top {
  /* Base (mobile-first): ~56px diameter – good touch target */
  --button-size: var(--back-to-top-button-size);     /* 56px on most mobile */
  --icon-size: var(--back-to-top-icon-size);       /* ~62% of button size */
  --padding: var(--back-to-top-padding);           /* distance from screen edges */

  position: fixed;
  bottom: var(--padding);
  right: calc(var(--padding) + 0.5rem);
  z-index: 999;
  width: var(--button-size);
  height: var(--button-size);
  border-radius: 50%;
  background-color: rgba(255, 70, 0, 0.80);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 70, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:active {
  transform: scale(0.92) translateY(2px);
  box-shadow: 0 2px 8px rgba(0, 198, 255, 0.3);
}

/* Icon (chevron) */
#back-to-top svg {
  width: var(--icon-size);
  height: var(--icon-size);
  stroke: white;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

/* Hover & focus states (desktop-friendly) */
#back-to-top:hover {
  background-color: #ff4600;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 70, 0, 0.45);
}

#back-to-top:focus-visible {
  outline: 3px solid #ff4600;
  outline-offset: 4px;
}

/* ==========================================
   Centered CTA Wrapper – nice spacing + subtle fade
========================================== */
.cta-wrapper {
  padding: 2.5rem 0 6rem;          /* vertical breathing room – adjust as needed */
  text-align: center;
  background: transparent;       /* completely remove any gradient/fade */
}


/* ==========================================
   Pill CTA Button – Full & Corrected
========================================== */
.pill-cta-slide {
  --color-main: #ff4600;
  --color-text: #ffffff;
  --color-text-hover: #000000;
  --border-color: #ffffff;
  --shadow-color: rgba(0, 198, 255, 0.4);

  /* Kill ugly mobile tap highlight */
  -webkit-tap-highlight-color: transparent !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-family: 'Inter Display', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.75rem 3rem;
  min-height: 56px;
  min-width: 280px;
  border: 3px solid var(--border-color);
  border-radius: 12px;                   /* true pill shape */
  background: rgba(102, 102, 102, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.45s ease, color 0.55s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.pill-cta-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-main);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.pill-cta-slide:hover,
.pill-cta-slide:focus-visible {
  color: var(--color-text-hover);
  box-shadow: 0 8px 24px var(--shadow-color);
  outline: none;
}

.pill-cta-slide:hover::before,
.pill-cta-slide:focus-visible::before {
  transform: translateX(0);
}

.pill-cta-slide:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.single-brand-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem auto;
    padding: 0 1rem;
    max-width: 1200px;
}

.single-brand-logo img {
    height: 30px;                /* desktop */
    width: auto;
    max-height: 30px;            /* ← extra safety */
    object-fit: contain;
    flex-shrink: 0;
}

/* ───────────────────────────────────────────────
   MOBILE & TABLET RESPONSIVE STYLES – Updated with fluid hero spacing
   Complete replacement block – January 2026
   ─────────────────────────────────────────────── */

/* Tablet / smaller desktop adjustments */
@media (max-width: 1024px) {
  .banner-grid,
  .header-grid,
  .gallery-header-grid,
  .services-header-grid,
  .services2-header-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .header-right h2,
  .gallery-header-right h2,
  .services-header-right h2,
  .services2-header-right h2 {
    text-align: left;
  }
}

/* ── Main mobile experience (phones + small tablets) ── */
@media (max-width: 768px) {
  :root {
    /* Vertical breathing room */
    --section-padding: clamp(6rem, 15vw, 10rem);

    /* Base typography scaling */
    --font-size-h1: clamp(2.4rem, 9vw, 3.8rem);
    --font-size-h2: 1.9rem;
    --font-size-h3: clamp(1.7rem, 6vw, 2.4rem);
    --font-size-h4: clamp(1.3rem, 5vw, 1.9rem);
    --font-size-p: 1.05rem;
    --line-height-p: 1.38;

    /* Hero – full height + fluid typography */
    --hero-min-height: 100vh;
    --hero-font-size-h1: clamp(2.3rem, 10vw, 3.9rem);
    --hero-font-size-p: clamp(1.25rem, 4vw, 1.5rem);

    /* Quote Pod */
    --quote-font-size-text: clamp(1.05rem, 3.2vw, 1.25rem);
    --quote-font-size-name: 1rem;
    --quote-font-size-title: 0.9rem;
    --quote-padding: clamp(1.8rem, 5vw, 2.8rem);
  }

  /* Apply generous vertical spacing to major sections */
  .banner,
  .section-header,
  .gallery-menu,
  .services,
  .services2,
  .full-screen-image,
  .cta-wrapper,
  .quote-pod {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }

  /* ── Hero – fluid spacing adjustments ── */
  .hero {
    min-height: var(--hero-min-height);
    padding-top: clamp(3rem, 10vw, 5rem);      /* pushes content down: ~48–80px */
  }

  .hero h1 {
    margin-bottom: clamp(2rem, 5vw, 3rem);     /* space after headline: ~32–48px */
  }

  .hero p {
    margin-bottom: clamp(2.2rem, 6vw, 3.2rem); /* space before CTA: ~35–51px (reduced) */
  }

  /* CTA wrapper – balanced fluid padding */
  .cta-wrapper {
    padding-top: clamp(2rem, 5vw, 3rem);
    padding-bottom: clamp(5rem, 12vw, 7rem);
  }

  /* Quote Pod improvements */
  .quote-pod {
    padding: var(--quote-padding);
    border-radius: 1.25rem;
    margin: 3.5rem auto;
    max-width: 92%;
  }

  .quote-pod__text {
    font-size: var(--quote-font-size-text);
    line-height: 1.45;
    margin-bottom: 2.2rem;
  }

  .quote-pod__author {
    gap: 1rem;
  }

  .quote-pod__avatar {
    width: 56px;
    height: 56px;
  }

  .quote-pod--align-right {
    margin-left: auto;
    margin-right: auto;
    max-width: 92%;
  }

  /* Other common mobile tweaks */
  .pill-cta-slide {
    min-width: 260px;
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
  }

  .gallery-caption {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .caption-right {
    text-align: left;
  }

  .full-screen-image-item .full-screen-image-caption {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
  }

  .two-column-list__item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .two-column-list__right ul {
    text-align: left;
  }
}

/* Contact form – reduced padding on mobile */
  .contact-form {
    padding: clamp(1.6rem, 4.5vw, 2.8rem);
    border-radius: 0.75rem;           /* optional – softer look */
    margin: 2rem 0;                   /* optional – more vertical breathing from other content */
  }

  .contact-form-inner input,
  .contact-form-inner textarea {
    padding: 1rem 1.2rem;             /* makes the actual input area feel wider */
  }

/* ── Smaller phones – extra breathing ── */
@media (max-width: 640px) {
  :root {
    --section-padding: clamp(7rem, 18vw, 11rem);

    /* Quote Pod – slightly tighter */
    --quote-font-size-text: clamp(1rem, 3.5vw, 1.15rem);
    --quote-padding: clamp(1.6rem, 6vw, 2.4rem);
  }

  .quote-pod {
    max-width: 94%;
    margin: 3rem auto;
  }

  .quote-pod__avatar {
    width: 52px;
    height: 52px;
  }
}

/* ── Very small screens (iPhone SE, etc.) ── */
@media (max-width: 480px) {
  :root {
    --section-padding: clamp(6.5rem, 20vw, 10rem);

    --font-size-h1: clamp(2.1rem, 9.5vw, 3.4rem);
    --font-size-p: 1rem;
  }

  .quote-pod__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
  }

  .quote-pod__name,
  .quote-pod__title {
    text-align: left;
  }

  .pill-cta-slide {
    min-width: 100%;
    padding: 1rem 2rem;
  }

  #back-to-top {
    --button-size: 3.4rem;
    --icon-size: 2.1rem;
  }
}

/* ── Mobile LOGO BRANDS ─────────────────────────────────────── */

@media (max-width: 768px) {
    .single-brand-logo {
        gap: 1.8rem;
    }
    .single-brand-logo img {
        height: 30px !important;     /* more aggressive, helps override */
        max-height: 30px !important;
    }
}

@media (max-width: 480px) {
    .single-brand-logo {
        gap: 1.4rem;
    }
    .single-brand-logo img {
        height: 20px !important;
        max-height: 20px !important; 
    }
}