:root {
  --color-brand: #8B3A2E;
  --color-cta: #F5C95A;
  --brand-darker: #5C2418;
  --brand-light: #FDF8F2;
  --cta-darker: #E8B940;
  --text-main: #2A1B14;
  --text-on-brand: #FDF8F2;
  --text-on-cta: #2A1B14;
  --muted: #7a6e66;
  --soft-line: #e3d8cd;
  --bg-page: #FDF8F2;
  --bg-alt: #f3e8d9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--bg-page);
}
a { color: var(--color-brand); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--brand-darker); }
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; }

.site-head {
  background: var(--bg-page);
  color: var(--text-main);
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.head-inner {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.mark-logo {
  height: 36px;
  width: auto;
  display: block;
}

.section-image {
  margin: 32px auto 36px;
  max-width: 880px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(139, 58, 46, 0.12);
}
.section-image img { width: 100%; height: auto; display: block; }
.section-image--narrow { max-width: 720px; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 28px; }
.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.18s ease;
}
.main-nav a:hover { color: var(--color-brand); }

.cta-button {
  display: inline-block;
  background: var(--color-cta);
  color: var(--text-on-cta);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 22px rgba(245, 201, 90, 0.45);
  border: 0;
  cursor: pointer;
}
.cta-button:hover {
  background: var(--cta-darker);
  color: var(--text-on-cta);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 201, 90, 0.55);
}
.cta-button--small {
  padding: 10px 22px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(245, 201, 90, 0.38);
}

.menu-toggle { position: absolute; left: -9999px; }
.menu-burger {
  display: none;
  width: 28px; height: 22px;
  position: relative;
  cursor: pointer;
}
.menu-burger span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: var(--color-brand);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.menu-burger span:nth-child(1) { top: 0; }
.menu-burger span:nth-child(2) { top: 10px; }
.menu-burger span:nth-child(3) { top: 20px; }
.menu-toggle:checked ~ .menu-burger span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.menu-toggle:checked ~ .menu-burger span:nth-child(2) { opacity: 0; }
.menu-toggle:checked ~ .menu-burger span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.hero {
  background: var(--brand-light);
  color: var(--text-main);
  padding: 72px 0 64px;
}
.hero--home { padding: 96px 0 88px; }
.hero-wrap {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-text {
  text-align: left;
}
.hero-h1 {
  font-size: clamp(34px, 5.6vw, 56px);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-brand);
  line-height: 1.65;
  letter-spacing: 0.005em;
}
.hero-sub {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--text-main);
  line-height: 1.65;
  max-width: 540px;
}
.hero-meta {
  margin-top: 22px;
  font-size: 14px;
  color: var(--muted);
}
.hero-figure img {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin-left: auto;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(139, 58, 46, 0.18);
}
.hero--inner { padding: 64px 0 56px; }
.hero--inner .hero-wrap { grid-template-columns: 1fr; gap: 0; max-width: 820px; }
.hero--inner .hero-h1 { font-size: clamp(28px, 4.6vw, 42px); }

.band { padding: 80px 0; }
.band--alt { background: var(--bg-alt); }
.band--cta {
  background: var(--color-brand);
  color: var(--text-on-brand);
  padding: 64px 0;
  text-align: center;
}
.band--cta h2 { color: var(--text-on-brand); }
.band--cta p { color: var(--text-on-brand); opacity: 0.9; margin-bottom: 26px; }

.wrap { width: 92%; max-width: 1180px; margin: 0 auto; }
.wrap--narrow { max-width: 760px; }

h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--color-brand);
  line-height: 1.65;
}
h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.65;
}
p { margin-bottom: 16px; line-height: 1.65; }
.lead { font-size: 18px; max-width: 820px; margin-bottom: 32px; color: var(--text-main); }

.band--strip {
  padding: 36px 0;
  background: var(--bg-page);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}
.strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  text-align: center;
}
.strip li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1.65;
}
.strip-lbl {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.how-card {
  background: var(--bg-page);
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  padding: 26px 24px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.how-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 58, 46, 0.12);
}
.how-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 6px;
  opacity: 0.45;
}
.how-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  color: var(--text-main);
}
.how-card p { margin-bottom: 0; font-size: 15px; color: var(--muted); }

.cost-table {
  display: grid;
  gap: 0;
  margin: 22px 0 16px;
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-page);
}
.cost-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.4fr;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--soft-line);
  font-size: 15px;
  align-items: center;
}
.cost-row:last-child { border-bottom: 0; }
.cost-row--head {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--color-brand);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cost-note { font-size: 14px; color: var(--muted); margin-bottom: 0; }

.timeline {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 12px;
}
.timeline li {
  background: var(--bg-page);
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  padding: 22px 26px;
}
.t-mark {
  font-weight: 700;
  color: var(--text-main);
  font-size: 17px;
  margin-bottom: 4px;
}
.timeline li p:not(.t-mark) { margin-bottom: 0; font-size: 16px; }

.band--alt details {
  background: var(--bg-page);
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s ease;
}
.band--alt details[open] { box-shadow: 0 6px 18px rgba(139, 58, 46, 0.1); }
.band--alt summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-brand);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.band--alt summary::-webkit-details-marker { display: none; }
.band--alt summary::after {
  content: '+';
  font-size: 24px;
  color: var(--color-brand);
  font-weight: 700;
  margin-left: 12px;
  line-height: 1;
}
.band--alt details[open] summary::after { content: '-'; }
.band--alt details p { margin-top: 12px; font-size: 15px; color: var(--muted); }

.article { padding: 64px 0; }
.article h2 { margin-top: 36px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 28px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article ul li, .article ol li { margin-bottom: 6px; }

.site-foot {
  background: var(--brand-darker);
  color: #f0d9c8;
  padding: 60px 0 0;
}
.foot-inner {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.foot-col { font-size: 14px; }
.foot-mark { font-weight: 700; color: var(--bg-page); font-size: 18px; margin-bottom: 8px; }
.foot-tag { color: #d9b9a5; line-height: 1.65; }
.foot-h { font-weight: 700; color: var(--bg-page); margin-bottom: 12px; }
.foot-list { list-style: none; }
.foot-list li { margin-bottom: 6px; }
.foot-list a {
  color: #d9b9a5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.18s ease;
}
.foot-list a:hover { color: var(--bg-page); }
.foot-cta-wrap { margin-top: 6px; }
.foot-base {
  margin-top: 52px;
  padding: 24px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #c4a18b;
  text-align: center;
  line-height: 1.65;
}
.foot-base p { margin-bottom: 8px; }
.foot-base p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure img { max-width: 360px; margin: 0 auto; }
  .hero--home { padding: 70px 0 60px; }
  .cost-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .cost-row--head { display: none; }
}

@media (max-width: 768px) {
  .head-inner { flex-wrap: wrap; gap: 14px; }
  .menu-burger { display: block; margin-left: auto; }
  .main-nav {
    display: none;
    width: 100%;
    order: 99;
    margin-left: 0;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 14px;
    padding: 14px 0 6px;
  }
  .menu-toggle:checked ~ .main-nav { display: block; }
  .head-inner .cta-button--small { display: none; }
  .band { padding: 60px 0; }
  .foot-inner { gap: 28px; }
}
