:root {
  --ink: #141414;
  --muted: #66605b;
  --paper: #f7f3ee;
  --surface: #fffdf9;
  --line: #dfd6ca;
  --crimson: #b21f32;
  --oxide: #8a5349;
  --moss: #667159;
  --gold: #b9985b;
  --shadow: 0 24px 80px rgba(34, 25, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 243, 238, 0.9);
  border-bottom: 1px solid rgba(223, 214, 202, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: #504a45;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

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

.language-switcher {
  flex: 0 0 auto;
}

.language-switcher select {
  min-width: 128px;
  height: 38px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: #3f3934;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

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

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 6vw, 86px) clamp(20px, 4vw, 56px) 36px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--crimson);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.1vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #e8dfd5;
  aspect-ratio: 4 / 5;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro,
.services,
.process,
.work,
.contact {
  padding: clamp(54px, 7vw, 108px) clamp(20px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.intro p:last-child {
  margin: 44px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.service-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.work-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--surface);
}

.service-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--crimson);
  font-size: 13px;
  font-weight: 900;
}

.service-grid p,
.work-grid p,
.process-row p,
.contact-copy p {
  color: var(--muted);
}

.process {
  background: #1c1a18;
  color: #fff;
}

.process .section-kicker {
  color: #e65c6b;
}

.process h2 {
  color: #fff;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-row div {
  min-height: 230px;
  padding: 30px;
  background: #1c1a18;
}

.process-row strong {
  display: block;
  margin-bottom: 18px;
  font-size: 24px;
}

.material-swatch {
  width: 100%;
  height: 116px;
  margin-bottom: 26px;
  border-radius: 6px;
  border: 1px solid rgba(20, 20, 20, 0.1);
}

.material-swatch.glass {
  background: linear-gradient(135deg, #f7fbfb, #cddada 48%, #f9ffff);
}

.material-swatch.metal {
  background: linear-gradient(135deg, #3a3430, #b9985b 52%, #f1dfad);
}

.material-swatch.paper {
  background: linear-gradient(135deg, #f0e5d6, #b65b53 50%, #2f2c29);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-copy a {
  display: inline-block;
  margin-top: 18px;
  color: var(--crimson);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inline-link {
  color: var(--crimson);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f4;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #514b45;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #cfc4b7;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.inquiry-form input,
.inquiry-form select {
  height: 46px;
  padding: 0 12px;
}

.inquiry-form textarea {
  resize: vertical;
  padding: 12px;
}

.inquiry-form button {
  height: 50px;
  border: 0;
  border-radius: 4px;
  background: var(--crimson);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 4vw, 56px);
  color: #776f68;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    aspect-ratio: 16 / 11;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .language-switcher,
  .language-switcher select {
    width: 100%;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 180px;
  }

  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .work-grid article,
  .process-row div {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
