:root {
  --ink: #1f2421;
  --charcoal: #111311;
  --muted: #6f716b;
  --stone: #e4dfd4;
  --paper: #f6f1e8;
  --panel: #fffaf1;
  --line: #d8d0c0;
  --clay: #8b4e35;
  --clay-dark: #5f3325;
  --moss: #4e5a46;
  --smoke: #2e332f;
  --shadow: 0 18px 44px rgba(31, 36, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  border-bottom: 1px solid rgba(31, 36, 33, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  border-radius: 0;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--smoke);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .button::after {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--charcoal);
  border-radius: 0;
  background: var(--charcoal);
  color: #fffaf1;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.button.secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(31, 36, 33, 0.55);
}

.button.secondary:hover {
  background: var(--charcoal);
  color: #fffaf1;
}

.hero .button.secondary,
.page-hero .button.secondary,
.story-panel .button.secondary,
.rfq-band .button.secondary {
  color: #fffaf1;
  border-color: rgba(255, 250, 241, 0.72);
}

.hero .button.secondary:hover,
.page-hero .button.secondary:hover,
.story-panel .button.secondary:hover,
.rfq-band .button.secondary:hover {
  background: #fffaf1;
  color: var(--charcoal);
  border-color: #fffaf1;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(17, 19, 17, 0.08), rgba(17, 19, 17, 0.68)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=82");
  background-size: cover;
  background-position: center;
  color: #fffaf1;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 92px 32px 54px;
}

.eyebrow {
  display: inline-block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.story-panel .eyebrow,
.rfq-band .eyebrow {
  color: #d9b391;
}

.hero h1 {
  max-width: 880px;
  margin: 16px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 520;
  line-height: 0.98;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: 18px;
}

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

.hero-strip {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 250, 241, 0.34);
  border-bottom: 1px solid rgba(255, 250, 241, 0.34);
}

.hero-strip div {
  min-height: 94px;
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 250, 241, 0.28);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 520;
}

.hero-strip span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 13px;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 92px 32px;
}

.section.compact {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h1,
h2,
h3 {
  color: var(--charcoal);
}

.section-title h2,
.split-copy h2,
.page-hero h1,
.rfq-band h2 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 520;
  line-height: 1.04;
}

.section-title p,
.split-copy p,
.page-hero p,
.card p,
.process-item p,
.rfq-band p {
  color: var(--muted);
  font-size: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: start;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(31, 36, 33, 0.14);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 520;
}

.card p {
  margin: 0 0 18px;
}

.card ul,
.content-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.image-tile {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.band {
  background: #e7dfd1;
  border-top: 1px solid rgba(31, 36, 33, 0.1);
  border-bottom: 1px solid rgba(31, 36, 33, 0.1);
}

.story-panel {
  min-height: 560px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(17, 19, 17, 0.08), rgba(17, 19, 17, 0.74)),
    url("https://images.unsplash.com/photo-1581093458791-9d42cc3f3edc?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  color: #fffaf1;
}

.story-panel-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 84px 32px;
}

.story-panel h2 {
  max-width: 780px;
  margin: 12px 0 14px;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 520;
  line-height: 1.02;
}

.story-panel p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.78);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(31, 36, 33, 0.2);
  border-left: 1px solid rgba(31, 36, 33, 0.2);
}

.process-item {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.52);
  border-right: 1px solid rgba(31, 36, 33, 0.2);
  border-bottom: 1px solid rgba(31, 36, 33, 0.2);
}

.process-kicker {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.process-item strong {
  display: block;
  margin: 14px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--charcoal);
  font-size: 24px;
  font-weight: 520;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 250, 241, 0.7);
  border-top: 1px solid rgba(31, 36, 33, 0.22);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 36, 33, 0.16);
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  padding-right: 22px;
  color: var(--charcoal);
  font-weight: 780;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(17, 19, 17, 0.16), rgba(17, 19, 17, 0.72)),
    var(--page-image, url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1800&q=82"));
  background-size: cover;
  background-position: center;
  color: #fffaf1;
}

.page-hero .section {
  min-height: 430px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  max-width: 780px;
  color: #fffaf1;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.78);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

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

.form-panel {
  background: var(--panel);
  border: 1px solid rgba(31, 36, 33, 0.18);
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  color: var(--smoke);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 36, 33, 0.36);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-bottom-color: var(--clay);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  display: none;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(78, 90, 70, 0.36);
  background: #eceade;
  color: var(--moss);
}

.notice.visible {
  display: block;
}

.rfq-band {
  background:
    linear-gradient(90deg, rgba(17, 19, 17, 0.82), rgba(17, 19, 17, 0.34)),
    url("https://images.unsplash.com/photo-1565043666747-69f6646db940?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  color: #fffaf1;
}

.rfq-band .section {
  min-height: 420px;
  display: grid;
  align-content: center;
}

.rfq-band h2 {
  max-width: 760px;
  color: #fffaf1;
}

.rfq-band p {
  max-width: 620px;
  color: rgba(255, 250, 241, 0.78);
}

.footer {
  background: var(--charcoal);
  color: rgba(255, 250, 241, 0.74);
  padding: 56px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.footer h3,
.footer h4 {
  color: #fffaf1;
  margin-top: 0;
}

.footer h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 520;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 250, 241, 0.74);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: 760px;
  padding: 16px;
  display: none;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid rgba(31, 36, 33, 0.22);
  box-shadow: var(--shadow);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding: 16px 22px;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .nav-links a::after {
    bottom: 4px;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-inner,
  .section,
  .story-panel-inner,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .grid-3,
  .grid-2,
  .split-feature,
  .footer-inner,
  .hero-strip,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.28);
  }

  .process {
    border-left: 0;
  }

  .process-item {
    min-height: auto;
    border-left: 1px solid rgba(31, 36, 33, 0.2);
  }

  .wide-image {
    min-height: 300px;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}
