/* ==========================================================================
   HUMAINE - Modern Creative Marketing Agency Stylesheet
   ========================================================================== */

@import url('fonts.css');

:root {
  --bg-dark: #000000;
  --bg-card: #141414;
  --bg-card-border: rgba(255, 255, 255, 0.12);
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dimmed: rgba(255, 255, 255, 0.25);
  --text-dark: #111111;
  --accent-lime: #68ff4f;
  --accent-purple: #9d4edd;
  --font-serif: 'Awesome Serif', serif;
  --font-serif-tall: 'Awesome Serif Tall', 'Awesome Serif', serif;
  --font-serif-extratall: 'Awesome Serif ExtraTall', 'Awesome Serif', serif;
  --font-serif-italic: 'Awesome Serif', serif;
  --font-druk: 'Druk', sans-serif;
  --font-druk-cond: 'Druk Condensed', 'Druk', sans-serif;
  --font-druk-xcond: 'Druk XCondensed', 'Druk Condensed', sans-serif;
  --font-druk-wide: 'Druk Wide', sans-serif;
  --font-satoshi: 'Satoshi', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-satoshi);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}

/* Custom Interactive Cursor (Desktop Only) */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.2s ease, width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), background-color 0.25s ease;
    mix-blend-mode: difference;
  }
  .custom-cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.28s var(--ease-out-expo), width 0.25s var(--ease-out-expo), height 0.25s var(--ease-out-expo), border-color 0.25s ease;
  }
  body.on-light-section .custom-cursor-follower {
    border-color: rgba(0, 0, 0, 0.22);
  }
  body.hovering-interactive .custom-cursor {
    width: 14px; height: 14px;
    background-color: #ffffff;
  }
  body.hovering-interactive .custom-cursor-follower {
    width: 52px; height: 52px;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.05);
  }
  body.on-light-section.hovering-interactive .custom-cursor-follower {
    border-color: rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0.04);
  }
}
@media (hover: none) or (pointer: coarse) {
  .custom-cursor, .custom-cursor-follower { display: none !important; }
}

/* ==========================================================================
   Header — Smooth Progressive Multi-Stop Gradient Blur
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 2.2rem 3.5rem 6.5rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  pointer-events: auto;
  color: #121212;
  transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Smooth multi-stop progressive blur */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 12%,
    rgba(0, 0, 0, 0.92) 24%,
    rgba(0, 0, 0, 0.80) 38%,
    rgba(0, 0, 0, 0.62) 52%,
    rgba(0, 0, 0, 0.42) 66%,
    rgba(0, 0, 0, 0.22) 80%,
    rgba(0, 0, 0, 0.08) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 12%,
    rgba(0, 0, 0, 0.92) 24%,
    rgba(0, 0, 0, 0.80) 38%,
    rgba(0, 0, 0, 0.62) 52%,
    rgba(0, 0, 0, 0.42) 66%,
    rgba(0, 0, 0, 0.22) 80%,
    rgba(0, 0, 0, 0.08) 92%,
    transparent 100%
  );
}

/* Dual Crossfading Gradient Layers for Ultra-Smooth Transition */
.site-header::before,
.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

/* Light Gradient Backdrop (Hero) */
.site-header::before {
  background: linear-gradient(
    to bottom,
    rgba(202, 202, 202, 0.96) 0%,
    rgba(202, 202, 202, 0.90) 14%,
    rgba(202, 202, 202, 0.78) 30%,
    rgba(202, 202, 202, 0.60) 48%,
    rgba(202, 202, 202, 0.38) 66%,
    rgba(202, 202, 202, 0.18) 82%,
    rgba(202, 202, 202, 0.05) 93%,
    transparent 100%
  );
  opacity: var(--header-light-opacity, 1);
}

/* Dark Gradient Backdrop (Section 2 & onwards) */
.site-header::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.84) 14%,
    rgba(0, 0, 0, 0.70) 30%,
    rgba(0, 0, 0, 0.52) 48%,
    rgba(0, 0, 0, 0.32) 66%,
    rgba(0, 0, 0, 0.15) 82%,
    rgba(0, 0, 0, 0.04) 93%,
    transparent 100%
  );
  opacity: var(--header-dark-opacity, 0);
}

