:root {
  color-scheme: light;
  --ink: #21201f;
  --muted: #69625b;
  --line: #e6dfd7;
  --paper: #fffaf4;
  --soft: #f5eee6;
  --green: #63735d;
  --rose: #b86e74;
  --gold: #c49a4b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(230, 223, 215, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 0.76rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

nav a:hover,
footer a:hover {
  color: var(--rose);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 70px));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 32, 31, 0.62) 0%, rgba(33, 32, 31, 0.3) 46%, rgba(33, 32, 31, 0.04) 100%),
    linear-gradient(0deg, rgba(33, 32, 31, 0.54) 0%, rgba(33, 32, 31, 0) 36%);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) clamp(42px, 10vh, 104px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd2d0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 11vw, 9.2rem);
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  text-decoration: none;
  font-weight: 720;
}

.section {
  padding: clamp(54px, 9vw, 110px) clamp(18px, 6vw, 84px);
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
}

.intro {
  background: #fff;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 850px;
  margin-bottom: clamp(24px, 5vw, 46px);
}

.collections {
  background: var(--soft);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: #fffaf4;
  border: 1px solid var(--line);
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.collection-grid article > div {
  padding: 20px;
}

.operation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.operation-grid > div {
  min-height: 210px;
  padding: 24px;
  background: #fff;
}

.contact {
  background: #2c352b;
  color: #fff;
}

.contact p,
.contact .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 52px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

footer div {
  display: flex;
  gap: 18px;
}

.policy-main {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 86px) clamp(18px, 5vw, 48px);
}

.policy-main h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.policy-main h2 {
  margin-top: 40px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.policy-main ul {
  color: var(--muted);
  line-height: 1.8;
}

.callback {
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.callback > div {
  max-width: 620px;
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 640px;
  }

  .intro,
  .contact,
  .collection-grid,
  .operation-grid {
    grid-template-columns: 1fr;
  }

  .operation-grid > div {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 580px;
  }

  .hero-copy {
    margin-bottom: 38px;
  }

  .collection-grid article > div,
  .operation-grid > div {
    padding: 18px;
  }
}
