: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; }
dl.info dd address { font-style: normal; line-height: 1.5; }

/* Figures / images */
figure { margin: 0; }
figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: #efe7db;
}
figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
}
.hero-media { margin-top: 2rem; }
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(60, 42, 24, 0.12);
  background: #efe7db;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 1.8rem;
}
.gallery figure { display: flex; flex-direction: column; }
.gallery figure img { aspect-ratio: 1 / 1; object-fit: cover; }

/* Blog list */
.post-list { display: grid; gap: 1.6rem; margin-top: 1.8rem; }
.post-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.post-card img { width: 100%; height: 100%; object-fit: cover; background: #efe7db; }
.post-card .body { padding: 1.3rem 1.4rem 1.3rem 0; }
.post-card h3 { margin: 0.1rem 0 0.5rem; font-size: 1.25rem; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--accent-dark); }
.post-card p { margin: 0; color: var(--muted); font-size: 0.98rem; }
@media (max-width: 560px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card img { height: 180px; }
  .post-card .body { padding: 0 1.3rem 1.3rem; }
}

.meta {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Article */
.article { width: min(70ch, 92vw); margin: 0 auto; }
.article .article-media { margin: 0 0 2rem; }
.article .article-media img { width: 100%; height: auto; border-radius: 6px; border: 1px solid var(--line); background: #efe7db; }
.article p { margin: 0 0 1.15rem; }
.article h2 { font-size: 1.35rem; margin: 2.2rem 0 1rem; }
.article ul, .article ol { color: var(--ink); padding-left: 1.3rem; }
.article li { margin: 0.4rem 0; }
.article blockquote {
  margin: 1.6rem 0;
  padding: 0.4rem 0 0.4rem 1.2rem;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-style: italic;
}
.byline { margin-bottom: 1.6rem; }

/* FAQ */
.faq { max-width: 68ch; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+ "; color: var(--accent); }
.faq details[open] summary::before { content: "– "; }
.faq details p { color: var(--muted); margin: 0.8rem 0 0; max-width: 62ch; }

/* Pricing */
.price-table { list-style: none; padding: 0; margin: 1.6rem 0 0; max-width: 640px; }
.price-table li {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}
.price-table .item { color: var(--ink); }
.price-table .amount { color: var(--accent-dark); font-family: system-ui, sans-serif; white-space: nowrap; }
.note { color: var(--muted); font-size: 0.9rem; max-width: 60ch; margin-top: 1.4rem; }

/* 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 2rem; flex-wrap: wrap; }
.site-footer nav a { margin: 0 1.1rem 0 0; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent-dark); }
.footer-contact { font-style: normal; line-height: 1.7; max-width: 34ch; }
.footer-contact strong { color: var(--ink); }
.footer-meta { text-align: right; }
@media (max-width: 720px) { .footer-meta { text-align: left; } }
