/* ==========================================================================
   DESIGNS BY MEER - PRODUCTION CSS SYSTEM
   Pixel-Perfect Implementation matching exact Figma Components (0, 1, 2, 3)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   1. DESIGN TOKENS & VARIABLES
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
:root {
  /* Exact Figma Palette */
  --color-primary: #E66A46;
  --color-primary-hover: #D15430;
  --color-primary-light: rgba(230, 106, 70, 0.12);

  --color-text-dark: #1C1C1C;
  --color-text-heading: #222222;
  --color-text-body: #4A4A4A;
  --color-text-muted: #7A7A7A;
  --color-text-light: #FFFFFF;

  --color-bg-page: #F8F9FB;
  --color-bg-white: #FFFFFF;
  --color-bg-card: #FFFFFF;

  --color-border-light: #EBECEF;
  --color-border-hover: #D5D7DD;

  /* Typography Tokens */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;

  /* Spacing Tokens */
  --container-max-width: 1320px;

  /* Shadow & Radius Tokens */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 100px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 18px 42px rgba(0, 0, 0, 0.07);
  --shadow-orange: 0 8px 22px rgba(230, 106, 70, 0.28);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   2. RESET & BASE STYLES
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
*,
*::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-primary);
  background-color: var(--color-bg-page);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

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

.text-orange {
  color: var(--color-primary);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   3. BUTTONS (EXACT TO FIGMA)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  /* box-shadow: var(--shadow-orange); */
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  /* box-shadow: 0 14px 28px rgba(230, 106, 70, 0.38); */
}

.btn-outline {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   4. FLOATING ROUNDED HEADER (EXACT TO input_file_0.png)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.header-wrapper {
  position: sticky;
  top: 24px;
  z-index: 1000;
  margin-top: 24px;
  transition: var(--transition-normal);
}

.header {
  width: 100%;
  background-color: var(--color-bg-white);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(235, 236, 239, 0.85);
  padding: 16px 32px;
  transition: var(--transition-normal);
}

.header-wrapper.scrolled .header {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: var(--color-border-hover);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo__mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__mark svg,
.logo__mark-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Right Actions & Menu Icon */
.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__btn {
  padding: 13px 26px;
  font-size: 0.94rem;
}

/* Crisp 2-Bar Hamburger Menu (as seen in input_file_0.png) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 32px;
  height: 24px;
  padding: 2px 0;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 2.6px;
  background-color: var(--color-text-dark);
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle span:first-child {
  width: 100%;
}

.menu-toggle span:last-child {
  width: 68%;
  margin-left: auto;
}

.menu-toggle:hover span {
  width: 100%;
  background-color: var(--color-primary);
}

/* Active State (Transforms to sleek close Cross X) */
.menu-toggle.active span {
  background-color: var(--color-primary);
  width: 100% !important;
}

.menu-toggle.active span:first-child {
  transform: translateY(4.8px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-4.8px) rotate(-45deg);
  margin-left: 0;
}

/* Ensure container inside header-wrapper is relative for precise menu dropdown positioning */
.header-wrapper .container {
  position: relative;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   NAVIGATION OVERLAY MENU & DRAWER (Sexy, Theme-Matched & Sober Animations)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(28, 28, 28, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.4s;
}

.nav-backdrop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0s;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 24px;
  right: 24px;
  z-index: 999;
  background-color: var(--color-bg-white);
  border: 1px solid rgba(235, 236, 239, 0.95);
  border-radius: 32px;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.14), 0 10px 30px rgba(230, 106, 70, 0.08);
  overflow: hidden;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(230, 106, 70, 0.4) transparent;

  /* Initial Hidden State (When closing / closed) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-24px) scale(0.96);
  transform-origin: top center;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s 0.45s;
}

.nav-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s 0s;
}

.nav-menu__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 40px;
  padding: 48px 52px;
}

/* Left Column: Navigation Links */
.nav-menu__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-menu__label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-left: 8px;
}

.nav-menu__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-menu__item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-heading);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.nav-menu__num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  min-width: 32px;
}

