* {
  box-sizing: border-box;
}

:root {
  --ink: #202522;
  --muted: #66716b;
  --cream: #f9f5ec;
  --sage: #dfe8d8;
  --olive: #556b4d;
  --forest: #263a2d;
  --clay: #b76e54;
  --sand: #eadcc2;
  --line: rgba(38, 58, 45, 0.18);
  --white: #fffdf7;
  --shadow: 0 24px 60px rgba(38, 58, 45, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(223, 232, 216, 0.65), transparent 42%),
    var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar,
.footer,
main {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.nav,
.footer nav,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a,
.footer a {
  color: var(--muted);
}

.nav a:hover,
.footer a:hover,
.hero-aside a:hover,
.legal-card a:hover,
.thankyou-card a:hover {
  color: var(--clay);
}

main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: stretch;
  min-height: 560px;
}

.hero-mark,
.hero-text,
.hero-aside,
.intro-panel,
.guide-section,
.method-card,
.process-section,
.delivery-section,
.faq-section,
.request-section,
.disclaimer,
.legal-card,
.thankyou-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-mark {
  background: var(--forest);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.hero-mark span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: rgba(255, 253, 247, 0.76);
}

.hero-text {
  background:
    radial-gradient(circle at 18% 18%, rgba(183, 110, 84, 0.18), transparent 30%),
    linear-gradient(135deg, var(--white), var(--sage));
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.95;
  max-width: 9.6ch;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.intro,
.hero-text p,
.intro-panel p,
.method-card p,
.delivery-section p,
.request-text p,
.legal-card p,
.thankyou-card p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.primary:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.button.ghost {
  color: var(--forest);
  background: rgba(255, 253, 247, 0.55);
}

.hero-aside {
  background: var(--sand);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.small-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--olive);
  font-size: 0.76rem;
}

.intro-panel,
.delivery-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  padding: 34px;
}

.guide-section,
.process-section,
.faq-section,
.request-section,
.disclaimer {
  background: var(--white);
  padding: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.guide-stack {
  display: grid;
  gap: 14px;
}

.guide-row {
  display: grid;
  grid-template-columns: 70px 1fr 120px;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbf8f0;
}

.accent-row {
  background: var(--sage);
}

.guide-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.guide-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

.guide-price {
  color: var(--clay);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: right;
}

.method-section {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 16px;
}

.method-card {
  background: var(--white);
  padding: 26px;
}

.method-card.wide {
  background: var(--forest);
  color: var(--white);
}

.method-card.wide p,
.method-card.wide .kicker {
  color: rgba(255, 253, 247, 0.76);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-list div {
  background: #fbf8f0;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbf8f0;
}

.faq-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.request-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.request-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbf8f0;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(183, 110, 84, 0.22);
  border-color: var(--clay);
}

textarea {
  resize: vertical;
}

.disclaimer {
  background: var(--sage);
}

.disclaimer p {
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 0 42px;
  color: var(--muted);
}

.footer p {
  margin: 6px 0 0;
}

.legal-layout,
.thankyou-layout {
  padding: 40px 0;
}

.legal-card,
.thankyou-card {
  background: var(--white);
  padding: clamp(28px, 5vw, 54px);
  max-width: 860px;
  margin: 0 auto;
}

.legal-card h1,
.thankyou-card h1 {
  max-width: 12ch;
}

.legal-card h2 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  font-size: 1.25rem;
  line-height: 1.3;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.next-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fbf8f0;
}

.next-grid strong,
.next-grid span {
  display: block;
}

.next-grid span {
  color: var(--muted);
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero,
  .intro-panel,
  .delivery-section,
  .request-section,
  .method-section {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    min-height: 120px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-mark span {
    writing-mode: initial;
    transform: none;
  }

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

  .guide-row {
    grid-template-columns: 52px 1fr;
  }

  .guide-price {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .topbar,
  .footer,
  main {
    width: min(100% - 24px, 1160px);
  }
}
