:root {
  --bg: #f8f6f1;
  --bg-section-light: #fcfcfa;
  --bg-section-soft: #f5f4f2;
  --header-bg: #fcfcfa;
  --text: #171717;
  --muted: #5f5b54;
  --line: rgba(17,17,17,0.08);
  --pad: clamp(22px, 4vw, 48px);
  --section-space: clamp(60px, 8vw, 105px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

p + p {
  margin-top: 18px;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
}

h1 {
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h1 em {
  font-style: italic;
}

/* GLOBAL LAYOUT */

.section {
  width: 100%;
  padding: var(--section-space) var(--pad);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.section-light {
  background: var(--bg-section-light);
}

.section-soft {
  background: var(--bg-section-soft);
}

.content-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-stack > * + * {
  margin-top: 30px;
}

.content-stack > .button-row,
.content-stack > .text-link {
  margin-top: 38px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.split-media {
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: clamp(340px, 34vw, 460px);
  object-fit: cover;
}

.eyebrow,
.side-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 84px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.site-nav {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 46px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  display: flex;
}

.site-nav a:not(.button) {
  transition: opacity 220ms ease;
}

.site-nav a:not(.button):hover {
  opacity: 0.62;
}

.nav-contact {
  min-height: 48px;
  padding: 0 22px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  transition:
    transform 260ms var(--ease),
    opacity 220ms ease,
    top 260ms var(--ease);
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 23px;
}

.menu-toggle span:nth-child(3) {
  top: 30px;
}

.menu-toggle.is-active span:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

/* BUTTONS */

.button,
.button[type="submit"] {
  position: relative;
  width: fit-content;
  min-height: 56px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--text);
  color: #fff;
  border: none;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
  background 260ms ease,
  color 260ms ease;
  position: relative;
  cursor: pointer;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-105%);
  transition: transform 420ms var(--ease);
}

.button:hover::before {
  transform: translateX(0);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}

/* TEXT LINKS */

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 5px;
}

.text-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.text-link::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 260ms var(--ease);
}

.text-link:hover::before {
  transform: scaleX(0.55);
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* HERO */

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
}

.hero-mobile-image {
  display: none;
}


/* WORK */

.examples {
  display: grid;
  grid-template-columns: 110px minmax(220px, 340px) 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.side-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 0;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: clamp(20px, 3vw, 32px);
   margin: 0;
  padding: 0;
  list-style: none;
}

.reveal-work {
  display: block;
  opacity: 0;
  transform: translateX(90px);
}

.reveal-work.is-visible {
  animation: exampleReveal 800ms var(--ease) forwards;
}

@keyframes exampleReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.example-card picture {
  display: block;
  margin-bottom: 20px;
}

.example-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(17,17,17,0.08);
}

.example-card span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.example-card small {
  color: var(--muted);
}


/* PROCESS */

.process-inner {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.process-step {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.06em;
  color: #8d8274;
  transition:
    transform 240ms var(--ease),
    color 240ms ease;
}

.process-step:hover span {
  transform: translateY(-10px);
  color: var(--text);
}

.process-step h3 {
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-step p {
  font-size: 0.88rem;
}

.process-step h3,
.process-step p {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.process-step.is-visible h3,
.process-step.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.process-step.is-visible p {
  transition-delay: 90ms;
}

/* PRICING */

.pricing {
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 0.7fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: stretch;
}

.price-card {
  padding: clamp(30px, 4vw, 52px);
  background: var(--bg-section-soft);
  border: 1px solid var(--line);
}

.price-card span {
  display: block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin-bottom: 28px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  color: #8d8274;
}
.price-card strong span {
  display: inline;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* IMAGE REVEAL */

.pricing-image img {
  transform: scale(1.06);
  transition: transform 1400ms var(--ease);
}

.pricing-image.is-visible img {
  transform: scale(1);
}

/* FLOW CHART */

.revision-flow-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}

.revision-flow-panels li {
  position: relative;
  min-height: 130px;
  padding: 22px;
  background: var(--bg-section-soft);
  border: 1px solid var(--line);
}

.revision-flow-panels span {
  display: block;
  margin-bottom: 14px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  line-height: 0.9;
  color: #8d8274;
}

.revision-flow-panels h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.revision-flow-panels p {
  margin-top: 10px;
  font-size: 0.82rem;
  line-height: 1.65;
}


/* FOOTER */

.site-footer {
  padding: clamp(44px, 6vw, 72px) var(--pad) 28px;
  background: var(--bg-section-light);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.84rem;
}

.footer-column a {
  width: fit-content;
}

.footer-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.footer-address {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
   margin-top: 0;
}

.footer-brand {
  align-items: flex-end;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.78rem;
}

.footer-bottom p {
  font-size: 0.78rem;
}

[data-email-link]:empty,
[data-phone-link]:empty,
[data-whatsapp-link]:empty {
  display: none;
}

/* GLOBAL CARDS / STATS */

.stat-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px);
}

.stat-card,
.feature-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--bg-section-light);
  border: 1px solid var(--line);
}
.included-section .feature-card h3::before {
  content: "\2713";
  margin-right: 10px;
  color: #8d8274;
}
.not-included-section .feature-card h3::before {
  content: "\00D7";
  margin-right: 10px;
  color: #8d8274;
}
.section-light .stat-card,
.section-light .feature-card {
  background: var(--bg-section-soft);
}

.stat-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #8d8274;
}

