/***************************
 * 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);
  display: block; /* ← REQUIRED */
}


/* ========================================
   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.1;

  --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-font-size-h2: clamp(2.5rem, 8vw, 4.5rem);
  --banner-font-size-p: clamp(1.04rem, 2.64vw, 1.84rem);
  --banner-font-right-p: clamp(0.875rem, 1.8vw, 1rem);

  --header-font-size-small: clamp(0.875rem, 2vw, 1rem);
  --header-font-size-large: clamp(1.04rem, 2.64vw, 1.84rem);
  --header-font-left-p: clamp(0.875rem, 1.8vw, 1rem);

  --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: clamp(0.7rem, 1.44vw, 0.8rem);
  --footer-font-size-p: clamp(0.62rem, 1.27vw, 0.70rem);

  --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: 1;
  margin-bottom: 0.6em;
}

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;
}


/* Reusable colored text spans */
.text-highlight {
  color: #ff4600;
  font-weight: 500;
}

.text-gray {
  color: #d3d3d3;
}

.highlight-behind {
  position: relative;
  display: inline-block;
  padding: 0.12em 0.12em;
  /* inner spacing – text looks lifted */
  margin: -0.12em -0.12em;
  /* 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(5deg);
  /* gentle slant – feels modern */
  border-radius: 0em;
  z-index: -1;
}

/* ================================
   SHARED 2-COLUMN GRIDS (DESKTOP)
================================ */

.header-grid,
.gallery-header-grid,
.services-header-grid,
.services2-header-grid {
  display: grid;
  width: 100%;
  grid-template-columns:
    minmax(280px, 360px)   /* left: label / meta */
    minmax(480px, 1fr);    /* right: primary content */
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}


/* IMPORTANT:
   Banner grid is asymmetric.
   Do NOT convert to shared grid variables.
*/
/* ================================
   BANNER GRID (DESKTOP)
================================ */

.banner-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(480px, 1fr) minmax(280px, 360px);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}


/* Prevent text overflow */
.header-grid > *,
.banner-grid > *,
.gallery-header-grid > *,
.services-header-grid > *,
.services2-header-grid > * {
  min-width: 0;
}

/* Banner columns */
.banner-left,
.banner-right {
  min-width: 0;
}

/* FIX: force right column content to top */
.banner-right {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Optional: constrain right text width (safe) */
.banner-right p {
  max-width: 400px;
}


/* ========================================
   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.1rem;
  --logo-height-desktop: 54px;
  --logo-height-mobile: 38px;
  --primary: #ff4600;
  --orange: #ff4600;
  --text: #ffffff;
  --text-gray: #d3d3d3;
  --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);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 25, 0.30);
  /* 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);
  font-weight: 400;
  font-size: 0.875rem;
  text-decoration: none;
}

/* Editorial underline */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  opacity: 0.9;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Utility links (phone, CTA) — no underline */
.nav-links a.nav-utility::after {
  display: none;
}

/* Desktop hover & active — underline only */
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    color: var(--text);
  }

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


/* ── 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);
  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(--orange);
}

/* ── Full-screen Mobile Menu ─────────────────────────── */
@media (max-width: 900px) {
  .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);
    transition: color 0.35s ease, padding 0.35s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--orange);
    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: 900px) {
  .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;
  }
}

