:root {
  --bg: #fbf9f5;
  --surface: #fffdf9;
  --text: #25282e;
  --muted: #4a4f58;
  --primary: #e08437;
  --primary-dark: #c96f1f;
  --ink: #20252b;
  --line: #e8ded2;
  --soft: #fff4e8;
  --shadow: 0 16px 36px rgba(32, 37, 43, 0.12);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, transparent 0 64%, rgba(224, 132, 55, 0.06) 64% 74%, transparent 74%),
    radial-gradient(circle at 5% 18%, rgba(224, 132, 55, 0.08) 0, transparent 34%),
    var(--bg);
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, 91vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 222, 210, 0.78);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 138px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.7rem);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav .active::after {
  transform: scaleX(1);
}

.main-nav .active {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.45rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  background: #ffffff;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.about-band {
  position: relative;
  margin-top: -1px;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, #fffdf9 0%, #fff8ef 100%);
  border-radius: 64px 0 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy h2,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.about-copy p:not(.eyebrow),
.section-heading > p {
  color: var(--muted);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.value-item {
  min-height: 180px;
  padding: 0.5rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.value-item img {
  width: 74px;
  height: 74px;
  margin: 0 auto 0.75rem;
}

.value-item h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-section {
  padding: 3rem 0 1rem;
}

.centered {
  text-align: center;
}

.heading-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.heading-rule span {
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading p {
  margin-bottom: 0;
}

.services-layout {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  margin-top: 2.4rem;
}

.service-row {
  display: grid;
  gap: 0;
}

.service-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 840px;
  margin-inline: auto;
}

.service-item {
  padding: 0.5rem 2.15rem 0.75rem;
  text-align: center;
}

.service-row--three .service-item:not(:last-child),
.service-row--two .service-item:not(:last-child) {
  border-right: 4px solid var(--primary);
}

.service-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 0.9rem;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-item h3 {
  margin: 0 0 0.85rem;
  color: #000000;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.15vw, 1.45rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #595959;
  font-size: clamp(1rem, 0.95vw, 1.12rem);
  line-height: 1.4;
  text-align: left;
}

.service-item li {
  margin: 0.12rem 0;
}

.service-item li::before {
  content: "- ";
}

.cta-section {
  padding: 2rem 0 3.25rem;
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(170px, 0.32fr);
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  border-radius: 18px;
  color: #ffffff;
  background: var(--primary);
  padding: 1rem 1.5rem;
}

.cta-icon {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ink);
}

.cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box p,
.cta-box h2 {
  margin: 0;
  color: #ffffff;
}

.cta-box p {
  font-weight: 900;
  text-transform: uppercase;
}

.cta-box h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.cta-box h2 span {
  color: #fff2bf;
}

.cta-box > a {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 3px solid #fff2bf;
  border-radius: 50%;
  color: #ffffff;
  font-size: 2.2rem;
}

.cta-copy {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.58);
}

.cta-copy strong,
.cta-copy span {
  display: block;
}

.site-footer {
  margin-top: 0;
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 160px 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2.4rem;
}

.footer-logo {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-logo img {
  width: 145px;
  filter: brightness(0) invert(1);
}

.footer-copy,
.footer-contact {
  font-style: normal;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-copy p {
  display: block;
  margin: 0.2rem 0;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
}

.contact-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-links {
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
}

.studio-hero {
  padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.2rem);
  background:
    linear-gradient(135deg, rgba(224, 132, 55, 0.08), transparent 32%),
    linear-gradient(225deg, rgba(224, 132, 55, 0.05), transparent 28%),
    #fcfbf8;
}

.studio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.studio-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  color: var(--ink);
  font-family: "Arial Narrow", "Impact", "Haettenschweiler", "Franklin Gothic Condensed", sans-serif;
  font-size: clamp(2.8rem, 5.1vw, 5.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.studio-hero-text {
  max-width: 46rem;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(224, 132, 55, 0.18);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-stats article {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.studio-hero-visual {
  position: relative;
}

.studio-hero-frame {
  min-height: 540px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(32, 37, 43, 0.08), rgba(32, 37, 43, 0)),
    #ffffff;
  box-shadow: 0 30px 60px rgba(32, 37, 43, 0.12);
}

.studio-hero-frame img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-floating {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 270px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(232, 222, 210, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-floating-top {
  top: 1.35rem;
  left: -1.1rem;
}

.hero-floating-top img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-floating-top strong,
.hero-floating-bottom strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.1;
}

.hero-floating-top span,
.hero-floating-bottom span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-floating-bottom {
  right: -1rem;
  bottom: 1.2rem;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--ink), #111418);
}

.hero-floating-bottom strong,
.hero-floating-bottom span {
  color: #ffffff;
}

.intro-band {
  padding: 0 0 2.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.intro-copy h2 {
  margin: 0;
  max-width: 13ch;
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.intro-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.intro-pills span {
  padding: 0.58rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.services-section {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.solution-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.solution-card:nth-child(n + 4) {
  grid-column: span 3;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 132, 55, 0.45);
}

.solution-card[open] {
  background: #fffaf4;
  border-color: rgba(224, 132, 55, 0.55);
}

.solution-card summary {
  list-style: none;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 0.95rem;
  align-items: center;
  padding: 1rem 1rem 1rem 1rem;
  cursor: pointer;
}

.solution-card summary::-webkit-details-marker {
  display: none;
}

.solution-card h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.1rem, 1.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.05;
  text-transform: uppercase;
}

.solution-card summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.solution-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease;
}

.solution-card[open] .solution-toggle {
  transform: rotate(45deg);
}

.solution-card ul {
  margin: 0;
  padding: 0 1rem 1.1rem 4.8rem;
  list-style: none;
}

.solution-card li {
  position: relative;
  margin: 0.28rem 0;
  color: var(--muted);
  line-height: 1.45;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.65rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--primary);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-section {
  padding: 1rem 0 3rem;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ink), #111418);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(224, 132, 55, 0.18);
}

.process-card span {
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0.55rem;
  color: #ffffff;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.process-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 3.5rem 5vw 2rem;
  }

  .hero-panel {
    min-height: 280px;
    clip-path: none;
  }

  .studio-hero-grid {
    grid-template-columns: 1fr;
  }

  .studio-hero-copy h1 {
    max-width: 14ch;
  }

  .studio-hero-frame,
  .studio-hero-frame img {
    min-height: 420px;
  }

  .hero-floating-top {
    left: 0.2rem;
  }

  .hero-floating-bottom {
    right: 0.2rem;
  }

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

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

  .solution-card,
  .solution-card:nth-child(n + 4) {
    grid-column: span 1;
  }

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

  .about-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row--three,
  .service-row--two {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .service-row--three .service-item:nth-child(2) {
    border-right: 0;
  }

  .service-row--three .service-item:last-child,
  .service-row--two .service-item:last-child {
    border-right: 0;
  }

  .service-row--three .service-item:nth-child(1),
  .service-row--two .service-item:nth-child(1) {
    padding-left: 0;
  }

  .service-row--three .service-item:nth-child(2),
  .service-row--two .service-item:nth-child(2) {
    padding-right: 0;
  }

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

  .cta-copy {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 5vw 1.2rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .studio-hero {
    padding-top: 1.5rem;
  }

  .studio-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .studio-hero-frame,
  .studio-hero-frame img {
    min-height: 320px;
  }

  .hero-floating {
    position: static;
    max-width: none;
    margin-top: 0.85rem;
  }

  .studio-hero-visual {
    display: flex;
    flex-direction: column;
  }

  .intro-grid,
  .solutions-grid,
  .process-grid,
  .footer-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list,
  .value-item {
    border: 0;
  }

  .solutions-grid {
    gap: 0.85rem;
  }

  .solution-card {
    grid-column: span 1;
  }

  .solution-card summary {
    grid-template-columns: 62px minmax(0, 1fr) auto;
  }

  .solution-card ul {
    padding-left: 1rem;
  }

  .process-grid {
    gap: 0.85rem;
  }

  .footer-grid {
    gap: 1.25rem;
  }

  .footer-logo {
    border-right: 0;
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    letter-spacing: 0.22em;
  }

  .footer-contact a {
    justify-content: flex-start;
  }

  .cta-section {
    padding-bottom: 2rem;
  }

  .cta-icon {
    width: 86px;
    height: 86px;
  }
}
