@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #1f211f;
  --muted: #6f716d;
  --paper: #faf9f6;
  --soft: #f0eee8;
  --line: #dedbd2;
  --accent: #30483b;
  --gold: #b6a277;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,249,246,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(222,219,210,.75);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .13em;
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
nav { display: flex; gap: 28px; }
nav a, .text-link { color: var(--ink); text-decoration: none; font-size: 14px; }
nav a:hover, .text-link:hover { opacity: .65; }

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #e9e2d7;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 47%;
  background:
    linear-gradient(90deg, rgba(250,249,246,1) 0%, rgba(250,249,246,.76) 8%, rgba(250,249,246,.08) 42%, rgba(31,33,31,.03) 100%),
    url("https://images.pexels.com/photos/7670764/pexels-photo-7670764.jpeg?cs=srgb&dl=pexels-alleksana-7670764.jpg&fm=jpg") center/cover no-repeat;
}
.hero-grid {
  position: relative;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}
.hero-copy-wrap { padding: 80px 0; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  color: var(--accent);
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}
h1 { font-size: clamp(48px, 6vw, 78px); max-width: 800px; }
h2 { font-size: clamp(36px, 4vw, 54px); }
.hero-copy { max-width: 620px; color: var(--muted); font-size: 18px; margin: 28px 0 34px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.primary { color: var(--white); background: var(--accent); }
.secondary { color: var(--ink); border: 1px solid var(--line); background: rgba(250,249,246,.78); }
.hero-mark {
  justify-self: end;
  width: min(370px, 100%);
  padding: 28px;
  background: rgba(250,249,246,.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.72);
}
.hero-mark img { max-height: 330px; width: auto; margin: 0 auto 18px; }
.hero-mark div { display: flex; flex-direction: column; gap: 5px; text-align: center; color: var(--muted); font-size: 12px; }

.section { padding: 110px 0; }
.light { background: var(--soft); }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.about-copy p { color: var(--muted); margin-top: 0; margin-bottom: 22px; }
.full-image-wrap { margin-top: 75px; height: 430px; overflow: hidden; }
.full-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.section-intro { max-width: 680px; color: var(--muted); margin: 24px 0 48px; font-size: 17px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--paper); padding: 34px; min-height: 240px; border: 1px solid var(--line); }
.card span { font-size: 11px; letter-spacing: .16em; color: var(--accent); }
.card h3 { margin: 20px 0 10px; font-size: 25px; }
.card p { color: var(--muted); font-size: 14px; margin: 0; }

.split-image {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  margin-top: 60px;
  background: var(--paper);
}
.split-image-photo { min-height: 390px; }
.split-image-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-image-copy { padding: 55px; display: flex; flex-direction: column; justify-content: center; }
.split-image-copy h3 { font-size: 38px; margin-bottom: 20px; }
.split-image-copy p:last-child { color: var(--muted); }

.partner-note {
  margin-top: 55px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}
.partner-note p { color: var(--muted); max-width: 650px; margin: 8px 0 12px; }
.text-link { font-weight: 600; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.focus-grid div {
  padding: 30px 15px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .13em;
  border-right: 1px solid var(--line);
}
.focus-grid div:last-child { border-right: 0; }

.product-visual { margin-top: 60px; position: relative; height: 500px; overflow: hidden; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.product-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,22,20,.62) 100%);
}
.visual-caption {
  position: absolute;
  z-index: 1;
  left: 34px;
  bottom: 28px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--white);
  font-size: 11px;
  letter-spacing: .16em;
}

.contact-section { background: var(--accent); color: var(--white); }
.contact-section .eyebrow { color: #d7dfd9; }
.contact-section p { color: #d9dedb; }
.contact-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 100px; align-items: center; }
.contact-box {
  border-left: 1px solid rgba(255,255,255,.28);
  padding-left: 42px;
}
.contact-box img { width: 76px; height: 76px; object-fit: contain; margin-bottom: 18px; }
.contact-box p { margin: 7px 0; }
.contact-box a { color: var(--white); }

footer { background: var(--ink); color: #bbbdb9; font-size: 12px; }
.footer-inner { min-height: 72px; display: flex; justify-content: space-between; align-items: center; }
.photo-credit { text-align: center; padding: 0 20px 22px; color: #888b86; font-size: 10px; }

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .nav { padding: 18px 0; }
  nav { display: none; }
  .hero { min-height: auto; }
  .hero-image { inset: 0; opacity: .23; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding: 65px 0; }
  .hero-copy-wrap { padding: 0; }
  .section { padding: 75px 0; }
  .two-col, .contact-grid, .split-image { grid-template-columns: 1fr; gap: 45px; }
  .full-image-wrap { height: 300px; margin-top: 45px; }
  .cards { grid-template-columns: 1fr; }
  .split-image-photo { min-height: 300px; }
  .split-image-copy { padding: 34px; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .focus-grid div { border-bottom: 1px solid var(--line); }
  .focus-grid div:nth-child(2n) { border-right: 0; }
  .product-visual { height: 360px; }
  .contact-box { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding: 28px 0 0; }
  .footer-inner { padding: 20px 0; flex-direction: column; align-items: flex-start; gap: 5px; }
}

.hero-copy-wrap {
  max-width: 650px;
  position: relative;
  z-index: 2;
}
