:root {
  --bg: #ffffff;
  --bg-soft: #faf8f4;
  --border-soft: #eeeeee;
  --text-main: #0c0c0c;
  --text-muted: rgba(12, 12, 12, 0.65);
  --accent: #d97706;
  --accent-soft: rgba(217, 119, 6, 0.07);
  --surface: #ffffff;

  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.18);

  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1120px;

  --section-gap: 72px;

  /* Header: logo + Contact pill share one vertical rhythm */
  --header-logo-height: clamp(28px, 4.2vw, 36px);

  /* Primary CTA — mobile (single source of truth for padding + type scale) */
  --btn-primary-mobile-fs: 14px;
  --btn-primary-mobile-py: 11px;
  --btn-primary-mobile-px: 22px;

  /* Burger / mobile nav panel link size */
  --nav-mobile-menu-fs: 18px;
  --nav-mobile-menu-fs-tight: 17px;

  /* Site footer */
  --footer-pad-y: 56px;
  --footer-pad-y-bottom: 40px;
  --footer-col-gap: clamp(48px, 12vw, 112px);
  --footer-link-fs: 15px;
  --footer-heading-fs: 15px;
  --footer-legal-fs: 11px;
  --footer-legal-gap-top: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-main);
  scroll-behavior: smooth;
}

/* Shown when index.html is opened as file:// — PHP will not execute */
.file-protocol-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  background: #fef3c7;
  color: #92400e;
  border-bottom: 1px solid #fcd34d;
}

.file-protocol-banner a {
  color: #b45309;
  font-weight: 700;
  text-decoration: underline;
}

.file-protocol-banner strong {
  font-weight: 700;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 85px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  height: var(--header-logo-height);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  object-position: left center;
}

/* Contact in header: match logo height (pill, not oversized vs mark) */
.header-row .btn-primary {
  height: var(--header-logo-height);
  min-height: var(--header-logo-height);
  max-height: var(--header-logo-height);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  box-sizing: border-box;
}

/* Primary nav: desktop = inline links; mobile = hamburger + panel */
.site-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 60px;
  font-size: 15px;
  color: var(--text-muted);
}

.nav-menu a:hover {
  color: var(--text-main);
}

/* Booking in burger menu — mobile only (hero + contact carry desktop CTAs) */
.nav-menu-booking {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: inherit;
  font-weight: 500;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
}

.nav-menu-booking:hover {
  color: var(--text-main);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  color: var(--text-main);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--text-main);
  outline-offset: 2px;
}

/* Two-line burger → X on hover (fine pointer) or when menu is open (touch) */
.menu-toggle__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  margin-top: -1px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle__bar:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle__bar:nth-child(2) {
  transform: translateY(6px);
}

@media (hover: hover) and (pointer: fine) {
  .menu-toggle:hover .menu-toggle__bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .menu-toggle:hover .menu-toggle__bar:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
  }
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  top: 85px;
  z-index: 9;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 10px 35px;
    font-size: 16px;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease background, 0.25s ease color, 0.25s ease box-shadow, 0.25s ease transform;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(90deg, #000000 0%, #787878 100%);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(51, 51, 51, 0.45);
}

.btn-ghost {
  background: #f4f4f5;
  color: var(--text-main);
}

.btn-ghost:hover {
  background: #e4e4e7;
}

/* PILLS / TAGS */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px;
}

.pill-outline {
  border: 1px solid var(--border-soft);
  background: #ffffff;
}

.pill-soft {
  background: var(--accent-soft);
  color: var(--accent);
}

.pill-tag {
  background: #ffffff;
  border: 1px solid var(--border-soft);
}

.pill-hero {
  font-size: 13px;
  color: var(--text-main);
}

.pill-elevated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 500;
}

.pill-arrow {
  margin-left: 4px;
  opacity: 0.8;
}

.btn-arrow {
  margin-left: 6px;
}

.pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #000000;
}

.pill-dot-orange {
  background: var(--accent);
}

