/* ===== Tokens ===== */
:root {
  --ink: #2b2723;
  --ink-soft: #635a4d;
  --ink-faint: #a89d8c;
  --cream: #f6f2e9;
  --white: #fffefb;
  --forest: #35473f;
  --forest-dark: #263832;
  --forest-tint: #eef1ee;
  --burgundy: #6e3a3a;
  --burgundy-tint: #f2e9e6;
  --gold: #9c8558;
  --gold-light: #c4b48f;
  --gold-dark: #7a6842;
  --line: #e0d6c4;
  --shadow-sm: 0 1px 3px rgba(28,24,20,0.08);
  --shadow-md: 0 12px 30px rgba(28,24,20,0.14);
  --radius: 3px;
  --radius-sm: 2px;
  --font-display: 'Newsreader', serif;
  --font-body: 'Libre Caslon Text', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); margin: 0; font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Signature ornament: a thin gold double rule with a small diamond, used at section breaks */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
}
.ornament::before, .ornament::after {
  content: '';
  height: 1px;
  width: 46px;
  background: var(--gold);
}
.ornament span {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ornament.ornament-left { justify-content: flex-start; }
.ornament.ornament-left::after { display: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,237,224,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand-logo { height: 26px; width: auto; opacity: 0.92; }
.header-nav { display: flex; gap: 34px; }
.header-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.header-nav a:hover { color: var(--gold-dark); }

/* ===== Hero ===== */
.hero { padding: 76px 0 52px; border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 700px; }
.badge-notrust {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 7px 0;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero h1 .hl { color: var(--forest); font-style: italic; }
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-block { width: 100%; }
.btn-disabled { background: var(--line); color: var(--ink-faint); cursor: default; border-color: var(--line); }

/* ===== Zip search ===== */
.zip-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 32px;
  max-width: 560px;
  flex-wrap: wrap;
}
.zip-form input {
  flex: 1 1 200px;
  height: 52px;
  box-sizing: border-box;
  border: 1px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.zip-form input:focus { border-color: var(--gold-dark); }
.zip-form .btn { height: 52px; box-sizing: border-box; white-space: nowrap; }
.locate-btn {
  height: 52px;
  width: 52px;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 1px solid var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.locate-btn:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.locate-btn[disabled] { opacity: 0.5; cursor: wait; }
.zip-status {
  margin-top: 12px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--burgundy);
}
.hero-cta .btn-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);

  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.hero-cta .btn-link:hover { color: var(--gold-dark); border-color: var(--gold); }

/* ===== Why strip ===== */
.why-strip { padding: 52px 0; border-bottom: 1px solid var(--line); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-card { text-align: center; padding: 0 12px; }
.why-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

/* ===== Trust strip ===== */
.trust-strip { background: var(--forest); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 24px;
  gap: 16px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.trust-num { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--gold-light); }
.trust-label { font-size: 12.5px; letter-spacing: 0.04em; color: #cfd9d3; }

/* ===== Occasions section ===== */
.occasions { padding: 64px 0 20px; }
.occasions-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.occasions-head h2 { font-size: 30px; }
.occasions-head p { color: var(--ink-soft); margin-top: 12px; font-size: 15.5px; line-height: 1.65; }
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.occasion-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
  text-align: left;
}
.occasion-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.occasion-card.active { background: var(--forest); border-color: var(--forest); }
.occasion-card.active .occasion-name, .occasion-card.active .occasion-desc { color: var(--white); }
.occasion-card.active .occasion-count { color: var(--gold-light); }
.occasion-name { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; display: block; }
.occasion-count { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-top: 4px; }
.occasion-desc { font-size: 13px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; display: block; }

/* ===== Directory / rankings section ===== */
.rankings { padding: 60px 0 40px; }
.leaderboard-head h2 { font-size: 28px; font-weight: 700; }
.leaderboard-head p { color: var(--ink-soft); margin-top: 10px; font-size: 15px; max-width: 720px; }

/* ===== Controls ===== */
.controls-bar {
  position: sticky;
  top: 84px;
  z-index: 30;
  background: var(--cream);
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.controls-row { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.search-field {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 16px;
  color: var(--ink-faint);
}
.search-field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  width: 100%;
}
.sort-select {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
}
.region-pills, .category-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pill, .chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 8px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.pill:hover, .chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.pill.active, .chip.active { background: var(--forest); border-color: var(--forest); color: var(--white); }
.category-chips { margin-top: 2px; }

.results-meta { font-size: 13px; letter-spacing: 0.03em; color: var(--ink-soft); margin-bottom: 18px; font-style: italic; }

.select-field {
  flex: 1 1 220px;
}
.filter-select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235c5347' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.filter-select:focus { border-color: var(--gold-dark); outline: none; }
.nearby-indicator {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nearby-indicator span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--forest);
}
.nearby-indicator button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
  cursor: pointer;
}
.nearby-indicator button:hover { color: var(--gold-dark); border-color: var(--gold); }


/* ===== Grid & cards ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }

.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.distance-badge {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 4px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.card-titles { flex: 1; min-width: 0; }
.card-category-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.card-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.25; margin-top: 3px; }
.card-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 5px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.town-tag { font-weight: 600; color: var(--ink-soft); }
.verified-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--forest);
  background: var(--forest-tint);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.dot { color: var(--ink-faint); }

.card-rating { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.rating-num { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.rating-count { font-size: 12.5px; color: var(--ink-soft); font-style: italic; }
.price-level { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }

.card-blurb { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.occasion-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.occasion-tag {
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  background: var(--burgundy-tint);
  padding: 4px 8px;
}

.status-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.status-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  text-transform: uppercase;
  border: 1px solid currentColor;
}
.status-open { color: var(--forest); }
.status-closed { color: var(--burgundy); }
.hours-today { font-size: 12.5px; color: var(--ink-soft); font-style: italic; }

.card-footer { display: flex; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.card-link {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.15s ease;
}
.card-link:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.card-link-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.card-link-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.empty-state {
  text-align: center;
  color: var(--ink-soft);
  padding: 60px 20px;
  font-size: 15px;
  font-style: italic;
}

/* ===== Owners ===== */
.owners { padding: 60px 0 84px; }
.owners-inner {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 52px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: center;
  border: 1px solid var(--gold-dark);
}
.owners-copy h2 { color: var(--white); font-size: 28px; }
.owners-copy p { color: #cabfaf; margin-top: 16px; font-size: 15px; line-height: 1.65; }
.owners-list { margin-top: 20px; display: flex; flex-direction: column; gap: 13px; }
.owners-list li {
  color: #ddd4c6;
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.owners-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.owners-list strong { color: var(--white); }
.owners-callout {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--gold-light) !important;
  font-style: italic;
}
.owners-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.owners-price { font-family: var(--font-display); font-weight: 700; font-size: 40px; display: block; margin-bottom: 20px; color: var(--forest); }
.owners-price span { font-size: 14px; font-weight: 600; color: var(--ink-soft); font-family: var(--font-body); }
.owners-fine { font-size: 12px; color: var(--ink-soft); margin-top: 12px; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); padding: 44px 0; background: var(--white); }
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { height: 20px; opacity: 0.8; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.footer-social a:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.footer-links a:hover { color: var(--gold-dark); }
.footer-inner p { font-size: 13px; color: var(--ink-soft); max-width: 620px; }
.footer-copy { font-size: 12px; color: var(--ink-faint); }

/* ===== Static content pages (About, Trust, Resources, Legal) ===== */
.static-page {
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 84px;
}
.static-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.static-page h1 { font-size: 38px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; }
.static-updated { font-size: 13px; color: var(--ink-faint); font-style: italic; margin-bottom: 30px; }
.static-page h2 { font-size: 22px; font-weight: 700; margin-top: 38px; margin-bottom: 14px; }
.static-page h3 { font-size: 17px; font-weight: 700; margin-top: 26px; margin-bottom: 8px; }
.static-page p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 4px; }
.static-page ul { margin: 14px 0; display: flex; flex-direction: column; gap: 11px; }
.static-page li { font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; padding-left: 20px; position: relative; }
.static-page li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.static-page a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold-light); }
.static-address {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px 22px;
  margin: 16px 0;
  display: inline-block;
}