.nav-menu__text {
  flex-grow: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.nav-menu__arrow {
  font-size: 1.25rem;
  color: var(--color-primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu__link:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateX(6px);
}

.nav-menu__link:hover .nav-menu__num {
  color: var(--color-primary);
}

.nav-menu__link:hover .nav-menu__text {
  color: var(--color-primary);
  transform: translateX(4px);
}

.nav-menu__link:hover .nav-menu__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Right Column: Quick Info Card */
.nav-menu__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu__card {
  background-color: #F8F9FB;
  border: 1px solid var(--color-border-light);
  border-radius: 28px;
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.nav-menu__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2D6A4F;
  background-color: rgba(45, 106, 79, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2D6A4F;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(45, 106, 79, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 106, 79, 0);
  }
}

.nav-menu__info-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text-heading);
  line-height: 1.3;
  margin-bottom: 12px;
}

.nav-menu__info-desc {
  font-size: 0.98rem;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 28px;
}

.nav-menu__info-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.nav-menu__cta {
  width: 100%;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 1rem;
}

.nav-menu__email {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  word-break: break-all;
}

.nav-menu__email:hover {
  color: var(--color-primary);
}

.nav-menu__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E4E6EB;
  padding-top: 20px;
}

.nav-menu__socials-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.nav-menu__social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.nav-social-link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Staggered Sober Animations on Open */
.nav-menu.is-open .nav-menu__item {
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu.is-open .nav-menu__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.nav-menu.is-open .nav-menu__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.09s;
}

.nav-menu.is-open .nav-menu__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.13s;
}

.nav-menu.is-open .nav-menu__item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.17s;
}

.nav-menu.is-open .nav-menu__item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.21s;
}

.nav-menu.is-open .nav-menu__item:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.nav-menu.is-open .nav-menu__item:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.29s;
}

.nav-menu.is-open .nav-menu__item:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.33s;
}

.nav-menu.is-open .nav-menu__info {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.22s;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   5. HERO CARD SECTION (EXACT TO input_file_1.png / combined view)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.hero {
  padding: 28px 0 28px;
}

.hero__card-box {
  background-color: var(--color-bg-white);
  border: 1px solid rgba(235, 236, 239, 0.85);
  border-radius: 36px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.035);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 48px;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  min-height: 3rem;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero__desc-1 {
  font-size: 1.08rem;
  color: var(--color-text-body);
  line-height: 1.74;
  margin-bottom: 20px;
}

.hero__desc-2 {
  font-size: 1.08rem;
  color: var(--color-text-body);
  line-height: 1.74;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100%;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  background-color: #EFECE6;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__image-wrapper:hover .hero__image {
  transform: scale(1.03);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   6. STATS / KEY METRICS SECTION (EXACT TO input_file_2.png / combined view)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.stats {
  padding: 4px 0 56px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 34px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 106, 70, 0.4);
}

.stat-card__number {
  font-family: var(--font-primary);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-body);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   7. PROJECT SHOWCASE MARQUEE (EXACT TO input_file_0.png / turn 5)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.projects-showcase {
  padding: 16px 0 64px;
  overflow: hidden;
  width: 100%;
}

.marquee {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.marquee__row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  position: relative;
}

/* Subtle fade gradient on left and right edges for a clean modern transition */
.marquee__row::before,
.marquee__row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee__row::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-page), transparent);
}

.marquee__row::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-page), transparent);
}

.marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
  will-change: transform;
}

.marquee__track--reverse {
  animation: marquee-scroll-reverse 42s linear infinite;
}

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

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

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.marquee-card {
  flex: 0 0 auto;
  width: 410px;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-bg-white);
  border: 1px solid rgba(235, 236, 239, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.marquee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230, 106, 70, 0.45);
}

