/* DDesign Creative Agency — design system */
:root {
  --bg: #f5f4f1;
  --bg-alt: #ebe9e4;
  --surface: #ffffff;
  --ink: #121212;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #d8d5ce;
  --dark: #0e0e0e;
  --dark-2: #1a1a1a;
  --accent: #c45c26;
  --accent-hover: #a84b1d;
  --on-dark: #f5f4f1;
  --radius: 10px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 12px 40px rgba(18, 18, 18, 0.1);
  --shadow-float: 0 28px 60px rgba(18, 18, 18, 0.16);
  --container: 1120px;
  --header-h: 78px;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Epilogue", "Roboto", sans-serif;
  --font-accent: "Roboto Slab", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(196, 92, 38, 0.08), transparent 60%),
    linear-gradient(180deg, #f8f7f4 0%, var(--bg) 40%, #f0eee9 100%);
  min-height: 100vh;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Aesthetic helpers */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatYSoft {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
}

@keyframes clientFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 1.2rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  color: rgba(245, 244, 241, 0.82);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.7rem;
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.65rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lang-switch a {
  color: rgba(245, 244, 241, 0.65) !important;
  padding: 0.15rem 0.25rem !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem !important;
}

.lang-switch a:hover {
  color: #fff !important;
}

.lang-switch .lang-current {
  color: #fff;
}

.lang-switch .lang-sep {
  color: rgba(245, 244, 241, 0.35);
  user-select: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--on-dark);
  overflow: hidden;
  background: var(--dark);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: 84px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 48%, rgba(8, 8, 8, 0.25) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 5rem 0 4.5rem;
  /* Lift text + buttons ~20% of hero height */
  transform: translateY(calc(-0.2 * min(88vh, 760px)));
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 0.35rem;
  line-height: 0.95;
}

.brand-mark-d {
  color: #e31b23;
  -webkit-text-stroke: 1.25px #fff;
  paint-order: stroke fill;
}

.brand-sub {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(245, 244, 241, 0.72);
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  color: #fff;
  max-width: 22ch;
}

.hero h1 {
  max-width: 20ch;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(245, 244, 241, 0.86);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(196, 92, 38, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

/* Sections */
.section {
  position: relative;
  padding: 5.5rem 0;
  z-index: 1;
}

.section-dark {
  background: var(--dark);
  color: rgba(245, 244, 241, 0.88);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 30%),
    var(--bg-alt);
  border-radius: var(--radius-xl);
  margin: 0.5rem clamp(0.75rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-soft);
  overflow: clip;
}

.section-alt::before,
.section::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 92, 38, 0.12), transparent 70%);
  top: -40px;
  right: 6%;
  pointer-events: none;
  z-index: 0;
}

.section > .container,
.section-alt > .container {
  position: relative;
  z-index: 1;
}

/* Soft bridge between stacked sections */
.section + .section-alt,
.section-alt + .section {
  margin-top: 0.35rem;
}

.hero + .section {
  padding-top: 4rem;
}

.page-hero + .section {
  padding-top: 4rem;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-dark .section-head p {
  color: rgba(245, 244, 241, 0.7);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--dark-2);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  isolation: isolate;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.service-tile:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-float);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}

.service-tile:hover::before {
  transform: scale(1.06);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: -1;
}