/* ===== Restaurant profile page ===== */
.profile-wrap { padding-top: 44px; padding-bottom: 84px; }
.back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.back-link:hover { color: var(--gold-dark); border-color: var(--gold); }
.profile-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.profile-head h1 { font-size: 34px; font-weight: 700; line-height: 1.2; }
.profile-category-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.profile-sub { font-size: 14.5px; color: var(--ink-soft); margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.profile-status { margin-left: auto; align-self: center; }
.profile-blurb { font-size: 16.5px; color: var(--ink-soft); line-height: 1.65; max-width: 640px; margin-top: 22px; }
.profile-occasions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.profile-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

.profile-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  margin-top: 44px;
}
.profile-col { display: flex; flex-direction: column; gap: 22px; }
.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}
.profile-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.profile-card-note { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; font-style: italic; }

.platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 6px;
}
.platform-row:first-of-type { border-top: none; }
.platform-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; min-width: 90px; }
.platform-stars { color: var(--gold); font-size: 14px; }
.platform-stars strong { color: var(--ink); font-family: var(--font-display); margin-left: 4px; }
.platform-count { font-size: 12.5px; color: var(--ink-soft); font-style: italic; }
.platform-row-empty { opacity: 0.75; }
.platform-pending {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border: 1px solid var(--line);
  padding: 3px 10px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { font-size: 14px; color: var(--ink-soft); padding: 9px 0; border-top: 1px solid var(--line); }
.hours-table td:first-child { font-weight: 600; color: var(--ink); width: 40%; }
.hours-table tr:first-child td { border-top: none; }
.hours-today-row td { color: var(--forest); font-weight: 600; }

.profile-detail { font-size: 14.5px; margin-bottom: 18px; line-height: 1.55; }
.profile-detail strong { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 4px; font-weight: 600; }
.profile-detail a { color: var(--gold-dark); font-weight: 600; }

.profile-card-claim { background: var(--ink); border-color: var(--ink); }
.profile-card-claim h2 { color: var(--white); }
.profile-card-claim p { color: #cabfaf; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.profile-notfound { padding: 84px 0; text-align: center; }
.profile-notfound h1 { font-size: 28px; margin-bottom: 14px; }
.profile-notfound a { color: var(--gold-dark); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .owners-inner { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 52px 0 36px; }
  .hero h1 { font-size: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr; }
  .controls-bar { top: 0; }
  .owners-inner { padding: 34px 24px; }
  .header-nav { gap: 18px; }
  .header-nav a { font-size: 11px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .zip-form { flex-direction: row; }
  .zip-form input { flex: 1 1 100%; }
  .zip-form .btn { flex: 1 1 auto; }
  .profile-status { margin-left: 0; }
  .profile-head h1 { font-size: 27px; }
}

/* Review status states added for the live confirm/dispute system */
.review-disputed { background: var(--closed-tint); color: var(--closed); }
.review-dispute {
  font-size: 13px;
  color: var(--closed);
  background: var(--closed-tint);
  padding: 10px 14px;
  margin-top: 10px;
  border-left: 3px solid var(--closed);
}
.review-owner-response {
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 10px 14px;
  margin-top: 10px;
  border-left: 3px solid var(--gold);
}

/* ===== Shared App Components (admin/owner/diner areas) ===== */
.app-shell {
  min-height: 100vh;
  background: var(--cream);
}
.app-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-bottom: 40px;
}
.app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-header-logo { height: 24px; width: auto; opacity: 0.92; }
.app-header-nav { display: flex; gap: 28px; align-items: center; }
.app-header-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.app-header-nav a:hover { color: var(--gold-dark); }

.app-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--forest-tint);
}
.form-hint {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 6px;
}
.form-error {
  background: var(--burgundy-tint);
  color: var(--burgundy);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
}
.form-success {
  background: var(--forest-tint);
  color: var(--forest-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
}
.app-title {
  font-size: 26px;
  margin-bottom: 8px;
}
.app-subtitle {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 28px;
}
