/* ===== Custom Properties ===== */
:root {
  --emerald-950: #022c22;
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50:  #ecfdf5;
  --cream-50:   #fefce8;
  --cream-100:  #fef9c3;
  --cream-200:  #fef08a;
  --cream-300:  #fde68a;
  --cream-400:  #fcd34d;
  --cream:      #fffbeb;
  --cream-light:#fffbf0;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-300:   #d1d5db;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7785;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --gray-900:   #111827;

  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(6, 95, 70, 0.06), 0 1px 2px rgba(6, 95, 70, 0.04);
  --shadow-md: 0 4px 16px rgba(6, 95, 70, 0.08), 0 2px 4px rgba(6, 95, 70, 0.04);
  --shadow-lg: 0 12px 40px rgba(6, 95, 70, 0.12), 0 4px 12px rgba(6, 95, 70, 0.06);
  --shadow-xl: 0 24px 60px rgba(6, 95, 70, 0.15), 0 8px 20px rgba(6, 95, 70, 0.08);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background-color: var(--cream-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

label {
  font-weight: 500;
}

/* ===== Utility ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald-800);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.3);
}

.btn--primary:hover {
  background: var(--emerald-700);
  box-shadow: 0 6px 24px rgba(6, 95, 70, 0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--emerald-800);
  border: 1.5px solid rgba(6, 95, 70, 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--white);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--emerald-800);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
}

.section__tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.section__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--emerald-600);
  border-radius: 2px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--emerald-700);
}

.section__description {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.section__header--center .section__description {
  margin: 0 auto;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(255, 251, 240, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(6, 95, 70, 0.08);
  padding: 12px 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--emerald-800);
  font-weight: 600;
  font-size: 1.0625rem;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.nav__logo-icon {
  color: var(--emerald-800);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--emerald-800);
  background: rgba(6, 95, 70, 0.06);
}

.nav__link--cta {
  background: var(--emerald-800);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--emerald-700);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--emerald-800);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 251, 240, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--emerald-800);
}

.mobile-menu__link--cta {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--emerald-800);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 14px 32px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-50) 40%, var(--emerald-50) 100%);
  padding: 120px 0 80px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(253, 230, 138, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__gradient-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.08);
  top: -100px;
  right: -100px;
}

.hero__gradient-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(253, 230, 138, 0.12);
  bottom: -50px;
  left: -50px;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 24px;
  background: rgba(6, 95, 70, 0.06);
  padding: 8px 16px 8px 12px;
  border-radius: var(--radius-xl);
}

.hero__tag-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-600);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero__subheadline {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
}

.hero__trust-item svg {
  color: var(--emerald-600);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__image-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image--main {
  width: 100%;
  aspect-ratio: 4/5;
}

.hero__image--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 55%;
  border: 5px solid var(--cream-light);
  box-shadow: var(--shadow-lg);
}

.hero__image--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--small {
  position: absolute;
  top: 30%;
  right: -30px;
  width: 45%;
  border: 5px solid var(--cream-light);
  box-shadow: var(--shadow-lg);
}

.hero__image--small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__floating-card {
  position: absolute;
  bottom: 60px;
  left: -20px;
  z-index: 2;
}

.hero__floating-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero__floating-card-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__floating-card-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-400);
  z-index: 1;
  animation: float-down 2s ease-in-out infinite;
}

@keyframes float-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== Services ===== */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-600), var(--emerald-400));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: rgba(6, 95, 70, 0.1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  background: var(--emerald-800);
  color: var(--white);
}

.service-card--featured::before {
  background: linear-gradient(90deg, var(--cream-300), var(--cream-200));
  opacity: 1;
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__description,
.service-card--featured .service-card__list li {
  color: var(--white);
}

.service-card--featured .service-card__list li::before {
  color: var(--cream-300);
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cream-300);
  color: var(--emerald-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 95, 70, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--emerald-700);
  transition: all var(--transition-base);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream-200);
}