.site-header .header-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-satoshi);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-header .header-center {
  position: absolute;
  left: 50%;
  top: 1.8rem;
  transform: translateX(-50%) translateY(-6px) scale(0.95);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

.site-header .header-center.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.site-header .brand-monogram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
}

.site-header .header-monogram-img {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: opacity;
}

body.on-light-section .site-header .header-monogram-img.monogram-dark {
  opacity: 1;
}
body.on-light-section .site-header .header-monogram-img.monogram-light {
  opacity: 0;
}

body.on-dark-section .site-header .header-monogram-img.monogram-dark {
  opacity: 0;
}
body.on-dark-section .site-header .header-monogram-img.monogram-light {
  opacity: 1;
}

.site-header .header-right {
  text-align: right;
  font-family: var(--font-satoshi);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.on-light-section .site-header {
  color: #121212;
}

body.on-dark-section .site-header {
  color: #ffffff;
}

/* ==========================================================================
   Persistent Bottom Footer Bar (Solid Black, Thicker & Brighter)
   ========================================================================== */

.site-footer-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 48px;
  padding: 0 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  pointer-events: auto;
  font-family: var(--font-satoshi);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #000000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  mask-image: none;
  -webkit-mask-image: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer-bar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.site-footer-bar a:hover {
  color: #00f0ff;
}

.footer-bar-tagline {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

body.on-light-section .site-footer-bar {
  background-color: #000000;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
body.on-light-section .site-footer-bar a {
  color: #ffffff;
}
body.on-light-section .footer-bar-tagline {
  color: rgba(255, 255, 255, 0.88);
}

/* Side Indicator */
.side-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.side-nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}
.side-nav-dot:hover {
  transform: scale(1.6);
  background-color: rgba(255, 255, 255, 0.8);
}
.side-nav-dot.active {
  height: 22px;
  border-radius: 4px;
  background-color: #ffffff;
}
body.on-light-section .side-nav-dot {
  background-color: rgba(0, 0, 0, 0.3);
}
body.on-light-section .side-nav-dot.active {
  background-color: #000000;
}

/* ==========================================================================
   Section Layout
   ========================================================================== */

.presentation-container {
  width: 100%;
  position: relative;
  padding-bottom: 3.2rem; /* space for persistent footer bar */
}

.slide-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 3.5rem;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Section 1: Hero — Layered Composition (BG + Letters + Cesar)
   -------------------------------------------------------------------------- */
#section-hero {
  background-color: #cacaca;
  color: #1a1a1a;
  padding: 0;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #cacaca;
  overflow: hidden;
}

/* Layer 1: Gradient Background fills entire hero */
.hero-layer {
  position: absolute;
  pointer-events: none;
}

.hero-bg-layer {
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Layer 2: Letter Images — horizontal row, centered vertically */
.hero-letters-stage {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(48vh - 50%));
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18vw;
  width: auto;
  white-space: nowrap;
  perspective: 800px;
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-middle-letters-group {
  display: inline-flex;
  align-items: center;
  gap: 0.18vw;
  height: 100%;
  overflow: visible;
  will-change: max-width, opacity, mask-image, -webkit-mask-image;
  transform-origin: left center;
}

.hero-letter-wrap {
  position: relative;
  display: inline-block;
  height: clamp(11rem, 38vh, 32rem);
  width: auto;
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  filter: blur(8px);
  transition: none; /* JS drives entrance and morph */
  will-change: transform, opacity;
  margin: 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-letter-symbol-wrap {
  margin-left: 0.15vw;
}

.hero-letter-wrap.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.hero-letter {
  height: 100%;
  width: auto;
  object-fit: contain;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-letter.letter-blue {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-letter.letter-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
  opacity: 0;
  will-change: opacity, mask-image, -webkit-mask-image;
}

/* Layer 3: Cesar Mascot — center-bottom, on top of letters */
.hero-cesar-layer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  transform-origin: center 50%;
  height: 92vh;
  max-height: 980px;
  width: auto;
  object-fit: contain;
  z-index: 220;
  opacity: 0;
  filter: none;
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-cesar-layer.is-revealed {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  filter: none;
}

/* Ultra-Smooth Progressive Gradient transitioning from Hero into Section 2 */
.hero-bottom-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 480px;
  background: linear-gradient(
    to bottom,
    rgba(12, 14, 14, 0) 0%,
    rgba(12, 14, 14, 0.01) 12%,
    rgba(12, 14, 14, 0.04) 24%,
    rgba(12, 14, 14, 0.10) 38%,
    rgba(12, 14, 14, 0.22) 52%,
    rgba(12, 14, 14, 0.44) 68%,
    rgba(12, 14, 14, 0.72) 84%,
    rgba(12, 14, 14, 0.94) 95%,
    #0c0e0e 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Interactive Parallax (desktop only — applied via JS) */
.hero-wrapper:hover .hero-letter.is-revealed {
  transition: transform 0.15s ease-out;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #121212;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  font-size: 1.4rem;
  animation: bounceDown 2.4s infinite ease-in-out;
  padding: 8px;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}

/* --------------------------------------------------------------------------
   Sections 2 & 3: Seamless Single Background
   -------------------------------------------------------------------------- */
.seamless-story-container {
  position: relative;
  width: 100%;
  min-height: 200vh;
  min-height: 200dvh;
  overflow: hidden;
  background-color: #0c0e0e;
}

/* Soft gradient blend at top of Section 2 ensuring zero visible seam */
.seamless-story-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 380px;
  background: linear-gradient(
    to bottom,
    #0c0e0e 0%,
    rgba(12, 14, 14, 0.95) 15%,
    rgba(12, 14, 14, 0.75) 38%,
    rgba(12, 14, 14, 0.40) 65%,
    rgba(12, 14, 14, 0) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.seamless-bg-single {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.seamless-photo-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.seamless-slides-track {
  position: relative;
  z-index: 2;
  width: 100%;
}

.seamless-slide {
  background: transparent !important;
  height: 100vh;
  height: 100dvh;
}

#section-creative-minds {
  text-align: center;
  justify-content: center;
}

.creative-minds-title {
  font-family: var(--font-serif-extratall);
  font-size: clamp(3.8rem, 8.5vw, 9.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

#section-statement {
  text-align: center;
  justify-content: center;
  padding: 6rem 3.5rem 4rem;
}

.statement-content {
  max-width: 1100px;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.2vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);
}

/* --------------------------------------------------------------------------
   Section 4: Services
   -------------------------------------------------------------------------- */
#section-services {
  background-color: var(--bg-dark);
  text-align: center;
  justify-content: center;
  padding: 5rem 3.5rem 2.5rem;
}

.services-header {
  width: 100%;
  margin-bottom: 1.2rem;
}

.services-title {
  font-family: var(--font-druk-cond);
  font-size: clamp(3rem, 7.5vw, 8.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #f0f0f0;
  line-height: 0.95;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.service-polaroid-card {
  position: relative;
  background-color: #e6e6e6;
  height: auto;
  padding: 10px 10px 14px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  user-select: none;
  will-change: transform, background-color, box-shadow, opacity;
  transition: transform 0.45s var(--ease-smooth), background-color 0.35s ease, box-shadow 0.45s var(--ease-smooth), opacity 0.4s ease;
}

.polaroid-frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.polaroid-image-window {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #1a1a1a;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.dome-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transition: opacity 0.45s var(--ease-smooth);
}

.dome-bw {
  background: radial-gradient(circle at 50% 95%, rgba(220, 220, 220, 0.45) 0%, rgba(130, 130, 130, 0.25) 45%, rgba(20, 20, 20, 0.95) 75%);
  opacity: 1;
}

.dome-color { opacity: 0; }

.service-polaroid-card[data-service="1"] .dome-color {
  background: radial-gradient(circle at 50% 95%, #00f2fe 0%, #4facfe 35%, #9b51e0 65%, #f72585 100%);
}
.service-polaroid-card[data-service="2"] .dome-color {
  background: radial-gradient(circle at 50% 95%, #ffbe0b 0%, #fb5607 35%, #ff006e 68%, #8338ec 100%);
}
.service-polaroid-card[data-service="3"] .dome-color {
  background: radial-gradient(circle at 50% 95%, #76ff03 0%, #2979ff 35%, #f50057 68%, #e0aaff 100%);
}
.service-polaroid-card[data-service="4"] .dome-color {
  background: radial-gradient(circle at 50% 95%, #00f0ff 0%, #7000ff 38%, #e100ff 72%, #ff007f 100%);
}

.polaroid-bottom {
  height: auto;
  min-height: 120px;
  padding: 12px 4px 4px 4px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.polaroid-title {
  font-family: var(--font-druk-cond);
  font-size: clamp(1.15rem, 1.35vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #121212;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.polaroid-short-desc {
  font-family: var(--font-satoshi);
  font-size: clamp(0.72rem, 0.8vw, 0.8rem);
  font-weight: 500;
  line-height: 1.4;
  color: #2b2b2b;
  opacity: 0.85;
  transform: translateY(0);
  margin-bottom: 0.4rem;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-smooth);
}

.click-hint {
  font-family: var(--font-satoshi);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555555;
  opacity: 0.75;
  padding-top: 2px;
  transition: opacity 0.3s ease, color 0.3s ease;
}

@media (hover: hover) {
  .service-polaroid-card:hover {
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 255, 255, 0.15);
  }
  .service-polaroid-card:hover .dome-bw { opacity: 0; }
  .service-polaroid-card:hover .dome-color { opacity: 1; }
  .service-polaroid-card:hover .polaroid-title { color: #000000; }
  .service-polaroid-card:hover .polaroid-short-desc { opacity: 1; color: #111111; }
  .service-polaroid-card:hover .click-hint { opacity: 1; color: #000000; }
}

.services-mobile-dots { display: none; }

.services-footer-tags {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1460px;
  margin-top: 2.5rem;
  font-family: var(--font-satoshi);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   Section 5: We Get It
   -------------------------------------------------------------------------- */
#section-we-get-it {
  background-color: var(--bg-dark);
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  min-height: 42vh;
  min-height: 42dvh;
  padding: 4.5rem 3.5rem 1rem;
}

.we-get-it-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.we-get-it-title {
  font-family: var(--font-druk-cond);
  font-size: clamp(3.5rem, 9vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #efefef;
  line-height: 0.95;
  text-transform: uppercase;
}

.we-get-it-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 3rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Section 6: Human Approach (Interactive 3D Cylindrical Option Wheel)
   -------------------------------------------------------------------------- */
#section-option-wheel {
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3.5rem 4rem;
  min-height: 80vh;
  min-height: 80dvh;
  position: relative;
  overflow: hidden;
}

.option-wheel-layout {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 560px;
  position: relative;
}

.option-wheel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-shrink: 0;
}

.option-wheel-track-bar {
  width: 3px;
  height: 180px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.option-wheel-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 25%;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  transition: transform 0.45s var(--ease-smooth);
}

.option-wheel-container {
  flex: 1;
  position: relative;
  height: 520px;
  perspective: 1200px;
  perspective-origin: 20% 50%;
  user-select: none;
  touch-action: none;
  cursor: grab;
  outline: none;
}

.option-wheel-container.is-dragging {
  cursor: grabbing;
}

.option-wheel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.option-wheel-item {
  position: absolute;
  left: 0;
  top: 50%;
  transform-origin: left center;
  cursor: pointer;
  max-width: 960px;
  will-change: transform, opacity, filter;
  transition: color 0.3s ease;
}

.option-wheel-item-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.2vw, 5.5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.option-wheel-item-desc {
  font-family: var(--font-satoshi);
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  letter-spacing: 0.01em;
  margin-top: 0.75rem;
  display: block;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.option-wheel-item.is-selected .option-wheel-item-desc {
  color: #ffffff;
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Section 7: Case Study Showcase
   -------------------------------------------------------------------------- */
#section-case-study {
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3.5rem 4rem;
  min-height: 100vh;
  min-height: 100dvh;
}

.case-showcase-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.case-tabs-nav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.2rem;
}
.case-tabs-nav::-webkit-scrollbar { display: none; }

.case-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font-satoshi);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-expo);
}
.case-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.case-tab-btn.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.case-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.case-showcase-headline {
  font-family: var(--font-druk-cond);
  font-size: clamp(2.4rem, 6.2vw, 6.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
}

.case-showcase-headline .serif-italic {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.04em;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-left: -0.06em;
  margin-right: 0.18em;
  vertical-align: baseline;
  color: #ffffff;
}

.case-meta-row { display: flex; align-items: center; gap: 1rem; }

.case-result-badge {
  font-family: var(--font-satoshi);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lime);
}

.case-showcase-paragraph {
  font-family: var(--font-satoshi);
  font-size: clamp(0.95rem, 1.3vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 1050px;
  letter-spacing: 0.01em;
}

.case-stats-grid {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat-box { display: flex; flex-direction: column; gap: 0.3rem; }

.stat-number {
  font-family: var(--font-druk-cond);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-satoshi);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Section 8: Marquee & Footer
   -------------------------------------------------------------------------- */
#section-footer {
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 3.5rem 4rem;
  min-height: 100vh;
  min-height: 100dvh;
}

.marquee-container {
  width: 100vw;
  margin-left: -3.5rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 1.5rem 0;
  display: flex;
}

.marquee-content {
  display: flex;
  gap: 0;
  animation: marqueeScroll 24s linear infinite;
  flex-shrink: 0;
}
.marquee-container:hover .marquee-content {
  animation-play-state: running; /* Do not pause when hovered */
}

.marquee-text-item {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 6.2rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  margin-right: 0.85em;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
  padding-bottom: 2.5rem;
}

.footer-brand-letters {
  display: flex;
  align-items: flex-end;
  gap: 0.18vw;
  flex-shrink: 0;
}

.footer-letter {
  height: clamp(4.5rem, 14vw, 16rem);
  width: auto;
  object-fit: contain;
  margin: 0;
  transition: transform 0.35s var(--ease-out-expo), filter 0.35s ease;
}

.footer-letter:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.3);
}

.footer-letter-symbol {
  height: clamp(4.5rem, 14vw, 16rem);
  margin-left: 0.15vw;
}

.footer-contact-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: var(--font-satoshi);
  font-size: clamp(1rem, 1.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.footer-contact-info a:hover { opacity: 0.7; }

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.8rem;
  font-family: var(--font-satoshi);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-bar .island-credit {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Service Details Modal
   ========================================================================== */

.service-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s ease;
}
.service-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal-drawer {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 3rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.05);
  transform: translateY(40px) scale(0.96);
  transition: transform 0.45s var(--ease-out-expo);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.service-modal-backdrop.is-open .service-modal-drawer {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.5rem;
}

.modal-badge-group { display: flex; flex-direction: column; gap: 0.4rem; }

.modal-badge-number {
  font-family: var(--font-satoshi);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-lime);
}

.modal-service-title {
  font-family: var(--font-druk-cond);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s var(--ease-out-expo);
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg) scale(1.1);
}

.modal-lead-desc {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.modal-subservices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
}

.modal-subservice-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease, background 0.3s ease;
}
.modal-subservice-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
}

.modal-subservice-num {
  font-family: var(--font-satoshi);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.modal-subservice-title {
  font-family: var(--font-satoshi);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.modal-subservice-desc {
  font-family: var(--font-satoshi);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  margin-top: 0.5rem;
}

.modal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  font-family: var(--font-satoshi);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, background 0.3s ease;
}
.modal-action-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
  background-color: #f0f0f0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .site-header { padding: 1.8rem 2rem 5rem 2rem; }
  .site-footer-bar { padding: 0 2rem; }
  .slide-section { padding: 6rem 2rem 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .service-polaroid-card { height: auto; }
  .services-footer-tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; text-align: left; }
  .modal-subservices-grid { grid-template-columns: 1fr; }
  .option-wheel-layout { gap: 2.5rem; height: 520px; }
  .footer-main-row { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-contact-info { text-align: left; }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.2rem 1.25rem 4.5rem 1.25rem;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.74) 22%,
      rgba(0, 0, 0, 0.52) 44%,
      rgba(0, 0, 0, 0.28) 68%,
      rgba(0, 0, 0, 0.08) 84%,
      rgba(0, 0, 0, 0) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  }
  body.on-light-section .site-header {
    background: linear-gradient(
      to bottom,
      rgba(202, 202, 202, 0.94) 0%,
      rgba(202, 202, 202, 0.78) 22%,
      rgba(202, 202, 202, 0.52) 44%,
      rgba(202, 202, 202, 0.26) 68%,
      rgba(202, 202, 202, 0.08) 84%,
      rgba(202, 202, 202, 0) 100%
    );
  }

  .site-footer-bar {
    padding: 0 1.25rem;
    height: 32px;
    font-size: 0.62rem;
    background-color: #000000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    mask-image: none;
    -webkit-mask-image: none;
  }
  body.on-light-section .site-footer-bar {
    background-color: #000000;
  }
  .footer-bar-tagline { font-size: 0.62rem; }

  .site-header .header-left, .site-header .header-right {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
  .site-header .header-center { top: 1.1rem; }
  .site-header .brand-monogram { font-size: 1.7rem; }
  .side-nav { display: none; }

  .slide-section {
    padding: 6.8rem 1.25rem 3.2rem 1.25rem;
    min-height: 100dvh;
    justify-content: flex-start;
  }

  #section-hero { padding: 0; justify-content: center; background-color: #cacaca; }
  .hero-wrapper {
    height: 100dvh;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    justify-content: center;
    background-color: #cacaca;
  }
  .hero-letters-stage {
    max-width: 95vw;
    padding: 0 0.5rem;
    gap: 0.2vw;
  }
  .hero-letter {
    height: clamp(6.5rem, 18vh, 12rem);
    margin: 0;
  }
  .hero-letter-symbol {
    height: clamp(6.5rem, 18vh, 12rem);
    margin-left: 0.2vw;
  }
  .hero-cesar-layer {
    height: 58vh;
    max-height: 480px;
  }
  .hero-scroll-btn { bottom: 1.8rem; }

  #section-creative-minds { justify-content: center; }
  .creative-minds-title { font-size: clamp(2.6rem, 11.5vw, 4.2rem); }

  #section-statement { padding: 6.8rem 1.25rem 2.8rem; justify-content: center; }
  .statement-content { gap: 1.6rem; }
  .statement-text { font-size: clamp(1.1rem, 4.6vw, 1.45rem); line-height: 1.45; }

  #section-services { padding: 6.8rem 1.25rem 2.5rem; justify-content: flex-start; }
  .services-header { margin-top: 0.2rem; margin-bottom: 1rem; }
  .services-title { font-size: clamp(2.8rem, 13.5vw, 5.5rem); }
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.2rem;
    padding: 0.6rem 0.5rem 1rem 0.5rem;
    scrollbar-width: none;
    width: 100%;
  }
  .services-grid::-webkit-scrollbar { display: none; }

  .service-polaroid-card {
    flex: 0 0 80vw;
    max-width: 300px;
    height: 415px;
    scroll-snap-align: center;
    padding: 10px 10px 14px 10px;
    background-color: #383838;
    transform: scale(0.95);
    opacity: 0.65;
  }
  .service-polaroid-card .dome-bw { opacity: 1; }
  .service-polaroid-card .dome-color { opacity: 0; }
  .service-polaroid-card .polaroid-title { font-size: 1.35rem; color: #cccccc; margin-bottom: 0.35rem; }
  .service-polaroid-card .polaroid-short-desc { font-size: 0.74rem; line-height: 1.38; color: #222222; opacity: 0; transform: translateY(6px); }
  .service-polaroid-card .click-hint { font-size: 0.66rem; color: #666; opacity: 0; }

  .service-polaroid-card.is-active-card {
    background-color: #f4f4f4;
    transform: scale(1.02) translateY(-6px);
    opacity: 1;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 255, 255, 0.2);
  }
  .service-polaroid-card.is-active-card .dome-bw { opacity: 0; }
  .service-polaroid-card.is-active-card .dome-color { opacity: 1; }
  .service-polaroid-card.is-active-card .polaroid-title { color: #000000; }
  .service-polaroid-card.is-active-card .polaroid-short-desc { opacity: 1; transform: translateY(0); }
  .service-polaroid-card.is-active-card .click-hint { opacity: 0.85; }

  .polaroid-bottom { height: 120px; padding: 10px 2px 4px 2px; }

  .services-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin: 0.8rem 0 0.4rem;
  }
  .mobile-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    transition: all 0.35s var(--ease-out-expo);
    cursor: pointer;
  }
  .mobile-dot.active {
    width: 22px;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  }

  .services-footer-tags { grid-template-columns: 1fr; gap: 0.4rem; font-size: 0.72rem; margin-top: 0.6rem; text-align: center; }

  #section-we-get-it { justify-content: center; }
  .we-get-it-title { font-size: clamp(2.8rem, 13.5vw, 5.5rem); }
  .we-get-it-subtitle { font-size: clamp(1.25rem, 5.2vw, 1.95rem); }

  #section-option-wheel { padding: 6.8rem 1.25rem 2.5rem; justify-content: center; }
  .option-wheel-layout { gap: 1.2rem; height: 460px; width: 100%; }
  .option-wheel-track { display: none; }
  .option-wheel-container { height: 440px; }
  .option-wheel-item-title { font-size: clamp(1.8rem, 7.2vw, 2.6rem); }
  .option-wheel-item-desc { font-size: 0.88rem; line-height: 1.45; }

  #section-case-study { padding: 6.8rem 1.25rem 2.8rem; justify-content: flex-start; }
  .case-showcase-container { gap: 1.4rem; width: 100%; }
  .case-tabs-nav { padding-bottom: 0.8rem; gap: 0.5rem; }
  .case-tab-btn { padding: 0.48rem 0.95rem; font-size: 0.72rem; }
  .case-showcase-headline { font-size: clamp(1.8rem, 7.2vw, 2.8rem); line-height: 1.05; }
  .case-showcase-paragraph { font-size: 0.88rem; line-height: 1.48; }
  .case-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1rem; margin-top: 0.5rem; }
  .stat-number { font-size: 1.85rem; }
  .stat-label { font-size: 0.65rem; }

  #section-footer { padding: 6.8rem 1.25rem 3.5rem; justify-content: space-between; }
  .marquee-container { margin-left: -1.25rem; padding: 1rem 0; }
  .marquee-text-item { font-size: clamp(1.8rem, 7.2vw, 2.8rem); gap: 1.8rem; }
  .footer-brand-letters { flex-wrap: nowrap; gap: 0.2vw; }
  .footer-letter { height: clamp(3.4rem, 15vw, 6.5rem); margin: 0; }
  .footer-letter-symbol { height: clamp(3.4rem, 15vw, 6.5rem); margin-left: 0.2vw; }
  .footer-contact-info { font-size: 1rem; text-align: left; margin-bottom: 0.4rem; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; font-size: 0.78rem; padding-top: 1.2rem; }
  .footer-bottom-bar .island-credit { font-size: 0.88rem; }

  .service-modal-backdrop { padding: 0; align-items: flex-end; }
  .service-modal-drawer { border-radius: 20px 20px 0 0; max-height: 88vh; padding: 1.8rem 1.3rem; gap: 1.2rem; }
  .modal-header { padding-bottom: 0.8rem; }
  .modal-service-title { font-size: 1.8rem; }
  .modal-lead-desc { font-size: 0.98rem; }
  .modal-subservices-grid { gap: 0.85rem; }
  .modal-subservice-card { padding: 1rem; }
  .modal-subservice-title { font-size: 0.9rem; }
  .modal-subservice-desc { font-size: 0.78rem; }
  .modal-action-btn { width: 100%; justify-content: center; padding: 0.82rem 1.4rem; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .case-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-polaroid-card { flex: 0 0 82vw; }
  .footer-bar-tagline { display: none; }
}