.service-tile h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.service-tile p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.service-tile .link-more {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Detailed service blocks (homepage) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-detail {
  transition-delay: calc(var(--i, 0) * 80ms);
}

.service-detail:nth-child(1) { --i: 0; }
.service-detail:nth-child(2) { --i: 1; }
.service-detail:nth-child(3) { --i: 2; }
.service-detail:nth-child(4) { --i: 3; }
.service-detail:nth-child(5) { --i: 4; }
.service-detail:nth-child(6) { --i: 5; }

.service-detail-inner {
  height: 100%;
  padding: 1.45rem 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(18, 18, 18, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  animation: serviceDetailFloat 5.4s ease-in-out infinite;
  transition: border-color 0.3s, box-shadow 0.35s;
}

.service-detail:nth-child(2) .service-detail-inner { animation-delay: -0.9s; }
.service-detail:nth-child(3) .service-detail-inner { animation-delay: -1.8s; }
.service-detail:nth-child(4) .service-detail-inner { animation-delay: -2.7s; }
.service-detail:nth-child(5) .service-detail-inner { animation-delay: -3.6s; }
.service-detail:nth-child(6) .service-detail-inner { animation-delay: -4.5s; }

.service-detail:hover .service-detail-inner {
  border-color: transparent;
  box-shadow: var(--shadow-float);
}

@keyframes serviceDetailFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.service-detail-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.service-detail h3 {
  margin: 0;
  font-size: 1.12rem;
}

.service-detail p:not(.service-detail-num) {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-detail .check-list {
  margin-top: 0.15rem;
}

.service-detail .link-more {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  padding-top: 0.75rem;
  align-self: flex-start;
}

.service-detail .link-more:hover {
  color: var(--accent-hover);
}

.service-detail p:not(.service-detail-num) a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-detail p:not(.service-detail-num) a:hover {
  color: var(--accent);
}

.check-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2l2.2 2.2 4.8-4.8'/%3E%3C/svg%3E");
  background-size: 0.55rem;
  background-repeat: no-repeat;
  background-position: center;
}

.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.partner-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.partner-chips a:hover {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

/* Intro strip */
.intro-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.intro-strip h2 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.92vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.pill-list li {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
}

.intro-visual {
  position: relative;
  padding: 0.75rem;
}

.intro-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  animation: floatY 6.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.intro-visual::before {
  content: "";
  position: absolute;
  inset: 12% 0 -8% 18%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(196, 92, 38, 0.18), rgba(14, 14, 14, 0.08));
  z-index: 0;
  animation: floatDrift 8s ease-in-out infinite;
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: 1.4rem 0 -0.8rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  z-index: 0;
}

/* Clients */
.clients-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}

.client-logo {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  animation: clientFloat 4.8s ease-in-out infinite;
  transition: border-color 0.25s, box-shadow 0.35s;
}

.client-logo:nth-child(2) {
  animation-delay: -0.8s;
}

.client-logo:nth-child(3) {
  animation-delay: -1.6s;
}

.client-logo:nth-child(4) {
  animation-delay: -2.4s;
}

.client-logo:nth-child(5) {
  animation-delay: -3.2s;
}

.client-logo:nth-child(6) {
  animation-delay: -4s;
}

.client-logo:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.client-logo img {
  max-height: 77px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.3s, transform 0.3s;
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* CTA band */
.cta-band {
  background: var(--dark);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 48px;
  background: var(--bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 2;
  pointer-events: none;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 90% 20%, rgba(196, 92, 38, 0.28), transparent 60%),
    linear-gradient(135deg, #151515, #0a0a0a);
}

.cta-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 0.4rem;
}

.cta-inner p {
  margin: 0;
  color: rgba(245, 244, 241, 0.72);
  max-width: 42ch;
}

.cta-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: min(100%, 420px);
}

.cta-form input {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 0.95rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 999px;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.cta-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--dark);
  overflow: hidden;
}

.page-hero .hero-media img {
  animation: none;
  transform: none;
}

.page-hero .hero-content {
  padding: 4.5rem 0 3.8rem;
  /* ~20% of page-hero min-height (42vh) */
  transform: translateY(-8.4vh);
}

.page-hero .brand-sub {
  margin-bottom: 0.8rem;
}

/* Content blocks */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.content-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.content-split > div:last-child {
  position: relative;
}

.content-split > div:last-child::before {
  content: "";
  position: absolute;
  inset: 10% 0 -8% 14%;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(196, 92, 38, 0.16), rgba(14, 14, 14, 0.05));
  z-index: 0;
  animation: floatDrift 9s ease-in-out infinite;
}

.content-split img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  position: relative;
  z-index: 1;
  animation: floatYSoft 7s ease-in-out infinite;
}

