:root {
  --ink: #23201c;
  --muted: #6b6459;
  --paper: #f7f4ef;
  --card: #fffdfa;
  --line: #e4ddd2;
  --accent: #9a6a3c;
  --accent-dark: #7c5330;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: var(--accent-dark); }

img { max-width: 100%; }

.wrap { width: min(1080px, 92vw); margin: 0 auto; }

/* Header / nav */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
}
.brand .mark { width: 30px; height: 30px; }
.brand strong { font-weight: 700; }
nav a {
  text-decoration: none;
  color: var(--muted);
  margin-left: 1.4rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
nav a:hover, nav a[aria-current="page"] { color: var(--accent-dark); }

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdfa, #f2ece2);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 1rem; line-height: 1.15; }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 46ch; }

.button {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.button:hover { background: var(--accent-dark); }

/* Sections */
section { padding: 3.2rem 0; }
h2 { font-size: 1.7rem; margin: 0 0 1.4rem; }
.lead { color: var(--muted); max-width: 60ch; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1.5rem;
}
.card h3 { margin: 0.2rem 0 0.6rem; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.swatch { width: 42px; height: 42px; border-radius: 4px; border: 1px solid var(--line); }

/* Simple two-column */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
@media (max-width: 720px) { .split { grid-template-columns: 1fr; } }

.frame-illustration {
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg, #efe7db, #efe7db 12px, #e7ddcd 12px, #e7ddcd 24px);
  border: 14px solid var(--accent-dark);
  border-radius: 2px;
  box-shadow: inset 0 0 0 8px #fffdfa;
}

/* Contact */
dl.info { display: grid; grid-template-columns: max-content 1fr; gap: 0.5rem 1.4rem; }
dl.info dt { color: var(--muted); font-family: system-ui, sans-serif; font-size: 0.9rem; }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; max-width: 320px; border-bottom: 1px dotted var(--line); padding: 0.35rem 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--card);
  padding: 2.2rem 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
