/* ============================================================
   D. Myers Industries — styles.css
   Navy + Gold professional palette
   ============================================================ */

:root {
  --navy:       #0B1F3A;
  --navy-dark:  #081629;
  --navy-mid:   #122647;
  --gold:       #C9A84C;
  --gold-light: #E0C06B;
  --gold-dark:  #A8872F;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --gray-100:   #F1F0ED;
  --gray-400:   #9CA3AF;
  --gray-600:   #6B7280;
  --gray-800:   #1F2937;
  --text:       #2D2D2D;

  --font-head:  'Outfit', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.25s ease;
  --container:  1200px;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 9999;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ── Scroll Statement ── */
.scroll-statement {
  background: var(--navy-dark);
  overflow: hidden;
  padding: 72px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.statement-track {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.statement-track span {
  font-family: var(--font-head);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
}
.statement-track .s-sep {
  color: var(--gold) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  opacity: 0.7;
}

/* ── Process Pin ── */
.process-pin {
  position: relative;
  height: 100vh;
  background: var(--navy-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-label {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.process-progress-bar {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 140px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.process-progress-fill {
  width: 100%;
  height: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: height 0.15s linear;
}
.process-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 max(40px, calc((100% - 1200px) / 2 + 40px));
  opacity: 0;
  pointer-events: none;
}
.process-num {
  font-family: var(--font-head);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.05em;
  user-select: none;
}
.process-heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.process-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  max-width: 520px;
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--navy-dark);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.m-dot { color: var(--gold) !important; font-size: 1rem !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Images ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-img {
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 640px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
}
.service-card-img {
  width: calc(100% + 60px);
  margin: -36px -30px 24px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
}
.portfolio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.event-thumb {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
  align-self: center;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gold-text  { color: var(--gold); }
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--gold { color: var(--gold-light); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-header--light h2 { color: var(--white); }
.section-header--light .section-sub { color: rgba(255,255,255,0.72); }
.section-sub { font-size: 1rem; color: var(--gray-600); max-width: 580px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 4px 16px rgba(201,168,76,0.22); }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }
.btn-lg { padding: 16px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-left a, .top-bar-right a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--gold); }
.top-bar-left a i, .top-bar-right a i { margin-right: 5px; color: var(--gold); }
.top-social { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); transition: all var(--transition); }
.top-social:hover { background: var(--gold); color: var(--navy-dark) !important; }
.top-social i { margin: 0 !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.14); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-dmi {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  background: var(--navy);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.logo-full {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-800);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); background: var(--gray-100); }
.nav-cta { padding: 10px 22px; font-size: 0.85rem; }
.hamburger { display: none; background: none; border: none; font-size: 1.4rem; color: var(--navy); cursor: pointer; padding: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a6e 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; background: rgba(8,22,41,0.85); z-index: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 60px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 780px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
}
.stats-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.stat-item { display: flex; align-items: center; gap: 14px; padding: 10px 36px; }
.stat-icon { font-size: 1.6rem; color: var(--gold); }
.stat-text { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 120px 0 140px; background: var(--off-white); clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-box { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(201,168,76,0.3);
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 18px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.about-badge-card i { font-size: 1.4rem; }
.about-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }
.about-text p { color: var(--gray-600); margin-bottom: 18px; font-size: 1rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.highlight-item i { color: var(--gold); font-size: 1rem; }

/* ============================================================
   SERVICES — zigzag feature rows
   ============================================================ */
.services { padding: 80px 0 140px; background: var(--white); clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%); margin-top: -48px; }
.services-feature { display: flex; flex-direction: column; gap: 0; }
.sf-row {
  display: grid;
  grid-template-columns: 80px 1fr 44%;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-100);
}
.sf-row:last-child { border-bottom: none; }
.sf-row--reverse { grid-template-columns: 80px 1fr 44%; direction: rtl; }
.sf-row--reverse > * { direction: ltr; }
.sf-meta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sf-num { font-family: var(--font-head); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; color: var(--gold); }
.sf-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
}
.sf-content h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); margin-bottom: 14px; }
.sf-content p { color: var(--gray-600); font-size: 0.96rem; line-height: 1.75; margin-bottom: 24px; max-width: 480px; }
.sf-img {
  width: 100%; height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.4s ease;
}
.sf-row:hover .sf-img { transform: scale(1.02); }
.service-link { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--gold-dark); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.service-link:hover { gap: 12px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: var(--navy); padding: 64px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip-text h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-strip-text p { color: rgba(255,255,255,0.65); font-size: 0.96rem; }

/* ============================================================
   HOW I CAN HELP
   ============================================================ */
.help { padding: 80px 0 140px; background: var(--navy); clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%); margin-top: -48px; }
.help-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.help-split-left { position: sticky; top: 100px; }
.help-intro { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 36px; max-width: 340px; }
.help-list { display: flex; flex-direction: column; }
.help-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.help-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.help-item-num { font-family: var(--font-head); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; color: var(--gold); padding-top: 4px; }
.help-item-body h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.help-item-body p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.75; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { padding: 80px 0 140px; background: var(--off-white); clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%); margin-top: -48px; }
.portfolio-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; margin-bottom: 48px; }
.portfolio-stack { display: flex; flex-direction: column; gap: 24px; }
.portfolio-card--featured .portfolio-img { height: 340px; }
.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(201,168,76,0.4);
}
.portfolio-info { padding: 24px; }
.portfolio-tag { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); background: rgba(201,168,76,0.1); padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 12px; }
.portfolio-info h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 10px; }
.portfolio-info p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }
.portfolio-cta { text-align: center; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 80px 0 140px; background: var(--white); clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%); margin-top: -48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