.content-split > div:last-child:nth-child(odd) img,
.content-split:nth-child(even) img {
  animation-delay: -2.5s;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--surface);
  border-top: 3px solid var(--dark);
  padding: 1.5rem 1.25rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.process-icon {
  width: 72px;
  height: 64px;
  margin-bottom: 0.85rem;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.process-step .num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.project-card {
  display: block;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
}

.project-media {
  overflow: hidden;
  background: var(--dark);
}

.project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease);
}

.project-card:hover .project-media img {
  transform: scale(1.04);
}

.project-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1.15rem;
}

.project-meta h3 {
  margin: 0;
  font-size: 1.05rem;
}

.project-meta span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Pricing */
.pricing-block + .pricing-block {
  margin-top: 3rem;
}

.pricing-block > h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  background: var(--dark);
  color: rgba(245, 244, 241, 0.88);
  border-color: var(--dark);
  box-shadow: var(--shadow-float);
}

.price-card.featured h3,
.price-card.featured .price {
  color: #fff;
}

.price-card .tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.price-card.featured .tag {
  color: rgba(245, 244, 241, 0.55);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
}

.price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card.featured .price span {
  color: rgba(245, 244, 241, 0.55);
}

.price-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  flex: 1;
}

.price-card li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.price-card.featured .price-note {
  color: rgba(245, 244, 241, 0.55);
}

.pricing-addon {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  justify-items: stretch;
  text-align: center;
}

.pricing-addon-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 1.5rem;
  font-size: 1.02rem;
  border-radius: var(--radius-lg);
}

.pricing-addon-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  animation: floatYSoft 7.5s ease-in-out infinite;
}

.gallery figure:nth-child(2n) {
  animation-delay: -2s;
  animation-duration: 8.5s;
}

.gallery figure:nth-child(3n) {
  animation-delay: -4s;
  animation-duration: 6.8s;
}

.gallery figure:hover {
  box-shadow: var(--shadow-float);
  z-index: 2;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.55s var(--ease);
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.gallery-wide {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-wide img {
  aspect-ratio: 4/3;
}

.gallery-wide figure:nth-child(even) {
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .gallery-wide figure:nth-child(even) {
    margin-top: 0;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--dark);
  color: rgba(245, 244, 241, 0.88);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(196, 92, 38, 0.35), transparent 70%);
  pointer-events: none;
}

.contact-card h2 {
  color: #fff;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list strong {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-list a:hover {
  color: #fff;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.form input,
.form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(196, 92, 38, 0.12);
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
  min-height: 1.4em;
}

.form-status.ok {
  color: #2f6b3a;
}

.form-status.error {
  color: #a33a2c;
}

.cta-form .form-status {
  width: 100%;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--dark-2);
  color: rgba(245, 244, 241, 0.7);
  padding: 3.5rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 92, 38, 0.45), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 32ch;
  margin: 0;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .services-grid,
  .service-detail-grid,
  .pricing-grid,
  .process-grid,
  .clients-track,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip,
  .content-split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .lang-switch {
    margin: 0.75rem 0 0;
    align-self: flex-start;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .service-detail-grid,
  .pricing-grid,
  .process-grid,
  .clients-track,
  .projects-grid,
  .gallery,
  .gallery-wide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 3.5rem 0 3rem;
    transform: translateY(calc(-0.2 * 78vh));
  }

  .page-hero .hero-content {
    transform: translateY(-8.4vh);
  }

  .section {
    padding: 3.5rem 0;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .intro-visual img,
  .content-split img,
  .gallery figure,
  .client-logo,
  .service-detail-inner {
    animation: none !important;
  }
}

/* Soft section dividers between light blocks */
.section:not(.section-alt)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(180px, 40%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(196, 92, 38, 0.35), transparent);
  opacity: 0.7;
}

.section-alt + .cta-band,
.section + .cta-band {
  margin-top: 2.25rem;
}

.page-hero {
  border-bottom: none;
}

/* City landing links */
.city-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1rem;
}

.city-links a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.city-links a:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
  color: var(--accent);
}

@media (max-width: 980px) {
  .city-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .city-links {
    grid-template-columns: 1fr;
  }
}
