:root {
  --ink: #f5f1ea;
  --muted: #c9c1ad;
  --paper: #ece4d2;
  --graphite: #0c0b09;
  --smoke: #1a1814;
  --line: rgba(236, 228, 210, 0.16);
  --wine: #8b1531;
  --wine-deep: #3a0713;
  --teal: #405a5f;
  --metal: #c7b681;
  --glass: rgba(236, 228, 210, 0.08);
  --max: 1180px;
  --page-gutter: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(210, 196, 171, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(142, 132, 112, 0.2), transparent 24rem),
    linear-gradient(180deg, #141310 0%, var(--graphite) 44%, #0d0d0d 100%);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100%, 100%);
  margin: 0 auto;
  padding: 18px 24px;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: rgba(22, 20, 17, 0.24);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(108%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.028)),
    rgba(10, 10, 10, 0.76);
  border-color: rgba(245, 241, 234, 0.26);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(245, 241, 234, 0.78);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover,
.nav-action:hover,
.contact-links a:hover {
  color: white;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(245, 241, 234, 0.24);
  border-radius: 0;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 96px 24px 154px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 72px 0 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(245, 241, 234, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.12) 1px, transparent 1px);
  background-size: 100% 42%, 25% 100%;
  box-shadow: none;
  opacity: 0.55;
  pointer-events: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-media {
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 4% 2%, rgba(255, 255, 255, 0.16), transparent 17rem),
    radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.08), transparent 15rem);
  mix-blend-mode: screen;
}