.stat-card span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}
.project-details-grid .stat-card strong {
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.feature-card h3 {
  margin-bottom: 16px;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-card {
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}
.review-text {
  font-size: 1.02rem;
  line-height: 1.8;
  font-style: italic;
}
.review-stars {
  margin-bottom: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: #8d8274;
  font-style:normal;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17,17,17,0.08);
}
.process-steps-three {
  grid-template-columns: repeat(3, 1fr);
}

/* PROJECTS PAGE */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-card {
  display: flex;
  flex-direction: column;
}

.work-preview {
  position: relative;
  margin-bottom: 34px;
  padding-bottom: 22px;
  overflow: visible;
}

.work-preview-desktop,
.work-preview-mobile {
  display: block;
  transform: translateZ(0) scale(1);
  transition: transform 0.45s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}

.work-preview-desktop img,
.work-preview-mobile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.work-preview-desktop img {
  box-shadow: 0 18px 40px rgba(17,17,17,0.08);
}

.work-preview-mobile {
  position: absolute;
  right: 18px;
  bottom: -22px;
  width: 24%;
  max-width: 118px;
  z-index: 2;
}

.work-preview-mobile img {
  background: #fff;
  box-shadow: 0 18px 40px rgba(17,17,17,0.18);
}

.work-card:hover .work-preview-desktop,
.work-card:focus-visible .work-preview-desktop,
.work-card:hover .work-preview-mobile,
.work-card:focus-visible .work-preview-mobile,
.work-feature-link:hover .work-preview-desktop,
.work-feature-link:focus-visible .work-preview-desktop,
.work-feature-link:hover .work-preview-mobile,
.work-feature-link:focus-visible .work-preview-mobile {
  transform: translateZ(0) scale(1.02);
}

.work-meta {
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style:normal;
}

.work-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.work-feature-section {
  align-items: center;
}

.work-feature-link {
  display: block;
  width: 100%;
  max-width: 760px;
  justify-self: end;
}

.work-preview-feature {
  margin-bottom: 0;
}

.work-preview-feature .work-preview-mobile {
  width: 28%;
  max-width: 148px;
}


/* SCOPE PRICE PAGE */

.scope-pricing .price-card {
  background: var(--bg-section-light);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.scope-pricing .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17,17,17,0.08);
}
.section-intro-grid {
  margin-top: 48px;
}

/* CONTACT FORM */

.contact-layout {
  align-items: start;
}

.contact-panel {
  padding: clamp(30px, 4vw, 52px);
  background: var(--bg-section-light);
  border: 1px solid var(--line);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17,17,17,0.5);
  background: #ffffff;
  padding: 18px 20px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(95,91,84,0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.form-legal {
  font-size: 0.75rem;
  line-height: 1.6;
}

.form-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-alert {
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--bg-section-soft);
}

.form-alert__title {
  color: var(--text);
  font-weight: 700;
}

.form-alert__list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.form-alert__list li + li {
  margin-top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* NO JS */

.no-js .reveal-work,
.no-js .process-step h3,
.no-js .process-step p {
  opacity: 1;
  transform: none;
}

.no-js .pricing-image img {
  transform: none;
}

/* ICON CARDS */

.revision-flow-panels li {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
}

.revision-flow-panels span {
  grid-column: 1;
}

.revision-flow-panels h3 {
  grid-column: 1;
  margin: 0;
}

.revision-flow-panels img {
  width: 62px;
  height: auto;
  object-fit: contain;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  transition: transform 0.35s var(--ease);
}

.revision-flow-panels li:hover img {
  transform: scale(1.08);
}
.scope-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .examples,
  .pricing,
  .process-inner {
    grid-template-columns: 1fr;
  }

.split-section {
  grid-template-columns: 1fr;
}
.split-media img {
  height: 560px;
}

  .hero-copy {
    width: min(100%, 450px);
  }

  .side-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .example-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
  align-items: flex-start;
}
.stat-grid,
.feature-grid {
  grid-template-columns: 1fr;
}
   .work-grid {
    grid-template-columns: 1fr;
  }

  .work-feature-link {
    max-width: 100%;
    justify-self: start;
  }

  .work-preview,
  .work-preview-feature {
    margin-bottom: 34px;
    padding-bottom: 22px;
  }

  .work-preview-mobile,
  .work-preview-feature .work-preview-mobile {
    right: 18px;
    bottom: -22px;
    width: 24%;
    max-width: 118px;
  }
}

@media (max-width: 640px) {
  .no-js .site-nav {
    position: static;
    display: flex;
    width: 100%;
  }

  .no-js .site-header {
    align-items: stretch;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 0;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .site-header {
    min-height: 74px;
    background: var(--bg-section-light);
  }

  .menu-toggle {
    display: block;
  }

.site-nav {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  display: none;
  background: var(--bg-section-light);
  border-bottom: 1px solid var(--line);
}

.site-nav ul {
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.site-nav li {
  width: 100%;
  display: block;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: block;
  width: 100%;
  padding: 18px var(--pad);
  text-align: center;
}

.site-nav li + li {
  border-top: 1px solid var(--line);
}

.nav-contact {
  width: 100%;
  min-height: auto;
  padding: 18px var(--pad);
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: center;
}

  h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }
  .split-media img {
  aspect-ratio: 1 / 1;
  height: auto;
}
  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 86px var(--pad) 56px;
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }


  .example-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
   .work-preview-mobile,
  .work-preview-feature .work-preview-mobile {
    right: 14px;
    bottom: -22px;
    width: 30%;
    max-width: none;
  }
    .revision-flow-panels {
    grid-template-columns: 1fr;
  }

  .revision-flow-panels li {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

.reveal-work,
.process-step h3,
.process-step p,
.work-preview-desktop,
.work-preview-mobile {
  opacity: 1;
  transform: none;
}
  .pricing-image img {
  transform: none;
}
}