/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --black:        #0a0a0a;
  --off-white:    #f5f2ed;
  --off-white-2:  #faf8f5;
  --gold:         #b8965a;
  --gold-light:   #d4b07a;
  --warm-gray:    #6b6560;
  --surface:      #111010;
  --surface-2:    #1a1917;
  --border:       rgba(184, 150, 90, 0.2);
  --border-light: rgba(184, 150, 90, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --content-max: 1200px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--warm-gray);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
}

.gold { color: var(--gold); }
.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  padding-top: 8px;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--off-white);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.65);
  transition: color 0.25s var(--ease-out);
}

.nav__links a:hover {
  color: var(--off-white);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out);
  white-space: nowrap;
}

.nav__cta:hover {
  transform: scale(1.03) translateY(-1px);
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
  color: var(--black) !important;
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--off-white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 24px;
  z-index: 999;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--off-white);
  font-weight: 600;
}

.nav__mobile .nav__cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black);
  display: flex;
  align-items: flex-start;
  padding-top: var(--nav-h);
  padding-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Subtle grain on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184, 150, 90, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
  padding-top: 36px;
  padding-bottom: clamp(40px, 6vw, 80px);
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--off-white);
}

.hero__headline .line-1 {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
}

.hero__headline .line-2 {
  display: block;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 540px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  align-self: flex-start;
  transition: transform 0.3s var(--ease-out), background 0.25s, box-shadow 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
  border-radius: 100px;
}

.hero__cta:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 150, 90, 0.35);
}

.hero__cta:hover::before {
  transform: translateX(0);
}

.hero__cta span {
  position: relative;
  z-index: 1;
}

.hero__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__photo-frame {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  /* Fade into hero background on bottom and sides */
  -webkit-mask-image:
    linear-gradient(to bottom,  black 55%, transparent 100%),
    linear-gradient(to right,   transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to bottom,  black 55%, transparent 100%),
    linear-gradient(to right,   transparent 0%, black 12%, black 88%, transparent 100%);
  mask-composite: intersect;
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__photo-caption {
  display: none;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: #0d0c0b;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 40s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--gold);
  padding: 0 48px;
  opacity: 0.75;
  white-space: nowrap;
}

.marquee__sep {
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--off-white-2);
  padding: var(--section-pad) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__section-label {
  margin-bottom: 8px;
}

.about__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
}

.about__body {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--warm-gray);
  line-height: 1.85;
}

.about__body p + p {
  margin-top: 16px;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Stats */
.about__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(107, 101, 96, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.about__stat {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(107, 101, 96, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat:last-child {
  border-bottom: none;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* Video block — full width centered */
.about__video {
  max-width: 860px;
  margin: 64px auto 0;
  text-align: center;
}

/* Video intro */
.video-intro {
  margin-bottom: 16px;
}

.video-intro__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.video-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px;
  line-height: 1.2;
}

.video-intro__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* Video placeholder */
.video-placeholder {
  background-image: url('../images/video-poster.jpg');
  background-size: cover;
  background-position: center top;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  group: true;
}

.video-placeholder:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184, 150, 90, 0.2);
}

.video-placeholder__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.video-placeholder__play {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.video-placeholder:hover .video-placeholder__play {
  transform: scale(1.08);
  background: #fff;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}

.video-placeholder__play svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
  margin-left: 4px;
}

.video-placeholder__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.video-placeholder__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.video-placeholder__sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #fff;
  opacity: 0.85;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--black);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(48px, 7vw, 72px);
  gap: 24px;
}

.services__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  align-items: start;
  transition: border-top-color 0.3s var(--ease-out);
}

.service-item:last-of-type {
  border-bottom: 1px solid var(--border-light);
}

.service-item:hover {
  border-top-color: rgba(184, 150, 90, 0.4);
}

.service-item__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.7;
  padding-top: 4px;
  letter-spacing: 0.05em;
}

.service-item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.2;
}

.service-item__desc {
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 620px;
}

.services__cta-row {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.services__cta-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: rgba(245, 242, 237, 0.55);
}

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.experience__header {
  margin-bottom: clamp(48px, 7vw, 72px);
}

.experience__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  margin-top: 12px;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107, 101, 96, 0.15);
  border: 1px solid rgba(107, 101, 96, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.exp-card {
  background: var(--off-white-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s var(--ease-out);
}

.exp-card:hover {
  background: #fff;
}

.exp-card__company {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
}

.exp-card__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.exp-card__desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-top: 4px;
}

.experience__cta-row {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.experience__cta-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--warm-gray);
}

/* ============================================================
   SHARED CTA BUTTON (ghost style for light BGs)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s, color 0.25s;
  cursor: pointer;
  border: none;
}

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

.btn--gold:hover {
  transform: scale(1.03) translateY(-1px);
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
  color: var(--black);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(245, 242, 237, 0.25);
}

.btn--ghost-dark:hover {
  transform: scale(1.03) translateY(-1px);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.15);
}

.btn--ghost-warm {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(10, 10, 10, 0.25);
}

.btn--ghost-warm:hover {
  transform: scale(1.03) translateY(-1px);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(184, 150, 90, 0.12);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--surface);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.contact__inner {
  max-width: 760px;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 32px;
}

.contact__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.contact__body {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 600px;
}

.contact__email-wrap {
  margin-bottom: 40px;
}

.contact__email-label {
  margin-bottom: 12px;
}

.contact__email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  border-bottom: 1px solid rgba(184, 150, 90, 0.3);
  padding-bottom: 8px;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.contact__email:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.contact__open-door {
  font-size: 0.88rem;
  color: var(--warm-gray);
  opacity: 0.65;
  line-height: 1.75;
  max-width: 520px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-light);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.5;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--warm-gray);
  opacity: 0.4;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__photo-col {
    order: -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__photo-frame {
    max-width: 160px;
    aspect-ratio: 3 / 4;
  }


  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .experience__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__cta-row,
  .experience__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero__photo-col {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__photo-frame {
    max-width: 120px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-item__num {
    font-size: 0.8rem;
  }

  .experience__grid {
    grid-template-columns: 1fr;
  }

  .exp-card {
    padding: 28px 24px;
  }

  .about__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about__stat {
    flex: 1;
    min-width: 140px;
  }
}
