/* Private Table Advisory — shared site styles */

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

:root {
  --bg:         #F8F7F5;
  --text:       #1A1A18;
  --mid:        #6B6760;
  --light:      #9C9890;
  --rule:       #DDDBD6;
  --accent:     #3D5C3A;
  --max-w:      1080px;
  --pad-x:      2.5rem;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- Nav ---------- */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 0;
}

.nav-name {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
}

.nav-email {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--mid);
  transition: color 0.2s ease;
}

.nav-email:hover {
  color: var(--text);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6em;
  padding: 1.1rem 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

.subnav a {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.subnav a:hover,
.subnav a.is-active {
  color: var(--text);
}

.subnav a.subnav-chefs {
  color: var(--light);
}

.subnav a.subnav-chefs:hover {
  color: var(--accent);
}

.subnav span {
  color: var(--rule);
  font-size: 0.62rem;
}

/* ---------- Typography helpers ---------- */

.label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.rule {
  width: 100%;
  height: 0.5px;
  background: var(--rule);
  margin: 2.75rem 0;
}

.hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-hed {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-hed.large {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 1.28;
}

.hero-tag {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 500;
}

.hero-tag span {
  display: inline-block;
  margin: 0 0.6em;
  color: var(--rule);
}

.positioning {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
}

.body-copy {
  max-width: 680px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 400;
}

.body-copy + .body-copy {
  margin-top: 1.4rem;
}

.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--text);
  max-width: 640px;
  margin: 3rem 0;
}

/* ---------- Pillars grid (homepage) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--rule);
  margin-top: 4rem;
}

.pillar {
  padding: 2.75rem 2.75rem 2.75rem 0;
  border-right: 0.5px solid var(--rule);
}

.pillar:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2.75rem;
}

.pillar:nth-child(2) {
  padding-left: 2.75rem;
}

.pillar-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.pillar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.pillar-body {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 400;
}

.pillar-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 0.5px solid var(--text);
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pillar-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- Numbered / process list ---------- */

.process {
  border-top: 0.5px solid var(--rule);
  margin-top: 3rem;
}

.process-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.process-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--accent);
}

.process-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.process-body {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 620px;
}

/* ---------- Fact / credential list ---------- */

.facts {
  border-top: 0.5px solid var(--rule);
  margin-top: 3rem;
}

.fact {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 0.5px solid var(--rule);
}

.fact-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-top: 0.15rem;
}

.fact-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--mid);
  max-width: 600px;
}

/* ---------- Inquiry / CTA section ---------- */

.inquiry {
  margin-top: 5rem;
  padding: 4rem 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.inquiry-left {
  max-width: 480px;
}

.inquiry-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.inquiry-hed {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--text);
}

.inquiry-cta {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg);
  background: var(--text);
  padding: 1rem 2rem;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.inquiry-cta:hover {
  background: var(--accent);
}

/* ---------- Footer ---------- */

footer {
  padding: 2.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-l {
  font-size: 0.68rem;
  color: var(--light);
  letter-spacing: 0.06em;
}

.foot-r {
  font-size: 0.68rem;
  color: var(--light);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.foot-r:hover {
  color: var(--text);
}

/* ---------- Animation ---------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);   }
}

.fu {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.2s;  }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s;  }
.d5 { animation-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
  .fu { animation: none; opacity: 1; }
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  :root { --pad-x: 1.5rem; }
  .hero { padding: 3.5rem 0 2.75rem; }
  .pillars { grid-template-columns: 1fr; }
  .pillar {
    border-right: none;
    border-bottom: 0.5px solid var(--rule);
    padding: 2.25rem 0;
  }
  .pillar:last-child { padding-left: 0; border-bottom: none; }
  .pillar:nth-child(2) { padding-left: 0; }
  .inquiry { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; }
  .fact { grid-template-columns: 1fr; gap: 0.5rem; }
  .process-item { grid-template-columns: 1fr; gap: 0.5rem; }
}
