:root {
  --ink: #14110f;
  --ink-soft: #2a2520;
  --graphite: #1d1916;
  --ivory: #f7f1e6;
  --ivory-deep: #efe7d6;
  --paper: #fbf7ee;
  --brass: #b88a3d;
  --brass-deep: #8c6420;
  --brass-soft: #d9b56a;
  --red: #b6202b;
  --red-deep: #8a1820;
  --line: rgba(20, 17, 15, 0.12);
  --line-strong: rgba(20, 17, 15, 0.22);
  --shadow-1: 0 1px 2px rgba(20, 17, 15, 0.06), 0 4px 14px rgba(20, 17, 15, 0.08);
  --shadow-2: 0 8px 30px rgba(20, 17, 15, 0.15);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Apple Garamond", Garamond, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.25rem, 5.8vw + 0.55rem, 4.35rem); }
h2 { font-size: clamp(1.6rem, 3vw + 0.7rem, 2.5rem); }
h3 { font-size: 1.18rem; line-height: 1.25; }
p { margin: 0 0 0.9em; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 1px var(--brass);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(217, 181, 106, 0.35);
  border-radius: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-name { font-family: var(--serif); font-size: 17px; font-weight: 600; white-space: nowrap; }
.brand-sub { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.75; white-space: nowrap; display: none; }
.header-nav { display: none; gap: 22px; }
.header-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
}
.header-nav a:hover { color: var(--red); }
.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.1;
}
.header-cta:hover { background: var(--red); }
.header-cta-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.header-cta-num { font-weight: 700; font-size: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1.1;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.78;
  margin-bottom: 3px;
}
.btn-num { font-size: clamp(14px, 1.4vw + 11px, 17px); font-weight: 700; letter-spacing: -0.005em; word-break: break-word; max-width: 100%; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 6px 16px rgba(182, 32, 43, 0.28);
}
.btn-primary:hover { background: var(--red-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 241, 230, 0.45);
}
.btn-ghost:hover { background: rgba(247, 241, 230, 0.1); border-color: var(--brass-soft); color: var(--brass-soft); }
.details .btn-ghost,
.visit .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
.details .btn-ghost:hover,
.visit .btn-ghost:hover { background: var(--ivory-deep); border-color: var(--brass); color: var(--brass-deep); }
.btn-link {
  padding: 14px 4px;
  background: transparent;
  color: var(--brass-deep);
  font-weight: 600;
  font-size: 14px;
  align-self: center;
}
.btn-link:hover { color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--ivory);
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  min-height: clamp(660px, 88vh, 860px);
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02);
  position: absolute;
  inset: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.62) 0%, rgba(20, 17, 15, 0.42) 40%, rgba(20, 17, 15, 0.08) 66%, rgba(20, 17, 15, 0) 100%),
    linear-gradient(180deg, rgba(20, 17, 15, 0.08) 0%, rgba(20, 17, 15, 0.08) 54%, rgba(20, 17, 15, 0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: clamp(54px, 8vw, 92px);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 18px;
  font-weight: 600;
}
.hero-title {
  color: var(--ivory);
  max-width: 19ch;
  margin-bottom: 22px;
  font-weight: 500;
}
.hero-lead {
  max-width: 49ch;
  font-size: clamp(1.05rem, 0.5vw + 0.98rem, 1.26rem);
  color: rgba(247, 241, 230, 0.86);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-hours {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247, 241, 230, 0.7);
  margin: 0;
  border-left: 2px solid var(--brass);
  padding-left: 12px;
  max-width: 44ch;
}

@media (max-width: 559px) {
  .hero { min-height: auto; display: block; padding: 0; }
  .hero-media { position: relative; z-index: 0; height: 42vh; min-height: 250px; }
  .hero-media img { object-position: 58% center; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(20, 17, 15, 0.24) 0%, rgba(20, 17, 15, 0.16) 24%, rgba(20, 17, 15, 0.62) 44%, rgba(20, 17, 15, 0.8) 56%, rgba(20, 17, 15, 0.9) 100%);
  }
  .hero-scrim { display: none; }
  .hero-inner {
    padding-top: 34px;
    padding-bottom: 42px;
  }
  .hero-eyebrow {
    margin-bottom: 14px;
  }
  .hero-title {
    max-width: 14ch;
    margin-bottom: 18px;
  }
  .hero-lead {
    max-width: 34ch;
  }
}

/* ---------- Proof strip ---------- */
.proof {
  background: var(--ink);
  color: var(--ivory);
  border-top: 1px solid rgba(184, 138, 61, 0.3);
  border-bottom: 1px solid rgba(184, 138, 61, 0.3);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
.proof-cell {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 241, 230, 0.08);
}
.proof-cell:last-child { border-bottom: none; }
.proof-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--brass-soft);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.proof-star { font-size: 20px; color: var(--brass); }
.proof-label {
  font-size: 16px;
  color: rgba(247, 241, 230, 0.85);
  letter-spacing: 0.01em;
}

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { margin-bottom: 32px; max-width: 60ch; }
.section-head h2 { margin-bottom: 0.35em; }
.section-sub { color: var(--ink-soft); font-size: 1.04rem; margin: 0; }