/* Desktop auto-hide nav */
.navbar.nav-hidden {
  transform: translateY(-110%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Ensure default state animates cleanly */
.navbar {
  transition:
    transform 0.45s cubic-bezier(0.77, 0, 0.175, 1),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

/***************************
 * HERO
 ***************************/
.hero {
  height: 100dvh;
  min-height: clamp(720px, 92dvh, 1000px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    /* ← overlay first! */
    url('../images/hero-btr-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

 .hero {
   padding-top: var(--nav-height-desktop);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 1;
}

/* Make sure your inner content wrapper is not full-width */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  /* ← keeps it from stretching full-width */
  width: 90%;
  /* or 85–92% for breathing room on mobile */
  margin: 0 auto;
  /* extra centering safety */
  text-align: center;
  /* ensures text inside is centered */
  transform: translateY(-3rem);
}

.hero h1 {
  font-size: var(--hero-font-size-h1);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 1.3rem;
  margin-bottom: 2rem;
  line-height: 0.95;
  color: #ffffff;
}

.hero p {
  font-size: var(--hero-font-size-p);
  max-width: 720px;
  margin: 0 auto 3rem;
  opacity: 0.92;
  color: #ffffff;
  line-height: 1.1;
  font-weight: 400;
}

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

.scroll-prompt {
  position: absolute;
  bottom: 4rem;
  left: 50%;

  /* Stable centering (no transform collisions) */
  translate: -50% 0;

  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  z-index: 3;

  /* Start hidden */
  opacity: 0;
  pointer-events: none;

  /* Motion */
  animation: scroll-float 2.4s ease-in-out infinite;
  transition:
    opacity 0.6s ease,
    translate 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;
  translate: -50% 10px;
}

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

/* Chevron stroke */
.scroll-prompt polyline {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Floating animation */
@keyframes scroll-float {
  0% {
    translate: -50% 0;
    opacity: 0.6;
  }

  50% {
    translate: -50% 10px;
    opacity: 1;
  }

  100% {
    translate: -50% 0;
    opacity: 0.6;
  }
}

/* Accessibility – reduce motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-prompt {
    animation: none;
    transition: opacity 0.3s ease;
  }
}

/* Short viewport safety */
@media (max-height: 700px) {
  .scroll-prompt {
    bottom: 6rem;
  }
}

@media (max-height: 600px) {
  .scroll-prompt {
    display: none;
  }
}

/***************************
 * BANNER 
 ***************************/
.banner {
  background: #ffffff;
  padding-block: var(--section-padding);
  border-bottom: 1px solid #eeeeee;
}

/* LEFT COLUMN */
.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: none;
  line-height: 1.1;
  color: #333333;
}

/* RIGHT COLUMN — LEFT ALIGNED (FIXED) */
.banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0.15em;
}

.banner-right p {
  font-size: var(--banner-font-right-p);
  font-weight: 500;
  max-width: 400px;
  margin: 0;
  line-height: 1.3;
  color: #666666;
  text-align: left;
}


/***************************
 * SECTION HEADERS (shared styles)
 ***************************/
.section-header,
.gallery-menu,
.services,
.services2 {
  padding: var(--section-padding) 0;
  background: #ffffff;
  border-bottom: 1px solid #d3d3d3;
}

.header-left h2,
.gallery-header-left h2,
.services-header-left h2,
.services2-header-left h2 {
  font-size: var(--header-font-size-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.35em;
  margin-bottom: 3rem;
  color: #212121;
}

.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.1;
  letter-spacing: -0.025em;
  margin-bottom: 2.75rem;
  color: #333333;
}

.header-left p {
  font-size: var(--header-font-left-p);
  font-weight: 500;
  max-width: 400px;
  margin-left: 0;
  margin-top: 0;
  line-height: 1.3;
  color: #666666;
}

/***************************
 * ANIMATION REVEAL (EDITORIAL)
 ***************************/
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle editorial stagger */
.reveal.delay-1.is-visible { transition-delay: 0.08s; }
.reveal.delay-2.is-visible { transition-delay: 0.16s; }
.reveal.delay-3.is-visible { transition-delay: 0.24s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/***************************
 * GALLERY MENU
 ***************************/
.gallery-menu {
  padding-block: var(--section-padding);
}

.gallery-header {
  width: 100%;
  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;
  padding-top: 0.35em;
}

/* Grid */
.gallery-grid {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(var(--gallery-grid-minmax), 1fr)
  );
  gap: clamp(1.5rem, 4vw, 3rem);
}

/* Item wrapper — NO transforms */
.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

/* Image wrapper only */
.gallery-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 0.5rem;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.45);
}

/* Image */
.gallery-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Editorial hover — image only */
@media (hover: hover) and (pointer: fine) {
  .gallery-image-wrapper {
    transition: box-shadow 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .gallery-image-wrapper:hover {
    box-shadow: 0 22px 26px rgba(0, 0, 0, 0.35);
  }
}

/* Caption — fully static */
.gallery-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.5rem;
  font-size: var(--gallery-font-size-caption);
  line-height: 1.1;
  font-weight: 500;
}

.caption-left {
  text-align: left;
}

.caption-right {
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-caption {
    grid-template-columns: 1fr;
  }

  .caption-right {
    text-align: left;
  }
}


/***************************
 * FULL SCREEN IMAGE STACK
 ***************************/
.full-screen-image {
  padding-block: var(--section-padding);
  background: #ffffff;
  border-bottom: 1px solid #d3d3d3;
}

.full-screen-image-stack {
  margin-top: clamp(4rem, 8vw, 6rem);
  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);
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 0.75rem;
  border: 1px solid #dddddd;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, box-shadow 0.35s ease, filter 0.35s ease;
}

.full-screen-image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .full-screen-image-item {
    transition:
      transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
      box-shadow 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
      filter 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .full-screen-image-item:hover {
    transform: scale(1.012);
    filter: brightness(1.04);
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.38);
  }
}


.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
 ***************************/
.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;
}


/* ================================
   SERVICE CARDS (PAYLOAD)
================================ */
.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;
  border: 1px solid #333333;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.45);
}

.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: 100px;
  height: 162px;
  border-radius: 1rem;
  object-fit: cover;
  border: 8px solid #d3d3d3;
  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: #d3d3d3;
  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: 0px solid #eeeeee;
  border-radius: 0.5rem;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.20);
  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: #666666;
  font-weight: 500;
  opacity: 0.92;
  margin: 0;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-align: center;
}

