:root {
  --paper: #f4efe4;
  --paper-deep: #ebe3d2;
  --ink: #151b16;
  --muted: #625d52;
  --line: rgba(21, 27, 22, 0.14);
  --red: #720a1a;
  --green: #1a2c20;
  --gold: #a48545;
  --white: #fffaf0;
  --shadow: 0 26px 80px rgba(18, 23, 18, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 6%, rgba(114, 10, 26, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(164, 133, 69, 0.12), transparent 24rem),
    linear-gradient(135deg, var(--paper), #fbf7ed 48%, var(--paper-deep));
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(0deg, rgba(21, 27, 22, 0.018), rgba(21, 27, 22, 0.018) 1px, transparent 1px, transparent 7px);
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
  padding: 1rem clamp(1.2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 228, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a,
.site-footer nav a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--red);
}

.hero,
.statement,
.brands,
.matter,
.lab,
.contact,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(4.1rem, 10.5vw, 8.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  border-color: rgba(21, 27, 22, 0.24);
  background: rgba(255, 250, 240, 0.36);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  min-height: 560px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual img:first-child {
  transform: translateY(-1.8rem);
}

.hero-visual img:last-child {
  transform: translateY(1.8rem);
}

.statement {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p:last-child,
.matter-copy p,
.lab > p,
.contact p,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.principles article {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.principles article:last-child {
  border-right: 0;
}

.principles span {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.principles p,
.brand-card p,
.brand-card span,
.lab p,
.site-footer p,
.matter-copy li {
  color: var(--muted);
}

.brands,
.lab,
.contact {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.brand-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.34);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(114, 10, 26, 0.38);
  background: rgba(255, 250, 240, 0.68);
}

.brand-card img {
  width: 100%;
  height: 270px;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.brand-card p {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.04;
}

.brand-card span {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-transform: uppercase;
}

.brand-card.featured {
  background: rgba(255, 250, 240, 0.64);
}

.brand-card.editorial {
  color: var(--white);
  background:
    linear-gradient(rgba(21, 27, 22, 0.62), rgba(21, 27, 22, 0.8)),
    url("/assets/images/vivant.jpg") center / cover;
}

.brand-card.editorial p,
.brand-card.editorial span {
  color: #d5bd78;
}

.brand-card.editorial h3 {
  color: var(--white);
}

.matter {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.matter-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.matter-copy {
  padding: clamp(2rem, 6vw, 5rem);
  background: var(--green);
  color: var(--white);
}

.matter-copy .eyebrow,
.matter-copy li {
  color: #d5bd78;
}

.matter-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.matter-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0 0;
  padding-left: 1.1rem;
}

.lab {
  text-align: center;
}

.lab > p {
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}

.lab-grid article {
  min-height: 220px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.38);
}

.lab-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.contact {
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  background: var(--paper-deep);
  text-align: center;
}

.contact p {
  max-width: 720px;
  margin-inline: auto;
}

.contact .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer .copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
}

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

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles,
  .lab-grid {
    grid-template-columns: 1fr;
  }

  .principles article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }
}

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

  .main-nav {
    gap: 0.7rem 1rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }

  .hero-visual img {
    min-height: 260px;
  }

  .hero-visual img:first-child,
  .hero-visual img:last-child {
    transform: none;
  }

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

  .brand-card {
    min-height: 420px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
