:root {
  --tnr-cream: #f6efe5;
  --tnr-sand: #d8c2a8;
  --tnr-ink: #181512;
  --tnr-espresso: #34251a;
  --tnr-rose: #b96a71;
  --tnr-blush: #edd4cd;
  --tnr-panel: rgba(255, 255, 255, 0.46);
  --tnr-border: rgba(24, 21, 18, 0.08);
  --tnr-shadow: 0 24px 80px rgba(52, 37, 26, 0.12);
  --tnr-serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, Times New Roman, serif;
  --tnr-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(185, 106, 113, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, var(--tnr-cream) 40%, #f7efe7 100%);
  color: var(--tnr-ink);
  font-family: var(--tnr-sans);
}
a { color: inherit; }
.tnr-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(246, 239, 229, 0.76);
  border-bottom: 1px solid rgba(24,21,18,0.06);
}
.tnr-topbar__inner,
.tnr-footer__inner,
.tnr-site-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.tnr-topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tnr-brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tnr-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.tnr-nav a {
  text-decoration: none;
  font-size: 0.95rem;
}
.tnr-site-shell {
  padding: 24px 0 72px;
}
.tnr-eyebrow {
  margin: 0 0 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--tnr-rose);
}
.tnr-hero,
.tnr-feature-band,
.tnr-signature {
  display: grid;
  gap: 32px;
  align-items: center;
}
.tnr-hero {
  grid-template-columns: 1.05fr 0.95fr;
  padding: 72px 0 88px;
}
.tnr-hero h1,
.tnr-story h2,
.tnr-feature-band h2,
.tnr-shop h2,
.tnr-signature h2,
.tnr-footer h2 {
  margin: 0;
  font-family: var(--tnr-serif);
  line-height: 0.95;
  color: var(--tnr-espresso);
}
.tnr-hero h1 {
  font-size: clamp(4rem, 7vw, 7rem);
  max-width: 10ch;
}
.tnr-hero__copy,
.tnr-story p,
.tnr-feature-band p,
.tnr-shop p,
.tnr-signature p,
.tnr-product-card p,
.tnr-footer p {
  font-size: 1.02rem;
  line-height: 1.8;
}
.tnr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.tnr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.tnr-button:hover,
.tnr-button:focus-visible,
.tnr-nav a:hover,
.tnr-nav a:focus-visible,
.tnr-brand:hover,
.tnr-brand:focus-visible {
  transform: translateY(-1px);
}
.tnr-button--primary {
  background: var(--tnr-espresso);
  color: #fff;
  box-shadow: var(--tnr-shadow);
}
.tnr-button--ghost {
  color: var(--tnr-espresso);
  border: 1px solid rgba(52, 37, 26, 0.16);
  background: rgba(255,255,255,0.55);
}
.tnr-hero__art {
  position: relative;
  min-height: 620px;
}
.tnr-hero__card,
.tnr-feature-band__stack div,
.tnr-product-image {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(216,194,168,0.5));
  border: 1px solid var(--tnr-border);
  box-shadow: var(--tnr-shadow);
}
.tnr-hero__card {
  position: absolute;
  border-radius: 32px;
}
.tnr-hero__card--large { inset: 40px 0 0 90px; }
.tnr-hero__card--small { width: 220px; height: 280px; left: 0; bottom: 20px; }
.tnr-hero__orb {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 30px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(185,106,113,0.5));
  filter: blur(2px);
}
.tnr-story,
.tnr-shop,
.tnr-signature,
.tnr-feature-band { padding: 48px 0; }
.tnr-story__grid,
.tnr-products-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tnr-story__grid article,
.tnr-product-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--tnr-panel);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--tnr-shadow);
}
.tnr-story__grid h3,
.tnr-product-card h3 { margin: 0 0 12px; font-size: 1.2rem; color: var(--tnr-espresso); }
.tnr-feature-band {
  grid-template-columns: 1fr 0.95fr;
  background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(237,212,205,0.55));
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 36px;
  padding: 42px;
}
.tnr-feature-band__stack { display: grid; gap: 18px; }
.tnr-feature-band__stack div:nth-child(1) { height: 120px; border-radius: 28px; }
.tnr-feature-band__stack div:nth-child(2) { height: 220px; border-radius: 32px; }
.tnr-feature-band__stack div:nth-child(3) { height: 150px; border-radius: 28px; }
.tnr-shop__heading { max-width: 760px; margin-bottom: 28px; }
.tnr-product-image { height: 270px; border-radius: 22px; margin-bottom: 18px; }
.tnr-product-kicker { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; color: var(--tnr-rose); font-weight: 800; }
.tnr-signature { grid-template-columns: 1fr auto; border-top: 1px solid rgba(24,21,18,0.08); }
.tnr-signature__notes { max-width: 520px; }
.tnr-footer {
  border-top: 1px solid rgba(24,21,18,0.08);
  padding: 28px 0 56px;
  background: rgba(255,255,255,0.35);
}
.tnr-footer__inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
}
.tnr-footer__meta a { font-weight: 700; text-decoration: none; }
@media (max-width: 980px) {
  .tnr-hero,
  .tnr-feature-band,
  .tnr-signature,
  .tnr-footer__inner,
  .tnr-story__grid,
  .tnr-products-grid { grid-template-columns: 1fr; }
  .tnr-hero__art { min-height: 420px; }
  .tnr-hero__card--large { inset: 20px 0 0 80px; }
  .tnr-hero__card--small { width: 170px; height: 220px; }
}
@media (max-width: 640px) {
  .tnr-topbar__inner,
  .tnr-footer__inner,
  .tnr-site-shell { width: min(100% - 24px, 1240px); }
  .tnr-topbar__inner { min-height: 68px; }
  .tnr-nav { gap: 14px; }
  .tnr-hero { padding-top: 40px; }
  .tnr-hero h1 { font-size: clamp(3rem, 16vw, 4.75rem); }
  .tnr-feature-band,
  .tnr-story__grid article,
  .tnr-product-card { padding: 24px; }
}