:root {
  --ink: #1b1410;
  --paper: #faf6ef;
  --paper-dim: #f0e9db;
  --gold: #b5813f;
  --gold-dark: #8a6027;
  --red: #a8352b;
  --line: #e2d8c3;
  --text-muted: #6b5f4f;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(27, 20, 16, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
  line-height: 1.15;
}

p { margin: 0 0 0.5rem; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: #fff8f0;
}
.btn-primary:hover { background: #8e2a21; box-shadow: 0 8px 18px rgba(168,53,43,0.35); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 20, 16, 0.94);
  backdrop-filter: blur(6px);
  color: var(--paper);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.brand {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.92rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.call-btn--nav {
  background: var(--gold);
  color: #241a10;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}
.call-btn--nav:hover { background: #c99652; }

/* Hero */
.hero {
  position: relative;
  color: var(--paper);
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-image: url('images/hero-shop.jpg');
background-size: cover;
background-position: center;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,0.55) 0%, rgba(15,11,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 540px;
  color: #ece3d4;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero .btn-outline {
  border-color: var(--paper);
  color: var(--paper);
}
.hero .btn-outline:hover { background: var(--paper); color: var(--ink); }

/* Services */
.services { padding: 84px 0; }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.service-row h3 {
  font-size: 1.1rem;
}
.price {
  font-family: Georgia, serif;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.15rem;
  white-space: nowrap;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}
/* Gallery */
.gallery { padding: 84px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;  /* try 3/2/1 */
  height: auto;
  object-position: 0% 80%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Info band */
.info-band {
  background: var(--paper-dim);
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.info-card h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.address { font-size: 1rem; margin-bottom: 14px; }
.note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.note.small { margin-top: 14px; margin-bottom: 0; }
.info-card .btn { margin-top: 4px; }

/* Contact */
.contact { padding: 84px 0 96px; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-copy { position: sticky; top: 100px; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
}
.optional { font-weight: 400; color: var(--text-muted); }
.form-row input,
.form-row textarea {
  font: inherit;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,129,63,0.2);
}
.form-submit { width: 100%; justify-content: center; }
.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success { color: #2e7d32; }
.form-status.error { color: var(--red); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 0;
}
.footer-wrap { text-align: center; }
.footer-wrap p { margin: 0 0 6px; }
.footer-wrap .note { color: #c9bda6; margin: 0; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
}

@media (max-width: 520px) {
  .call-btn--nav span { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
