:root {
  --ink: #151210;
  --paper: #fff8ed;
  --wine: #6d1028;
  --rose: #c65a62;
  --gold: #c79b45;
  --green: #173b30;
  --muted: rgba(21, 18, 16, 0.68);
  --line: rgba(21, 18, 16, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(109, 16, 40, 0.10), transparent 34%),
    linear-gradient(315deg, rgba(23, 59, 48, 0.12), transparent 30%),
    var(--paper);
  font-family: Avenir Next, Avenir, Gill Sans, Trebuchet MS, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(109, 16, 40, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 34px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  background: #fffdf8;
}

.button.primary {
  color: #fff8ed;
  background: var(--wine);
  border-color: var(--wine);
}

.phone {
  position: relative;
  width: min(420px, 100%);
  margin-left: auto;
  aspect-ratio: 0.49;
  padding: 14px;
  border-radius: 54px;
  background: #161210;
  box-shadow: 0 38px 90px rgba(21, 18, 16, 0.28);
}

.screen {
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(150deg, #10110f, #1b221c 60%, #050505);
  color: #fff8ed;
  padding: 34px 22px;
}

.screen h2 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 31px;
  line-height: 1.04;
}

.sample-photo {
  height: 250px;
  margin: 24px 0 16px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at 45% 36%, #fff4d8 0 8%, transparent 9%),
    linear-gradient(135deg, #f2d4c7, #718b63 58%, #10110f);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-weight: 800;
}

.quality-list {
  display: grid;
  gap: 10px;
}

.quality {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.quality strong {
  color: #f1d28a;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 18px;
  font-family: Georgia, Times New Roman, serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
}

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

.card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

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

.copy {
  max-width: 780px;
  padding: 58px 0 80px;
}

.copy h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.copy h2 {
  margin-top: 36px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 30px;
  font-weight: 500;
}

.footer {
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 26px;
  }

  .phone {
    margin: 0 auto;
  }

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
