:root {
  --ink: #172235;
  --ink-deep: #0e1725;
  --steel: #5d6885;
  --ivory: #f3efe8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --copper: #b87945;
  --line: rgba(23, 34, 53, 0.16);
  --shadow: 0 24px 70px rgba(12, 22, 37, 0.16);
  --shell: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--copper);
  color: var(--white);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-stuck {
  box-shadow: 0 12px 40px rgba(14, 23, 37, 0.09);
}

.utility-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner,
.utility-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner p {
  margin: 0;
}

.utility-links {
  gap: 12px;
}

.utility-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.utility-links a:hover {
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 66px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.brand-mark img {
  width: 64px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.94rem;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a {
  position: relative;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 12px 17px;
  border: 1px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
}

.site-nav .nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-content: center;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 100%;
  height: 1px;
  display: block;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 122px));
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.hero-slide:nth-child(2) > img {
  object-position: center 46%;
}

.hero-slide:nth-child(3) > img {
  object-position: center 50%;
}

.hero-slide:nth-child(4) > img {
  object-position: center 44%;
}

.hero-slide.is-active > img {
  transform: scale(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 26, 0.89) 0%, rgba(8, 15, 26, 0.65) 42%, rgba(8, 15, 26, 0.13) 75%),
    linear-gradient(0deg, rgba(8, 15, 26, 0.52) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: min(780px, calc(100svh - 122px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 100px 130px;
}

.hero-content .eyebrow,
.contact-inner .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 800px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6.1vw, 6.1rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-title-line {
  display: inline;
}

.hero h1 em,
.hero h2 em,
.display-title em,
.contact-inner h2 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(25px);
}

.hero-slide.is-active .hero-content > * {
  animation: hero-copy-in 0.8s var(--ease) forwards;
}

.hero-slide.is-active .hero-content > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-slide.is-active .hero-content > :nth-child(3) {
  animation-delay: 170ms;
}

.hero-slide.is-active .hero-content > :nth-child(4) {
  animation-delay: 250ms;
}

@keyframes hero-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

@media (min-width: 821px) {
  .hero h1,
  .hero h2 {
    max-width: 1000px;
    min-height: 1.92em;
    font-size: clamp(3.2rem, 5.2vw, 5.6rem);
  }

  .hero-title-line {
    white-space: nowrap;
  }
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover {
  background: #c88a55;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 34px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(8, 15, 26, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 30px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-dot span {
  width: 100%;
  height: 2px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot span::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--white);
  transform: translateX(-101%);
}

.hero-dot.is-active span::after {
  animation: progress 5.6s linear forwards;
}

.hero.is-paused .hero-dot.is-active span::after {
  animation-play-state: paused;
}

@keyframes progress {
  to { transform: translateX(0); }
}

.hero-count {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 0 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.hero-count [data-hero-current] {
  color: var(--white);
}

.hero-count i {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue i::after {
  content: "";
  width: 1px;
  height: 28px;
  display: block;
  background: var(--white);
  animation: scroll-cue 2s ease-in-out infinite;
}

@keyframes scroll-cue {
  from { transform: translateY(-30px); }
  to { transform: translateY(58px); }
}

.section {
  padding-block: clamp(92px, 10vw, 150px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--steel);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--copper);
}

.section-kicker span::after {
  content: "";
  width: 34px;
  height: 1px;
  display: inline-block;
  margin-left: 13px;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.45;
}

.section-kicker p {
  margin: 0;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.55);
}

.display-title {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.large-copy {
  color: #556071;
  font-size: clamp(1.02rem, 1.5vw, 1.19rem);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.81rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.3s var(--ease);
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

.intro {
  background:
    linear-gradient(rgba(23, 34, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 34, 53, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.52fr minmax(0, 1.48fr) minmax(300px, 0.92fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: start;
}

.intro-copy .eyebrow {
  margin-bottom: 20px;
}

.intro-copy .large-copy {
  max-width: 760px;
  margin: 36px 0 28px;
}

.intro-visual {
  position: relative;
  min-height: 610px;
}

.intro-visual figure {
  margin: 0;
  overflow: hidden;
  background: #d9d6d0;
  box-shadow: var(--shadow);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-photo-main {
  width: 92%;
  height: 560px;
}

.intro-photo-main img {
  object-position: 54% center;
}

.intro-photo-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 49%;
  height: 205px;
  border: 9px solid var(--paper);
}

.intro-visual-link {
  position: absolute;
  bottom: 28px;
  left: -24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.intro-visual-link span {
  transition: transform 0.3s var(--ease);
}

.intro-visual-link:hover span {
  transform: translate(4px, -4px);
}

.material-strip {
  margin-top: clamp(75px, 8vw, 115px);
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.material-strip,
.material-strip ul {
  display: flex;
  align-items: center;
}

.material-strip {
  justify-content: space-between;
  gap: 30px;
}

.material-strip > p {
  margin: 0;
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-strip ul {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-strip li {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.material-strip li:not(:first-child)::before {
  content: "·";
  position: absolute;
  left: -22px;
  color: var(--copper);
}

.section-dark {
  background: var(--ink-deep);
  color: var(--white);
}

.section-dark .display-title {
  color: var(--white);
}

.solutions-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

.solutions-heading .section-kicker,
.projects-heading .section-kicker {
  margin-bottom: 26px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.solution-card {
  min-width: 0;
  background: var(--ink-deep);
  color: var(--white);
  text-decoration: none;
}

.solution-image {
  aspect-ratio: 4 / 3.3;
  overflow: hidden;
  background: #243247;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.055);
  filter: brightness(1.08);
}

.solution-body {
  min-height: 130px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 15px;
  align-items: start;
  padding: 26px 22px 30px;
}

.solution-body > span {
  margin-top: 3px;
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 750;
}

.solution-body h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.solution-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.83rem;
}

.solution-body b {
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

.solution-card:hover .solution-body b {
  transform: translate(4px, -4px);
}

.craft {
  overflow: hidden;
}

.craft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(65px, 9vw, 130px);
  align-items: center;
}

.craft-visual {
  position: relative;
  min-height: 690px;
}

.craft-visual figure {
  margin: 0;
  overflow: hidden;
  background: #d9d6d0;
  box-shadow: var(--shadow);
}

.craft-visual figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-main {
  width: 83%;
  height: 610px;
}

.craft-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 49%;
  height: 280px;
  border: 12px solid var(--paper);
}

.craft-copy .section-kicker {
  margin-bottom: 25px;
}

.craft-copy .large-copy {
  margin: 30px 0 38px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  padding-top: 4px;
  color: var(--copper);
  font-size: 0.67rem;
  font-weight: 750;
}

.process-list h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: #697282;
  font-size: 0.89rem;
}

.projects {
  padding-bottom: 0;
  background: var(--ivory);
}

.projects-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

.project-mosaic {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1px;
  width: 100%;
  background: rgba(23, 34, 53, 0.18);
}

.project {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
}

.project-large {
  min-height: 640px;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 15, 26, 0.68), transparent 46%);
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project:hover img {
  transform: scale(1.045);
}

.project > span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.project > span b {
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}

.project:hover > span b {
  transform: translate(4px, -4px);
}

.reviews {
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(184, 121, 69, 0.18);
  border-radius: 50%;
}

.reviews-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
}

.reviews-head .section-kicker {
  margin-bottom: 26px;
}

.experience-copy {
  padding: 30px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-copy > p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.45vw, 1.17rem);
}

.experience-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.experience-copy > a span {
  color: var(--copper);
  font-size: 1rem;
  transition: transform 0.25s var(--ease);
}

.experience-copy > a:hover span {
  transform: translate(4px, -4px);
}

.review-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(60px, 8vw, 100px);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.review-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 50px);
  background: var(--ink-deep);
}

.review-quote {
  height: 63px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.review-card blockquote {
  margin: 20px 0 48px;
}

.review-card blockquote p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.25;
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.review-card footer strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.review-card footer span {
  color: #f7b841;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.social-proof {
  background: var(--ivory);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.social-grid .section-kicker {
  margin-bottom: 26px;
}

.social-copy {
  padding-bottom: 6px;
}

.social-copy p {
  margin: 0 0 26px;
  color: #596273;
  font-size: 1.07rem;
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(60px, 7vw, 100px);
  background: rgba(23, 34, 53, 0.18);
}

.social-project {
  position: relative;
  height: min(43vw, 560px);
  overflow: hidden;
  background: #d8d4cc;
  color: var(--white);
}

.social-project:nth-child(even) {
  margin-top: 48px;
}

.social-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 15, 26, 0.62), transparent 42%);
}

.social-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.75s ease;
}

.social-project:nth-child(3) img {
  object-position: center;
}

.social-project:hover img {
  transform: scale(1.055);
  filter: brightness(1.06);
}

.social-project span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-cta {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-cta > img,
.contact-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-cta > img {
  object-fit: cover;
  object-position: center;
}

.contact-shade {
  background: linear-gradient(90deg, rgba(8, 15, 26, 0.91), rgba(8, 15, 26, 0.68) 52%, rgba(8, 15, 26, 0.24));
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-block: 105px;
}

.contact-inner h2 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.site-footer {
  padding: 78px 0 26px;
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.7fr 1.2fr 1fr;
  gap: 50px;
}

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

.footer-brand > p {
  max-width: 340px;
  margin: 25px 0 0;
  font-size: 0.9rem;
}

.footer-title {
  margin: 0 0 19px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-footer address {
  font-size: 0.9rem;
  font-style: normal;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.79rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px 10px 12px;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(10, 36, 23, 0.27);
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(10, 36, 23, 0.34);
}

.whatsapp-float img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.js .reveal {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease) var(--delay, 0ms),
    transform 0.9s var(--ease) var(--delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal[data-reveal="up"] {
  transform: translate3d(0, 52px, 0);
}

.js .reveal[data-reveal="left"] {
  transform: translate3d(65px, 0, 0);
}

.js .reveal[data-reveal="right"] {
  transform: translate3d(-65px, 0, 0);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .reveal.parallax-card.is-visible {
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a {
    font-size: 0.78rem;
  }

  .brand-copy {
    display: none;
  }

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

  .intro-grid {
    grid-template-columns: 0.52fr minmax(0, 1.7fr);
  }

  .intro-visual {
    grid-column: 2;
    width: min(680px, 100%);
    min-height: 530px;
  }

  .intro-photo-main {
    height: 480px;
  }

  .craft-grid {
    gap: 65px;
  }

  .craft-visual {
    min-height: 590px;
  }

  .craft-main {
    height: 520px;
  }

  .craft-detail {
    height: 230px;
  }

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

  .project:last-child {
    display: none;
  }

  .review-card {
    padding-inline: 32px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.65fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 3;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .utility-bar {
    display: none;
  }

  .nav-row {
    min-height: 76px;
  }

  .brand-copy {
    display: flex;
  }

  .menu-toggle {
    display: grid;
  }

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

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(14, 23, 37, 0.12);
    opacity: 0;
    transition: max-height 0.5s var(--ease), opacity 0.3s ease;
  }

  .site-nav.is-open {
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    opacity: 1;
  }

  .site-nav > a {
    width: var(--shell);
    margin: 0 auto;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    width: calc(var(--shell) - 32px);
    margin: 18px auto 24px;
    padding: 14px 17px;
    text-align: center;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - 76px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    min-height: 680px;
    padding-block: 80px 130px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .craft-grid,
  .social-grid,
  .reviews-head {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 35px;
  }

  .intro-visual {
    grid-column: auto;
    width: min(680px, 100%);
    min-height: 580px;
    margin-top: 28px;
  }

  .intro-photo-main {
    height: 530px;
  }

  .material-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .material-strip ul {
    justify-content: flex-start;
  }

  .solutions-heading,
  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .craft-grid {
    gap: 75px;
  }

  .craft-visual {
    width: min(680px, 100%);
  }

  .craft-copy {
    width: min(680px, 100%);
  }

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

  .project,
  .project-large {
    min-height: 520px;
  }

  .reviews-head {
    gap: 45px;
  }

  .experience-copy {
    max-width: 520px;
  }

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

  .review-card {
    min-height: 285px;
  }

  .social-grid {
    gap: 35px;
  }

  .social-copy {
    max-width: 560px;
  }

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

  .social-project {
    height: 520px;
  }

  .social-project:nth-child(even) {
    margin-top: 0;
  }

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

  .footer-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-mark {
    width: 57px;
  }

  .brand-mark img {
    width: 55px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    font-size: 0.51rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 15, 26, 0.78), rgba(8, 15, 26, 0.25)),
      linear-gradient(0deg, rgba(8, 15, 26, 0.8) 0%, rgba(8, 15, 26, 0.34) 64%);
  }

  .hero-content {
    justify-content: flex-end;
    padding-block: 90px 148px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 27px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-controls {
    bottom: 28px;
    gap: 10px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
  }

  .hero-dot {
    width: 22px;
  }

  .hero-count {
    display: none;
  }

  .section {
    padding-block: 82px;
  }

  .display-title {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .material-strip li {
    font-size: 1rem;
  }

  .intro-visual {
    min-height: 455px;
  }

  .intro-photo-main {
    width: 90%;
    height: 420px;
  }

  .intro-photo-detail {
    width: 52%;
    height: 175px;
    border-width: 7px;
  }

  .intro-visual-link {
    bottom: 20px;
    left: -7px;
  }

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

  .solutions-heading {
    margin-bottom: 42px;
  }

  .solution-image {
    aspect-ratio: 4 / 3;
  }

  .craft-visual {
    min-height: 465px;
  }

  .craft-main {
    width: 88%;
    height: 420px;
  }

  .craft-detail {
    width: 54%;
    height: 190px;
    border-width: 8px;
  }

  .projects-heading {
    margin-bottom: 42px;
  }

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

  .project,
  .project-large {
    min-height: 480px;
  }

  .project:last-child {
    display: block;
  }

  .review-card {
    min-height: 270px;
    padding: 30px 26px;
  }

  .review-card blockquote {
    margin-bottom: 38px;
  }

  .review-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-cta {
    min-height: 630px;
  }

  .social-gallery {
    gap: 1px;
  }

  .social-project {
    height: 330px;
  }

  .social-project span {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 0.61rem;
  }

  .contact-inner h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }

  .whatsapp-float {
    right: 13px;
    bottom: 13px;
    width: 52px;
    height: 52px;
    min-height: 0;
    justify-content: center;
    padding: 10px;
  }

  .whatsapp-float span {
    display: none;
  }

  .js .reveal[data-reveal="left"],
  .js .reveal[data-reveal="right"] {
    transform: translate3d(0, 42px, 0);
  }
}

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

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

  .js .reveal,
  .js .reveal[data-reveal],
  .js .reveal.parallax-card.is-visible {
    opacity: 1;
    transform: none;
  }
}
