:root {
  --bg: #faf9f6;
  --bg-alt: #f2f0ea;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #2a3a8a;
  --gold: #b48a3c;
  --rule: #e6e3dc;
  --serif: "EB Garamond", "Hoefler Text", "Times New Roman", Garamond, serif;
  --sans: "EB Garamond", "Hoefler Text", "Times New Roman", Garamond, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand, .section-title, .hero h1, .about-text h1, .buy h2, .contact h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
}

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

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(42,58,138,0.3); }
a:hover { border-bottom-color: var(--accent); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* Nav */
.nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  border: none;
}
.nav-links a {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 28px;
  color: var(--ink);
  border: none;
}
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero {
  padding: 80px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.hero .byline {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
}
.hero p.lead {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero-img {
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  border: 0.5px solid #c8c8c8;
}
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
#lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

/* Buy page (product) */
.product { padding: 60px 0 40px; }
.product-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.product-hero {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.2);
  border: 0.5px solid #c8c8c8;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  border: 0.5px solid #c8c8c8;
  transition: opacity 0.15s ease;
}
.product-thumbs img:hover { opacity: 0.75; }

.product-info {
  align-self: start;
  padding-top: 8px;
}
.product-about {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.product-about h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.product-about p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 10px;
}
.product-about p.spaced {
  margin-top: 18px;
}
.product-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.product-byline {
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.product-price {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 24px;
}
.product-buy {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px 28px;
  font-size: 13px;
}
.product-note {
  font-style: italic;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
}
.region-prompt {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 12px;
}
.buy-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.buy-options .product-buy { margin: 0; }

.product-section {
  border-top: 1px solid var(--rule);
  padding: 48px 0;
}
.product-section-inner {
  max-width: 720px;
  margin: 0 auto;
}
.product-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.product-section p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
  color: var(--ink);
}
.product-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.product-details li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
}
.product-details li span:first-child {
  color: var(--muted);
  font-style: italic;
}
.product-details li span:last-child { text-align: right; }

@media (max-width: 800px) {
  .product-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-info { position: static; }
  .product-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--accent); color: var(--bg); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.outline:hover { background: var(--ink); color: var(--bg); }
.btn-price {
  margin-left: 12px;
  font-style: italic;
  color: var(--muted);
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

/* Section header */
.section { padding: 80px 0; border-top: 1px solid var(--rule); }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: -0.005em;
}
.section-sub {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 56px;
}

/* Overview */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.overview-text p {
  font-size: 15px;
  margin: 0 0 14px;
}

/* Story full-bleed image + text below */
.story-image {
  width: 100%;
  border-top: 1px solid var(--rule);
}
.story-image img {
  width: 100%;
  height: auto;
  display: block;
}
.story-text .overview-text {
  max-width: 640px;
  margin: 0 auto;
}
.story-text .overview-text p {
  font-size: 16px;
  text-align: center;
}
.story-text .section-title {
  margin-bottom: 28px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.2);
  border: 0.5px solid #c8c8c8;
}

/* Specs */
.specs {
  background: var(--bg-alt);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.specs li {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
}
.specs li span:first-child {
  color: var(--muted);
  font-style: italic;
}

/* Buy */
.buy { text-align: center; }
.buy h2 { font-size: 32px; margin-bottom: 12px; }
.buy .price {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
  font-style: italic;
}
.buy .note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 24px;
  font-style: italic;
}

/* About */
.about-hero {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.about-grid > div > img {
  border: 0.5px solid #c8c8c8;
}
.about-text p {
  font-size: 15px;
  margin: 0 0 14px;
}

/* Contact */
.contact {
  text-align: center;
  padding: 80px 0;
}
.contact h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 28px;
}
.contact-block {
  margin: 32px 0;
}
.contact-block .label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-block .value {
  font-size: 16px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 800px) {
  body { font-size: 17px; }
  .container { padding: 0 20px; }
  .hero { padding: 40px 0; }
  .hero-grid, .overview-grid, .specs-grid, .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 { font-size: 44px; }
  .about-text h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
  .section { padding: 56px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nav-links a { margin-left: 16px; font-size: 12px; }
  .buy h2 { font-size: 36px; }
}
