:root {
  --bg: #f5f0e6;
  --bg-soft: #fbf7ef;
  --ink: #2f211c;
  --muted: #6d5a50;
  --brand: #4b2a22;
  --brand-2: #633000;
  --accent: #c7a36a;
  --accent-2: #a87b42;
  --card: #ffffff;
  --line: rgba(75, 42, 34, 0.14);
  --shadow: 0 18px 55px rgba(75, 42, 34, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(199, 163, 106, 0.20), transparent 34rem),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(245, 240, 230, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(75, 42, 34, 0.24));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav-links a { color: var(--brand); }

.hero {
  background:
    linear-gradient(135deg, rgba(18, 15, 13, 0.92), rgba(75, 42, 34, 0.93)),
    radial-gradient(circle at 30% 10%, rgba(199, 163, 106, 0.28), transparent 32rem);
  color: #fff8ef;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 22px 74px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ead6b5;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3 { line-height: 1.12; }

h1 {
  margin: 16px 0 14px;
  font-size: clamp(46px, 8vw, 86px);
  letter-spacing: 0.04em;
}

.hero h1 span {
  display: block;
  font-size: clamp(20px, 3vw, 34px);
  color: #ead6b5;
  letter-spacing: 0.01em;
  margin-top: 6px;
}

.hero p {
  font-size: 19px;
  color: #efe1cf;
  max-width: 680px;
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #2b1b16;
}

.button.secondary {
  color: #fff8ef;
  border-color: rgba(255, 248, 239, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.hero-card-inner {
  border-radius: 28px;
  background: #fff8ef;
  color: var(--brand);
  padding: 30px;
}

.hero-logo {
  width: min(240px, 72vw);
  height: auto;
  display: block;
  margin: 0 0 18px;
  filter: drop-shadow(0 18px 34px rgba(199, 163, 106, 0.34));
}

.hero-card h2 {
  font-size: 28px;
  margin: 16px 0 10px;
}

.hero-card p { color: var(--muted); font-size: 16px; }

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 22px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-header h2 {
  color: var(--brand);
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 10px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 21px;
}

.card p { color: var(--muted); margin: 0; }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(75, 42, 34, 0.08);
  color: var(--brand-2);
  margin-bottom: 16px;
  overflow: hidden;
}

.icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(75, 42, 34, 0.18));
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 56px;
}

.quote {
  background: var(--brand);
  color: #fff8ef;
}

.quote p {
  color: #ead6b5;
  font-size: 23px;
  margin: 0 0 14px;
}

.quote strong { color: #fff8ef; }

.notice {
  background: rgba(199, 163, 106, 0.12);
  border: 1px solid rgba(199, 163, 106, 0.34);
}

.page-header {
  background: var(--brand);
  color: #fff8ef;
  text-align: center;
  padding: 58px 22px;
}

.page-header h1 {
  font-size: clamp(34px, 6vw, 58px);
  margin: 0 0 10px;
}

.page-header p {
  margin: 0 auto;
  max-width: 760px;
  color: #ead6b5;
  font-size: 18px;
}

.content {
  max-width: 900px;
}

.content .card { margin-bottom: 20px; }

.content h2 { color: var(--brand); margin-top: 0; }

ul {
  padding-left: 20px;
  color: var(--muted);
}

li { margin-bottom: 8px; }

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

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

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

  .hero-logo {
    width: min(190px, 62vw);
    margin-left: auto;
    margin-right: auto;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  main {
    padding-top: 40px;
  }
}

.small-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
}

.light-button {
    color: var(--brand) !important;
    border-color: var(--line) !important;
    background: rgba(255, 255, 255, 0.55) !important;
}
