:root {
  --ink: #253327;
  --muted: #647064;
  --cream: #f3ecdc;
  --paper: #fbf7ec;
  --sandstone: #c99867;
  --sandstone-dark: #9f7049;
  --moss: #52664e;
  --moss-dark: #36493a;
  --soil: #3a2d26;
  --line: rgba(37, 51, 39, 0.16);
  --shadow: 0 18px 50px rgba(58, 45, 38, 0.13);
  --radius: 28px;
  --shell: min(1120px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 152, 103, 0.18), transparent 28rem),
    linear-gradient(180deg, #f7f0e3 0%, #eef0df 48%, #f7f1e5 100%);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: #fff;
  padding: .65rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 240, 227, 0.78);
  border-bottom: 1px solid rgba(37, 51, 39, 0.08);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
nav { display: flex; gap: clamp(.8rem, 2vw, 1.6rem); font-size: .95rem; }
nav a { text-decoration: none; color: var(--muted); }
nav a:hover, nav a:focus-visible, nav a[aria-current="page"] { color: var(--ink); }

.hero { padding: clamp(72px, 10vw, 132px) 0 84px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--moss-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3.1rem, 7vw, 6.6rem); letter-spacing: -.055em; margin-bottom: 1.4rem; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.035em; margin-bottom: 1.1rem; }
h3 { font-size: 1.35rem; letter-spacing: -.018em; }
.lede { font-size: clamp(1.12rem, 2vw, 1.35rem); color: var(--muted); max-width: 42rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--moss-dark); color: #fff; box-shadow: 0 10px 24px rgba(54, 73, 58, .2); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.35); }
.availability { color: var(--muted); font-size: .9rem; }

.art-frame {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 237, 198, .34), transparent 18rem),
    radial-gradient(circle at 18% 85%, rgba(54, 73, 58, .55), transparent 18rem),
    linear-gradient(145deg, #8ba080, #5e745e 56%, #2f4938);
}
.art-frame::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 2px dashed rgba(255,255,255,.32);
  border-radius: calc(var(--radius) - 8px);
}
.placeholder-copy { position: relative; z-index: 2; text-align: center; color: rgba(255,255,255,.9); max-width: 260px; padding: 1rem; }
.placeholder-copy span, .placeholder-copy small { display: block; }
.placeholder-copy span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .6rem; }
.placeholder-copy strong { display: block; font-family: Georgia, serif; font-size: 1.55rem; }
.placeholder-copy small { margin-top: .45rem; color: rgba(255,255,255,.66); }
.portrait-art { min-height: 590px; }

.section { padding: clamp(74px, 9vw, 120px) 0; }
.intro { border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 3rem; }
.feature-grid, .advice-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.feature-card, .advice-grid article {
  background: rgba(251,247,236,.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 12px 34px rgba(58,45,38,.05);
}
.feature-number { display: inline-block; color: var(--sandstone-dark); font-size: .76rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 2.7rem; }
.feature-card p, .advice-grid p, .showcase-copy p, .intro p, .care-note { color: var(--muted); }

.showcase { background: rgba(58,45,38,.04); border-block: 1px solid var(--line); }
.showcase-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}
.plain-list { margin: 1.6rem 0 0; padding-left: 1.2rem; }
.plain-list li { margin: .65rem 0; }

.care-note { margin-top: 1.2rem; font-size: .9rem; }

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: linear-gradient(140deg, #c99a6b, #b58256);
  color: #2b251f;
  box-shadow: var(--shadow);
}
.cta-panel h2 { max-width: 690px; margin-bottom: 0; }
.cta-panel .button-primary { flex: 0 0 auto; }

.site-footer { padding: 44px 0 52px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 2rem; align-items: start; }
.footer-grid p { color: var(--muted); margin: .3rem 0 0; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.copyright { white-space: nowrap; }

.subpage { min-height: 70vh; }
.subpage h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
.faq-section { padding-top: 0; }
.faq-list { margin-top: 2rem; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
summary { cursor: pointer; font-weight: 750; }
details p { color: var(--muted); }
.status-note {
  margin: 1.6rem 0;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(201, 152, 103, .18);
  border: 1px solid rgba(159, 112, 73, .25);
}
.legal-copy p { color: var(--muted); }
.legal-copy .status-note { color: var(--ink); }

@media (max-width: 820px) {
  .hero-grid, .showcase-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 430px; }
  .feature-grid, .advice-grid { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: min(100vw - 28px, 1120px); --radius: 22px; }
  .header-inner { min-height: 64px; }
  nav a:first-child { display: none; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.35rem); }
  .hero { padding-top: 58px; }
  .hero-art, .portrait-art { min-height: 380px; }
  .section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
