:root {
  --ink: #050505;
  --paper: #efeee9;
  --sage: #8f9588;
  --muted: #a5a5a0;
  --line: rgba(239, 238, 233, 0.22);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  mix-blend-mode: difference;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand img {
  width: 42px;
  height: 38px;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.main-nav a {
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--sage);
}

.nav-cta {
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 0.7rem 1.1rem;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-nav-label,
.mobile-nav-footer {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  padding: 24vh var(--pad) 7vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-kicker,
.eyebrow {
  color: var(--sage);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 1rem;
  padding-left: 0.35rem;
}

.hero h1,
.intro h2,
.contact h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.2rem, 11.3vw, 10.5rem);
  line-height: 0.77;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero h1 span,
.intro h2 em,
.contact h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sage);
  font-style: normal;
  font-weight: 500;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 3rem;
}

.hero-bottom > p {
  width: min(420px, 55%);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
}

.circle-link {
  width: 118px;
  height: 118px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.circle-link b {
  font-size: 1.3rem;
  margin-top: 0.35rem;
}

.circle-link:hover {
  background: var(--paper);
  color: var(--ink);
  transform: rotate(-8deg);
}

.hero-index {
  position: absolute;
  right: var(--pad);
  top: 25%;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--sage);
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
}

.topography,
.project-lines {
  position: absolute;
  pointer-events: none;
  background-image: repeating-radial-gradient(
    ellipse at 30% 60%,
    transparent 0,
    transparent 10px,
    rgba(239, 238, 233, 0.72) 11px,
    transparent 12px
  );
  filter: url("#none");
}

.topo-one {
  width: 55vw;
  height: 55vw;
  right: -19vw;
  top: -22vw;
  transform: rotate(-20deg) skewX(10deg);
  opacity: 0.72;
  border-radius: 42% 58% 31% 69% / 55% 28% 72% 45%;
}

.section {
  position: relative;
  padding: clamp(6rem, 12vw, 12rem) var(--pad);
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 6vw;
}

.intro h2 {
  font-size: clamp(4rem, 8.5vw, 8rem);
}

.intro h2 em {
  -webkit-text-stroke-color: var(--sage);
}

.intro-copy {
  padding-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.intro-copy p + p {
  color: #686b65;
  margin-top: 1.5rem;
}

.text-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  color: inherit;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.section-heading p {
  margin: 0;
}

.section-number {
  color: var(--sage);
  font-family: "Barlow Condensed", sans-serif;
}

.service {
  display: grid;
  grid-template-columns: 0.12fr 1fr 0.65fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, padding 0.3s ease;
}

.service:hover {
  color: var(--sage);
  padding-left: 1rem;
}

.service > span,
.service > p {
  color: var(--muted);
}

.service h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 1;
  font-weight: 600;
}

.service p {
  line-height: 1.5;
}

.service b {
  font-size: 1.5rem;
}

.projects {
  background: var(--paper);
  color: var(--ink);
}

.projects .section-heading {
  border-color: rgba(5, 5, 5, 0.2);
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 7rem) clamp(1.5rem, 3vw, 3rem);
  padding-top: 4rem;
}

.project-large {
  grid-column: 1 / -1;
}

