
:root {
  --ink: #0b0b0b;
  --paper: #ede4d6;
  --white: #ffffff;
  --muted: #6d6254;
  --line: rgba(141,127,107,.34);
  --soft: #f4eee4;
  --gold: #b6934f;
  --gold-deep: #947541;
  --taupe: #8d7f6b;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.68;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(237,228,214,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  white-space: nowrap;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.brand-wording {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.14rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand-claim {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 5px;
}
nav { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
nav a {
  text-decoration: none;
  font-size: .95rem;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
nav a:hover::after, nav a:focus-visible::after { transform: scaleX(1); }
.badge {
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  padding: 9px 13px;
}

main { min-height: 65vh; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding: 82px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
h1,h2,h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.08;
  margin-top: 0;
}
h1 { font-size: clamp(3.1rem, 8vw, 6.8rem); letter-spacing: -.045em; margin-bottom: 24px; }
h2 { font-size: clamp(2.05rem, 5vw, 4rem); letter-spacing: -.03em; margin-bottom: 24px; }
h3 { font-size: 1.55rem; margin-bottom: 10px; }
.lead { font-size: 1.26rem; max-width: 720px; color: #2e2923; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 13px 18px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s ease;
}
.btn.primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn.gold { background: var(--gold); color: #17120b; border-color: var(--gold); }
.btn:hover { opacity: .94; transform: translateY(-1px); }

.brand-panel {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.brand-panel img {
  width: min(440px, 100%);
  height: auto;
}

.section { padding: 92px 0; border-top: 1px solid var(--line); }
.section.dark {
  background: #111111;
  color: var(--white);
}
.section.dark .eyebrow, .section.dark .muted, .section.dark .caption { color: #d4cfc7; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.card { border-top: 1px solid rgba(255,255,255,.34); padding-top: 18px; }
.section:not(.dark) .card { border-top-color: var(--line); }
.muted { color: var(--muted); }
.quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  max-width: 980px;
  margin: 0;
}
.product-list { list-style: none; padding: 0; margin: 0; }
.product-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 22px; }
.product-list span { color: var(--muted); }
.notice {
  border: 1px solid var(--line);
  padding: 28px;
  background: rgba(255,255,255,.35);
}
.contact-block { font-size: 1.08rem; }
.contact-block a, .legal a { text-underline-offset: 4px; color: var(--gold-deep); }

.site-footer {
  background: #0b0b0b;
  color: #f4f1eb;
  padding: 54px 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 42px; }
.site-footer a { color: inherit; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.footer-brand img { width: min(260px, 100%); height: auto; margin-bottom: 12px; }
.smallprint { font-size: .82rem; color: #beb7ae; margin-top: 34px; }
.footer-seal { width: 84px; margin-top: 12px; }

.legal { max-width: 860px; padding-top: 70px; padding-bottom: 90px; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.legal h2 { font-size: 1.6rem; margin-top: 42px; }
.legal h3 { font-size: 1.15rem; margin-top: 28px; }
.legal p, .legal li { max-width: 760px; }
.legal-header-logo { width: min(360px, 100%); margin: 10px 0 26px; }
.legal .lead { color: #332d27; }

.photo-frame {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(20,20,20,.12);
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-tall { min-height: 560px; }
.image-medium { min-height: 380px; }
.image-small { min-height: 330px; }
.image-banner {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.image-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}
.caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .94rem;
}
.soft-panel {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 18px;
}
.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.photo-stack .photo-frame:first-child { transform: rotate(-2deg); }
.photo-stack .photo-frame:last-child { transform: rotate(2deg); margin-top: 30px; }
.brand-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 24px;
  align-items: center;
}
.brand-grid .brand-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 20px;
}
.brand-grid img {
  width: 100%;
  object-fit: contain;
}
.inline-seal {
  width: 84px;
  opacity: .95;
}

@media (max-width: 860px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  nav { gap: 12px 16px; }
  .hero, .grid-2, .grid-3, .footer-grid, .brand-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 54px 0; }
  .section { padding: 68px 0; }
  .image-tall { min-height: 430px; }
  .image-medium { min-height: 320px; }
  .image-banner img { height: 280px; }
  .photo-stack { grid-template-columns: 1fr; }
  .photo-stack .photo-frame:first-child,
  .photo-stack .photo-frame:last-child { transform: none; margin-top: 0; }
  .brand-mark { width: 42px; height: 42px; }
}
