:root {
  --bg: #f7f1ec;
  --surface: #fffaf6;
  --text: #231f20;
  --muted: #746b68;
  --accent: #8f4e5e;
  --accent-dark: #723b49;
  --line: #e6d9d2;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(45, 30, 33, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); }
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-family: Georgia, 'Times New Roman', serif; font-size: 1.45rem; font-weight: 700; letter-spacing: .02em; }
.nav { display: flex; gap: 22px; align-items: center; font-size: .95rem; }
.nav a:hover { color: var(--accent); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; border-radius: 10px; }

.hero { padding: 72px 0 48px; }
.hero-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 48px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 700; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 2.7rem); margin-bottom: 18px; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.hero p { max-width: 620px; font-size: 1.08rem; color: var(--muted); }
.hero-card {
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 0;
  background: transparent;
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}
.hero-card .monogram { font-family: Georgia, serif; font-size: clamp(5rem, 15vw, 10rem); color: #8f4e5e; opacity: .65; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px; border-radius: 999px; background: var(--accent); color: white; font-weight: 700; border: 1px solid var(--accent); cursor: pointer; transition: .2s ease; }
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--text); border-color: var(--line); }
.button.secondary:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.button.disabled { opacity: .45; pointer-events: none; }

.section { padding: 64px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-head p { margin: 0; color: var(--muted); max-width: 620px; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(60, 39, 42, .04); }
.product-card img { aspect-ratio: 4/5; object-fit: cover; width: 100%; background: #efe3de; }
.card-body { padding: 18px; }
.card-top { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 5px; }
.card-body p { color: var(--muted); margin: 8px 0 16px; }
.price { font-weight: 700; }
.badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; font-size: .78rem; font-weight: 700; background: #f0e4de; }
.badge.available { color: #345f45; background: #e6f1e9; }
.badge.reserved { color: #7a5a1c; background: #f5edcf; }
.badge.sold { color: #7a3a42; background: #f3dfe2; }

.page-hero { padding: 56px 0 24px; }
.page-hero p { color: var(--muted); max-width: 720px; }

.product-page { padding: 40px 0 72px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.main-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; background: #efe3de; border: 1px solid var(--line); }
.thumbnails { display: flex; gap: 10px; margin-top: 12px; }
.thumb { border: 1px solid var(--line); background: var(--surface); padding: 0; border-radius: 12px; overflow: hidden; cursor: pointer; width: 82px; }
.thumb img { aspect-ratio: 1; object-fit: cover; }
.thumb.active { outline: 2px solid var(--accent); outline-offset: 2px; }
.product-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.meta-card { padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.35); }
.meta-card strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.options { display: grid; gap: 10px; margin: 18px 0; }
.option { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); cursor: pointer; }
.option input { accent-color: var(--accent); }
.option:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(143,78,94,.12); }
.buy-row { display: flex; gap: 12px; flex-wrap: wrap; }
.reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
.reassurance div { background: rgba(255,255,255,.45); border: 1px solid var(--line); padding: 14px; border-radius: 14px; font-size: .92rem; }
.helper { color: var(--muted); font-size: .92rem; margin-top: 16px; }

.content-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.content-card p:last-child { margin-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 0 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; }
.faq details p { color: var(--muted); margin-top: 0; }

.site-footer { border-top: 1px solid var(--line); padding: 36px 0; margin-top: 48px; }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 20px; color: var(--muted); }
.small { color: var(--muted); font-size: .9rem; }
.notice { border-left: 3px solid var(--accent); padding: 12px 16px; background: #f7e9e7; border-radius: 8px; }

@media (max-width: 850px) {
  .hero-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; position: absolute; top: 68px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; padding: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .menu-button { display: inline-flex; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 22px), var(--max)); }
  .hero { padding-top: 46px; }
  .products { grid-template-columns: 1fr; }
  .product-meta, .reassurance { grid-template-columns: 1fr; }
  .section { padding: 46px 0; }
  .button { width: 100%; }
  .card-body .button { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

.photo-disclaimer{font-size:.78rem;color:#7a6f68;padding:6px 14px 0}.product-photo-disclaimer{padding:8px 0 0}.product-card>.photo-disclaimer{padding-left:18px}

.product-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:18px}.product-title{font-size:clamp(2.4rem,5vw,4.2rem);margin-bottom:14px}.option-heading{font-size:1.55rem;margin:28px 0 8px}@media(max-width:580px){.product-title-row{align-items:center}.product-title{font-size:2.35rem}.product-title-row .badge{flex:0 0 auto}}


.personal-request { padding-bottom: 0; }
.personal-request-card { padding: clamp(26px, 5vw, 56px); text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.personal-request-card h2 { max-width: 760px; margin: 14px auto 20px; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.personal-request-card p { max-width: 680px; margin: 0 auto 26px; color: var(--muted); }
.personal-request-link { margin: 18px 0 0; font-size: .92rem; color: var(--accent); }
.personal-request-link a { text-decoration: underline; text-underline-offset: 4px; }
.personal-request-link a:hover { color: var(--accent-dark); }
.personal-request-card a:focus-visible, .personal-request-link a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }