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

html { scroll-behavior: smooth; }

:root {
  --charcoal:      #2b2622;
  --charcoal-dark:  #1c1916;
  --brass:         #b8863f;
  --brass-light:   #e8d4ab;
  --brass-dark:    #8c632b;
  --cream:         #f8f4ea;
  --cream-dark:    #efe8d8;
  --ink:           #332b22;
  --ink-soft:      #5c5246;
  --shadow-sm:     0 1px 4px rgba(28,25,22,.12);
  --shadow:        0 8px 24px rgba(28,25,22,.18);
  --shadow-lg:     0 16px 48px rgba(28,25,22,.28);
  --radius:        4px;
}

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background-image: url('boards-brown.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100dvh;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* Header */
#header {
  background: var(--charcoal);
  padding: 22px 0;
  border-bottom: 3px solid var(--brass);
  box-shadow: var(--shadow);
}

#header-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

#logo img {
  width: 67px;
  height: 85px;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

#header-text h1 {
  font-family: 'Fraunces', serif;
  color: var(--brass-light);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

#header-text p {
  color: var(--brass);
  font-size: 14px;
  margin-top: 5px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* Navigation */
nav {
  background: var(--charcoal-dark);
  border-bottom: 1px solid rgba(184,134,63,0.3);
}

nav ul {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li a {
  display: block;
  color: #d9d2c4;
  text-decoration: none;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--brass);
  color: var(--charcoal-dark);
}

/* Main content */
#main {
  max-width: 920px;
  margin: 36px auto;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Page title */
.page-title {
  font-family: 'Fraunces', serif;
  color: var(--charcoal);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brass);
}

/* Intro text */
.intro-text {
  line-height: 1.75;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 640px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 10px;
}

.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.gallery-item img:hover { opacity: 0.92; }

.gallery-item .caption {
  padding: 11px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  background: var(--cream-dark);
  border-top: 1px solid #e3dbc7;
}

/* Single full-width image */
.gallery-item.full-width {
  grid-column: 1 / -1;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(20,17,14,0.92);
  z-index: 9999;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border: 2px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Contact box */
.contact-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 32px;
  line-height: 1.85;
  box-shadow: var(--shadow-sm);
}

.contact-box h3 {
  font-family: 'Fraunces', serif;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.contact-box a {
  color: var(--brass-dark);
  text-decoration: none;
}

.contact-box a:hover { text-decoration: underline; }

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}

.price-table th {
  background: var(--charcoal);
  color: var(--brass-light);
  padding: 11px 14px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e3dbc7;
  font-size: 14px;
}

.price-table tr:nth-child(even) td { background: #fdfbf6; }
.price-table tr:hover td { background: var(--cream-dark); }

.price-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 16px;
  font-style: italic;
  line-height: 1.65;
}

/* Footer */
footer {
  background: var(--charcoal-dark);
  color: #9c9388;
  text-align: center;
  padding: 20px;
  margin-top: 56px;
  font-size: 13px;
}

footer a {
  color: var(--brass);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
  #header-text h1 { font-size: 21px; }
  nav ul { flex-direction: column; }
  .gallery { grid-template-columns: 1fr; }
  #main { padding: 22px; margin: 20px auto; }
}