/* Editorial placement — varied spans */
.gallery-item--wide-tall:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery-item--portrait:nth-child(2)  { grid-column: span 2; grid-row: span 1; }
.gallery-item--portrait:nth-child(3)  { grid-column: span 2; grid-row: span 1; }
.gallery-item--square:nth-child(4)    { grid-column: span 2; grid-row: span 1; }
.gallery-item--wide-tall:nth-child(5) { grid-column: span 3; grid-row: span 2; }
.gallery-item--portrait:nth-child(6)  { grid-column: span 1; grid-row: span 2; }
.gallery-item--square:nth-child(7)    { grid-column: span 2; grid-row: span 1; }
.gallery-item--wide:nth-child(8)      { grid-column: span 3; grid-row: span 1; }
.gallery-item--wide:nth-child(9)      { grid-column: span 3; grid-row: span 1; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,22,41,0.75) 0%, rgba(8,22,41,0.1) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-expand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 100px;
  transform: translateY(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.gallery-item:hover .gallery-expand-pill { transform: translateY(0); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,22,41,0.94);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   EVENTS
   ============================================================ */
.events { padding: 100px 0; background: var(--navy-dark); }
.events-grid { display: flex; flex-direction: column; gap: 24px; }
.event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: all var(--transition);
}
.event-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.35); }
.event-date {
  flex-shrink: 0;
  width: 72px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-month { font-family: var(--font-head); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; color: var(--navy-dark); text-transform: uppercase; }
.event-day { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy-dark); line-height: 1.1; }
.event-info { flex: 1; }
.event-tag { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); background: rgba(201,168,76,0.12); padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 10px; }
.event-info h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.event-info p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px; }
.event-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.event-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.event-meta i { color: var(--gold); }
.event-btn { padding: 10px 22px; font-size: 0.82rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info .section-label { margin-bottom: 12px; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.contact-info > p { color: var(--gray-600); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-item > i { width: 42px; height: 42px; background: var(--navy); color: var(--gold); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-item div { display: flex; flex-direction: column; }
.contact-detail-item strong { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 2px; }
.contact-detail-item span { font-size: 0.92rem; color: var(--gray-600); }
.contact-socials { display: flex; gap: 10px; }
.contact-socials a { width: 38px; height: 38px; background: var(--off-white); border: 1px solid var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.9rem; transition: all var(--transition); }
.contact-socials a:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy); }
.req { color: var(--gold-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #DDD;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-note { font-size: 0.77rem; color: var(--gray-400); text-align: center; margin-top: -8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 56px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-dmi {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  background: var(--navy-mid);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.footer-logo-full { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--white); }
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 4px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.82rem; transition: all var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-list i { color: var(--gold); width: 14px; text-align: center; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   PORTFOLIO OVERLAY
   ============================================================ */
.portfolio-img-wrap { position: relative; overflow: hidden; }
.portfolio-img-wrap .portfolio-img { display: block; transition: transform 0.4s ease; }
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(11,31,58,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 80px 0 140px; background: var(--white); clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%); margin-top: -48px; }
.testimonials-layout { display: flex; flex-direction: column; gap: 24px; }
.testimonial-featured {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.testimonial-featured .t-stars { margin-bottom: 24px; }
.testimonial-featured .t-stars i { color: var(--gold); font-size: 1rem; }
.t-quote-lg { font-size: 1.25rem; color: rgba(255,255,255,0.88); line-height: 1.75; font-style: italic; margin-bottom: 32px; max-width: 820px; }
.testimonial-featured .t-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.testimonial-featured .t-avatar { background: var(--gold); color: var(--navy-dark); }
.testimonial-featured .t-info strong { color: var(--white); }
.testimonial-featured .t-info span { color: rgba(255,255,255,0.5); }
.testimonials-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
.t-stars { display: flex; gap: 3px; }
.t-stars i { color: var(--gold); font-size: 0.85rem; }
.t-quote { font-size: 0.96rem; color: var(--gray-600); line-height: 1.8; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.t-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem;
  flex-shrink: 0;
}
.t-info { display: flex; flex-direction: column; gap: 2px; }
.t-info strong { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.t-info span { font-size: 0.78rem; color: var(--gray-400); }

/* GSAP handles all reveal animations */

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Large tablet / small desktop (≤1024px) ── */
@media (max-width: 1024px) {
  /* Nav — switch to hamburger before links start crowding */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius); }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-inner { height: 76px; padding: 0 24px; }
  .nav-logo-img { height: 54px; }

  /* Layout */
  .sf-row, .sf-row--reverse { grid-template-columns: 60px 1fr 38%; gap: 32px; }
  .help-split { grid-template-columns: 1fr; gap: 40px; }
  .help-split-left { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-box { max-width: 520px; margin: 0 auto; }
  .about-badge-card { right: 0; bottom: -16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonial-featured { padding: 40px; }
  .t-quote-lg { font-size: 1.1rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-stack { flex-direction: row; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .gallery-item--wide-tall:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item--portrait:nth-child(2)  { grid-column: span 2; grid-row: span 1; }
  .gallery-item--portrait:nth-child(3)  { grid-column: span 2; grid-row: span 1; }
  .gallery-item--square:nth-child(4)    { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide-tall:nth-child(5) { grid-column: span 2; grid-row: span 2; }
  .gallery-item--portrait:nth-child(6)  { grid-column: span 2; grid-row: span 2; }
  .gallery-item--square:nth-child(7)    { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide:nth-child(8)      { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide:nth-child(9)      { grid-column: span 2; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Section padding reduction */
  .about     { padding: 80px 0 100px; }
  .services  { padding: 60px 0 100px; }
  .help      { padding: 60px 0 100px; }
  .portfolio { padding: 60px 0 100px; }
  .gallery   { padding: 60px 0 100px; }
  .testimonials { padding: 60px 0 100px; }
  .events    { padding: 72px 0; }
}

/* ── Stats bar tightening at mid sizes ── */
@media (max-width: 900px) {
  .stat-item { padding: 10px 18px; gap: 10px; }
  .stat-num { font-size: 1.25rem; }
  .stat-label { font-size: 0.68rem; }
  .stat-icon { font-size: 1.3rem; }
}

/* ── Process pin mobile ── */
@media (max-width: 768px) {
  .process-pin {
    height: auto;
    min-height: 0;
    padding: 56px 0 48px;
    display: block;
    overflow: visible;
  }
  .process-label {
    position: static;
    transform: none;
    text-align: center;
    display: block;
    margin-bottom: 40px;
    padding: 0 24px;
  }
  .process-progress-bar { display: none; }
  .process-step {
    position: static;
    inset: auto;
    opacity: 1 !important;
    pointer-events: auto;
    flex-direction: column;
    gap: 8px;
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: flex-start;
  }
  .process-step:first-of-type { border-top: none; }
  .process-num {
    font-size: clamp(3.5rem, 16vw, 6rem);
    color: rgba(201,168,76,0.18);
  }
  .process-heading { font-size: clamp(1.75rem, 7vw, 2.8rem); margin-bottom: 10px; }
  .process-desc { font-size: 0.95rem; max-width: 100%; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar-left { gap: 12px; }
  .top-bar-left a:last-child { display: none; }

  /* Nav */
  .nav-inner { height: 68px; padding: 0 20px; }
  .nav-logo-img { height: 48px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 72px 20px 36px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stat-divider { display: none; }
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
  .stat-item { padding: 14px 16px; }

  /* Section headers */
  .section-header { margin-bottom: 36px; }

  /* About */
  .about { padding: 56px 0 72px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%); }
  .about-img-box { max-width: 100%; }
  .about-badge-card { right: 12px; bottom: -12px; font-size: 0.8rem; padding: 14px 18px; }

  /* Services */
  .services { padding: 48px 0 72px; clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%); margin-top: -32px; }
  .sf-row, .sf-row--reverse { grid-template-columns: 1fr; gap: 20px; direction: ltr; }
  .sf-meta { flex-direction: row; gap: 12px; }
  .sf-img { display: block; height: 220px; }
  .sf-row { padding: 36px 0; }

  /* CTA strip */
  .cta-strip { padding: 48px 0; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-strip .btn { width: 100%; justify-content: center; }
  .cta-strip-text h2 { font-size: 1.5rem; }

  /* Help */
  .help { padding: 48px 0 72px; clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%); margin-top: -32px; }
  .help-intro { font-size: 0.96rem; }
  .help-item { padding: 24px 0; gap: 16px; }

  /* Portfolio */
  .portfolio { padding: 48px 0 72px; clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%); margin-top: -32px; }
  .portfolio-stack { flex-direction: column; }
  .portfolio-card--featured .portfolio-img { height: 240px; }

  /* Gallery */
  .gallery { padding: 48px 0 72px; clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%); margin-top: -32px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 8px;
  }
  .gallery-item--wide-tall:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item--portrait:nth-child(2),
  .gallery-item--portrait:nth-child(3),
  .gallery-item--square:nth-child(4),
  .gallery-item--wide-tall:nth-child(5),
  .gallery-item--portrait:nth-child(6),
  .gallery-item--square:nth-child(7),
  .gallery-item--wide:nth-child(8),
  .gallery-item--wide:nth-child(9) { grid-column: span 1; grid-row: span 1; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 0.95rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox { padding: 20px; }

  /* Testimonials */
  .testimonials { padding: 48px 0 72px; clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%); margin-top: -32px; }
  .testimonials-pair { grid-template-columns: 1fr; }
  .testimonial-featured { padding: 32px 24px; }
  .t-quote-lg { font-size: 1rem; }

  /* Events */
  .events { padding: 56px 0; }
  .event-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .event-thumb { width: 100%; height: 160px; border-radius: var(--radius); }

  /* Contact */
  .contact { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info h2 { font-size: clamp(1.6rem, 5vw, 2rem); }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-col ul { gap: 8px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Top bar — hide on very small screens */
  .top-bar { display: none; }

  /* Nav — tighter on small screens */
  .nav-inner { height: 58px; padding: 0 14px; }
  .nav-logo-img { height: 40px; }
  .nav-logo-name { font-size: 0.82rem; }
  .logo-full { font-size: 1.05rem; }

  /* Hero */
  .hero-content { padding: 60px 16px 28px; }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
  .stat-item { padding: 12px 10px; gap: 8px; }
  .stat-num { font-size: 1.1rem; }
  .stat-icon { font-size: 1.1rem; }
  .stat-label { font-size: 0.62rem; }

  /* About */
  .about { padding: 48px 0 60px; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-badge-card { position: static; margin-top: 16px; width: fit-content; }
  .about-text h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* Services */
  .services { padding: 40px 0 60px; }
  .sf-content h3 { font-size: 1.2rem; }
  .sf-row { padding: 28px 0; gap: 16px; }
  .sf-img { height: 180px; }

  /* CTA strip */
  .cta-strip { padding: 40px 0; }
  .cta-strip-text h2 { font-size: 1.3rem; }

  /* Help */
  .help { padding: 40px 0 60px; }
  .help-item-body h3 { font-size: 1rem; }

  /* Portfolio */
  .portfolio { padding: 40px 0 60px; }

  /* Gallery */
  .gallery { padding: 40px 0 60px; }
  .gallery-grid { grid-auto-rows: 120px; gap: 6px; }

  /* Testimonials */
  .testimonials { padding: 40px 0 60px; }
  .testimonial-featured { padding: 24px 20px; }
  .t-quote-lg { font-size: 0.95rem; line-height: 1.65; }

  /* Events */
  .events { padding: 48px 0; }
  .event-card { padding: 20px 16px; }
  .event-day { font-size: 1.6rem; }

  /* Contact */
  .contact { padding: 48px 0; }
  .contact-form-wrap { padding: 24px 16px; border-radius: var(--radius); }
  .contact-info h2 { font-size: 1.6rem; }
  .contact-detail-item > i { width: 36px; height: 36px; font-size: 0.9rem; }

  /* Scroll statement */
  .scroll-statement { padding: 48px 0; }

  /* Process */
  .process-pin { padding: 44px 0 36px; }
  .process-step { padding: 28px 16px; }
  .process-desc { font-size: 0.9rem; }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .nav-logo-name { font-size: 0.75rem; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-inner { padding: 0 12px; }
  .hero-content h1 { font-size: 2rem; }
  .stat-item { padding: 10px 8px; }
  .stat-num { font-size: 1rem; }
  .btn-lg { padding: 13px 20px; font-size: 0.88rem; }
}