.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: #d3d3d3;
  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;
  margin-top: 1.5rem;
  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: 0px 8px 32px rgba(0, 0, 0, 0.22);
}

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

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

/***************************
 * FOOTER
 ***************************/
.footer {
  background: #000000;
  color: #ffffff;
  padding-block: clamp(4rem, 8vw, 5.5rem);
  /* vertical only */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 200px));
  gap: 1em 1.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column h4 {
  font-size: var(--footer-font-size-h4);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  opacity: 1;
  margin-bottom: 0.5rem;
}

.footer-column p,
.footer-column a {
  font-size: var(--footer-font-size-p);
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;
  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);
  margin-bottom: 0rem;
  text-align: center;
  font-size: var(--footer-font-size-p);
  color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  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
========================================== */
.cta-wrapper {
  padding: 1.5rem 0 2rem;
  text-align: center;
  background: transparent;
}

/* ==========================================
     CTA Button – Silky version
========================================== */
.pill-cta-slide {
  --color-main: #ff4600;
  --color-main-hover: rgba(255, 255, 255, 0.20);     /* ← added transparency */
  --color-text: #ffffff;
  --color-text-hover: #ffffff;
  --border-color: #ff4600;
  --shadow-color: rgba(255, 94, 0, 0.38);        /* softer orange glow */

  -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: 500;
  font-size: clamp(1rem, 1.944vw, 1.08rem);
  line-height: 1.2;
  text-decoration: none;
  padding: 0.70rem 2.3rem;
  min-height: 56px;
  min-width: 280px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  overflow: hidden;
  cursor: pointer;

  /* Smoother & slightly slower transitions */
  transition: 
    box-shadow 0.7s cubic-bezier(0.34, 0.16, 0.3, 1),
    color 0.7s ease,
    transform 0.2s 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-hover);           /* using the transparent version */
  transform: translateX(-100%);
  
  /* Main sliding animation – a bit slower + silkier curve */
  transition: transform 0.75s cubic-bezier(0.32, 0.02, 0.18, 1.0);
  
  z-index: -1;
}

/* Hover & focus states */
.pill-cta-slide:hover,
.pill-cta-slide:focus-visible {
  color: var(--color-text-hover);
  outline: none;
}

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

/* Pressed feedback – quick but not too snappy */
.pill-cta-slide:active {
  transform: scale(0.975);
  transition: transform 0.14s ease;
}

/* ================================
   LAYOUT COLLAPSE (NAV SYNC)
================================ */
@media (max-width: 900px) {
  .header-grid,
  .banner-grid,
  .gallery-header-grid,
  .services-header-grid,
  .services2-header-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}


/* ================================
   MOBILE TYPOGRAPHY & SPACING
================================ */

@media (max-width: 768px) {
  :root {
    --section-padding: clamp(5rem, 12vw, 9rem);

    --hero-font-size-h1: clamp(2.2rem, 6vw, 4.5rem);
    --hero-font-size-p: clamp(1.26rem, 3.36vw, 1.5rem);

    --banner-font-size-h2: clamp(2.42rem, 7.7vw, 4.18rem);
    --banner-font-size-p: clamp(1.26rem, 3.36vw, 1.5rem);
	--banner-font-right-p: clamp(1rem, 1.944vw, 1.08rem);

    --header-font-size-small: clamp(1.05rem, 2.16vw, 1.2rem);
    --header-font-size-large: clamp(1.26rem, 3.36vw, 1.5rem);
    --header-font-left-p: clamp(1rem, 1.944vw, 1.08rem);

    --gallery-grid-minmax: 320px;
    --gallery-font-size-caption: 0.95rem;

    --quote-font-size-text: clamp(1.05rem, 2.16vw, 1.2rem);

    --contact-font-size-title: clamp(1.6rem, 5vw, 2.4rem);
    --contact-padding: clamp(2.5rem, 6vw, 4rem);

    --footer-font-size-p: 0.8rem;
  }

  /* Section spacing */
  .banner,
  .gallery-menu,
  .services2 {
    padding-block: var(--section-padding);
  }

  /* Hero */
  .hero {
    padding-top: var(--nav-height-mobile);
  }

  .hero h1 {
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
  }

  .hero p {
    margin-bottom: 2rem;
  }

  /* Gallery captions */
  .gallery-caption {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .caption-right {
    text-align: left;
  }

  /* CTA */
  .pill-cta-slide {
    min-width: 260px;
  }

  /* Contact form */
  .contact-form {
    padding: clamp(1.6rem, 5vw, 3rem);
    border-radius: 0.85rem;
    margin: 2rem 0;
  }
}

/* ================================
   SMALL PHONES
================================ */

@media (max-width: 480px) {
  .quote-pod__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

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

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

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

@media (max-width: 768px) {
  .footer {
    padding-block: clamp(3rem, 12vw, 4.5rem);
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-copyright {
    margin-top: 3rem;
  }
}
