*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAF7F2;
  --surface: #F0EAE0;
  --border: #DDD0C4;
  --text: #3D2B1F;
  --text-muted: #6B5347;
  --accent: #C4846A;
  --accent-dark: #A66850;
  --header-bg: #3D2B1F;
  --header-text: #FAF7F2;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
header {
  background-color: var(--header-bg);
  background-image: url(images/fabrictexture.jpg);
  background-blend-mode: multiply;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 0;
  text-align: center;
}

.logo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Nav ── */
nav {
  margin-top: 1.25rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  display: block;
  padding: 0.75rem 1.4rem;
  color: var(--header-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.15s, background 0.15s;
}

nav a:hover,
nav a.active {
  background: var(--accent);
  opacity: 1;
}

/* ── Main ── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  flex: 1;
}

/* ── Typography ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.75rem;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin: 1.75rem 0 0.5rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}

.btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: calc(0.65rem - 2px) calc(1.5rem - 2px);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Hero (home) ── */
.hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* ── Highlight cards (home) ── */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
}

.highlight-card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--text);
}

.highlight-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ── Products ── */
.product-section {
  margin-bottom: 2rem;
}

.product-section ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 1.5rem;
  margin-top: 0.5rem;
}

.product-section ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  break-inside: avoid;
  font-size: 0.95rem;
}

.product-section ul li::before {
  content: '›';
  color: var(--accent);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* ── Location ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}

.location-details h3:first-child {
  margin-top: 0;
}

.hours-table {
  width: auto;
  border-collapse: collapse;
  margin: 0.5rem 0 1.5rem;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: left;
  padding-left: 1.5rem;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

address a {
  color: var(--accent-dark);
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}

.parking-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ── Footer ── */
footer {
  background: var(--header-bg);
  color: var(--header-text);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.875rem;
}

footer p {
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 0.2rem;
}

footer strong {
  color: var(--header-text);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 1.5rem 1.25rem; }
  nav a { padding: 0.65rem 0.85rem; font-size: 0.8rem; }
  .product-section ul { columns: 1; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 260px; }
}
