:root {
  --black: #090807;
  --ink: #17130f;
  --charcoal: #211c17;
  --warm-white: #f7f2ea;
  --soft-white: #fffaf2;
  --champagne: #c9a66b;
  --gold: #e2c389;
  --amber: #d89142;
  --muted: #7d7166;
  --line: rgba(201, 166, 107, 0.28);
  --shadow: 0 26px 80px rgba(9, 8, 7, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--soft-white);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(9, 8, 7, 0.9);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: min(210px, 34vw);
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: flex;
  gap: clamp(13px, 2vw, 28px);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 242, 0.24);
  background: rgba(9, 8, 7, 0.18);
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease, opacity 180ms ease;
}

.language-button:hover,
.language-button.is-active {
  color: var(--gold);
}

.language-button:focus-visible {
  outline: 2px solid rgba(201, 166, 107, 0.82);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
  padding: 110px clamp(20px, 5vw, 72px) 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
}

.hero-media {
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-media img {
  filter: saturate(0.85) contrast(1.02);
  object-position: center right;
  transform: scale(1.04) translateX(5%);
}

.hero-overlay {
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 28%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.35) 64%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(9, 8, 7, 0.7), rgba(9, 8, 7, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--soft-white);
  font-size: clamp(2.2rem, 5.4vw, 5rem);
  line-height: 1;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.3vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--champagne);
  color: var(--black);
}

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

.button-secondary {
  border-color: rgba(255, 250, 242, 0.46);
  color: var(--soft-white);
}

.button-secondary:hover {
  border-color: var(--gold);
}

.button-dark {
  margin-top: 18px;
  background: var(--black);
  color: var(--soft-white);
}

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

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 104px) 0;
}

.section-dark {
  background: var(--black);
  color: var(--soft-white);
}

.section-light {
  background: var(--warm-white);
}

.section-warm {
  background: #eee4d3;
}

.two-column,
.split-media,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.problem p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.26rem);
}

.section-photo {
  margin-top: 30px;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.section-photo-small {
  aspect-ratio: 5 / 3;
}

.opportunity-layout {
  align-items: start;
}

.opportunity-layout > * {
  min-width: 0;
}

.opportunity-layout .section-photo {
  margin-top: 0;
}

.opportunity-heading {
  align-self: start;
}

.opportunity-body-wide {
  grid-column: 1 / -1;
  max-width: 980px;
}

.opportunity-body-wide p:not(.short-line) {
  max-width: 980px;
  font-size: clamp(1.06rem, 1.65vw, 1.24rem);
}

.problem h2 {
  max-width: 620px;
  font-size: clamp(1.9rem, 3.35vw, 3.45rem);
}

html[lang="es"] .problem h2 {
  max-width: 720px;
  font-size: clamp(2.05rem, 3.65vw, 3.72rem);
}

.opportunity-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 405px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-position: center;
  transform: translateX(22px) scale(1.02);
  transition: opacity 1200ms ease, transform 1200ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.short-line,
.section-intro {
  color: var(--charcoal) !important;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.creates {
  min-height: 420vh;
}

.creates-scroll-stage {
  position: sticky;
  top: 0;
  display: grid;
  align-items: start;
  min-height: 100vh;
  overflow: hidden;
  padding-top: clamp(64px, 9vh, 110px);
  box-sizing: border-box;
}

.creates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.creates-copy {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
  align-self: center;
}

.postcard-stack {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: min(72vh, 730px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  padding: 14px 14px 24px;
  background: rgba(255, 250, 242, 0.7);
}

.postcard-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(474px, 92%);
  border: 1px solid rgba(201, 166, 107, 0.22);
  background: var(--soft-white);
  box-shadow: 0 18px 48px rgba(9, 8, 7, 0.14);
  opacity: 0;
  z-index: var(--z, 1);
  transform: translate(-50%, -92%) translateX(-42px) rotate(calc(var(--rotate) - 9deg)) scale(0.96);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.postcard-card.is-stacked {
  opacity: 1;
  transform: translate(calc(-50% + var(--stack-x, 0px)), calc(-50% + var(--stack-y, 0px))) rotate(var(--rotate)) scale(1);
}

.feature-card > img {
  aspect-ratio: 5 / 3;
  margin-bottom: 22px;
  object-position: center;
}

.feature-card span {
  display: block;
  margin: 0 14px 24px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
}

.process-list span {
  display: block;
  margin-bottom: 0;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-card h3,
.feature-card p {
  margin-left: 14px;
  margin-right: 14px;
}

.feature-card p,
.application-item p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.applications-bg-video,
.applications-bg-overlay {
  position: absolute;
  inset: 0;
}

.applications-bg-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.applications-bg-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.88), rgba(9, 8, 7, 0.7)),
    rgba(9, 8, 7, 0.38);
}

.applications .section-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(54px, 6vw, 88px);
}

.applications .section-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