/* Engraving list */
.bring { background: var(--paper); }
.bring .section-head {
  margin-bottom: 24px;
  max-width: 72ch;
}
.bring .section-sub {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw + 0.7rem, 2.05rem);
  line-height: 1.18;
  color: var(--ink);
}
.bring-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.bring-grid li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.bring-h {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.bring-h::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 1px;
  transform: rotate(45deg);
}
.bring-p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 18px;
}

/* Details section */
.details {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.details-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.details-copy h2 { margin-bottom: 0.4em; }
.details-copy p { color: var(--ink-soft); font-size: 1.05rem; max-width: 48ch; }
.details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.details-list li {
  display: flex;
  gap: 16px;
  padding: 22px 22px;
  border-bottom: 1px solid var(--line);
}
.details-list li:last-child { border-bottom: none; }
.details-num {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--brass-deep);
  font-weight: 600;
  flex: 0 0 auto;
  width: 38px;
}
.details-list h3 { margin: 2px 0 4px; font-size: 1.05rem; }
.details-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* Use cases */
.use-cases { background: var(--paper); }
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.case:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.case-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--graphite);
}
.case-img img { width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 20px 22px 24px; }
.case-body h3 { margin-bottom: 6px; }
.case-body p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.case-text {
  background: var(--ivory);
  box-shadow: none;
}
.case-text .case-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px 28px;
  border-left: 4px solid var(--brass);
}

/* Voices */
.voices {
  background: var(--ink);
  color: var(--ivory);
}
.voices .section-head h2 { color: var(--ivory); }
.voices .section-sub { color: rgba(247, 241, 230, 0.7); }
.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.voice {
  margin: 0;
  padding: 24px 24px 22px;
  background: rgba(247, 241, 230, 0.04);
  border: 1px solid rgba(247, 241, 230, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
}
.voice::before {
  content: "\201C";
  font-family: var(--serif);
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 64px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.6;
}
.voice blockquote {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--ivory);
  font-weight: 500;
}
.voice figcaption {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-soft);
  font-weight: 600;
}

/* Visit */
.visit { background: var(--paper); }
.visit-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.visit-copy h2 { margin-bottom: 0.3em; }
.visit-lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 48ch; margin-bottom: 22px; }
.visit-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 20px;
  margin: 0 0 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visit-facts > div { min-width: 0; }
.visit-facts dd { word-break: break-word; }
.visit-facts dt {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
  margin-bottom: 4px;
}
.visit-facts dd {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.4;
}
.visit-facts dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--brass); }
.visit-facts dd a:hover { color: var(--red); border-color: var(--red); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.visit-card {
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.visit-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 138, 61, 0.35);
  border-radius: 10px;
  pointer-events: none;
}
.visit-card h3 {
  color: var(--ivory);
  font-size: 1.5rem;
  margin: 0 0 14px;
}
.visit-card p { color: rgba(247, 241, 230, 0.82); font-size: 0.98rem; }
.visit-card-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visit-card-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(247, 241, 230, 0.9);
  font-size: 0.95rem;
}
.visit-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--brass);
  transform: rotate(45deg);
}

/* Footer */
.site-footer {
  background: var(--graphite);
  color: rgba(247, 241, 230, 0.8);
  padding: 30px 0;
  border-top: 1px solid rgba(184, 138, 61, 0.25);
}
.footer-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { font-family: var(--serif); font-size: 1.15rem; color: var(--ivory); margin: 0; }
.footer-sub { margin: 2px 0 0; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247, 241, 230, 0.55); }
.footer-meta p { margin: 0 0 4px; font-size: 13px; }
.footer-meta a { color: var(--brass-soft); text-decoration: none; }
.footer-meta a:hover { color: #fff; }

/* ---------- Breakpoints ---------- */
@media (min-width: 560px) {
  .wrap { padding: 0 28px; }
  .hero-inner { padding-top: 140px; }
  .visit-facts { grid-template-columns: 1fr 1fr; }
  .brand-sub { display: inline; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-cell { padding: 22px 18px; border-bottom: none; border-right: 1px solid rgba(247, 241, 230, 0.08); }
  .proof-cell:nth-child(2n) { border-right: none; }
  .proof-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(247, 241, 230, 0.08); }
  .bring-grid { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .voices-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 860px) {
  section { padding: 88px 0; }
  .header-nav { display: inline-flex; }
  .hero-inner {
    padding-top: 150px;
    padding-bottom: 96px;
  }
  .hero-title { max-width: 19ch; }
  .hero-lead { max-width: 49ch; }
  .hero-media img { object-position: center center; }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .proof-cell { padding: 26px 20px; border-right: 1px solid rgba(247, 241, 230, 0.08); }
  .proof-cell:nth-child(-n+2) { border-bottom: none; }
  .proof-cell:last-child { border-right: none; }
  .bring-grid { grid-template-columns: repeat(3, 1fr); gap: 0 28px; }
  .details-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
  .details-copy { position: sticky; top: 90px; }
  .cases-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .voices-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .visit-wrap { grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
  .visit-facts { grid-template-columns: 1fr 1fr 1fr; }
  .footer-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-meta p { text-align: right; }
}

@media (min-width: 1080px) {
  .voices-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .case { transition: none; }
}