.marquee-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-card:hover .marquee-card__img {
  transform: scale(1.05);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   8. DESIGN PHILOSOPHY BANNER (EXACT TO input_file_0.png / turn 7)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.philosophy {
  padding: 36px 0 44px;
}

.philosophy__text {
  font-family: var(--font-primary);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.025em;
  color: #4B4D52;
  text-transform: uppercase;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   9. CORE EXPERTISE AREAS (EXACT TO input_file_0.png & input_file_2.png / turn 9)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.expertise {
  padding: 100px 0 120px;
  position: relative;
  width: 100%;
}

.expertise__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
  width: 100%;
  overflow: visible;
  position: relative;
}

.expertise__cards {
  display: flex;
  flex-direction: column;
  gap: 140px;
  /* Reduced from 380px so the next card is visible on screen */
  /* Natural pixel spacing so each card slides up and stacks directly over the previous one */
  width: 100%;
  position: relative;
  padding-bottom: 80px;
  padding-left: 96px;
  /* Push cards towards the center */
}

.expertise-card {
  position: sticky;
  top: 130px;
  background-color: var(--color-bg-white);
  border-radius: 36px;
  padding: 36px 40px;
  box-shadow: none;
  /* Removed all shadows from left cards as requested */
  border: none;
  opacity: 1;
  will-change: transform;
}

/* Odd cards stay permanently tilted to the LEFT */
.expertise-card:nth-child(odd) {
  transform: rotate(-2.2deg);
  transform-origin: center left;
}

/* Even cards stay permanently tilted to the RIGHT */
.expertise-card:nth-child(even) {
  transform: rotate(2.2deg);
  transform-origin: center right;
}

/* Exact vertical center screen locking when scrolling starts so both left cards and right image sit across from each other in dead center (50vh midline) */
.expertise-card:nth-child(1) {
  top: calc(50vh - 195px);
  z-index: 1;
}

.expertise-card:nth-child(2) {
  top: calc(50vh - 187px);
  z-index: 2;
}

.expertise-card:nth-child(3) {
  top: calc(50vh - 179px);
  z-index: 3;
}

.expertise-card:nth-child(4) {
  top: calc(50vh - 171px);
  z-index: 4;
}

.expertise-card:nth-child(5) {
  top: calc(50vh - 163px);
  z-index: 5;
}

/* Active card gets subtle orange border tint without any straightening or rotation change (removed) */

.expertise-card__subtitle {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: #52545A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.expertise-card__title {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.expertise-card__title .text-dark {
  color: #1C1C1C;
}

.expertise-card__title .text-orange {
  color: var(--color-primary);
}

.expertise-card__desc {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-body);
  margin-bottom: 24px;
  max-width: 540px;
}

.expertise-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expertise-card__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #4A4D54;
}

.bullet-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  flex-shrink: 0;
}

/* Right Sticky Visual Column */
.expertise__visual {
  position: sticky;
  top: calc(50vh - 220px);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.expertise__visual-box {
  width: 100%;
  max-width: 380px;
  border-radius: 36px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(235, 236, 239, 0.85);
  background-color: transparent;
  perspective: 1200px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.expertise__visual-box:hover .flip-inner,
.expertise__visual-box.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 36px;
  overflow: hidden;
  background-color: #1a1a1a;
}

.flip-front {
  position: relative;
  z-index: 2;
  transform: rotateY(0deg);
}

.flip-back {
  transform: rotateY(180deg);
}

.flip-back .expertise__sticky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise__sticky-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 36px;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   10. APPROACH & DESIGN THINKING (EXACT TO input_file_0.png / turn 15)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.approach {
  padding: 100px 0 140px;
  background-color: transparent;
  /* Exact match with upper sections background (#F8F9FB) */
  width: 100%;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 64px;
  align-items: start;
}

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

.approach__header {
  margin-bottom: 120px;
}

.section-label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: #6E7075;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.approach__title {
  font-family: var(--font-primary);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.repel-word {
  display: inline-block;
  will-change: transform;
}

.approach__title .text-orange {
  color: var(--color-primary);
}

.approach__title .text-dark {
  color: #4B4D52;
}

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

.approach__divider {
  width: 100%;
  height: 1px;
  background-color: #E4E6EB;
  margin-top: 8px;
  margin-bottom: 32px;
}

.approach__text {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5C5E64;
  font-weight: 400;
  margin-bottom: 24px;
}

.approach__text:last-of-type {
  margin-bottom: 0;
}

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

.approach__principles {
  margin-bottom: 64px;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 24px;
  margin-top: 20px;
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-primary);
  font-size: 1.02rem;
  color: #5C5E64;
  font-weight: 400;
}

.approach__details {
  margin-bottom: 48px;
}