.service-card:hover .service-card__icon {
  background: var(--emerald-800);
  color: var(--white);
  transform: scale(1.05);
}

.service-card--featured:hover .service-card__icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--emerald-600);
  font-weight: 700;
}

/* ===== Work Gallery ===== */
.work {
  background: var(--cream-light);
}

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

.work__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.work__item--large {
  grid-column: span 7;
  aspect-ratio: 4/3;
}

.work__item--tall {
  grid-column: span 5;
  aspect-ratio: 3/4;
}

.work__item:not(.work__item--large):not(.work__item--tall) {
  aspect-ratio: 1;
}

.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.work__item:hover img {
  transform: scale(1.06);
}

.work__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.work__item:hover .work__item-overlay {
  opacity: 1;
}

.work__item-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-200);
  margin-bottom: 8px;
}

.work__item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
}

/* ===== About ===== */
.about {
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.about__image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--emerald-800);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__experience-number {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.about__experience-location {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
}

.about__content {
  max-width: 480px;
}

.about__text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 95, 70, 0.08);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
}

.about__value strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.about__value span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ===== Process ===== */
.process {
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 90%, rgba(253, 230, 138, 0.06) 0%, transparent 50%),
                    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.process .section__tag {
  color: var(--cream-300);
}

.process .section__tag::before {
  background: var(--cream-300);
}

.process .section__title {
  color: var(--white);
}

.process .section__title em {
  color: var(--cream-300);
}

.process .section__description {
  color: rgba(255, 255, 255, 0.6);
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0;
  position: relative;
}

.process__step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream-300);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process__step-content {
  flex: 1;
  padding-top: 12px;
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.process__step-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.process__step-text a {
  color: var(--cream-300);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.process__step-text a:hover {
  color: var(--white);
}

.process__step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-700) 50%, var(--emerald-600) 100%);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(253, 230, 138, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-300);
  margin-bottom: 16px;
}

.cta-banner__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 500px;
}

.cta-banner__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 440px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== Contact ===== */
.contact {
  background: var(--cream-light);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info {
  max-width: 480px;
}

.contact__text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 95, 70, 0.08);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
}

.contact__detail strong {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.contact__detail a:hover {
  color: var(--emerald-700);
  text-decoration: underline;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact__form-wrapper {
  width: 100%;
}

.contact__form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6, 95, 70, 0.06);
}

.contact__form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact__form-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--transition-fast);
  outline: none;
}

.form__input::placeholder {
  color: var(--gray-400);
}

.form__input:focus {
  border-color: var(--emerald-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236b7785' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form__success.show {
  display: block;
}

.form__success-icon {
  margin: 0 auto 20px;
}

.form__success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form__success-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 16px;
}

.footer__logo-icon {
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__contact-item:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
}

/* ===== Reveal Animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.4s; }
[data-reveal].revealed:nth-child(6) { transition-delay: 0.5s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__headline {
    max-width: 100%;
  }

  .hero__subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    justify-content: center;
  }

  .hero__image-stack {
    max-width: 400px;
  }

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

  .work__item--large {
    grid-column: span 12;
  }

  .work__item--tall {
    grid-column: span 6;
  }

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

  .about__content {
    max-width: 100%;
  }

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav__menu {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero__image--accent {
    left: -16px;
    bottom: -16px;
  }

  .hero__image--small {
    right: -16px;
    top: 20%;
  }

  .hero__floating-card {
    left: -8px;
    bottom: 40px;
  }

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

  .work__item--tall {
    grid-column: span 12;
  }

  .work__item-overlay {
    opacity: 1;
  }

  .process__steps::before {
    left: 20px;
  }

  .process__step {
    gap: 20px;
  }

  .process__step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9375rem;
  }

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

  .contact__form-card {
    padding: 28px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about__image-secondary {
    right: -16px;
    bottom: -20px;
  }

  .about__experience-badge {
    top: -12px;
    left: -12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__image-stack {
    max-width: 100%;
  }

  .hero__image--accent,
  .hero__image--small {
    display: none;
  }

  .hero__trust {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
