:root {
  --pc-primary: #a14f33;
  --pc-accent: #d4a25b;
  --pc-bg: #3d1f1f;
  --pc-surface: #f4ecd9;
  --pc-card: #5a2e2a;
  --pc-ink: #1a0f0a;
  --pc-muted: #8a6a55;
  --pc-divider: #6e3a2a;
  --pc-danger: #c0392b;
  --pc-success: #7a8d4f;
  --pc-step: 8px;
  --pc-rhythm: 96px;
  --pc-rhythm-tight: 56px;
  --pc-radius: 6px;
  --pc-shadow: 0 1px 0 rgba(212, 162, 91, 0.18) inset, 0 18px 40px -22px rgba(0, 0, 0, 0.55);
  --pc-shadow-card: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 14px 28px -18px rgba(0, 0, 0, 0.55);
  --pc-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --pc-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body.pc-body {
  margin: 0;
  background: var(--pc-bg);
  color: var(--pc-surface);
  font-family: var(--pc-body);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0.005em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pc-accent);
  text-decoration: underline;
  text-decoration-color: rgba(212, 162, 91, 0.4);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
a:hover, a:focus-visible {
  color: var(--pc-surface);
  text-decoration-color: var(--pc-accent);
  outline: none;
}

img, svg { display: block; max-width: 100%; }
code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(212, 162, 91, 0.08);
  padding: 1px 6px;
  border-radius: 3px;
  color: var(--pc-accent);
}

/* ===== nav ===== */
.pc-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(61, 31, 31, 0.96), rgba(61, 31, 31, 0.84));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pc-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pc-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pc-surface);
}
.pc-nav-brand:hover, .pc-nav-brand:focus-visible {
  color: var(--pc-surface);
}
.pc-amphora-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 32px;
}
.pc-nav-word {
  font-family: var(--pc-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pc-nav-word em {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--pc-accent);
  letter-spacing: 0.02em;
  margin-left: 6px;
}
.pc-nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pc-nav-links a {
  color: var(--pc-surface);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.pc-nav-links a:hover, .pc-nav-links a:focus-visible {
  color: var(--pc-accent);
  border-bottom-color: var(--pc-accent);
}
.pc-nav-links a[aria-current="page"] {
  color: var(--pc-accent);
  border-bottom-color: var(--pc-accent);
}

/* ===== rack rule (decorative cellar shelf) ===== */
.pc-rack-rule {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pc-divider) 12%, var(--pc-accent) 50%, var(--pc-divider) 88%, transparent);
  opacity: 0.6;
}
.pc-rack-rule::before, .pc-rack-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pc-accent);
  opacity: 0.7;
}
.pc-rack-rule::before { left: 18%; }
.pc-rack-rule::after { right: 18%; }
.pc-rack-rule-section {
  max-width: 1140px;
  margin: 64px auto;
  opacity: 0.35;
}

/* ===== shared section type ===== */
.pc-section-h2 {
  font-family: var(--pc-display);
  font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--pc-surface);
}
.pc-section-h2 em {
  font-style: italic;
  color: var(--pc-accent);
  font-weight: 500;
}
.pc-section-h2-center { text-align: center; }
.pc-section-lede {
  font-family: var(--pc-display);
  font-style: italic;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.45;
  color: rgba(244, 236, 217, 0.78);
  max-width: 720px;
  margin: 0 0 40px;
}

/* ===== hero ===== */
.pc-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}
.pc-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.pc-hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.pc-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pc-accent);
  background: rgba(212, 162, 91, 0.08);
  border: 1px dashed rgba(212, 162, 91, 0.55);
  padding: 6px 12px;
  border-radius: 2px;
}
.pc-tag-amber {
  background: var(--pc-accent);
  color: var(--pc-ink);
  border-style: solid;
  border-color: var(--pc-accent);
}
.pc-hero-h1 {
  font-family: var(--pc-display);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 0 0 28px;
  color: var(--pc-surface);
}
.pc-hero-h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--pc-accent);
}
.pc-hero-sub {
  font-size: 18px;
  line-height: 1.62;
  max-width: 560px;
  color: rgba(244, 236, 217, 0.82);
  margin: 0 0 32px;
}
.pc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.pc-btn-primary, .pc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pc-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: var(--pc-radius);
  text-decoration: none;
  transition: transform 140ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.pc-btn-primary {
  background: var(--pc-primary);
  color: var(--pc-surface);
  border: 1px solid var(--pc-primary);
  box-shadow: var(--pc-shadow);
}
.pc-btn-primary:hover, .pc-btn-primary:focus-visible {
  background: #b85b3b;
  border-color: #b85b3b;
  color: var(--pc-surface);
  transform: translateY(-1px);
}
.pc-btn-large {
  padding: 18px 32px;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.pc-btn-ghost {
  background: transparent;
  color: var(--pc-accent);
  border: 1px solid var(--pc-divider);
}
.pc-btn-ghost:hover, .pc-btn-ghost:focus-visible {
  border-color: var(--pc-accent);
  color: var(--pc-surface);
}

.pc-hero-figure {
  position: relative;
  margin: 0 auto;
  max-width: 360px;
}
.pc-amphora {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}
.pc-floating-tag {
  position: absolute;
  top: 30%;
  right: -10px;
  background: var(--pc-surface);
  color: var(--pc-ink);
  font-family: var(--pc-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 2px;
  border-left: 3px solid var(--pc-accent);
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: rotate(4deg);
}
.pc-tag-line { font-weight: 600; }
.pc-tag-line-small { font-size: 10px; color: var(--pc-muted); letter-spacing: 0.12em; }

/* ===== why ===== */
.pc-why {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.pc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.pc-card {
  background: var(--pc-surface);
  color: var(--pc-ink);
  border-radius: var(--pc-radius);
  padding: 30px 28px;
  box-shadow: var(--pc-shadow-card);
  position: relative;
  overflow: hidden;
}
.pc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--pc-accent);
  opacity: 0.7;
}
.pc-card-h {
  font-family: var(--pc-display);
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  margin: 6px 0 12px;
  color: var(--pc-primary);
}
.pc-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--pc-ink);
}

/* ===== what ===== */
.pc-what {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.pc-what-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.pc-what-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 26px;
  background: var(--pc-card);
  border-left: 3px solid var(--pc-accent);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
}
.pc-what-glyph {
  width: 56px;
  height: 56px;
  background: rgba(212, 162, 91, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 162, 91, 0.4);
}
.pc-what-body h3 {
  font-family: var(--pc-display);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--pc-accent);
}
.pc-what-body p {
  margin: 0;
  font-size: 16px;
  color: rgba(244, 236, 217, 0.82);
  line-height: 1.6;
}

/* ===== stewardship ===== */
.pc-stewardship {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.pc-stew-essay {
  font-family: var(--pc-display);
  font-size: 22px;
  line-height: 1.6;
  color: rgba(244, 236, 217, 0.86);
}
.pc-stew-essay p {
  margin: 0 0 22px;
}
.pc-stew-essay p:first-child::first-letter {
  font-style: italic;
  font-size: 64px;
  line-height: 0.9;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--pc-accent);
  font-weight: 600;
}
.pc-stew-essay em {
  color: var(--pc-accent);
  font-style: italic;
}

/* ===== about / contact ===== */
.pc-about {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.pc-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.pc-about-card {
  background: var(--pc-surface);
  color: var(--pc-ink);
  padding: 36px 32px;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-card);
}
.pc-about-card h3 {
  font-family: var(--pc-display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 14px;
  color: var(--pc-primary);
}
.pc-about-card p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--pc-ink);
}
.pc-corp-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  row-gap: 8px;
  column-gap: 16px;
  font-size: 15px;
  border-top: 1px solid rgba(110, 58, 42, 0.25);
  padding-top: 18px;
}
.pc-corp-dl dt {
  font-family: var(--pc-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--pc-muted);
  align-self: center;
}
.pc-corp-dl dd {
  margin: 0;
  color: var(--pc-ink);
}
.pc-corp-dl dd a { color: var(--pc-primary); }
.pc-corp-dl dd a:hover { color: var(--pc-ink); }