.hero-overlay {
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(0.96) brightness(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(58, 51, 40, 0.62) 0%, rgba(42, 36, 28, 0.36) 44%, rgba(232, 220, 194, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.62) 0%, rgba(98, 88, 70, 0.08) 54%, rgba(240, 232, 210, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1460px);
  margin: 0 auto;
  padding: 0;
  transform: none;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: rgba(245, 241, 234, 0.82);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 0.92;
}

h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 7.75vw, 8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(4.2rem, 7.5vw, 8rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-copy {
  max-width: 410px;
  color: rgba(245, 241, 234, 0.78);
  font-size: clamp(0.95rem, 1.12vw, 1.1rem);
}

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

.button.primary {
  border-color: var(--paper);
  background: var(--paper);
  color: #15120f;
}

.button.secondary {
  background: rgba(245, 241, 234, 0.07);
  backdrop-filter: blur(12px);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: none;
  margin: auto;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(245, 241, 234, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(18, 17, 15, 0.18);
  color: rgba(245, 241, 234, 0.76);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.section-pad {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 118px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 60px;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.showcase-copy p,
.contact-panel p {
  color: rgba(247, 239, 229, 0.72);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  margin-bottom: 46px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.capabilities .section-heading {
  align-items: stretch;
  margin-bottom: 64px;
}

.capabilities .section-heading > h2 {
  margin-bottom: 0;
}

.capability-side {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.capability-infographic {
  position: relative;
  width: min(100%, 468px);
  flex: 1;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(236, 228, 210, 0.18);
  background:
    linear-gradient(rgba(236, 228, 210, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 228, 210, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 18%, rgba(199, 182, 129, 0.2), transparent 10rem),
    radial-gradient(circle at 28% 78%, rgba(139, 21, 49, 0.28), transparent 11rem),
    linear-gradient(145deg, rgba(236, 228, 210, 0.11), rgba(236, 228, 210, 0.024)),
    rgba(12, 11, 9, 0.42);
  background-size: 100% 88px, 78px 100%, auto, auto, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 28px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(108%);
}

.capability-infographic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(236, 228, 210, 0.24), transparent 22%),
    linear-gradient(90deg, rgba(12, 11, 9, 0.72), transparent 44%, rgba(199, 182, 129, 0.12));
  opacity: 0.58;
  pointer-events: none;
}

.capability-infographic::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 54px;
  width: 188px;
  height: 20px;
  border: 1px solid rgba(236, 228, 210, 0.22);
  background: linear-gradient(90deg, rgba(236, 228, 210, 0.14), rgba(139, 21, 49, 0.32));
  box-shadow:
    -76px -18px 0 rgba(236, 228, 210, 0.08),
    -26px 19px 0 rgba(64, 90, 95, 0.24),
    32px -36px 0 rgba(199, 182, 129, 0.14);
}

.infographic-orbit,
.infographic-line,
.infographic-bottle,
.infographic-box,
.infographic-swatch,
.infographic-ruler,
.infographic-node,
.infographic-arc,
.infographic-cap,
.infographic-atomizer,
.infographic-pump,
.infographic-collar,
.infographic-label-sheet,
.infographic-glass-face,
.infographic-fold,
.infographic-insert {
  position: absolute;
  z-index: 1;
}

.infographic-orbit {
  border: 1px solid rgba(236, 228, 210, 0.18);
  border-radius: 50%;
}

.orbit-one {
  top: 92px;
  left: 56px;
  width: 306px;
  height: 306px;
}

.orbit-two {
  top: 186px;
  left: 116px;
  width: 314px;
  height: 314px;
  border-color: rgba(199, 182, 129, 0.22);
}

.orbit-three {
  right: -78px;
  bottom: 124px;
  width: 250px;
  height: 250px;
  border-color: rgba(64, 90, 95, 0.3);
}

.infographic-arc {
  width: 180px;
  height: 180px;
  border: 1px solid transparent;
  border-top-color: rgba(236, 228, 210, 0.3);
  border-left-color: rgba(199, 182, 129, 0.2);
  border-radius: 50%;
}

.arc-one {
  top: 65px;
  right: 52px;
  transform: rotate(28deg);
}

.arc-two {
  bottom: 142px;
  left: 24px;
  width: 210px;
  height: 210px;
  transform: rotate(-34deg);
}

.infographic-bottle {
  right: 112px;
  bottom: 132px;
  width: 126px;
  height: 290px;
  border: 1px solid rgba(245, 241, 234, 0.3);
  border-radius: 30px 30px 24px 24px;
  clip-path: polygon(17% 0, 83% 0, 100% 18%, 86% 100%, 14% 100%, 0 18%);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 25%, rgba(139, 21, 49, 0.18) 64%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, rgba(245, 241, 234, 0.22), rgba(12, 11, 9, 0.24) 48%, rgba(139, 21, 49, 0.22));
  box-shadow:
    inset 18px 0 28px rgba(255, 255, 255, 0.08),
    inset -20px 0 30px rgba(0, 0, 0, 0.38),
    0 22px 54px rgba(0, 0, 0, 0.34);
}

.infographic-bottle::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 28px;
  width: 68px;
  height: 224px;
  border-left: 1px solid rgba(245, 241, 234, 0.24);
  border-right: 1px solid rgba(245, 241, 234, 0.08);
  transform: skewX(-16deg);
}

.infographic-bottle span {
  position: absolute;
  inset: auto 20px 30px;
  height: 46px;
  border-top: 1px solid rgba(236, 228, 210, 0.18);
  border-bottom: 1px solid rgba(139, 21, 49, 0.24);
}

.infographic-cap {
  right: 124px;
  bottom: 512px;
  width: 104px;
  height: 60px;
  border: 1px solid rgba(245, 241, 234, 0.26);
  border-radius: 6px 6px 18px 18px;
  background:
    linear-gradient(90deg, rgba(236, 228, 210, 0.35), rgba(199, 182, 129, 0.42), rgba(139, 21, 49, 0.2)),
    rgba(236, 228, 210, 0.08);
  box-shadow: inset 18px 0 18px rgba(255, 255, 255, 0.1);
}

.infographic-cap::before,
.infographic-cap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(245, 241, 234, 0.18);
}

.infographic-cap::before {
  left: 28%;
}

.infographic-cap::after {
  right: 28%;
}

.infographic-atomizer {
  right: 151px;
  bottom: 478px;
  width: 48px;
  height: 20px;
  border: 1px solid rgba(245, 241, 234, 0.26);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236, 228, 210, 0.36), rgba(12, 11, 9, 0.12));
}

.infographic-pump {
  right: 165px;
  bottom: 445px;
  width: 20px;
  height: 42px;
  border: 1px solid rgba(245, 241, 234, 0.24);
  background: rgba(236, 228, 210, 0.12);
}

.infographic-collar {
  right: 133px;
  bottom: 422px;
  width: 88px;
  height: 22px;
  border: 1px solid rgba(199, 182, 129, 0.3);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(236, 228, 210, 0.25) 0 1px, transparent 1px 7px),
    rgba(199, 182, 129, 0.12);
}