.project-visual {
  position: relative;
  height: min(42vw, 620px);
  min-height: 320px;
  overflow: hidden;
  background: var(--ink);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project:hover .project-visual {
  transform: scale(0.985);
}

.project:not(.project-large) .project-visual {
  height: min(48vw, 680px);
}

.visual-one {
  display: grid;
  place-items: center;
}

.project-letter {
  position: relative;
  z-index: 2;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(12rem, 27vw, 30rem);
  line-height: 0.7;
  font-weight: 600;
  color: var(--paper);
}

.project-lines {
  width: 75%;
  height: 130%;
  right: -20%;
  top: -15%;
  transform: rotate(18deg);
  opacity: 0.7;
}

.visual-two {
  background: var(--sage);
  color: var(--ink);
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-two span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.visual-two i {
  font-style: normal;
  letter-spacing: 0.2em;
}

.visual-three {
  display: grid;
  place-items: center;
}

.visual-three .orb {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, var(--paper), var(--sage) 30%, #222 72%);
  filter: blur(0.2px);
}

.visual-three span {
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.82;
  text-align: center;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1.2rem;
}

.project-meta h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
}

.project-meta p {
  color: #646660;
  font-size: 0.85rem;
}

.contact {
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact h2 {
  font-size: clamp(4.2rem, 10.5vw, 10rem);
  margin: 2rem 0 4rem;
}

.contact-mail {
  position: relative;
  z-index: 2;
  width: fit-content;
  font-size: clamp(1.1rem, 2.4vw, 2.3rem);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.7rem;
}

.contact-mail span {
  color: var(--sage);
  margin-left: 1rem;
}

.contact-footer {
  position: absolute;
  bottom: 2rem;
  left: var(--pad);
  right: var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-footer div {
  display: flex;
  gap: 2rem;
}

.contact-footer > p:last-child {
  text-align: right;
}

.topo-two {
  width: 58vw;
  height: 58vw;
  right: -22vw;
  bottom: -22vw;
  opacity: 0.35;
  transform: rotate(35deg);
  border-radius: 60% 40% 48% 52%;
}

.method {
  background: var(--paper);
  color: var(--ink);
}

.method .section-heading {
  border-color: rgba(5, 5, 5, 0.18);
}

.method-lead {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  align-items: start;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.method-lead > p {
  color: var(--sage);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
}

.method-lead h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.method-lead h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sage);
  font-style: normal;
  font-weight: 500;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(5, 5, 5, 0.18);
}

.step {
  min-height: 290px;
  padding: 2rem 1.5rem 1rem;
  border-right: 1px solid rgba(5, 5, 5, 0.18);
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  border-right: 0;
}

.step span {
  color: var(--sage);
}

.step h3 {
  margin: 5rem 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.step p {
  max-width: 24ch;
  color: #62645f;
  line-height: 1.55;
}

.contact-action {
  position: relative;
  z-index: 2;
  width: fit-content;
  display: flex;
  gap: 2rem;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--sage);
  padding: 0 0 0.75rem;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  cursor: pointer;
}

.contact-action b {
  color: var(--sage);
}

.booking-modal {
  width: min(1060px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 1px solid rgba(239, 238, 233, 0.25);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
}

.booking-modal[open] {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1.25rem;
  border: 0;
  background: none;
  color: var(--paper);
  font-size: 2.2rem;
  cursor: pointer;
}

.booking-intro {
  position: relative;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  background: var(--sage);
  color: var(--ink);
}

.booking-intro .eyebrow {
  color: var(--ink);
}

.booking-intro h2 {
  margin: 5rem 0 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.8;
}

.booking-intro h2 em {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  font-style: normal;
}

.booking-intro > p:last-child {
  max-width: 34ch;
  line-height: 1.6;
}

.booking-modal form {
  padding: clamp(2rem, 5vw, 5rem);
  overflow-y: auto;
}

.booking-modal label {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-modal input,
.booking-modal textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font: 400 1rem "DM Sans", sans-serif;
}

.booking-modal input:focus,
.booking-modal textarea:focus {
  border-color: var(--sage);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.submit-booking {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font: 600 1rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.7rem;
}

.booking-success {
  position: fixed;
  z-index: 30;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  max-width: 390px;
  padding: 1.2rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(150%);
  transition: transform 0.4s ease;
}

.booking-success.visible {
  transform: translateY(0);
}

.booking-success > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
}

.booking-success p {
  margin: 0.25rem 0 0;
  color: #666;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 12px 4px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    color: var(--paper);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding-top: 20vh;
  }

  .hero h1 {
    line-height: 0.84;
  }

  .hero-bottom {
    align-items: center;
  }

  .hero-bottom > p {
    width: 62%;
  }

  .circle-link {
    width: 92px;
    height: 92px;
    font-size: 0.78rem;
  }

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

  .method-lead {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .step,
  .step:first-child {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.18);
  }

  .step h3 {
    margin: 2rem 0 1rem;
  }

  .booking-modal[open] {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .intro h2 {
    margin-bottom: 3rem;
  }

  .service {
    grid-template-columns: 0.15fr 1fr auto;
    gap: 1rem;
  }

  .service p {
    display: none;
  }

  .project-large {
    grid-column: auto;
  }

  .project-visual,
  .project:not(.project-large) .project-visual {
    height: 105vw;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-meta p {
    margin: 0;
  }

  .contact {
    min-height: 100svh;
  }

  .contact h2 {
    line-height: 0.82;
  }

  .contact-footer {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-footer div {
    justify-content: flex-end;
  }

  .contact-footer > p:last-child {
    display: none;
  }
}

/* Transparent logo and collision-free footer */
.brand img,
.hero-logo {
  background: transparent;
}

.contact {
  min-height: auto;
  padding-bottom: 2.5rem;
}

.contact-footer {
  position: static;
  width: 100%;
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .contact-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .contact-footer > p,
  .contact-footer > p:last-child {
    display: block;
    text-align: left;
  }
}

/* Aukarlia — refined product-led experience */
:root {
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  height: 72px;
  top: 12px;
  left: 50%;
  width: min(1120px, calc(100% - 24px));
  padding: 0 1rem 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  mix-blend-mode: normal;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  border-color: rgba(239, 238, 233, 0.12);
  background: rgba(12, 12, 12, 0.72);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px) saturate(140%);
}

.site-header .brand img {
  width: 36px;
  height: 32px;
}

.main-nav {
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-cta {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1.15rem;
}

.hero {
  min-height: 110svh;
  align-items: center;
  justify-content: center;
  padding-top: 14vh;
  text-align: center;
}

.hero-aura {
  position: absolute;
  z-index: -2;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  top: 8vh;
  left: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(143, 149, 136, 0.28), rgba(73, 77, 70, 0.12) 32%, transparent 67%);
  transform: translateX(-50%);
  filter: blur(4px);
}

.hero-logo {
  width: clamp(130px, 17vw, 240px);
  margin-bottom: clamp(2rem, 5vh, 4rem);
  object-fit: contain;
  will-change: transform;
  filter: drop-shadow(0 28px 60px rgba(143, 149, 136, 0.12));
}

.hero-kicker {
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 1100px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(3.7rem, 8.4vw, 8.6rem);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--sage);
  -webkit-text-stroke: 0;
  font-weight: 300;
}

.hero-bottom {
  display: block;
  margin-top: 2.5rem;
}

.hero-bottom > p {
  width: min(560px, 90%);
  margin: 0 auto;
  color: #aaa;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-index {
  display: none;
}

.scroll-cue {
  position: absolute;
  bottom: 5vh;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.scroll-cue i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
}

.hero-shape-a,
.hero-shape-b {
  display: none;
}

.section {
  padding-top: clamp(8rem, 14vw, 14rem);
  padding-bottom: clamp(8rem, 14vw, 14rem);
}

.intro {
  border-radius: clamp(38px, 5vw, 72px);
  margin: 0 12px;
  padding-left: max(var(--pad), calc((100vw - 1280px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1280px) / 2));
}

.intro h2,
.contact h2,
.method-lead h2,
.services-head h2,
.portfolio-head h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.intro h2 em,
.contact h2 em,
.method-lead h2 em,
.services-head h2 em,
.portfolio-head h2 em {
  color: var(--sage);
  -webkit-text-stroke: 0;
  font-weight: 300;
}

.intro-grid {
  grid-template-columns: 1.25fr 0.55fr;
  gap: 10vw;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(5, 5, 5, 0.14);
}

.trust-strip div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-strip strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.trust-strip span {
  color: #6e706b;
  font-size: 0.8rem;
}

.portfolio {
  padding-left: max(var(--pad), calc((100vw - 1280px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1280px) / 2));
}

.portfolio-shape {
  display: none;
}

.portfolio-grid {
  gap: 6rem 1.5rem;
}

.portfolio-item {
  transform: none !important;
}

.portfolio-item:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

.portfolio-item:nth-child(3n + 1) img {
  aspect-ratio: 16 / 8;
}

.portfolio-item img,
.portfolio-item:nth-child(4n + 1) img,
.portfolio-item:nth-child(4n + 2) img {
  border-radius: 32px;
  filter: saturate(0.8);
}

.portfolio-item-meta {
  padding: 1.5rem 0;
  border: 0;
}

.portfolio-empty {
  min-height: 420px;
  border: 0;
  border-radius: 32px;
  background: linear-gradient(145deg, #e5e5df, #f7f6f2);
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.04);
}

.services {
  padding-left: max(var(--pad), calc((100vw - 1280px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1280px) / 2));
}

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

.service-list .service {
  grid-column: span 4;
  min-height: 460px;
  padding: 2.2rem;
  border: 1px solid rgba(239, 238, 233, 0.1);
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(143, 149, 136, 0.15), transparent 36%),
    #0d0d0d;
  transform: none !important;
  transition: transform 0.5s var(--ease-premium), background 0.5s ease;
}

.service-list .service:nth-child(4n + 1) {
  grid-column: span 7;
}

.service-list .service:nth-child(4n + 2) {
  grid-column: span 5;
}

.service-list .service:hover {
  padding-left: 2.2rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(143, 149, 136, 0.28), transparent 40%),
    #111;
  transform: translateY(-6px) !important;
}

.service-list .service h3 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.service-quote {
  border-top-color: rgba(239, 238, 233, 0.1);
  font-family: "DM Sans", sans-serif;
}

.quote-banner {
  border-radius: 999px;
  padding: 1.2rem 1.6rem;
}

.method {
  margin: 0 12px;
  border-radius: clamp(38px, 5vw, 72px);
  padding-left: max(var(--pad), calc((100vw - 1280px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1280px) / 2));
}

.steps {
  gap: 1rem;
}

.step,
.step:first-child {
  border: 0;
  border-radius: 28px;
  background: #e6e5df;
  transform: none !important;
}

.step h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.contact {
  min-height: 100svh;
  border-radius: 0;
  padding-left: max(var(--pad), calc((100vw - 1280px) / 2));
  padding-right: max(var(--pad), calc((100vw - 1280px) / 2));
}

.contact-options {
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card,
.contact-card:nth-child(2),
.contact-card:nth-child(3) {
  min-height: 260px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

.booking-modal {
  border-radius: 32px;
  overflow: hidden;
}

.booking-intro {
  background: linear-gradient(145deg, #a7ad9f, #747b6f);
}

.submit-booking {
  border-radius: 999px;
}

@media (max-width: 900px) {
  .service-list .service,
  .service-list .service:nth-child(4n + 1),
  .service-list .service:nth-child(4n + 2) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 60px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-logo {
    width: 118px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.4rem);
  }

  .intro {
    margin: 0 6px;
  }

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

  .trust-strip {
    gap: 2rem;
  }

  .service-list .service,
  .service-list .service:nth-child(4n + 1),
  .service-list .service:nth-child(4n + 2) {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .portfolio-item:nth-child(3n + 1) {
    grid-column: auto;
  }

  .portfolio-item:nth-child(3n + 1) img {
    aspect-ratio: 4 / 3;
  }
}

/* Footer fix — keep this final in the cascade */
.contact {
  min-height: auto;
  padding-bottom: 2.5rem;
}

.contact-footer {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-top: clamp(5rem, 10vw, 9rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .contact-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .contact-footer > p,
  .contact-footer > p:last-child {
    display: block;
    text-align: left;
  }
}

/* Organic visual direction */
.hero {
  isolation: isolate;
}

.abstract-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape-a {
  z-index: -1;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  right: -9vw;
  top: 8vh;
  border-radius: 64% 36% 57% 43% / 37% 62% 38% 63%;
  background: radial-gradient(circle at 35% 30%, #bbc0b5 0, var(--sage) 30%, #343731 67%, transparent 68%);
  opacity: 0.72;
  transform: rotate(-12deg);
}

.hero-shape-b {
  z-index: -1;
  width: 22vw;
  height: 46vw;
  min-width: 180px;
  left: -13vw;
  bottom: -18vw;
  border: 1px solid rgba(239, 238, 233, 0.35);
  border-radius: 50%;
  transform: rotate(38deg);
}

.hero h1 {
  max-width: 88%;
}

.hero-bottom {
  justify-content: flex-start;
}

.intro {
  border-radius: 0 0 clamp(60px, 10vw, 160px) 0;
  overflow: hidden;
}

.organic-media {
  position: absolute;
  z-index: 0;
  width: min(27vw, 400px);
  aspect-ratio: 0.82;
  right: 4vw;
  top: 3rem;
  border-radius: 67% 33% 46% 54% / 41% 63% 37% 59%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.25);
  opacity: 0.32;
}

.intro > *:not(.organic-media),
.services > *:not(.organic-media),
.contact > *:not(.organic-media) {
  position: relative;
  z-index: 1;
}

.portfolio {
  overflow: hidden;
}

.portfolio-shape {
  width: 36vw;
  height: 14vw;
  right: -8vw;
  top: 2rem;
  border: 1px solid var(--sage);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.portfolio-item:nth-child(odd) {
  transform: translateY(3rem);
}

.portfolio-item:nth-child(4n + 1) img {
  border-radius: 46% 54% 8% 8% / 34% 42% 8% 8%;
}

.portfolio-item:nth-child(4n + 2) img {
  border-radius: 8% 8% 48% 52% / 8% 8% 38% 44%;
}

.services {
  overflow: hidden;
}

.services-media {
  width: 38vw;
  right: -10vw;
  top: 6rem;
  border-radius: 50%;
  opacity: 0.16;
}

.service-list {
  gap: 1.2rem;
  border: 0;
  background: transparent;
}

.service-list .service {
  border: 1px solid var(--line);
  border-radius: 3rem 3rem 0.5rem 3rem;
}

.service-list .service:nth-child(3n + 2) {
  border-radius: 0.5rem 3rem 3rem 3rem;
  transform: translateY(2.2rem);
}

.service-list .service:nth-child(3n) {
  border-radius: 3rem 0.5rem 3rem 3rem;
}

.method {
  border-radius: clamp(60px, 10vw, 160px) 0 0 0;
}

.steps {
  gap: 1rem;
  border-top: 0;
}

.step,
.step:first-child {
  padding: 2rem;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 2rem 2rem 2rem 0.3rem;
}

.step:nth-child(even) {
  transform: translateY(2rem);
  border-radius: 2rem 0.3rem 2rem 2rem;
}

.contact {
  border-radius: 0 clamp(60px, 9vw, 140px) 0 0;
}

.contact-media {
  top: auto;
  bottom: -10%;
  right: -5%;
  width: 42vw;
  opacity: 0.18;
}

.contact-options {
  gap: 1rem;
  border: 0;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 2.5rem 2.5rem 0.4rem 2.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-card:nth-child(2) {
  border-radius: 0.4rem 2.5rem 2.5rem 2.5rem;
}

.contact-card:nth-child(3) {
  border-radius: 2.5rem 0.4rem 2.5rem 2.5rem;
}

.contact-card:hover {
  background: rgba(143, 149, 136, 0.12);
  transform: translateY(-8px);
}

@media (max-width: 760px) {
  .hero-shape-a {
    width: 90vw;
    right: -45vw;
    top: 18vh;
    opacity: 0.45;
  }

  .hero h1 {
    max-width: 100%;
  }

  .organic-media {
    width: 60vw;
    opacity: 0.17;
  }

  .portfolio-item:nth-child(odd),
  .service-list .service:nth-child(3n + 2),
  .step:nth-child(even) {
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Portfolio, commercial services and contact */
.topography,
.project-lines {
  display: none;
}

.services-head,
.portfolio-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
  padding-top: clamp(4rem, 7vw, 7rem);
}

.services-head h2,
.portfolio-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.78;
  letter-spacing: -0.04em;
}

.services-head h2 em,
.portfolio-head h2 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sage);
  font-style: normal;
  font-weight: 500;
}

.services-head p,
.portfolio-head p {
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-list .service {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 2rem;
  border: 0;
  background: var(--ink);
}

.service-list .service:hover {
  padding-left: 2rem;
  background: #10110f;
}

.service-list .service h3 {
  margin-top: auto;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.service-list .service p {
  min-height: 4.5em;
}

.service-price {
  color: var(--sage);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
}

.service-quote {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0.8rem 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.quote-banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border: 0;
  background: var(--sage);
  color: var(--ink);
  font: 500 1rem "DM Sans", sans-serif;
  cursor: pointer;
}

.portfolio {
  background: var(--paper);
  color: var(--ink);
}

.portfolio .section-heading {
  border-color: rgba(5, 5, 5, 0.18);
}

.portfolio-head p {
  color: #676963;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  margin-top: 5rem;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: saturate(0.65);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.portfolio-item:hover img {
  filter: saturate(1);
  transform: scale(0.985);
}

.portfolio-item-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.2);
}

.portfolio-item h3 {
  margin: 0;
  font: 600 1.7rem "Barlow Condensed", sans-serif;
}

.portfolio-item p {
  margin: 0;
  color: #6a6c67;
  font-size: 0.85rem;
}

.portfolio-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
  margin-top: 5rem;
  border: 1px solid rgba(5, 5, 5, 0.2);
  text-align: center;
}

.portfolio-empty span {
  color: var(--sage);
  font: 600 clamp(2rem, 5vw, 4rem) "Barlow Condensed", sans-serif;
}

.portfolio-empty p {
  max-width: 42ch;
  color: #6a6c67;
}

.contact-options {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card small {
  color: var(--sage);
  letter-spacing: 0.1em;
}

.contact-card strong {
  margin: auto 0;
  font: 500 clamp(1.5rem, 2.4vw, 2.5rem) "Barlow Condensed", sans-serif;
  line-height: 1;
}

.contact-card > span {
  color: var(--muted);
}

.booking-modal select {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: var(--paper);
  font: 400 1rem "DM Sans", sans-serif;
}

@media (max-width: 760px) {
  .services-head,
  .portfolio-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-list,
  .portfolio-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .service-list .service {
    min-height: 320px;
  }

  .contact-card {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* Final cascade: premium layout takes precedence */
.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 1.5rem;
}

.portfolio-item {
  transform: none !important;
}

.portfolio-item:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

.portfolio-item:nth-child(3n + 1) img {
  aspect-ratio: 16 / 8;
}

.portfolio-item img,
.portfolio-item:nth-child(4n + 1) img,
.portfolio-item:nth-child(4n + 2) img {
  border-radius: 32px;
  filter: saturate(0.8);
}

.service-list {
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  border: 0;
  background: transparent;
}

.service-list .service,
.service-list .service:nth-child(3n + 2),
.service-list .service:nth-child(3n) {
  grid-column: span 4;
  min-height: 460px;
  padding: 2.2rem;
  border: 1px solid rgba(239, 238, 233, 0.1);
  border-radius: 32px;
  background: radial-gradient(circle at 90% 0%, rgba(143, 149, 136, 0.15), transparent 36%), #0d0d0d;
  transform: none;
}

.service-list .service:nth-child(4n + 1) {
  grid-column: span 7;
}

.service-list .service:nth-child(4n + 2) {
  grid-column: span 5;
}

.service-list .service:hover {
  padding-left: 2.2rem;
  background: radial-gradient(circle at 78% 12%, rgba(143, 149, 136, 0.28), transparent 40%), #111;
  transform: translateY(-6px);
}

.service-list .service h3 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.contact-options {
  gap: 1rem;
  border: 0;
}

.contact-card,
.contact-card:nth-child(2),
.contact-card:nth-child(3) {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

@media (max-width: 900px) {
  .service-list .service,
  .service-list .service:nth-child(3n + 2),
  .service-list .service:nth-child(3n),
  .service-list .service:nth-child(4n + 1),
  .service-list .service:nth-child(4n + 2) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .service-list,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-list .service,
  .service-list .service:nth-child(3n + 2),
  .service-list .service:nth-child(3n),
  .service-list .service:nth-child(4n + 1),
  .service-list .service:nth-child(4n + 2) {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .portfolio-item:nth-child(3n + 1) {
    grid-column: auto;
  }

  .portfolio-item:nth-child(3n + 1) img {
    aspect-ratio: 4 / 3;
  }
}
