:root {
  --paper: #fbfaf7;
  --paper-warm: #f6f1e9;
  --ink: #111111;
  --muted: #5f5d58;
  --soft-muted: #817d74;
  --line: rgba(17, 17, 17, 0.12);
  --gold: #a78f70;
  --gold-soft: #cbb897;
  --panel: rgba(255, 255, 255, 0.72);
  --max: 1440px;
  --gutter: clamp(24px, 5vw, 70px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 18%, rgba(199, 181, 146, 0.13), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--paper) 38%, var(--paper-warm) 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  color: #171717;
  font-size: 15px;
  line-height: 1;
}

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

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.text-link:hover {
  color: var(--gold);
}

.section-band {
  border-bottom: 1px solid var(--line);
}

.content-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(72vw, 980px);
  height: min(38vw, 390px);
  content: "";
  background-image: url("./assets/wave-background.png");
  background-position: right bottom;
  background-size: cover;
  opacity: 0.92;
  pointer-events: none;
}

.hero .content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  min-height: 560px;
  align-items: center;
}

.hero-copy {
  max-width: 540px;
  padding: 92px 0 82px;
}

h1,
h2,
p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(64px, 9vw, 104px);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 0.96;
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  margin: 42px 0 32px;
  background: var(--gold);
}

.rule.centered {
  margin: 18px auto 0;
}

.hero-line {
  max-width: 460px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.28;
}

.body-copy {
  max-width: 500px;
  margin-top: 44px;
  color: #1f1f1d;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 350;
  line-height: 1.85;
}

.project {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
}

.project::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 56%, rgba(199, 181, 146, 0.16), transparent 30%),
    radial-gradient(circle at 36% 10%, rgba(255, 255, 255, 0.82), transparent 42%);
  pointer-events: none;
}

.project-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
  min-height: 500px;
  padding-top: 56px;
  padding-bottom: 42px;
}

.section-label {
  color: var(--gold);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.project h2,
.company h2,
.policy-page h1 {
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  margin-top: 42px;
  padding: 0 26px;
  border: 1px solid rgba(167, 143, 112, 0.62);
  color: #5c5043;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.48);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.outline-button svg,
.text-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outline-button:hover,
.outline-button:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.product-figure {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.product-figure img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 26px 30px rgba(58, 51, 43, 0.12));
}

.company {
  padding: 46px var(--gutter) 58px;
  background: rgba(255, 255, 255, 0.72);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 38px;
  text-align: center;
}

.company .section-heading h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: 0.04em;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.info-item {
  min-height: 144px;
  padding: 6px 28px 0;
  text-align: center;
}

.info-item + .info-item {
  border-left: 1px solid var(--line);
}

.info-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-label {
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.info-value {
  color: #1f1f1d;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.45;
}

.info-note {
  display: block;
  margin-top: 7px;
  color: var(--soft-muted);
  font-size: 13px;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7c6c58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 118px;
  padding: 28px var(--gutter) 34px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.site-footer a {
  color: #7c6c58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page {
  min-height: calc(100vh - 204px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 247, 0.92)),
    url("./assets/wave-background.png") right top / 88% auto no-repeat;
}

.policy-hero,
.policy-content {
  width: min(100%, 820px);
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.policy-hero {
  padding-top: 96px;
  padding-bottom: 28px;
}

.policy-hero .body-copy {
  margin-top: 18px;
  color: var(--soft-muted);
}

.policy-content {
  padding-bottom: 88px;
  color: #2f2d29;
  font-size: 18px;
  line-height: 1.85;
}

.policy-content p + h2 {
  margin-top: 42px;
}

.policy-content h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.policy-content a {
  color: #7c6c58;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    gap: 24px;
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
    font-size: 14px;
  }

  .hero .content-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    width: 100%;
    height: 260px;
    opacity: 0.75;
  }

  .hero .content-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 0 190px;
  }

  .project-grid {
    min-height: auto;
    padding-top: 58px;
  }

  .product-figure {
    justify-content: center;
    margin-top: 2px;
  }

  .product-figure img {
    width: min(100%, 450px);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .info-item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
  }

  .brand {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 25px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    letter-spacing: 0.12em;
  }

  .project h2,
  .policy-page h1 {
    font-size: 46px;
  }

  .body-copy {
    margin-top: 32px;
  }

  .company {
    padding-top: 42px;
  }

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

  .info-item {
    padding: 0 0 28px;
  }

  .info-item + .info-item {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 32px;
  }
}