/* ===== get the app ===== */
.pc-get {
  max-width: 1140px;
  margin: 80px auto 60px;
  padding: 0 24px;
}
.pc-get-card {
  background: var(--pc-card);
  border: 1px solid var(--pc-divider);
  border-radius: var(--pc-radius);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pc-get-card::before, .pc-get-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pc-accent) 50%, transparent);
  opacity: 0.5;
}
.pc-get-card::before { top: 18px; }
.pc-get-card::after { bottom: 18px; }
.pc-get-lede {
  font-family: var(--pc-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 620px;
  color: rgba(244, 236, 217, 0.86);
}
.pc-get-cta { margin: 0 0 22px; }
.pc-get-fine {
  font-size: 13px;
  color: var(--pc-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===== footer ===== */
.pc-footer {
  margin-top: 60px;
  padding-bottom: 40px;
}
.pc-footer-inner {
  max-width: 1140px;
  margin: 36px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
.pc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pc-foot-word {
  font-family: var(--pc-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pc-surface);
}
.pc-foot-word em {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--pc-accent);
  margin-left: 4px;
}
.pc-foot-line {
  font-size: 13px;
  color: var(--pc-muted);
}
.pc-footer-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pc-footer-links a {
  color: var(--pc-muted);
  text-decoration: none;
}
.pc-footer-links a:hover { color: var(--pc-accent); }
.pc-footer-copy {
  font-size: 12px;
  color: var(--pc-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* ===== privacy policy page ===== */
.pc-body-pp { background: var(--pc-bg); }
.pc-pp {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}
.pc-pp-card {
  background: var(--pc-surface);
  color: var(--pc-ink);
  padding: 56px 44px;
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-card);
}
.pc-pp-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.pc-pp-card .pc-tag {
  background: rgba(161, 79, 51, 0.08);
  color: var(--pc-primary);
  border-color: rgba(161, 79, 51, 0.4);
}
.pc-pp-card .pc-tag-amber {
  background: var(--pc-accent);
  color: var(--pc-ink);
  border-color: var(--pc-accent);
}
.pc-pp-h1 {
  font-family: var(--pc-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--pc-primary);
  letter-spacing: -0.01em;
}
.pc-pp-lede {
  font-family: var(--pc-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--pc-ink);
  margin: 0 0 28px;
  border-left: 3px solid var(--pc-accent);
  padding-left: 18px;
}
.pc-pp-card h2 {
  font-family: var(--pc-display);
  font-weight: 600;
  font-size: 24px;
  margin: 36px 0 10px;
  color: var(--pc-primary);
  position: relative;
  padding-top: 20px;
}
.pc-pp-card h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--pc-accent);
}
.pc-pp-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--pc-ink);
}
.pc-pp-list {
  margin: 0 0 18px;
  padding-left: 22px;
}
.pc-pp-list li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--pc-ink);
}
.pc-pp-list li::marker { color: var(--pc-accent); }
.pc-pp-card a { color: var(--pc-primary); }
.pc-pp-card a:hover { color: var(--pc-ink); }
.pc-pp-card code {
  background: rgba(161, 79, 51, 0.08);
  color: var(--pc-primary);
}
.pc-pp-hr {
  border: none;
  height: 1px;
  background: rgba(110, 58, 42, 0.3);
  margin: 36px 0 22px;
}
.pc-pp-foot {
  font-size: 13px;
  color: var(--pc-muted);
  letter-spacing: 0.02em;
}

/* ===== responsive ===== */
@media (min-width: 720px) {
  .pc-why-grid { grid-template-columns: repeat(3, 1fr); }
  .pc-what-list { grid-template-columns: repeat(2, 1fr); }
  .pc-footer-inner {
    grid-template-columns: 1fr auto auto;
    gap: 28px;
  }
}

@media (min-width: 980px) {
  .pc-hero { padding: 110px 24px 60px; }
  .pc-hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
  .pc-hero-figure { max-width: 420px; }
}

@media (max-width: 720px) {
  body.pc-body { font-size: 16px; }
  .pc-nav-inner { padding: 14px 18px 12px; }
  .pc-nav-word { font-size: 18px; letter-spacing: 0.12em; }
  .pc-nav-links { gap: 14px; font-size: 12px; }
  .pc-hero { padding: 56px 18px 28px; }
  .pc-hero-h1 { font-size: clamp(44px, 12vw, 64px); }
  .pc-section-h2 { font-size: clamp(34px, 9vw, 44px); }
  .pc-why, .pc-what, .pc-stewardship, .pc-about, .pc-get { padding: 0 18px; }
  .pc-rack-rule-section { margin: 44px auto; }
  .pc-card, .pc-about-card { padding: 24px 22px; }
  .pc-pp { padding: 40px 14px 32px; }
  .pc-pp-card { padding: 32px 22px; }
  .pc-corp-dl { grid-template-columns: 1fr; row-gap: 4px; }
  .pc-corp-dl dt { margin-top: 8px; }
  .pc-floating-tag { right: 4px; top: 22%; }
  .pc-get-card { padding: 40px 22px; }
}

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