:root {
  --bg: #f7f3ec;
  --paper: #fffaf2;
  --text: #1f1b16;
  --muted: #6f665c;
  --line: #ded4c5;
  --gold: #a67c38;
  --dark: #15120e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1160px, 92%);
  margin: auto;
}

.header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 236, 0.95);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  text-decoration: none;
}

nav a {
  margin-left: 26px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.hero { padding: 96px 0 88px; }

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

h1 {
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 18px 0 28px;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 14px 0 20px;
}

h3 {
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0;
}

.hero-text {
  font-size: 23px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 660px;
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.text-link {
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.hero-image {
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(21,18,14,0.10);
}

.hero-image img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.story {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-wrap { max-width: 820px; }

.story p {
  font-size: 23px;
  line-height: 1.85;
  color: #302a23;
}

.dropcap::first-letter {
  float: left;
  font-size: 86px;
  line-height: 0.82;
  padding-right: 12px;
  color: var(--gold);
}

.essentials, .guides { padding: 100px 0; }

.section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-head p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card, .guide-card {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card {
  border-radius: 34px;
  overflow: hidden;
}

.card:hover, .guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(21,18,14,0.08);
}

.card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.card-copy { padding: 34px; }

.card-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.guide-card {
  padding: 34px;
  border-radius: 30px;
}

.guide-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.objects {
  padding: 96px 0;
  background: var(--dark);
  color: #fff;
}

.objects p {
  color: #d8d0c5;
  font-size: 21px;
  line-height: 1.8;
  max-width: 820px;
}

.object-line {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.object-pill {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 14px 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #eee2d3;
  text-align: center;
}

.trust { padding: 88px 0; }

.trust-card {
  max-width: 900px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
}

.trust-card p {
  font-size: 21px;
  line-height: 1.8;
  color: var(--muted);
}

.footer {
  padding: 38px 0;
  background: #0f0d0a;
  color: #c8bfb2;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer p {
  max-width: 560px;
  line-height: 1.6;
}

.footer-links a {
  color: #c8bfb2;
  margin-left: 18px;
  text-decoration: none;
}

@media (max-width: 900px) {
  nav { display: none; }

  .hero-grid,
  .card-grid,
  .guide-grid,
  .object-line {
    grid-template-columns: 1fr;
  }

  .hero-image img { min-height: auto; }

  .footer-inner { display: block; }

  .footer-links a {
    display: inline-block;
    margin: 12px 16px 0 0;
  }
}
html {
  scroll-behavior: smooth;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}