:root {
  --ink: #25231f;
  --muted: #777167;
  --line: #d9d2c7;
  --paper: #f2efe7;
  --paper-2: #e6dfd1;
  --dark: #302d26;
  --gold: #9b7a42;
  --white: #f8f5ee;
  --serif: "Noto Serif SC", serif;
  --sans: "Noto Sans SC", sans-serif;
  --latin: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}

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

button {
  font: inherit;
}

.site {
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 4.4vw, 64px);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.brand__mark {
  font-family: var(--latin);
  font-size: 30px;
  letter-spacing: 0.04em;
}

.brand__sub {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  color: #464139;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.nav a {
  padding-block: 8px;
}

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

.lang-toggle {
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--latin);
  font-size: 16px;
  padding: 8px 0 8px 24px;
}

.section {
  padding: clamp(72px, 9vw, 140px) clamp(20px, 4.4vw, 64px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--muted);
}

.hero {
  padding-top: clamp(76px, 8vw, 120px);
  padding-bottom: 80px;
}

.hero__title {
  max-width: 1180px;
  margin: 42px 0 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero__sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.hero__copy {
  max-width: 560px;
  color: #4d483f;
  font-size: 18px;
  line-height: 1.8;
}

.latin-note {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 22px;
}

.hero__image {
  min-height: clamp(430px, 48vw, 560px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4.4vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 30, 26, 0.84), rgba(75, 65, 45, 0.34)),
    var(--hero-image) center / cover no-repeat;
}

.hero__image p {
  max-width: 480px;
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
}

.hero__image span {
  color: #ddd4c0;
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: 0.18em;
}

.split {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.section-index {
  font-family: var(--latin);
  font-size: 40px;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.35;
}

.lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.65;
}

.body-copy {
  color: #575148;
  font-size: 16px;
  line-height: 1.9;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
}

.section-head__copy {
  max-width: 390px;
  text-align: right;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 64px 360px minmax(0, 1fr) 40px;
  gap: 48px;
  padding: 40px 8px;
  border-bottom: 1px solid var(--line);
}

.service-row__num {
  font-family: var(--latin);
  font-size: 24px;
}

.service-row h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.service-row small {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 18px;
}

.service-row p {
  margin: 0;
  color: #575148;
  font-size: 16px;
  line-height: 1.85;
}

.arrow {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 30px;
}

.works {
  background: var(--dark);
  color: var(--white);
}

.works .body-copy,
.works .eyebrow,
.works .section-head__copy {
  color: #c5bca9;
}

.work-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.work-feature__text {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 28px;
}

.work-feature__text h3 {
  margin: 16px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 500;
}

.work-feature__text p {
  color: #d7cebd;
  line-height: 1.9;
}

.image-fill {
  min-height: 600px;
  background-position: center;
  background-size: cover;
}

.meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.meta b {
  display: block;
  margin-bottom: 8px;
  color: #b4a990;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.meta span {
  font-size: 14px;
}

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

.work-card {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 24px;
}

.work-card__image {
  height: 380px;
  margin-bottom: 24px;
  background-position: center;
  background-size: cover;
}

.work-card h3 {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.work-card p {
  color: #c5bca9;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.method-card {
  min-height: 320px;
  padding: 36px;
  background: var(--paper);
}

.method-card__num {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 22px;
}

.method-card h3 {
  margin: 30px 0 16px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.method-card p {
  color: #575148;
  font-size: 15px;
  line-height: 2;
}

.stat-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 56px;
  padding: clamp(32px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(37, 35, 31, 0.72), rgba(37, 35, 31, 0.38)),
    var(--insight-image) center / cover no-repeat;
  color: var(--white);
}

.stat {
  font-family: var(--latin);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.9;
}

.stat-band p {
  max-width: 440px;
  margin: 0;
  color: #eee6d8;
  font-size: 16px;
  line-height: 1.9;
}

.insight-card {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: stretch;
  padding: 40px;
  border: 1px solid var(--line);
}

.insight-card__image {
  min-height: 340px;
  background-position: center;
  background-size: cover;
}

.insight-card h3 {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  white-space: pre-line;
}

.cta {
  text-align: center;
  background: #e9e3d6;
}

.cta h2 {
  max-width: 900px;
  margin: 30px auto 24px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.42;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.cta p {
  max-width: 580px;
  margin: 0 auto 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin: 52px auto 0;
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--paper));
  background: color-mix(in srgb, var(--line) 72%, transparent);
  text-align: left;
}

.contact > div {
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  background: color-mix(in srgb, var(--paper) 62%, var(--white));
}

.contact > div:last-child {
  grid-column: 1 / -1;
}

.contact b {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.contact span {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
}

.contact > div:first-child span {
  font-family: var(--latin);
}

.contact > div:nth-child(n + 2) span {
  font-size: clamp(14px, 1.47vw, 19.6px);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.6fr);
  gap: 48px;
  padding: 56px clamp(20px, 4.4vw, 64px);
  background: var(--dark);
  color: var(--white);
}

.footer p,
.footer a {
  color: #c5bca9;
  font-size: 14px;
  line-height: 2;
}

.footer h4 {
  color: #8f846f;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #8f846f;
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero__sub,
  .section-head,
  .stat-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head__copy {
    text-align: left;
  }

  .split,
  .work-feature,
  .insight-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .service-row p,
  .service-row .arrow {
    grid-column: 2;
  }

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

  .image-fill,
  .work-card__image,
  .insight-card__image {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 620px) {
  .header {
    align-items: flex-start;
  }

  .brand {
    flex-direction: column;
    gap: 2px;
  }

  .hero__image {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }

  .meta,
  .contact {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cta .eyebrow {
    flex-wrap: wrap;
    font-size: 12px;
    gap: 10px;
    letter-spacing: 0.14em;
    line-height: 1.8;
  }

  .cta .eyebrow::before {
    width: 36px;
  }

  .cta h2 {
    font-size: 24px;
    line-height: 1.48;
    word-break: break-all;
  }

  .contact {
    gap: 1px;
  }

  .contact > div:last-child {
    grid-column: auto;
  }
}
