:root {
  --k-bg: #f5f1eb;
  --k-white: #ffffff;
  --k-text: #211d19;
  --k-muted: #6f6962;
  --k-border: #ded8d0;
  --k-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--k-bg);
  color: var(--k-text);
  font-family: "Manrope", Arial, sans-serif;
}

.k-page {
  overflow: hidden;
}

.k-container {
  width: min(calc(100% - 40px), var(--k-max));
  margin-inline: auto;
}

.k-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #15120f;
}

.k-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12));
}

.k-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 120px 70px;
}

.k-eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.k-hero h1,
.k-section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
}

.k-hero h1 {
  max-width: 700px;
  font-size: clamp(48px, 7vw, 88px);
}

.k-lead {
  max-width: 620px;
  margin: 24px 0 0;
  line-height: 1.75;
}

.k-section {
  padding-block: 96px;
}

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

.k-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 72px;
  align-items: center;
}

.k-section h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 62px);
}

.k-copy p,
.k-card p {
  color: var(--k-muted);
  line-height: 1.8;
}

.k-photo {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

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

.k-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--k-border);
  background: rgba(255, 255, 255, 0.55);
}

.k-card h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 500;
}

.k-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.k-gallery figure {
  margin: 0;
  overflow: hidden;
}

.k-gallery figure:nth-child(1),
.k-gallery figure:nth-child(4) {
  grid-column: span 7;
}

.k-gallery figure:nth-child(2),
.k-gallery figure:nth-child(3) {
  grid-column: span 5;
}

.k-gallery figure:nth-child(5),
.k-gallery figure:nth-child(6) {
  grid-column: span 6;
}

.k-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.k-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 12px 8px 0 0;
  padding: 0 20px;
  border: 1px solid var(--k-text);
  color: var(--k-text);
  text-decoration: none;
  font-size: 13px;
}

.k-button--dark {
  background: var(--k-text);
  color: #fff;
}

@media (max-width: 820px) {
  .k-hero {
    min-height: 500px;
  }

  .k-section {
    padding-block: 64px;
  }

  .k-grid-2,
  .k-values {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .k-values {
    gap: 14px;
  }

  .k-card {
    min-height: auto;
  }

  .k-gallery {
    grid-template-columns: 1fr;
  }

  .k-gallery figure:nth-child(n) {
    grid-column: auto;
  }

  .k-gallery img {
    min-height: 260px;
  }
}
