/* ============================================
   Lucky Lot. — Brochure Site Prototype
   ============================================ */

/* --- @font-face --- */
@font-face {
  font-family: 'Klod';
  src: url('edition-studio-Klod-TRIAL/TRIALKlod-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Queens';
  src: url('assets/fonts/Queens/Web/Queens_W-Regular.woff2') format('woff2'),
       url('assets/fonts/Queens/Web/Queens_W-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('assets/fonts/PP Neue Montreal - Book v2.6/PPNeueMontreal-Book.woff2') format('woff2'),
       url('assets/fonts/PP Neue Montreal - Book v2.6/PPNeueMontreal-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('assets/fonts/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand colours */
  --color-black: #0d0d0d;          /* 95% black */
  --color-white: #ffffff;
  --color-sand: #f2d9b1;           /* Sand */
  --color-lime: #dbf9bd;           /* Lime */
  --color-dark-green: #566055;     /* Dark Green */
  --color-placeholder: #d0d0d0;    /* Image placeholder grey */
  --color-blush: #f4c6c6;           /* Blush pink */
  --color-purple: #c9add6;          /* Purple hover */

  /* Typography */
  --font-heading: 'Queens', Georgia, 'Times New Roman', serif;
  --font-body: 'PP Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- Welcome Interstitial --- */
.welcome {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  transition: opacity 0.8s ease;
}

.welcome.dismissed {
  opacity: 0;
  pointer-events: none;
}

.welcome-content {
  max-width: 650px;
}

.welcome-headline {
  font-family: 'Klod', var(--font-heading);
  font-size: clamp(6rem, 12.5vw, 12.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-black);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.welcome-wheel {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 4s ease-in, transform 0.3s ease, background 0.3s ease;
  animation: slowSpin 20s linear infinite;
}

.welcome-wheel.visible {
  opacity: 1;
}

.welcome-wheel:hover {
  background: var(--color-lime);
}

.welcome-wheel:active {
  transform: scale(0.88);
}

.welcome-wheel span {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: left;
  color: var(--color-black);
}

/* --- Fixed Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.site-header.revealed {
  opacity: 1;
}

.logo {
  pointer-events: auto;
  display: block;
  height: 40px;
}

.logo img {
  height: 100%;
  width: auto;
}

/* Dark/light logo toggle — dark by default (for lime hero) */
.logo-light { display: none; }
.logo-dark  { display: block; }

.site-header.light .logo-light { display: block; }
.site-header.light .logo-dark  { display: none; }

.location {
  font-family: var(--font-body);
  font-size: 1.125rem;              /* Figma: 18px */
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-black);
  pointer-events: none;
  transition: color 0.4s ease;
}

.site-header.light .location {
  color: var(--color-white);
}

/* --- Home Hero (sticky with JS scroll-driven text rotation) --- */
.hero-wrapper {
  position: relative;
  height: 300vh;
  min-height: 1800px;
}

.home-hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--color-lime);
  padding: 0 8%;
}

.home-hero-slide {
  position: absolute;
  left: 8%;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 10vh;
  max-width: 960px;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}

.home-hero-slide.active {
  pointer-events: auto;
}

.home-hero-copy {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.home-hero-copy .accent {
  font-family: var(--font-heading);
}

.home-hero-btn {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  padding: 14px 36px;
  border: 2px solid var(--color-black);
  color: var(--color-black);
  background: var(--color-white);
  z-index: 2;
}

.home-hero-btn:hover {
  background: var(--color-white);
  border-color: var(--color-black);
  opacity: 0.7;
}

/* --- Services Section (scrolls over hero) --- */
.services {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  background: transparent;
}

.services-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-bottom: 80px;
}

.service-link {
  font-family: var(--font-body);
  font-size: 0.875rem;              /* Figma: 14px */
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 2.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  padding: 12px 28px;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.service-link:hover {
  background: var(--color-lime);
  border-color: var(--color-lime);
  color: var(--color-black);
}

.services-copy {
  position: relative;
  z-index: 1;
}

.services-tagline {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 3.75rem);   /* Figma: 60px */
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}

.services-tagline .accent {
  font-family: var(--font-heading);
}

.services-btn {
  margin-top: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.875rem;              /* Figma: 30px */
  padding: 16px 48px;
  border-radius: 50px;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: var(--color-purple);
  color: var(--color-black);
  border-color: var(--color-purple);
}

.btn-white-solid {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn-white-solid:hover {
  background: var(--color-lime);
  color: var(--color-black);
  border-color: var(--color-lime);
}

/* --- Clients Section --- */
.clients {
  position: relative;
  z-index: 1;
  background: var(--color-lime);
  padding: 100px 40px 120px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.75rem);   /* Figma: 60px */
  font-weight: 400;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.client-name-display {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.client-name-large {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.client-name-script {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
}

.client-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.7;
}

.killruddery {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.testimonials {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: normal;
  line-height: 1.4;
  margin-bottom: 24px;
}

.testimonial-extra {
  font-style: normal;
  opacity: 0.8;
}

.testimonial cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
  opacity: 0.25;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  opacity: 0.8;
}

/* --- Clients Shutter Overlay --- */
.clients-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: var(--color-lime);
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.clients-overlay.active {
  transform: translateY(0);
  pointer-events: auto;
}

.clients-overlay.dismissing {
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.clients-close {
  position: fixed;
  top: 32px;
  right: 40px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--color-black);
  cursor: pointer;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 210;
  pointer-events: none;
}

.clients-overlay.active ~ .clients-close,
.clients-close.visible {
  opacity: 0.5;
  pointer-events: auto;
}

.clients-close:hover {
  opacity: 1;
}

/* Overlay content layout — all content static, visible as shutter drops */
.clients-overlay-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.clients-overlay-logos {
  overflow: hidden;
  max-width: 1000px;
  margin-bottom: 80px;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* Testimonials inside overlay */
.clients-overlay .testimonials {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 280px;
}

.clients-overlay .testimonial {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.clients-overlay .testimonial-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* --- Contact / Get in Touch Section --- */
.contact {
  background: var(--color-sand);
  padding: 120px 40px 100px;
  text-align: center;
}

.contact-title {
  margin-bottom: 70px;
}

.contact-photo {
  max-width: 700px;
  margin: 0 auto 80px;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-people {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}

.person {
  text-align: center;
  width: 240px;
}

.person-name {
  font-family: var(--font-body);
  font-size: 1.875rem;              /* Figma: 30px */
  font-weight: 400;
  margin-bottom: 2px;
  line-height: 1.2;
}

.person-role,
.person-location {
  font-family: var(--font-body);
  font-size: 1.875rem;              /* Figma: 30px */
  line-height: 1.2;
}

.globe-icon {
  color: var(--color-black);
  display: flex;
  align-items: center;
}

.contact-actions {
  text-align: center;
  margin-bottom: 60px;
}

.contact-caption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-black);
  margin-top: 10px;
  opacity: 0.7;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  color: var(--color-black);
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.6;
}

/* --- Work With Us Shutter Overlay --- */
.work-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: var(--color-purple);
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.work-overlay.active {
  transform: translateY(0);
  pointer-events: auto;
}

.work-overlay.dismissing {
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.work-overlay-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.work-overlay-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.work-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 40px 36px;
  width: 280px;
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: var(--color-black);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.work-card p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
}

.work-overlay-caption {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-black);
  margin-top: 40px;
  opacity: 0.7;
}

.work-overlay-caption a {
  color: var(--color-black);
  text-decoration: underline;
}

.work-overlay-caption a:hover {
  opacity: 0.6;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--color-dark-green);
  padding: 108px 57px 87px;
}

.footer-info {
  margin-bottom: 0;
}

.footer-name,
.footer-location,
.footer-email a {
  font-family: var(--font-body);
  font-size: 1.5625rem;             /* Figma: 25px */
  color: var(--color-white);
  line-height: auto;
}

.footer-email a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
}

.copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;               /* 12px */
  color: var(--color-white);
}

.footer-icon {
  width: 80px;
  height: auto;
}

.privacy-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-link:hover {
  opacity: 0.7;
}

/* --- Floating Zoom Bubble --- */
.zoom-bubble {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  background: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  mix-blend-mode: overlay;
  opacity: 0;
  animation: slowSpin 20s linear infinite;
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.zoom-bubble.revealed {
  opacity: 1;
}

.zoom-bubble.hidden {
  opacity: 0;
  pointer-events: none;
}

.zoom-bubble:hover {
  background: var(--color-purple);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.zoom-bubble:active {
  transform: scale(0.88);
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.zoom-bubble span {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-black);
}

/* --- Service Image Stack Overlay --- */
.service-stack {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(13, 13, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-stack.active {
  opacity: 1;
  pointer-events: auto;
}

.service-stack-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--color-white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 310;
}

.service-stack-close:hover {
  opacity: 1;
}

.service-stack-images {
  position: relative;
  width: 90vw;
  height: 80vh;
}

.stack-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}

.stack-photo.visible {
  opacity: 1;
}

/* "Thrown down" entrance — starts scaled up and off-rotation, lands into place */
.stack-photo.thrown {
  animation: throwDown 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes throwDown {
  0% {
    opacity: 0;
    scale: 1.15;
    filter: blur(2px);
  }
  60% {
    opacity: 1;
    scale: 1.02;
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    scale: 1;
    filter: blur(0px);
  }
}

/* Each photo gets a unique askew position — like photos tossed on a table */
.stack-photo[data-index="0"] { transform: translate(-50%, -50%) rotate(-3deg); }
.stack-photo[data-index="1"] { transform: translate(-50%, -50%) rotate(2.5deg) translate(15px, -12px); }
.stack-photo[data-index="2"] { transform: translate(-50%, -50%) rotate(-1.5deg) translate(-20px, 8px); }
.stack-photo[data-index="3"] { transform: translate(-50%, -50%) rotate(4deg) translate(12px, 18px); }
.stack-photo[data-index="4"] { transform: translate(-50%, -50%) rotate(-2.5deg) translate(-14px, -10px); }
.stack-photo[data-index="5"] { transform: translate(-50%, -50%) rotate(1.8deg) translate(18px, 6px); }
.stack-photo[data-index="6"] { transform: translate(-50%, -50%) rotate(-4.5deg) translate(-8px, 14px); }

.stack-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.7;
  white-space: nowrap;
}

.stack-counter {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-white);
  opacity: 0.4;
}

/* ============================================
   Scroll-Triggered Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.fade-in-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-children.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.fade-in-children.visible > *:nth-child(3) { transition-delay: 0.16s; }
.fade-in-children.visible > *:nth-child(4) { transition-delay: 0.24s; }
.fade-in-children.visible > *:nth-child(5) { transition-delay: 0.32s; }
.fade-in-children.visible > *:nth-child(6) { transition-delay: 0.4s; }
.fade-in-children.visible > *:nth-child(7) { transition-delay: 0.48s; }

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

@media (max-width: 768px) {
  .site-header {
    padding: 20px 24px;
  }

  .logo {
    height: 30px;
  }

  .location {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-spacer {
    min-height: 500px;
  }

  .services {
    padding: 100px 24px 60px;
  }

  .services-nav {
    gap: 6px 16px;
  }

  .service-link {
    font-size: 0.75rem;
    padding: 10px 20px;
  }

  .clients {
    padding: 70px 24px 80px;
  }

  .testimonials {
    max-width: 100%;
    padding: 0 20px;
  }

  .client-logos {
    gap: 30px 40px;
  }

  .contact {
    padding: 70px 24px 60px;
  }

  .contact-people {
    flex-direction: column;
    gap: 30px;
  }

  .globe-icon {
    order: -1;
  }

  .contact-actions {
    text-align: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .site-footer {
    padding: 80px 24px 50px;
  }

  .zoom-bubble {
    width: 90px;
    height: 90px;
    bottom: 20px;
    right: 20px;
  }

  .zoom-bubble span {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-headline,
  .services-tagline,
  .section-title {
    font-size: 2rem;
  }
}
