:root {
  --bg: #f5f2eb;
  --bg-soft: #efe8dc;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.8);
  --surface-dark: #0a1930;
  --surface-dark-soft: #10233d;
  --text: #172433;
  --text-soft: #52606f;
  --line: rgba(23, 36, 51, 0.1);
  --line-strong: rgba(23, 36, 51, 0.18);
  --primary: #102b4c;
  --primary-soft: #1b3f69;
  --accent: #bb8b4a;
  --accent-strong: #98672f;
  --white: #ffffff;
  --success: #1e8e5a;
  --danger: #c24131;
  --shadow-sm: 0 18px 45px rgba(17, 32, 52, 0.08);
  --shadow-md: 0 24px 60px rgba(17, 32, 52, 0.12);
  --shadow-lg: 0 40px 90px rgba(17, 32, 52, 0.18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(187, 139, 74, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(16, 43, 76, 0.08), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 36%, #f0e9de 100%);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

main section[id] {
  scroll-margin-top: 110px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.slider-viewport:focus-visible {
  outline: 3px solid rgba(187, 139, 74, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 120;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--surface-dark);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: #081425;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.topbar-inner,
.topbar-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  min-height: 48px;
}

.topbar-links a {
  color: #fff8ee;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.72);
  border-bottom: 1px solid rgba(23, 36, 51, 0.06);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.82);
  box-shadow: 0 16px 34px rgba(17, 32, 52, 0.08);
  backdrop-filter: blur(16px);
}

@supports not ((backdrop-filter: blur(16px))) {
  .site-header.is-scrolled {
    background: rgba(250, 247, 242, 0.96);
  }
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 276px;
  max-width: min(276px, 48vw);
  height: 76px;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.06);
  transform-origin: center;
  transition: width 0.25s ease, height 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled .nav {
  min-height: 68px;
}

.site-header.is-scrolled .brand-logo {
  width: 236px;
  height: 64px;
  max-width: min(236px, 42vw);
  transform: scale(1.02);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  justify-content: center;
}

.nav-links a {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: var(--text-soft);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
  background: rgba(16, 43, 76, 0.08);
}

.lang-link {
  border: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--white);
  box-shadow: 0 18px 32px rgba(187, 139, 74, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  border-color: rgba(16, 43, 76, 0.14);
}

.btn.wide {
  width: 100%;
}

.hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hamburger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.2s ease, top 0.2s ease;
}

.hamburger span:first-child {
  top: 18px;
}

.hamburger span:last-child {
  top: 28px;
}

.hamburger.is-open span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

.hamburger.is-open span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding-bottom: 24px;
  gap: 0.65rem;
}

.mobile-menu.open {
  display: grid;
}

.no-js .mobile-menu[hidden] {
  display: grid !important;
}

.mobile-menu a {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.hero-section {
  padding: 42px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 43, 76, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

h1,
h2,
h3,
summary,
.card-number,
.hero-metrics strong {
  font-family: "Outfit", sans-serif;
}

h1 {
  margin: 1rem 0 1.15rem;
  max-width: 11.5ch;
  font-size: clamp(2.9rem, 4vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics div,
.proof-grid > div,
.service-card,
.project-slide,
.timeline-card,
.insight-cards div,
.blog-card,
.contact-panel,
.contact-form-shell,
.article-card,
.sidebar-card,
.faq-list details,
.article-intro,
.article-section,
.blog-hero-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero-metrics div {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem;
  border-radius: 24px;
}

.hero-metrics strong {
  color: var(--primary);
  font-size: 1.05rem;
}

.hero-metrics span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-frame {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
}

.hero-frame img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  border-radius: 30px;
}

.hero-note {
  position: absolute;
  max-width: 280px;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(10, 25, 48, 0.88);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 44px rgba(7, 16, 30, 0.25);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.hero-note-top {
  top: 36px;
  left: -12px;
}

.hero-note-bottom {
  right: -16px;
  bottom: 36px;
}

.proof-strip {
  padding: 18px 0 8px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-grid > div {
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
}

.proof-grid p,
.section-head p,
.service-card p,
.slide-copy p,
.timeline-card p,
.insight-copy p,
.insight-cards span,
.blog-card p,
.contact-copy p,
.footer-text,
.privacy-note,
.article-meta,
.article-card p,
.article-list li,
.article-section p,
.article-section li,
.blog-hero-card p {
  color: var(--text-soft);
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  gap: 0.95rem;
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-head.narrow {
  max-width: 740px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.35rem;
  border-radius: 28px;
  min-height: 240px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(16, 43, 76, 0.08);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.service-card h3,
.slide-copy h3,
.timeline-card h3,
.blog-card h3,
.contact-copy h2,
.insight-copy h2,
.article-card h3,
.blog-hero-card h3,
.article-section h2,
.article-section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.28rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.projects-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.project-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
}

.slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  gap: 1rem;
}

.project-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  overflow: hidden;
  border-radius: 30px;
  scroll-snap-align: start;
}

.project-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.slide-copy {
  padding: 1.25rem;
}

.slide-copy span,
.blog-card-copy span,
.article-card span,
.blog-hero-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(16, 43, 76, 0.08);
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.dark-section {
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at top left, rgba(187, 139, 74, 0.22), transparent 20%),
    linear-gradient(140deg, #091422 0%, #10243c 56%, #163451 100%);
}

.dark-section .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f2d4a6;
}

.dark-section .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.timeline-card {
  padding: 1.35rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-card strong {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f3d2a1;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.75);
}

.insight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.1rem;
  align-items: start;
}

.insight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.insight-cards div {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  border-radius: 26px;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-card {
  overflow: hidden;
  border-radius: 28px;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card-copy {
  padding: 1.2rem;
}

.blog-card h3 a:hover {
  color: var(--primary-soft);
}

.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-panels {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-panel {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem;
  border-radius: 24px;
}

.contact-form-shell {
  padding: 1.5rem;
  border-radius: 30px;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-weight: 700;
  color: var(--primary);
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(16, 43, 76, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(187, 139, 74, 0.7);
  box-shadow: 0 0 0 4px rgba(187, 139, 74, 0.14);
}

.error-message {
  min-height: 1.1rem;
  color: var(--danger);
  font-size: 0.88rem;
}

.form-note {
  min-height: 1.4rem;
  margin: 1rem 0 0;
}

.privacy-note {
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.privacy-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at top right, rgba(187, 139, 74, 0.18), transparent 18%),
    linear-gradient(160deg, #071321 0%, #0d2036 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
  padding: 40px 0;
}

.footer-logo {
  filter: brightness(0) invert(1);
  width: 276px;
  max-width: min(276px, 58vw);
  height: 76px;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.1);
}

.site-footer strong {
  color: var(--white);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.copyright {
  padding: 16px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
}

.page-shell {
  padding: 48px 0 88px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}

.page-title {
  margin: 0.9rem 0 1rem;
  max-width: 14ch;
  font-size: clamp(2.4rem, 3.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-family: "Outfit", sans-serif;
}

.blog-hero-card,
.article-intro {
  padding: 1.4rem;
  border-radius: 30px;
}

.article-grid,
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.article-card,
.sidebar-card,
.article-section {
  padding: 1.35rem;
  border-radius: 28px;
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: start;
}

.article-content {
  display: grid;
  gap: 1rem;
}

.article-section ul,
.article-section ol,
.sidebar-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.sidebar-stack {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
}

.article-breadcrumbs,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.article-breadcrumbs a {
  color: var(--primary);
}

.article-section h2,
.article-section h3 {
  margin-top: 0;
}

.article-section .source-list a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
}

summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 43, 76, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-dot.is-active {
  background: var(--accent-strong);
  transform: scale(1.12);
}

@media (max-width: 1180px) {
  .no-js .hamburger {
    display: none;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .no-js .mobile-menu[hidden] {
    margin-top: 0.25rem;
  }

  .hero-grid,
  .page-hero,
  .insight-grid,
  .contact-grid,
  .footer-grid,
  .proof-grid,
  .hero-metrics,
  .service-grid,
  .blog-preview-grid,
  .timeline-grid,
  .article-layout {
    grid-template-columns: 1fr 1fr;
  }

  .project-slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .sidebar-stack {
    position: static;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    font-size: 0.8rem;
  }

  .topbar-copy {
    display: none;
  }

  .topbar-inner,
  .topbar-links {
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .topbar-inner {
    min-height: 38px;
  }

  .nav {
    min-height: 72px;
    gap: 0.7rem;
  }

  .nav-actions {
    display: none;
  }

  .hero-grid,
  .hero-metrics,
  .proof-grid,
  .service-grid,
  .timeline-grid,
  .insight-grid,
  .insight-cards,
  .blog-preview-grid,
  .contact-grid,
  .footer-grid,
  .page-hero,
  .blog-grid,
  .article-grid,
  .article-layout,
  .field.two-col {
    grid-template-columns: 1fr;
  }

  .hero-frame img {
    min-height: 360px;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .project-slider {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .slider-viewport {
    scroll-padding-inline: 2px;
  }

  .project-slide {
    flex-basis: 100%;
  }

  h1,
  .page-title {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .btn,
  .hero-actions {
    width: 100%;
  }

  main section[id] {
    scroll-margin-top: 88px;
  }

  .brand-logo {
    width: 220px;
    max-width: min(220px, 66vw);
    height: 64px;
    object-position: center 44%;
    transform: scale(1.04);
  }

  .site-header.is-scrolled .nav {
    min-height: 62px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 188px;
    max-width: min(188px, 58vw);
    height: 54px;
    transform: scale(1);
  }

  .section {
    padding: 74px 0;
  }
}

/* V3 Homepage */
.v3-hero {
  padding: 34px 0 22px;
}

.v3-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: stretch;
}

.v3-hero-copy {
  display: grid;
  align-content: center;
  padding: 3.2rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(187, 139, 74, 0.2), transparent 24%),
    linear-gradient(155deg, #081626 0%, #0d2239 56%, #153452 100%);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
}

.v3-hero-copy .eyebrow {
  justify-self: start;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f1d4a8;
}

.v3-hero-copy h1 {
  max-width: 9.6ch;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.v3-hero-lead {
  max-width: 56ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
}

.v3-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.v3-client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.v3-client-strip span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.v3-hero-stage {
  position: relative;
  min-height: 720px;
}

.v3-stage-visual {
  height: 100%;
  margin: 0;
  padding: 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-lg);
}

.v3-stage-visual img {
  width: 100%;
  height: 100%;
  min-height: 684px;
  object-fit: cover;
  border-radius: 32px;
  aspect-ratio: 4 / 5;
}

.v3-stage-panel {
  position: absolute;
  max-width: 260px;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 36, 51, 0.08);
  box-shadow: var(--shadow-md);
}

.v3-stage-panel strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--primary);
}

.v3-stage-panel span {
  color: var(--text-soft);
}

.v3-stage-panel-top {
  top: 38px;
  left: -16px;
}

.v3-stage-panel-bottom {
  right: -16px;
  bottom: 36px;
}

.v3-elevator {
  padding: 10px 0 8px;
}

.v3-elevator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.v3-elevator-grid > div {
  padding: 1.1rem 1.15rem;
  border-top: 1px solid var(--line-strong);
}

.v3-kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.v3-elevator-grid p {
  margin: 0;
  max-width: 32ch;
  color: var(--text);
  font-size: 1.03rem;
}

.v3-section-head {
  display: grid;
  gap: 0.95rem;
  max-width: 980px;
  margin-bottom: 2rem;
}

.v3-section-head h2 {
  max-width: 18ch;
}

.v3-editorial {
  padding-top: 96px;
}

.v3-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.v3-editorial-card {
  grid-column: span 4;
  padding: 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.v3-editorial-card-large {
  grid-column: span 6;
  min-height: 280px;
  background:
    radial-gradient(circle at top left, rgba(187, 139, 74, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.v3-editorial-card h3 {
  font-size: 1.36rem;
}

.v3-cases {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.v3-case-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.v3-case-head h2 {
  max-width: 14ch;
}

.v3-case-head p {
  max-width: 34ch;
  margin: 0;
  color: var(--text-soft);
}

.v3-project-slider .slider-arrow {
  background: rgba(16, 43, 76, 0.92);
  color: var(--white);
  border-color: transparent;
}

.v3-project-slide {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.v3-project-slide img {
  height: 320px;
}

.v3-why {
  padding-top: 94px;
}

.v3-why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  align-items: start;
}

.v3-why-copy {
  display: grid;
  gap: 0.95rem;
}

.v3-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.v3-why-list div {
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.v3-why-list strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--primary);
}

.v3-why-list span {
  color: var(--text-soft);
}

.v3-process .v3-section-head h2 {
  max-width: 16ch;
}

.v3-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.v3-process-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.v3-process-card strong {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f3d2a1;
  font-family: "Outfit", sans-serif;
}

.v3-process-card h3 {
  color: var(--white);
}

.v3-process-card p {
  color: rgba(255, 255, 255, 0.74);
}

.v3-blog {
  padding-top: 94px;
}

.v3-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.v3-blog-card {
  padding: 1.4rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.v3-blog-card span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(16, 43, 76, 0.08);
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.v3-blog-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.28rem;
}

.v3-blog-card p {
  margin: 0;
  color: var(--text-soft);
}

.v3-contact {
  padding-top: 96px;
}

.v3-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.v3-contact-copy {
  display: grid;
  gap: 1rem;
}

.v3-contact-copy h2 {
  max-width: 14ch;
}

.v3-contact-meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.v3-contact-meta div {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-strong);
}

.v3-contact-meta strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.v3-contact-form {
  background:
    radial-gradient(circle at top right, rgba(187, 139, 74, 0.12), transparent 22%),
    rgba(255, 255, 255, 0.92);
}

@media (max-width: 1180px) {
  .v3-hero-grid,
  .v3-why-grid,
  .v3-contact-grid {
    grid-template-columns: 1fr;
  }

  .v3-editorial-card {
    grid-column: span 6;
  }

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

  .v3-blog-grid,
  .v3-elevator-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .v3-hero-copy {
    padding: 2rem 1.35rem;
  }

  .v3-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.5rem, 10vw, 4.2rem);
  }

  .v3-hero-stage {
    min-height: 0;
  }

  .v3-stage-visual {
    padding: 14px;
  }

  .v3-stage-visual img {
    min-height: 360px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .v3-stage-panel {
    position: absolute;
    z-index: 2;
    max-width: min(210px, calc(100% - 44px));
    padding: 0.85rem 0.9rem;
    border-radius: 20px;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
  }

  .v3-stage-panel span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .v3-stage-panel-top {
    top: 28px;
    left: 24px;
  }

  .v3-stage-panel-bottom {
    right: 24px;
    bottom: 24px;
  }

  .v3-elevator-grid,
  .v3-why-list,
  .v3-blog-grid,
  .v3-process-grid {
    grid-template-columns: 1fr;
  }

  .v3-editorial-grid {
    grid-template-columns: 1fr;
  }

  .v3-editorial-card,
  .v3-editorial-card-large {
    grid-column: auto;
  }

  .v3-case-head {
    display: grid;
  }

  .v3-project-slide img {
    height: 260px;
  }

  .v3-hero-actions {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .v3-stage-visual {
    padding: 12px;
  }

  .v3-stage-visual img {
    min-height: 320px;
    aspect-ratio: 10 / 11;
  }

  .v3-stage-panel {
    max-width: min(178px, calc(100% - 36px));
    padding: 0.72rem 0.78rem;
    border-radius: 18px;
  }

  .v3-stage-panel strong {
    margin-bottom: 0.18rem;
    font-size: 0.95rem;
  }

  .v3-stage-panel span {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .v3-stage-panel-top {
    top: 22px;
    left: 18px;
  }

  .v3-stage-panel-bottom {
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
