:root {
  --forest: #063d35;
  --rose: #ad6170;
  --rose-dark: #844351;
  --cream: #fffaf2;
  --paper: #fffdf9;
  --gold: #b78328;
  --ink: #2e2928;
  --muted: #716565;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Arial, Helvetica, sans-serif; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 58px;
  text-align: center;
  background: radial-gradient(circle at 50% 14%, rgba(255,255,255,.95), transparent 35%), linear-gradient(155deg, #fffaf4 0%, #f8e8e7 56%, #f1dedb 100%);
}

.hero::before { content: ""; position: absolute; inset: 18px; z-index: -1; border: 1px solid rgba(173,97,112,.22); border-radius: 26px; }
.glow { position: absolute; z-index: -2; border-radius: 50%; pointer-events: none; }
.glow-one { width: 520px; height: 520px; top: -270px; right: -240px; background: rgba(211,160,168,.28); }
.glow-two { width: 440px; height: 440px; bottom: -250px; left: -220px; background: rgba(86,139,127,.18); }

.eyebrow, .kicker { margin: 0; color: var(--rose-dark); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1 { margin: 14px 0 12px; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 7.2vw, 78px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.lead { max-width: 700px; margin: 0; color: #675756; font-family: Georgia, "Times New Roman", serif; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.brand-logo { display: block; width: min(440px, 72vw); height: auto; margin: 28px auto 26px; filter: drop-shadow(0 24px 34px rgba(80,43,42,.12)); }

.coming-soon { display: flex; align-items: center; gap: 13px; max-width: 560px; padding: 15px 22px; border: 1px solid rgba(132,67,81,.2); border-radius: 999px; background: rgba(255,253,249,.76); box-shadow: 0 12px 34px rgba(78,46,45,.07); text-align: left; }
.coming-soon > span { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(183,131,40,.14); }
.coming-soon strong { display: block; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 16px; }
.coming-soon p { margin: 3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }

.article { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0 74px; }
.article > header { max-width: 810px; margin: 0 auto 48px; text-align: center; }
.article h2 { margin: 14px 0 20px; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4.5vw, 50px); font-weight: 500; line-height: 1.1; letter-spacing: -.025em; text-wrap: balance; }
.intro { margin: 0; color: #5f5653; font-size: 17px; line-height: 1.82; }

.guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.guide-card { position: relative; padding: 34px 34px 31px; border: 1px solid rgba(132,67,81,.14); border-radius: 24px; background: var(--paper); box-shadow: 0 16px 44px rgba(65,39,38,.055); }
.number { display: inline-grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; color: #fff; background: var(--rose); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.guide-card h3, .closing h3 { margin: 18px 0 11px; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 600; }
.guide-card p, .closing p { margin: 0; color: #625956; font-size: 15px; line-height: 1.78; }

.area-note { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; margin: 40px auto 0; padding: 34px 38px; border: 1px solid rgba(47,109,99,.15); border-radius: 24px; background: #eef5f1; }
.area-note h3 { margin: 12px 0 0; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 600; line-height: 1.15; }
.area-note > p { margin: 0; color: #59615d; font-size: 15px; line-height: 1.78; }

.closing { max-width: 820px; margin: 46px auto 0; padding: 36px 40px; border-left: 4px solid var(--gold); border-radius: 0 20px 20px 0; background: #f7e9e8; }
.closing h3 { margin-top: 0; }
.signature { margin-top: 20px !important; color: var(--rose-dark) !important; font-size: 13px !important; letter-spacing: .08em; text-transform: uppercase; }

footer { padding: 28px 20px; border-top: 1px solid rgba(132,67,81,.12); color: #7b6e6b; background: #f5e5e3; text-align: center; }
footer p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 58px 18px 50px; }
  .hero::before { inset: 10px; border-radius: 18px; }
  .eyebrow { font-size: 10px; }
  h1 { margin-top: 11px; font-size: clamp(38px, 12vw, 55px); }
  .lead { max-width: 510px; font-size: 16px; }
  .brand-logo { width: min(360px, 82vw); margin: 23px auto; }
  .coming-soon { border-radius: 20px; padding: 14px 17px; }
  .article { width: min(100% - 30px, 620px); padding: 72px 0 54px; }
  .article > header { margin-bottom: 34px; }
  .intro { font-size: 16px; line-height: 1.75; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { padding: 28px 25px 26px; border-radius: 20px; }
  .guide-card h3 { font-size: 23px; }
  .area-note { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; padding: 28px 25px; border-radius: 20px; }
  .closing { margin-top: 28px; padding: 29px 25px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
