:root {
  --ink: #3c2835;
  --plum: #583747;
  --ivory: #f7f4ee;
  --paper: #fffcf7;
  --rose: #bc929b;
  --sage: #9bada3;
  --stone: #e6dfd8;
  --muted: #6f646a;
}

* { box-sizing: border-box; }

html { background: var(--ivory); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { margin: 0; min-height: 100vh; }
a { color: var(--plum); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid #7972b5; outline-offset: 4px; border-radius: 4px; }

.site-header {
  border-bottom: 1px solid var(--stone);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
}

.header-inner, main, .footer-inner { width: min(100% - 36px, 920px); margin-inline: auto; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 184px; height: auto; display: block; }
nav { display: flex; gap: 24px; align-items: center; }
nav a { color: var(--ink); font-size: 0.94rem; font-weight: 600; text-decoration: none; }
nav a[aria-current="page"] { color: var(--plum); text-decoration: underline; text-decoration-thickness: 2px; }

main { padding: 76px 0 96px; }
.eyebrow { margin: 0 0 14px; color: var(--plum); font-size: 0.76rem; font-weight: 750; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.035em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.65rem, 7vw, 4.9rem); line-height: 0.98; }
.intro { max-width: 670px; margin: 28px 0 0; color: var(--muted); font-size: 1.2rem; line-height: 1.65; }
.swatches { display: flex; align-items: flex-end; margin: 42px 0 52px; }
.swatches i { display: block; width: 54px; height: 74px; margin-left: -7px; border: 5px solid var(--ivory); border-radius: 30px; transform: rotate(var(--turn)); }
.swatches i:first-child { margin-left: 0; }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--stone); border-radius: 24px; background: var(--paper); color: var(--ink); text-decoration: none; box-shadow: 0 18px 50px rgba(60, 40, 53, 0.05); }
.card:hover { border-color: var(--rose); transform: translateY(-2px); }
.card h2 { margin: 0 0 12px; font-size: 2rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; }
.card strong { margin-top: 32px; font-size: 0.9rem; }

.article { max-width: 720px; }
.article h1 { margin-bottom: 28px; }
.article h2 { margin: 48px 0 14px; font-size: 1.9rem; line-height: 1.15; }
.article p, .article li { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.article ul { padding-left: 1.2rem; }
.article .contact { margin-top: 48px; padding: 26px 28px; border: 1px solid var(--stone); border-radius: 20px; background: var(--paper); }
.article .contact h2 { margin-top: 0; }
.meta { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--stone); font-size: 0.9rem !important; }

footer { border-top: 1px solid var(--stone); background: var(--paper); }
.footer-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 18px; }

@media (max-width: 640px) {
  .header-inner { min-height: 78px; align-items: flex-start; padding-block: 17px; flex-direction: column; gap: 12px; }
  .logo { width: 154px; }
  nav { gap: 18px; }
  main { padding: 54px 0 72px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 180px; }
  .footer-inner { padding-block: 26px; align-items: flex-start; flex-direction: column; }
}