.approach__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--outline-orange {
  background-color: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn--outline-orange:hover {
  background-color: #FCEDE9;
  border-color: transparent;
  color: var(--color-primary);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn--orange {
  background-color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* box-shadow: 0 4px 16px rgba(230, 106, 70, 0.25); */
  text-decoration: none;
}

.btn--orange:hover {
  background-color: #d85c38;
  border-color: #d85c38;
  /* box-shadow: 0 6px 22px rgba(230, 106, 70, 0.35); */
  transform: translateY(-2px);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   11. STORY BANNER CTA (EXACT TO input_file_0.png / turn 17)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.story-banner {
  padding: 40px 0 140px;
  width: 100%;
}

.story-banner__card {
  width: 100%;
  border-radius: 44px;
  padding: 84px 88px;
  background: linear-gradient(135deg, rgba(42, 33, 29, 0.45) 0%, rgba(54, 40, 32, 0.55) 40%, rgba(24, 19, 16, 0.75) 100%), url('../assets/images/story-banner-bg.jpg') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 24px 64px rgba(28, 20, 16, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08); */
}

.story-banner__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.story-banner__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.story-banner__logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.story-banner__brand-name {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.story-banner__title {
  font-family: var(--font-primary);
  font-size: 3.35rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  max-width: 920px;
  margin-bottom: 64px;
}

.story-banner__action {
  display: flex;
  align-items: center;
}

.btn--story-connect {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: var(--font-primary);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.btn--story-connect:hover {
  background-color: #FFF6F3;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

.btn--story-connect .double-arrow {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.btn--story-connect:hover .double-arrow {
  transform: translateX(4px);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   12. CRAFTED WORK / PORTFOLIO PROJECTS (EXACT TO input_file_4.png / turn 21)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.crafted-work {
  padding: 60px 0 80px;
  background-color: transparent;
  width: 100%;
}

.crafted-work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.crafted-work__title-area {
  display: flex;
  flex-direction: column;
}

.crafted-work__title {
  font-family: var(--font-primary);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.crafted-work__title .text-orange {
  color: var(--color-primary);
}

.crafted-work__title .text-dark {
  color: #4B4D52;
}

.crafted-work__header .btn--outline-orange {
  margin-bottom: 6px;
}

.crafted-work__header .btn--outline-orange .double-arrow {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.crafted-work__header .btn--outline-orange:hover .double-arrow {
  transform: translateX(4px);
  color: #FFFFFF;
}

.crafted-work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.crafted-work__card {
  background-color: #F8F9FB;
  border-radius: 36px;
  padding: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(235, 236, 239, 0.85);
  display: flex;
  flex-direction: column;
}

.crafted-work__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 106, 70, 0.3);
}

.crafted-work__img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crafted-work__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.crafted-work__card:hover .crafted-work__img {
  transform: scale(1.02);
}

/* Bottom Complete Portfolio Banner Box */
.crafted-work__banner {
  display: block;
  width: 100%;
  border-radius: 36px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* background: #FFF9F6 url('../assets/images/portfolio-banner-bg-clean.png') no-repeat center center / cover; */
  background: url('../assets/images/portfolio-banner-bg-clean.png') no-repeat center center / cover;
  /* border: 1px solid rgba(230, 106, 70, 0.18); */
  /* box-shadow: 0 16px 40px rgba(230, 106, 70, 0.08); */
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.crafted-work__banner:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 106, 70, 0.35);
  box-shadow: none;
}

.crafted-work__banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crafted-work__banner-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: #222222;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.crafted-work__banner-title {
  font-family: var(--font-primary);
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.crafted-work__banner-title .text-dark {
  color: #4B4D52;
}

.crafted-work__banner-title .text-orange {
  color: var(--color-primary);
}

.crafted-work__banner-date {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 400;
  color: #6E7075;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   13. CAREER / WORK EXPERIENCE (EXACT TO input_file_0.png / turn 29)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.experience {
  padding: 60px 0 140px;
  background-color: transparent;
  width: 100%;
}

.experience__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.experience__title-area {
  display: flex;
  flex-direction: column;
}

.experience__title {
  font-family: var(--font-primary);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.experience__title .text-orange {
  color: var(--color-primary);
}

.experience__title .text-dark {
  color: #4B4D52;
}

.experience__header .btn--outline-orange {
  margin-bottom: 6px;
}

.experience__header .btn--outline-orange .download-icon {
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.experience__header .btn--outline-orange:hover .download-icon {
  transform: translateY(3px);
  color: #FFFFFF;
}

.experience__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.experience__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience__item:hover {
  transform: translateX(8px);
}

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

.experience__role {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  color: #4B4D52;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.experience__item:hover .experience__role {
  color: var(--color-primary);
}

.experience__company {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: #7A7C80;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.experience__date {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 500;
  color: #6E7075;
  text-align: right;
  white-space: nowrap;
}

.experience__divider {
  height: 1px;
  background-color: #E6E8EC;
  width: 100%;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   14. TESTIMONIALS / VOICES OF SATISFACTION (EXACT TO input_file_0.png / turn 31)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.testimonials {
  padding: 80px 0 60px;
  background-color: #FFFFFF;
  width: 100%;
}

.testimonials__header {
  margin-bottom: 64px;
}

.testimonials__title {
  font-family: var(--font-primary);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.testimonials__title .text-orange {
  color: var(--color-primary);
}

.testimonials__title .text-dark {
  color: #4B4D52;
}

/* Slider Viewport & Track */
.testimonials__viewport {
  width: 100%;
  overflow: hidden;
  margin-bottom: 56px;
  position: relative;
}

.testimonials__track {
  display: flex;
  width: 200%;
  /* 2 slides of 100% each */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials__slide {
  width: 50%;
  /* 100% of viewport width each */
  flex-shrink: 0;
  padding: 8px 4px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Testimonial Card Styling */
.testimonials__card {
  background-color: #FFFFFF;
  border-radius: 36px;
  overflow: hidden;
  padding: 40px 36px 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(235, 236, 239, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.06);
  /* border-color: rgba(230, 106, 70, 0.35); */
}

.testimonials__quote-icon {
  font-family: Georgia, serif;
  color: var(--color-primary);
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 24px;
  user-select: none;
}

.testimonials__text {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 400;
  color: #5A5C60;
  line-height: 1.65;
  margin-bottom: 32px;
  flex-grow: 1;
}

.testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #FFB800;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonials__divider {
  height: 1px;
  background-color: #E6E8EC;
  width: 100%;
  margin-bottom: 24px;
}

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

.testimonials__client-name {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #33353A;
  margin-bottom: 4px;
}

.testimonials__client-role {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 400;
  color: #7A7C80;
}

/* Pagination Dots */
.testimonials__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E2E4E8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials__dot:hover {
  background-color: #D0D4DC;
}

.testimonials__dot--active {
  width: 40px;
  border-radius: 10px;
  background-color: var(--color-primary);
}

.testimonials__dot--active:hover {
  background-color: #D85C38;
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   15. CONTACT INFORMATION / LET'S CONNECT (EXACT TO input_file_0.png / turn 33)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.contact {
  padding: 60px 0 80px;
  margin-bottom: 0;
  background-color: transparent;
  width: 100%;
}

.contact__header {
  margin-bottom: 56px;
}

.contact__title {
  font-family: var(--font-primary);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.contact__title .text-orange {
  color: var(--color-primary);
}

.contact__title .text-dark {
  color: #4B4D52;
}

/* Contact Grid Layout */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  column-gap: 96px;
  align-items: start;
}

.contact__form-wrap {
  width: 100%;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Form Groups & Labels */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group--status {
  margin-bottom: 8px;
}

.form-label {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #4B4D52;
}

.form-label .text-orange {
  color: var(--color-primary);
}

/* Radio Buttons */
.form-radio-group {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.radio-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-custom {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #C4C7CE;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  background-color: transparent;
}

.radio-input:checked+.radio-custom {
  border-color: var(--color-primary);
  border-width: 2px;
}

.radio-input:checked+.radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.radio-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #5A5C60;
  transition: color 0.3s ease;
}

.radio-input:checked~.radio-text {
  color: #33353A;
}

/* Text Inputs & Textarea (Exact bottom border style to screenshot) */
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #E6E8EC;
  padding: 14px 0;
  font-family: var(--font-primary);
  font-size: 1.02rem;
  color: #33353A;
  background: transparent;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #B0B4BD;
  font-weight: 400;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.form-textarea {
  resize: none;
  min-height: 54px;
}

/* Submit Pill Button */
.form-submit-wrap {
  margin-top: 16px;
}

.btn--contact-submit {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* box-shadow: 0 10px 28px rgba(230, 106, 70, 0.3); */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  max-width: 380px;
}

.btn--contact-submit:hover {
  background-color: #D85C38;
  transform: translateY(-4px);
  /* box-shadow: 0 16px 36px rgba(230, 106, 70, 0.4); */
}

.btn--contact-submit .submit-arrow {
  font-size: 1.4rem;
  line-height: 0.8;
  transition: transform 0.3s ease;
}

.btn--contact-submit:hover .submit-arrow {
  transform: translateX(4px);
}

/* Right Column Portrait Card */
.contact__card {
  width: 100%;
  max-width: 380px;
  border-radius: 36px;
  position: relative;
  /* box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(235, 236, 239, 0.85);
  background-color: transparent; */
  perspective: 1200px;
}

.contact__card:hover .flip-inner {
  transform: rotateY(180deg);
}

.contact__img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__card .flip-front,
.contact__card .flip-back {
  background-color: transparent;
}

.contact__portrait-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 36px;
  transform: scaleX(-1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   16. FOOTER / BOTTOM CLOSING BANNER (EXACT TO input_file_0.png & input_file_1.png / turn 35)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.footer {
  position: relative;
  width: 100%;
  padding: 100px 0 0;
  margin: 0;
  background: #6D4C3D url('../assets/images/footer-bg-clean.png') no-repeat center center / cover;
  background-position: center 17%;
  overflow: hidden;
  color: #FFFFFF;
}

.footer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(140, 100, 78, 0.4) 0%, rgba(100, 68, 50, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.footer__logo-wrap {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-img {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__logo-wrap:hover .footer__logo-img {
  transform: translateY(-4px) scale(1.05);
}

.footer__title-wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__title-img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}

.footer__main-title {
  font-family: var(--font-primary);
  font-size: 5.6rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
  text-stroke: 2px #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  user-select: none;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.24);
  margin: 56px 0 0;
}

.footer__bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  margin: 0;
}

.footer__copyright {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__social-link:hover {
  background-color: #FFFFFF;
  color: #8C644E;
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   17. ABOUT PAGE — INTRO STATEMENT (EXACT TO input_file_0.png / turn 43)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.about-main {
  padding-top: 110px;
  width: 100%;
}

.about-intro {
  padding: 56px 0 40px;
  width: 100%;
}

.about-intro__statement {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.015em;
  color: #4B4D53;
  text-transform: uppercase;
  margin: 0;
  max-width: 1160px;
}

.about-intro__statement .text-orange {
  color: var(--color-primary);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   18. ABOUT PAGE — FRAME 74 PORTFOLIO SHOWCASE GRID (EXACT TO input_file_0.png / turn 45)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.about-showcase {
  padding: 20px 0 120px;
  width: 100%;
}

.frame74-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
}

.frame74-card {
  background-color: var(--color-bg-white);
  border-radius: 32px;
  padding: 24px;
  border: 1px solid rgba(235, 236, 239, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.035);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.frame74-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 106, 70, 0.4);
}

.frame74-card__img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F9FB;
}

.frame74-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.frame74-card:hover .frame74-card__img {
  transform: scale(1.025);
}

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   19. ABOUT PAGE — STORY CHAPTER BANNER (EXACT TO input_file_0.png & input_file_1.png / turn 47)
   :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.about-story {
  padding: 0 0 140px;
  width: 100%;
}

.story-banner-2 {
  position: relative;
  width: 100%;
  background: #1C1514 url('../assets/images/about-story-banner-full.png') no-repeat center center / 100% 100%;
  border-radius: 36px;
  padding: 56px 64px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
}

/* Top Brand Logo & Text */
.about-story .story-banner__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-banner__logo-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-banner__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.story-banner__brand-text {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Main Heading */
.about-story .story-banner__title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.015em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 48px 0 52px;
  max-width: 1040px;
  margin-top: 0;
}

/* Bottom CTA Pill Button */
.about-story .story-banner__action {
  display: flex;
  align-items: center;
}

.btn-story-cta {
  background-color: #FFFFFF;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-story-cta:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  /* box-shadow: 0 14px 32px rgba(230, 106, 70, 0.35); */
}

.btn-story-cta__arrows {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.btn-story-cta:hover .btn-story-cta__arrows {
  color: #FFFFFF;
}