.infographic-label-sheet {
  left: 44px;
  bottom: 232px;
  width: 112px;
  height: 154px;
  border: 1px solid rgba(236, 228, 210, 0.2);
  background:
    linear-gradient(135deg, rgba(236, 228, 210, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(12, 11, 9, 0.28);
}

.infographic-label-sheet::before {
  content: "";
  position: absolute;
  inset: 26px 22px;
  border: 1px solid rgba(199, 182, 129, 0.28);
}

.infographic-glass-face {
  border: 1px solid rgba(236, 228, 210, 0.18);
  background: linear-gradient(135deg, rgba(236, 228, 210, 0.09), rgba(236, 228, 210, 0.02));
  backdrop-filter: blur(10px);
}

.face-one {
  right: 48px;
  bottom: 222px;
  width: 74px;
  height: 178px;
  transform: skewY(-8deg);
}

.face-two {
  right: 250px;
  bottom: 166px;
  width: 58px;
  height: 198px;
  transform: skewY(12deg);
}

.infographic-box {
  border: 1px solid rgba(236, 228, 210, 0.2);
  background:
    linear-gradient(135deg, rgba(236, 228, 210, 0.13), rgba(12, 11, 9, 0.16)),
    rgba(22, 20, 17, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.box-one {
  top: 134px;
  left: 48px;
  width: 148px;
  height: 178px;
}

.box-one::after {
  content: "";
  position: absolute;
  inset: 24px 28px;
  border: 1px solid rgba(199, 182, 129, 0.26);
}

.box-two {
  right: 42px;
  top: 116px;
  width: 108px;
  height: 112px;
  background:
    linear-gradient(135deg, rgba(139, 21, 49, 0.38), rgba(12, 11, 9, 0.2)),
    rgba(236, 228, 210, 0.06);
}

.box-three {
  left: 56px;
  bottom: 122px;
  width: 156px;
  height: 28px;
  background:
    linear-gradient(90deg, rgba(139, 21, 49, 0.28), rgba(236, 228, 210, 0.14)),
    rgba(12, 11, 9, 0.3);
}

.box-four {
  right: 44px;
  bottom: 90px;
  width: 132px;
  height: 56px;
  background:
    linear-gradient(135deg, rgba(236, 228, 210, 0.15), rgba(64, 90, 95, 0.22)),
    rgba(12, 11, 9, 0.3);
}

.infographic-fold {
  border: 1px solid rgba(236, 228, 210, 0.16);
  background: rgba(236, 228, 210, 0.045);
}

.fold-one {
  left: 78px;
  top: 98px;
  width: 70px;
  height: 36px;
  transform: skewX(-18deg);
}

.fold-two {
  right: 150px;
  top: 120px;
  width: 50px;
  height: 96px;
  transform: skewY(20deg);
  background: rgba(139, 21, 49, 0.16);
}

.infographic-insert {
  left: 214px;
  bottom: 72px;
  width: 128px;
  height: 48px;
  border: 1px solid rgba(236, 228, 210, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 26px, rgba(236, 228, 210, 0.18) 27px 29px, transparent 30px),
    rgba(12, 11, 9, 0.26);
  transform: rotate(-4deg);
}

.infographic-swatch {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(236, 228, 210, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.swatch-one {
  left: 42px;
  bottom: 54px;
  background: #ece4d2;
}

.swatch-two {
  left: 92px;
  bottom: 54px;
  background: #8b1531;
}

.swatch-three {
  left: 142px;
  bottom: 54px;
  background: #405a5f;
}

.swatch-four {
  left: 192px;
  bottom: 54px;
  background: #c7b681;
}

.infographic-line {
  height: 1px;
  background: rgba(236, 228, 210, 0.28);
  transform-origin: left center;
}

.line-one {
  top: 336px;
  left: 58px;
  width: 318px;
  transform: rotate(-13deg);
}

.line-two {
  top: 402px;
  left: 66px;
  width: 308px;
  transform: rotate(17deg);
}

.line-three {
  top: 100px;
  left: 34px;
  width: 284px;
  transform: rotate(7deg);
  opacity: 0.62;
}

.line-four {
  right: 58px;
  bottom: 212px;
  width: 182px;
  transform: rotate(92deg);
  opacity: 0.54;
}

.infographic-ruler {
  width: 1px;
  height: 210px;
  background:
    repeating-linear-gradient(180deg, rgba(236, 228, 210, 0.34) 0 1px, transparent 1px 12px);
}

.ruler-one {
  top: 78px;
  left: 24px;
}

.ruler-two {
  right: 22px;
  bottom: 116px;
}

.infographic-node {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(236, 228, 210, 0.48);
  border-radius: 50%;
  background: rgba(199, 182, 129, 0.44);
}

.node-one {
  top: 96px;
  left: 234px;
}

.node-two {
  top: 314px;
  left: 96px;
}

.node-three {
  right: 70px;
  bottom: 234px;
}

.node-four {
  right: 164px;
  bottom: 100px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
}

.service-number {
  color: var(--metal);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 2rem;
}

.service h3 {
  margin: auto 0 14px;
}

.service p,
.process-step p {
  color: rgba(247, 239, 229, 0.67);
}

.approach {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  padding: 128px max(20px, calc((100vw - var(--max)) / 2)) 132px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.92) 0%, rgba(25, 22, 18, 0.7) 42%, rgba(82, 70, 52, 0.26) 100%),
    linear-gradient(0deg, rgba(12, 11, 9, 0.94) 0%, rgba(12, 11, 9, 0.3) 56%, rgba(198, 184, 143, 0.1) 100%),
    url("assets/approach-process-bg.png") center / cover no-repeat;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(236, 228, 210, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 228, 210, 0.1) 1px, transparent 1px);
  background-size: 100% 50%, 25% 100%;
  opacity: 0.38;
  pointer-events: none;
}

.approach .section-heading,
.approach .process {
  position: relative;
  z-index: 1;
}

.approach .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.process-step {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(236, 228, 210, 0.2);
  background:
    linear-gradient(145deg, rgba(236, 228, 210, 0.1), rgba(236, 228, 210, 0.026)),
    rgba(12, 11, 9, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(108%);
}

.process-step span {
  display: inline-block;
  margin-bottom: auto;
  color: var(--metal);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.process-step h3 {
  margin-bottom: 12px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(135deg, #1b1b1a, #2d2521);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tile::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(185, 160, 110, 0.28), transparent 60%);
}

.tile.tall {
  grid-row: span 2;
  background:
    linear-gradient(160deg, rgba(9, 9, 8, 0.4), rgba(9, 9, 8, 0.86)),
    url("assets/hero-luxury-packaging.png") center / cover;
}

.tile.wine {
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
}

.tile.ivory {
  color: #15120f;
  background: linear-gradient(135deg, #f0e7d6, #b9a06e);
}

.tile.graphite {
  background: linear-gradient(135deg, #0b0b0b, var(--teal));
}

.tile span,
.tile strong {
  position: relative;
  z-index: 1;
}

.tile span {
  color: currentColor;
  opacity: 0.62;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.tile strong {
  max-width: 310px;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.details {
  padding-top: 0;
}

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

.detail-list p {
  min-height: 92px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(247, 239, 229, 0.76);
  background: rgba(255, 255, 255, 0.025);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-panel {
  padding-top: 10px;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-links a {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--metal);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: rgba(247, 239, 229, 0.56);
  font-size: 0.82rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-content {
    transform: none;
  }

  .intro,
  .section-heading,
  .showcase,
  .contact {
    grid-template-columns: 1fr;
  }

  .capability-infographic {
    width: 100%;
    min-height: 620px;
  }

  .approach .section-heading {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    width: 100%;
    margin-top: 0;
    padding: 12px 14px;
  }

  .brand img {
    width: 136px;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 860px;
    padding: 112px 18px 180px;
  }

  .hero::before,
  .hero-media,
  .hero-overlay {
    inset: 0;
    border-radius: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(48, 42, 34, 0.74), rgba(48, 42, 34, 0.38) 48%, rgba(48, 42, 34, 0.08)),
      linear-gradient(0deg, rgba(8, 8, 8, 0.7) 0%, rgba(98, 88, 70, 0.12) 58%, rgba(240, 232, 210, 0.2) 100%);
  }

  h1 {
    font-size: clamp(3rem, 12.8vw, 4.75rem);
  }

  h2 {
    font-size: clamp(3.6rem, 16vw, 5.8rem);
  }

  .section-pad {
    width: min(calc(100% - 28px), var(--max));
    padding: 82px 0;
  }

  .approach {
    width: 100%;
    padding: 88px 14px 92px;
  }

  .service-grid,
  .process,
  .detail-list,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .capability-infographic {
    min-height: 520px;
  }

  .infographic-bottle {
    right: 58px;
    bottom: 120px;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .infographic-cap {
    right: 73px;
    bottom: 364px;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .box-one {
    left: 26px;
    transform: scale(0.86);
    transform-origin: top left;
  }

  .box-two {
    right: 26px;
    transform: scale(0.88);
    transform-origin: top right;
  }

  .service {
    min-height: 250px;
  }

  .mosaic {
    grid-auto-rows: 210px;
  }

  .tile.tall {
    grid-row: span 1;
  }

  .footer {
    display: block;
    width: min(calc(100% - 28px), var(--max));
  }
}