html[lang="es"] .applications .section-heading {
  max-width: 980px;
}

html[lang="es"] .applications .section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  line-height: 0.98;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 44px;
}

.application-item {
  position: relative;
  min-height: 170px;
  overflow: visible;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.application-item p {
  color: rgba(255, 250, 242, 0.66);
}

.application-preview {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 18px);
  z-index: 2;
  width: min(240px, 76%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(201, 166, 107, 0.32);
  background: var(--charcoal);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px) scale(0.98);
  transition: opacity 360ms ease, transform 360ms ease;
}

.application-preview img {
  object-position: center;
}

.application-item:hover .application-preview,
.application-item:focus-within .application-preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.section-cta {
  margin-top: 38px;
}

.media-frame {
  min-height: clamp(360px, 46vw, 640px);
  box-shadow: var(--shadow);
}

.media-frame img {
  object-position: 26% center;
}

.headline-emphasis {
  color: var(--champagne);
  font-style: italic;
}

.benefit-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.benefit-list li {
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid rgba(23, 19, 15, 0.14);
  position: relative;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 9px;
  height: 9px;
  background: var(--champagne);
}

.performance {
  position: relative;
  overflow: hidden;
  background: #08090b;
}

.performance::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.88) 38%, rgba(8, 9, 11, 0.62) 68%, rgba(8, 9, 11, 0.84) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.76), rgba(8, 9, 11, 0.18) 48%),
    url("Images%20folder/Printing%201.jpeg");
  background-position: center right;
  background-size: cover;
}

.performance .section-inner {
  position: relative;
  z-index: 1;
}

.performance-intro {
  max-width: 840px;
}

.performance-intro p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 46px);
}

.performance-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(201, 166, 107, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.09), rgba(255, 250, 242, 0.035));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.performance-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--champagne);
}

.performance-icon path,
.performance-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.performance-card h3 {
  margin-bottom: 10px;
  color: var(--soft-white);
  font-size: 1.16rem;
}

.performance-card p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.96rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: clamp(34px, 5.4vw, 72px);
  align-items: center;
}

.process-copy {
  min-width: 0;
}

.process-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-intro {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.process-image {
  justify-self: end;
  width: 90%;
  max-width: 530px;
  min-height: clamp(330px, 38vw, 495px);
  overflow: visible;
  border: 0;
  background: transparent;
  opacity: 1;
}

.process-image img {
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.28));
}

.process-list li {
  display: grid;
  grid-template-columns: 38px 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.07), rgba(255, 250, 242, 0.026));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.process-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  color: var(--champagne);
}

.process-icon path,
.process-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
}

.process-list h3 {
  margin: 0 0 6px;
  color: var(--soft-white);
  font-size: 1.12rem;
  line-height: 1.25;
}

.selected-work-inner .section-heading {
  max-width: 1080px;
  margin-bottom: 28px;
  margin-inline: auto;
  text-align: center;
}

.selected-work-inner .section-heading h2 {
  max-width: 980px;
  margin-inline: auto;
}

.selected-work-inner .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

html[lang="es"] .selected-work-inner .section-heading h2 {
  max-width: 1050px;
  font-size: clamp(2.7rem, 4.6vw, 5.4rem);
  line-height: 0.98;
}

.work-slider {
  --slider-gap: 16px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  padding: 2px 0 22px;
}

.work-slider-viewport {
  overflow: hidden;
}

.work-slider-track {
  display: flex;
  gap: var(--slider-gap);
  will-change: transform;
  transition: transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.work-slide {
  flex: 0 0 calc((100% - (3 * var(--slider-gap))) / 4);
  min-width: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(23, 19, 15, 0.12);
  box-shadow: 0 18px 54px rgba(9, 8, 7, 0.13);
  filter: saturate(0.84) contrast(0.98);
}

.work-slider-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 166, 107, 0.38);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.62);
  color: var(--charcoal);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.work-slider-button:hover {
  border-color: rgba(201, 166, 107, 0.68);
  background: var(--soft-white);
  transform: translateY(-1px);
}

