:root {
  color-scheme: light;
  --ink: #1c1410;
  --paper: #f5efe6;
  --paper-alt: #ece2d2;
  --walnut: #8a5a34;
  --brass: #c98a3e;
  --text: #3d3128;
  --border: #ddccb4;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a {
  color: var(--walnut);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / nav */
.site-header {
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  color: var(--paper);
  font-size: 1.5rem;
  margin: 0;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand:hover {
  color: var(--brass);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--paper);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--brass);
  border-color: var(--brass);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2c2118 100%);
  color: var(--paper);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--paper);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.4em;
}

.hero p {
  font-size: 1.15rem;
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  color: var(--paper-alt);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}

.btn-primary:hover {
  background: #dea25a;
}

.btn-secondary {
  color: var(--paper);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(201, 138, 62, 0.15);
}

/* Sections */
section.page-section {
  padding: 4rem 0;
}

section.page-section.alt {
  background: var(--paper-alt);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: 2rem;
}

.section-heading p {
  max-width: 55ch;
  margin: 0 auto;
  color: var(--text);
  opacity: 0.85;
}

/* Card grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(28, 20, 16, 0.12);
}

.card-media {
  aspect-ratio: 4 / 3;
  background: var(--paper-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--walnut);
  border-bottom: 1px solid var(--border);
}

.card-media svg {
  width: 55%;
  height: 55%;
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.card-category {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--brass);
  font-weight: 600;
}

.card-body h3 {
  font-size: 1.3rem;
  margin: 0.25rem 0 0.4rem;
}

.card-price {
  font-weight: 600;
  color: var(--walnut);
  margin-bottom: 0.6rem;
}

.card-body details {
  margin-top: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}

.card-body summary {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--walnut);
  list-style: none;
}

.card-body summary::-webkit-details-marker {
  display: none;
}

.card-body summary::before {
  content: '+ ';
  font-weight: 700;
}

.card-body details[open] summary::before {
  content: '\2212 ';
}

.spec-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.9rem;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--border);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list span:first-child {
  color: var(--walnut);
  font-weight: 600;
}

/* Info strip / about teaser */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.strip h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Two-column layout (about page) */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.placeholder-figure {
  background: var(--paper-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--walnut);
}

.placeholder-figure svg {
  width: 40%;
  height: 40%;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

table.hours {
  width: 100%;
  border-collapse: collapse;
}

table.hours td {
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border);
}

table.hours td:last-child {
  text-align: right;
  color: var(--walnut);
}

.placeholder-note {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--walnut);
  background: rgba(201, 138, 62, 0.12);
  border: 1px dashed var(--brass);
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper-alt);
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-grid h4 {
  color: var(--paper);
  font-family: 'Fraunces', Georgia, serif;
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.footer-grid a {
  color: var(--paper-alt);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 6rem 1.5rem;
}
