*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terra:      #C4501A;
  --terra-deep: #9E3D10;
  --terra-pale: #F5EDE6;
  --gold:       #D4973A;
  --cream:      #FAF8F3;
  --ink:        #1C1208;
  --ink-2:      #2D2015;
  --brown:      #5C3D1E;
  --tan:        #8B6A45;
  --muted:      #A08060;
  --border:     #E8DDD0;
  --white:      #FFFDF9;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--ink);
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(250,248,243,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { text-decoration: none; }
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--ink); line-height: 1;
}
.nav-logo-sub {
  font-size: 10px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--terra); display: block; margin-top: 3px;
}
.nav-back {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--tan);
  font-size: 13px; font-weight: 500; transition: color .2s;
}
.nav-back:hover { color: var(--terra); }

/* HERO */
.pp-hero {
  background: var(--ink-2);
  padding: 80px 5vw 64px;
  position: relative; overflow: hidden;
}
.pp-hero::before {
  content: '🍽️';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 18vw; opacity: .07;
  pointer-events: none;
}

.pp-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 18px;
}
.pp-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--terra); }

.pp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700; line-height: .92;
  letter-spacing: -1px; color: var(--white);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.pp-meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
  position: relative; z-index: 1;
}
.pp-meta strong { color: rgba(255,253,249,.65); font-weight: 600; }

/* LAYOUT */
.pp-layout {
  display: grid; grid-template-columns: 260px 1fr;
  max-width: 1300px; margin: 0 auto;
}

/* SIDEBAR */
.pp-sidebar {
  padding: 48px 24px 48px 5vw;
  border-right: 1px solid var(--border);
  position: sticky; top: 72px;
  height: calc(100vh - 72px); overflow-y: auto;
  background: var(--white);
}
.pp-sidebar h3 {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.pp-sidebar ul { list-style: none; }
.pp-sidebar ul li { margin-bottom: 3px; }
.pp-sidebar ul li a {
  display: block; padding: 8px 12px;
  text-decoration: none; color: var(--tan);
  font-size: 13px; font-weight: 400; line-height: 1.45;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: all .2s;
}
.pp-sidebar ul li a:hover {
  color: var(--terra); border-left-color: var(--terra);
  background: rgba(196,80,26,.05);
}

/* CONTENT */
.pp-content { padding: 60px 5vw 100px; max-width: 820px; }

.pp-intro-box {
  padding: 22px 26px;
  background: var(--terra-pale);
  border: 1px solid rgba(196,80,26,.2);
  border-left: 4px solid var(--terra);
  margin-bottom: 52px;
  font-size: 15px; color: var(--brown); line-height: 1.7;
}
.pp-intro-box strong { color: var(--ink); font-weight: 700; }

.pp-section { margin-bottom: 58px; }

.pp-sec-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 10px;
}
.pp-sec-tag::before { content: ''; width: 16px; height: 1px; background: var(--terra); }

.pp-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700; color: var(--ink);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -.2px;
}

.pp-section p {
  font-size: 15px; color: var(--tan); line-height: 1.85;
  font-weight: 300; margin-bottom: 14px;
}
.pp-section p strong { color: var(--ink); font-weight: 600; }
.pp-section p:last-child { margin-bottom: 0; }

.pp-section ul { list-style: none; margin: 14px 0; }
.pp-section ul li {
  font-size: 15px; color: var(--tan); line-height: 1.7;
  padding: 10px 0 10px 22px; position: relative;
  border-bottom: 1px solid var(--border); font-weight: 300;
}
.pp-section ul li:last-child { border-bottom: none; }
.pp-section ul li::before {
  content: '›'; position: absolute; left: 0; top: 8px;
  color: var(--terra); font-size: 20px;
}
.pp-section ul li strong { color: var(--ink); font-weight: 600; }

.pp-highlight {
  padding: 20px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  margin: 20px 0;
  font-size: 14px; color: var(--tan); line-height: 1.7;
}
.pp-highlight strong { color: var(--ink); font-weight: 600; }

/* contact card */
.pp-contact-card {
  background: var(--ink-2); padding: 40px;
  margin-top: 24px; border: 1px solid rgba(255,255,255,.06);
}
.pp-contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--white);
  margin-bottom: 24px;
}
.pp-contact-row { display: flex; flex-direction: column; gap: 16px; }
.pp-contact-item strong {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 4px;
}
.pp-contact-item span { font-size: 14px; color: rgba(255,253,249,.5); line-height: 1.6; }
.pp-contact-item a { color: var(--gold); text-decoration: none; font-size: 14px; }
.pp-contact-item a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer span { font-size: 12px; color: rgba(255,253,249,.2); }
footer a { font-size: 12px; color: rgba(255,253,249,.35); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--terra); }

@media (max-width: 768px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
}