.work-experience-line {
  max-width: 720px;
  margin: 2px auto 0;
  color: rgba(23, 19, 15, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.faq {
  border-top: 1px solid rgba(201, 166, 107, 0.12);
  background: #0b0c0f;
  color: var(--soft-white);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  column-gap: clamp(48px, 7vw, 110px);
  row-gap: 36px;
  align-items: start;
}

.faq .section-heading {
  max-width: 560px;
  margin-bottom: 0;
}

.faq .section-heading h2 {
  line-height: 1.08;
}

html[lang="es"] .faq .section-heading h2 {
  font-size: clamp(2.1rem, 4.1vw, 4.5rem);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(8px, 1vw, 16px);
}

.faq-item {
  border: 1px solid rgba(255, 250, 242, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.faq-item.is-hidden {
  display: none;
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--soft-white);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(201, 166, 107, 0.86);
  outline-offset: 3px;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 166, 107, 0.42);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--champagne);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease, opacity 260ms ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: rgba(255, 250, 242, 0.72);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 20px;
}

.faq-toggle-page {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 22px;
  border: 1px solid rgba(201, 166, 107, 0.42);
  background: rgba(255, 250, 242, 0.055);
  color: var(--soft-white);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.faq-toggle-page:hover,
.faq-toggle-page:focus-visible {
  border-color: rgba(201, 166, 107, 0.72);
  background: rgba(201, 166, 107, 0.12);
  color: var(--gold);
  transform: translateY(-1px);
}

.contact-profile {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.contact-profile h3 {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

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

.contact-profile .founder-quote {
  margin-top: 12px;
  color: rgba(23, 19, 15, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.contact-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(201, 166, 107, 0.38);
  border-radius: 50%;
  background: #d8cab8;
  box-shadow: var(--shadow);
}

.contact-image img {
  object-position: center top;
}

.contact .section-inner {
  padding-top: clamp(78px, 9vw, 136px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--soft-white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 19, 15, 0.16);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 166, 107, 0.45);
  outline-offset: 2px;
}

.full-span {
  grid-column: 1 / -1;
}

.contact .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: var(--black);
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

  .applications-bg-video {
    display: none;
  }

  .creates {
    min-height: auto;
  }

  .creates-scroll-stage {
    position: static;
    min-height: auto;
    overflow: visible;
  }

  .postcard-stack {
    min-height: auto;
  }

  .postcard-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    opacity: 1;
    transform: none !important;
  }

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    max-width: 460px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 14px;
    font-size: 0.74rem;
  }

  .language-toggle {
    margin-left: auto;
  }

  .two-column,
  .split-media,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .creates-layout {
    grid-template-columns: 1fr;
  }

  .creates-copy,
  .postcard-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .creates-copy {
    position: static;
    margin-bottom: 28px;
  }

  .creates,
  .creates-scroll-stage {
    min-height: auto;
  }

  .creates-scroll-stage {
    position: static;
    overflow: visible;
    padding-top: 0;
  }

  .postcard-stack {
    min-height: auto;
  }

  .postcard-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    opacity: 1;
    transform: rotate(var(--rotate));
  }

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

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

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .process-image {
    justify-self: center;
    width: 82%;
    max-width: 480px;
    min-height: 360px;
  }

  .faq-toggle-page {
    grid-column: auto;
  }

  .work-slide {
    flex-basis: calc((100% - var(--slider-gap)) / 2);
  }

  .feature-card span {
    margin-bottom: 28px;
  }

}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    padding: 18px 20px;
  }

  .site-header.is-scrolled {
    padding-block: 18px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav {
    display: none;
  }

  .language-toggle {
    padding: 6px 9px;
    font-size: 0.7rem;
  }

  .brand-logo {
    max-width: 138px;
    max-height: 38px;
  }

  .hero {
    min-height: 92vh;
    padding: 122px 20px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 8, 7, 0.95), rgba(9, 8, 7, 0.78), rgba(9, 8, 7, 0.34)),
      linear-gradient(0deg, rgba(9, 8, 7, 0.82), rgba(9, 8, 7, 0.08) 50%);
  }

  .hero-media {
    width: 100%;
  }

  .hero-media img {
    object-position: 74% center;
    transform: scale(1.04);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
    padding: 46px 0;
  }

  .card-grid,
  .application-grid,
  .performance-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .performance-card {
    min-height: 0;
    padding: 20px;
  }

  .hero {
    min-height: 78vh;
    padding: 116px 20px 46px;
  }

  .feature-card {
    min-height: 176px;
  }

  .postcard-card,
  .postcard-card.is-stacked {
    transform: none !important;
  }

  .opportunity-carousel {
    min-height: 300px;
  }

  .application-item {
    min-height: 0;
    padding-top: 0;
  }

  .application-preview {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 18px;
    opacity: 1;
    transform: none;
  }

  .media-frame {
    min-height: 360px;
  }

  .work-slide {
    flex-basis: 84%;
  }

  .work-slider {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .work-slider-button {
    width: 34px;
    height: 34px;
    font-size: 1.55rem;
  }

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

  .process-list li {
    grid-template-columns: 28px 34px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .process-icon {
    width: 28px;
    height: 28px;
  }

  .process-image {
    width: 96%;
    max-width: 390px;
    min-height: 318px;
  }

  .faq-question {
    min-height: 60px;
    padding: 16px;
  }

  .faq-answer > p {
    padding-inline: 16px;
  }

  .faq-item.is-open .faq-answer > p {
    padding-bottom: 18px;
  }

  .process-image {
    justify-self: center;
    width: 86%;
    max-width: 320px;
    min-height: 256px;
  }

  .contact-profile {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .site-footer {
    display: grid;
  }
}