.pill-index {
  font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* HERO */

.hero {
  box-sizing: border-box;
}

.hero-full {
  min-height: 90vh;
  padding-top: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.hero-inner .pill {
  margin-bottom: 15px;
}

.hero-inner h1 {
  margin: 0 auto 12px;
  font-size: 50px;
  max-width: 800px;
  letter-spacing: -0.01em;
  line-height: 1.11;
  font-weight: 500;
}

.hero-sub {
  margin: 0 auto 40px;
  max-width: 600px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.hero-booking-btn {
  font-weight: 600;
}

.hero-note {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Metrics */

.kpi-strip {
  padding: 150px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
  margin: 0 auto;
}

.kpi-clean .kpi-item {
  text-align: center;
}

.kpi-clean .kpi-value {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.1;
}

.kpi-clean .kpi-title {
  font-size: 25px;
  font-weight: 550;
  margin: 0 0 10px;
  line-height: 1.25;
}

.kpi-clean .kpi-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.kpi-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Scroll quote */

.scroll-quote-section {
  min-height: 130vh;
  position: relative;
  padding: 0 24px;
  background: var(--bg);
}

.scroll-quote-inner {
  position: sticky;
  top: 40vh;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: center;
}

.scroll-word {
  display: inline-block;
  margin: 0 0.2em 0 0;
  color: var(--text-muted);
  opacity: 0.5;
  transition: color 0.45s ease, opacity 0.45s ease;
}

.scroll-word.revealed {
  color: var(--text-main);
  opacity: 1;
}

/* GENERIC SECTIONS */

.section {
  padding: var(--section-gap) 0;
}

/* Anchor offset for sticky header so pills/headings are not clipped */
.section[id] {
  scroll-margin-top: 40px;
}

.section-light {
  background: var(--bg-soft);
}

.section-head {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-head h2 {
  margin: 10px 0 10px;
  font-size: 28px;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
}

/* PROCESS SECTION */

.process-section {
  background: #ffffff;
}

.process-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.process-pill {
  margin-bottom: 30px;
}

.process-section-title {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1;
}

.process-section-title-line2 {
  margin: 4px 0 20px;
  font-size: 50px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.process-section-sub {
  margin: 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
}

.process-boxes {
  padding: 0 80px;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.process-box {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  padding: 40px 32px;
  min-height: 260px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.process-box:hover,
.process-box.is-auto-hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.16);
  border-color: rgba(0, 0, 0, 0.12);
}

.process-box-video {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.14s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.14s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.process-box-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-box-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  pointer-events: none;
}

.process-box:hover .process-box-video,
.process-box.is-auto-hover .process-box-video {
  opacity: 1;
  transform: scale(1);
}

.process-box-text {
  position: relative;
  z-index: 2;
  transition: color 0.14s ease;
}

.process-box:hover .process-box-text,
.process-box.is-auto-hover .process-box-text {
  color: #ffffff;
}

.process-box:hover .process-box-step-tag,
.process-box.is-auto-hover .process-box-step-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.process-box:hover .process-box-title,
.process-box.is-auto-hover .process-box-title {
  color: #ffffff;
}

.process-box:hover .process-box-body,
.process-box.is-auto-hover .process-box-body {
  color: rgba(255, 255, 255, 0.8);
}

.process-box-step-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid rgb(15, 15, 15);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 16px;
}

.process-box-title {
  margin: 10px 0 3px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
}

.process-box-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: left;
}

/* WHAT WE DO */

.what-section {
  background: #ffffff;
}

.what-grid-wrapper {
  max-width: 700px;
  margin: 32px auto 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.what-we-do-item {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  cursor: pointer;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.what-we-do-item:hover,
.what-we-do-item.is-auto-hover {
  background: #fafafa;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.what-we-do-item:nth-child(2n) {
  border-right: none;
}

.what-we-do-item:nth-child(5),
.what-we-do-item:nth-child(6) {
  border-bottom: none;
}

.what-we-do-item h3 {
  margin: 0 0 15px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 0.35s ease;
}

.what-we-do-item:hover h3,
.what-we-do-item.is-auto-hover h3 {
  transform: translateY(-3px) scale(1.06);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.what-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 13px auto 16px;
  border-radius: 8px;
  border: 1px solid rgb(147, 147, 147);
  background: #ffffff;
  font-size: 32px;
  line-height: 1;
  text-align: center;
  user-select: none;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-we-do-item:hover .what-icon,
.what-we-do-item.is-auto-hover .what-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.what-we-do-item p {
  padding: 0 31px;
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 0.35s ease;
}

.what-we-do-item:hover p,
.what-we-do-item.is-auto-hover p {
  transform: translateY(-2px) scale(1.04);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* WHY SOURCYN — white page, wheel (image was content reference only) */

.why-sourcyn-section {
  background: #ffffff;
  color: var(--text-main);
}

/* Scroll gate active: page scroll drives items; inner overflow locked in JS */
.why-sourcyn-section--gated {
  min-height: min(100vh, 920px);
}

.why-wheel-viewport.why-wheel-viewport--gated {
  overflow-y: hidden;
  overscroll-behavior-y: none;
  scroll-snap-type: none;
  scroll-behavior: auto;
  touch-action: none;
}

/* No visible “box” — open layout like draft; scroll area is invisible */
.why-wheel-frame {
  max-width: 640px;
  margin: 24px auto 0;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  border-radius: 4px;
  /* Mask on wrapper — applying mask on the scroll viewport breaks native scroll in Safari */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    #000 22%,
    #000 78%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

/* No clone slides in layout — 4 real points only; avoids infinite loop / scroll trap */
.why-item--loop-clone {
  display: none !important;
}

.why-wheel-viewport {
  --why-wheel-h: clamp(340px, 50vh, 520px);
  --why-item-min: calc(var(--why-wheel-h) * 0.3);
  height: var(--why-wheel-h);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  overscroll-behavior-y: auto;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.why-wheel-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.why-wheel-viewport:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 6px;
  border-radius: 4px;
}

.why-item {
  scroll-snap-align: center;
  min-height: var(--why-item-min);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.why-item-inner {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 12px 16px;
  transform-origin: center center;
  will-change: transform, opacity;
}

.why-item--active .why-item-inner {
  filter: none;
}

.why-item-inner h3 {
  margin: 0 0 15px;
  font-size: 35px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: font-weight 0.35s ease;
}

.why-item--active .why-item-inner h3 {
  font-weight: 500;
}

.why-item-inner p {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 460px;
}

@media (max-width: 768px) {
  .why-wheel-viewport {
    --why-wheel-h: clamp(300px, 44vh, 420px);
  }

  .why-item-inner h3 {
    font-size: clamp(17px, 4.2vw, 22px);
    margin-bottom: 8px;
  }

  .why-item-inner p {
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.5;
  }

  .why-item-inner {
    padding: 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-wheel-viewport {
    scroll-behavior: auto;
  }
}

/* PRODUCT CATEGORIES */

.categories-section {
  background: #ffffff;
}

.cat-pills-wrap {
  text-align: center;
  margin-top: 40px;
}

.cat-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  cursor: default;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
}

.cat-pill:hover,
.cat-pill.is-active {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 14px 32px rgba(0, 0, 0, 0.1);
  background: #fafafa;
}

.cat-cta {
  text-align: center;
  margin-top: 36px;
}

/* GET STARTED / CONTACT */

.contact-section {
  background: #ffffff;
}

.contact-booking-strip {
  max-width: 560px;
  margin: 0 auto 28px;
  padding: 28px 24px 32px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(165deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.contact-booking-label {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.contact-booking-btn {
  padding: 14px 28px !important;
  font-size: 15px !important;
}

.contact-booking-hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgb(144 144 144);
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 46px 59px;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form-banner {
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-form-banner--success {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.contact-form-banner--error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.contact-form-inline-hint {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #991b1b;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-half {
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-full {
  width: 100%;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.contact-form-v2 input,
.contact-form-v2 select,
.contact-form-v2 textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-main);
  background: #ffffff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-v2 select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form-v2 input::placeholder,
.contact-form-v2 textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.contact-form-v2 input:focus,
.contact-form-v2 select:focus,
.contact-form-v2 textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.contact-form-v2 textarea {
  resize: vertical;
  min-height: 100px;
}

/* Searchable country field (input + datalist) */
.contact-country-input {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23666' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='8' cy='8' r='5.5'/%3E%3Cpath d='M12.5 12.5L16 16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-field-hint {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.form-field-counter {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
  text-align: right;
}

.form-field-counter.is-reached {
  font-weight: 800;
  color: var(--text-main);
}

.form-field-msg {
  font-size: 13px;
  font-weight: 500;
  color: #991b1b;
  line-height: 1.35;
}

.contact-form-v2 .form-field.has-error .form-label {
  color: #991b1b;
}

.contact-form-v2 .form-field.has-error input,
.contact-form-v2 .form-field.has-error select,
.contact-form-v2 .form-field.has-error textarea {
  border-color: rgba(185, 28, 28, 0.55);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.btn-submit {
  align-self: center;
  margin-top: 8px;
}

/* ABOUT PAGE */

.nav-active {
  color: var(--text-main);
  font-weight: 600;
}

.about-hero-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 80px 0 100px;
}

/* Group.png: full section height, flush right; only the left half of the artwork shows (right half clipped off-screen). */
.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  width: min(46vw, 400px);
  background-color: transparent;
  background-image: url(assets/Group.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 116%;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 640px) {
  .about-hero-section::before {
    content: none;
    display: none;
  }
}

.about-heading {
  font-size: clamp(32px, 5.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 25px;
  color: var(--text-main);
}
.about-letter {
  max-width: 620px;
  margin: 0 auto 32px;
  text-align: center;
}

.about-letter p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-main);
  margin: 0 0 15px;
}

.about-letter p:last-of-type {
  margin-bottom: 24px;
}

.about-attribution {
  display: block;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 15px;
}

.about-founder-photo {
  max-width: 250px;
  margin: 0 auto;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  --about-tilt-x: 0deg;
  --about-tilt-y: 0deg;
  --about-scale: 1;
  animation: aboutFounderDrift 6.2s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.about-founder-photo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  filter: grayscale(0.25);
  transform:
    rotateX(var(--about-tilt-x))
    rotateY(var(--about-tilt-y))
    scale(var(--about-scale))
    translateZ(0);
  transform-style: preserve-3d;
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.12);
}

.about-founder-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    80% 60% at 50% 100%,
    rgba(0, 0, 0, 0.26) 0%,
    rgba(0, 0, 0, 0) 72%
  );
  filter: blur(8px);
  opacity: 0.5;
  transform: translateY(10px) scale(0.95);
  animation: aboutFounderShadowPulse 6.2s ease-in-out infinite;
}

.about-founder-photo:hover img {
  filter: grayscale(0.08);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.24),
    0 8px 20px rgba(0, 0, 0, 0.16);
}

@keyframes aboutFounderDrift {
  0%,
  100% {
    transform: translateY(0) rotateZ(0deg) scale(1);
  }
  25% {
    transform: translateY(-14px) rotateZ(-1deg) scale(1.02);
  }
  50% {
    transform: translateY(-22px) rotateZ(0.75deg) scale(1.03);
  }
  75% {
    transform: translateY(-10px) rotateZ(-0.55deg) scale(1.015);
  }
}

@keyframes aboutFounderShadowPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(14px) scale(0.92);
  }
  50% {
    opacity: 0.72;
    transform: translateY(20px) scale(1.06);
  }
}

/* About CTA — dark section with background image */

.about-cta-section {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  width: 97%;
  aspect-ratio: 2845 / 1275;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  border-radius: 12px;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.06) brightness(0.88);
  transform-origin: 50% 65%;
  animation: aboutCtaImageDrift 8s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.about-cta-bg::after {
  content: "";
  position: absolute;
  inset: -10% -30%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 32%,
    rgba(255, 255, 255, 0.12) 49%,
    rgba(255, 255, 255, 0) 66%
  );
  mix-blend-mode: screen;
  opacity: 0.22;
  animation: aboutCtaSheen 4s linear infinite;
  pointer-events: none;
}

@keyframes aboutCtaImageDrift {
  0% {
    transform: translate3d(-1.6%, 1.2%, 0) scale(1.04);
  }
  50% {
    transform: translate3d(1.8%, -0.8%, 0) scale(1.1);
  }
  100% {
    transform: translate3d(-0.9%, 0.7%, 0) scale(1.06);
  }
}

@keyframes aboutCtaSheen {
  0% {
    transform: translateX(-62%);
  }
  100% {
    transform: translateX(62%);
  }
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}

.about-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 40px 20px;
}

.about-cta-pill {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-cta-pill-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-block;
}

.about-cta-title {
  font-size: 35px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 36px;
}

.btn-white {
  display: inline-flex
;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* padding: 14px 36px; */
  border-radius: 4px;
  background: #ffffff;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.3scubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3scubic-bezier(0.16, 1, 0.3, 1);
}
.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .about-hero-section {
    padding: 48px 0 64px;
  }

  .about-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .about-letter p {
    font-size: 12px;
    line-height: 1.55;
  }

  .about-founder-photo {
    max-width: 220px;
  }

  .about-founder-photo::after {
    opacity: 0.35;
  }

  .about-founder-photo img {
    filter: grayscale(0.2);
    transform: none;
  }

  .about-cta-section {
    margin: 0 auto;
    width: calc(100% - 30px);
    aspect-ratio: auto;
    min-height: 420px;
  }

  .about-cta-title {
    font-size: clamp(34px, 8.8vw, 46px);
    line-height: 1.12;
  }

  .about-cta-inner {
    padding: 48px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-founder-photo {
    animation: none;
  }

  .about-founder-photo img {
    transition: none;
    transform: none;
  }

  .about-founder-photo::after {
    animation: none;
  }

  .about-cta-bg img,
  .about-cta-bg::after {
    animation: none;
    transform: none;
  }
}

/* SITE FOOTER — minimal black on white (reference layout) */

.site-footer {
  background: #ffffff;
  color: #000000;
  padding: var(--footer-pad-y) 0 var(--footer-pad-y-bottom);
}

.site-footer-inner {
  padding: 90PX 0 80PX;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px 48px;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.site-footer-brand:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer-logo {
  display: block;
  height: clamp(55px, 5vw, 70px);
  width: auto;
  max-width: min(200px, 55vw);
  object-fit: contain;
  object-position: left center;
}

.site-footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}

.site-footer-col {
  text-align: right;
  min-width: min(140px, 42vw);
}

.site-footer-heading {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.site-footer-list {
  list-style: none;
  margin: 0px 0 0 75px;
  padding: 0;
}

.site-footer-list li {
  margin: 0 0 0px;
}

.site-footer-list li:last-child {
  margin-bottom: 0;
}

.site-footer-list a {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  line-height: 1.35;
}

.site-footer-list a:hover {
  text-decoration: underline;
}

.site-footer-list a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer-legal {
  margin: var(--footer-legal-gap-top) 0 0;
  padding: 0 16px;
  text-align: center;
  font-size: var(--footer-legal-fs);
  font-weight: 200;
  letter-spacing: 0.08em;
  color: #000000;
  line-height: 1.5;
}

.site-footer-admin-link {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
}

.site-footer-admin-link:hover {
  opacity: 0.7;
}

/* ANIMATIONS */

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

/* Process cards: appear from below with smooth scale-in */
.process-box.anim-fade-up {
  transform: translateY(38px) scale(0.8);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.92s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-box.anim-visible {
  transform: translateY(0) scale(1);
}

.anim-delay-1 {
  transition-delay: 0.12s;
}

.anim-delay-2 {
  transition-delay: 0.24s;
}

.anim-delay-3 {
  transition-delay: 0.36s;
}

.anim-delay-4 {
  transition-delay: 0.48s;
}

@keyframes processCardPopIn {
  from {
    transform: translateY(0) scale(0.985);
  }
  to {
    transform: translateY(-2px) scale(1.02);
  }
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .kpi-strip {
    padding: 100px 24px;
  }

  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row,
  .form-row-half {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero-full {
    min-height: 90vh;
    padding-top: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .section[id] {
    scroll-margin-top: 92px;
  }

  .hero {
    padding: 0;
    box-sizing: border-box;
  }

  .kpi-strip {
    padding: 70px 0;
  }

  /* Optional line breaks — hide on narrow viewports so copy reflows in fewer lines */
  .br-sub-soft {
    display: none;
  }

  .header-row {
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 11;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0;
    padding: 10px 16px 16px;
    font-size: var(--nav-mobile-menu-fs);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: inherit;
    text-align: center;
  }

  .nav-menu a:active {
    background: rgba(241, 245, 249, 0.9);
  }

  .nav-menu-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: inherit;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-main);
    text-align: center;
  }

  .nav-menu-booking:active {
    background: rgba(241, 245, 249, 0.9);
  }

  .site-nav.is-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  

  .hero-inner h1 {
    margin: 10px 0px;
    font-size: 23px;
    line-height: 1.42;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.45;
  }

  .kpi-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .kpi-clean .kpi-title {
    font-size: 22px;
  }

  .process-boxes {
    grid-template-columns: minmax(0, 1fr);
    padding: 0;
  }

  /* Mobile: fast pop/scale when process card becomes active */
  .process-box {
    transition:
      transform 0.14s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.14s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.12s ease;
    will-change: transform;
  }

  .process-box.is-auto-hover {
    transform: translateY(-2px) scale(1.02);
    animation: processCardPopIn 0.16s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .process-box-video {
    transition:
      opacity 0.12s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.12s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .what-we-do-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .what-grid-wrapper {
    max-width: 100%;
  }

  /* Mobile: What We Do cards stay smaller, grow at viewport center, then shrink again */
  .what-we-do-item {
    transform: translateY(8px) scale(0.9);
    transform-origin: center center;
    transition:
      transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
      background 0.28s ease,
      box-shadow 0.28s ease;
    will-change: transform;
  }

  .what-we-do-item.is-auto-hover {
    transform: translateY(0) scale(1);
  }

  .form-row,
  .form-row-half {
    grid-template-columns: 1fr;
  }

  .process-section-title,
  .process-section-title-line2 {
    font-size: 27px;
    line-height: 1.08;
  }

  .process-section-sub {
    font-size: 14px;
    line-height: 1.32;
  }

  .process-section-head {
    max-width: 100%;
    padding: 0 4px;
    margin-bottom: 36px;
  }

  .scroll-quote-section {
    min-height: 98vh;
    padding: 0 20px;
  }

  .scroll-quote-inner {
    top: 40vh;
    font-size: 24px;
    line-height: 1.32;
  }

  /* Mobile: contact card/booking strip scale in when in frame */
  .contact-card,
  .contact-booking-strip {
    transform: translateY(8px) scale(0.94);
    transform-origin: center center;
    transition:
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.42s ease,
      border-color 0.36s ease;
    will-change: transform;
  }

  .contact-card.is-in-frame,
  .contact-booking-strip.is-in-frame {
    transform: translateY(0) scale(1);
  }

  .process-box-title {
    font-size: 18px;
  }

  .process-box-body {
    font-size: 14px;
    line-height: 1.42;
  }

  .what-we-do-item h3 {
    font-size: 16px;
  }

  .what-we-do-item p {
    font-size: 11px;
    line-height: 1.45;
  }

  .why-item-inner h3 {
    font-size: clamp(16px, 4.2vw, 19px);
  }

  .why-item-inner p {
    font-size: clamp(11px, 3.1vw, 13px);
    line-height: 1.42;
  }

  .cat-pill {
    padding: 10px 20px;
    font-size: 14px;
    width: min(100%, 340px);
    min-height: 42px;
    text-align: center;
  }

  .cat-pills-wrap {
    margin-top: 32px;
  }

  .cat-pills-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  /* Header CTA duplicates the nav “Contact” link on small screens — hide the pill */
  .header-row .btn-primary {
    display: none;
  }

  /* All primary CTAs (hero, categories, form submit) share one mobile size */
  .btn-primary {
    padding: var(--btn-primary-mobile-py) var(--btn-primary-mobile-px);
    font-size: var(--btn-primary-mobile-fs);
  }

  .site-footer {
    --footer-pad-y: 40px;
    --footer-pad-y-bottom: 32px;
    --footer-legal-gap-top: 40px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .site-footer-cols {
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 22px;
  }

  .site-footer-col {
    text-align: center;
    min-width: 120px;
  }

  .site-footer-list {
    margin: 0;
  }
}

/* Very narrow: slightly smaller than --nav-mobile-menu-fs but still readable */
@media (max-width: 360px) {
  .nav-menu {
    font-size: var(--nav-mobile-menu-fs-tight);
    padding: 8px 12px 14px;
  }

  .nav-menu a {
    min-height: 44px;
    padding: 8px 10px;
  }

  .hero-inner h1 {
    font-size: 23px;
  }

  .process-section-title,
  .process-section-title-line2 {
    font-size: 24px;
  }

  .scroll-quote-section {
    min-height: 100vh;
  }

  .scroll-quote-inner {
    top: 35vh;
    font-size: 22px;
  }
}
