/* Berfin Grill — demo site styles */

:root {
  --charcoal-900: #1c1c1c;
  --charcoal-800: #262626;
  --charcoal-700: #333333;
  --white: #faf9f6;
  --green: #3f8f5f;
  --green-dark: #2f6d47;
  --red: #d9432f;
  --red-dark: #b5341f;
  --steel-100: #f1f1ef;
  --steel-300: #d8d9d7;
  --steel-500: #9a9d9f;
  --steel-700: #5b5e60;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);

  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
}
.btn-secondary {
  background: var(--green);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--green-dark);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal-900);
  color: var(--charcoal-900);
}
.btn-outline-dark:hover {
  background: var(--charcoal-900);
  color: var(--white);
}
.btn-block {
  width: 100%;
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 0.8rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--charcoal-900);
  color: var(--white);
  border-bottom: 3px solid var(--red);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}

.main-nav {
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--steel-300);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--charcoal-800);
  border-radius: 999px;
  padding: 3px;
}
.lang-switcher button {
  border: none;
  background: transparent;
  color: var(--steel-500);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 5px 9px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-switcher button[aria-pressed="true"] {
  background: var(--red);
  color: var(--white);
}

.call-btn-header {
  display: none;
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--charcoal-900);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 14px 6px;
  border-bottom: 1px solid var(--charcoal-700);
}
.mobile-nav .mobile-extra {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .main-nav {
    display: block;
  }
  .call-btn-header {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  min-height: min(88vh, 640px);
  background: var(--charcoal-900);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.35) 0%, rgba(28, 28, 28, 0.55) 45%, rgba(28, 28, 28, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 44px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 249, 246, 0.14);
  border: 1px solid rgba(250, 249, 246, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 0.3em;
}
.hero-sub {
  max-width: 52ch;
  font-size: 1.05rem;
  color: var(--steel-100);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--steel-100);
}
.hero-meta strong {
  color: var(--white);
}
.stars {
  color: #f4b942;
  letter-spacing: 1px;
}

/* Sections */
section {
  padding: 56px 0;
}
.section-alt {
  background: var(--steel-100);
}
.section-dark {
  background: var(--charcoal-900);
  color: var(--white);
}
.section-head {
  margin-bottom: 32px;
  max-width: 60ch;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--red);
  margin-bottom: 8px;
}
.section-dark .eyebrow {
  color: #f28a7b;
}
.section-head p {
  color: var(--steel-700);
}
.section-dark .section-head p {
  color: var(--steel-300);
}

/* Hours */
.hours-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--charcoal-800);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.hours-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}
.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--steel-500);
  flex-shrink: 0;
}
.status-dot.is-open {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 143, 95, 0.25);
}
.status-dot.is-closed {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(217, 67, 47, 0.25);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours-table td {
  padding: 9px 4px;
  border-bottom: 1px solid var(--steel-300);
  font-size: 0.95rem;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--steel-700);
}
.hours-table tr.is-today td {
  font-weight: 700;
}
.hours-table tr.is-today td:last-child {
  color: var(--red);
}

/* Category / card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.35s ease;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.1) 30%, rgba(28, 28, 28, 0.88) 100%);
  z-index: -1;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.category-card-label span {
  display: block;
  font-family: var(--font-body);
  text-transform: none;
  font-size: 0.78rem;
  color: var(--steel-300);
  letter-spacing: 0;
  margin-top: 2px;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-md);
  padding: 20px;
}
.section-dark .review-card {
  background: var(--charcoal-800);
  border-color: var(--charcoal-700);
}
.review-card .stars {
  display: block;
  margin-bottom: 10px;
}
.review-card blockquote {
  margin: 0 0 14px;
  font-size: 0.98rem;
  white-space: pre-line;
}
.review-card footer {
  font-size: 0.85rem;
  color: var(--steel-700);
}
.section-dark .review-card footer {
  color: var(--steel-500);
}
.review-source {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--steel-700);
}
.section-dark .review-source {
  color: var(--steel-300);
}

/* Location */
.location-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.location-card {
  background: var(--white);
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-md);
  padding: 26px;
}
.location-card dl {
  margin: 18px 0;
  display: grid;
  gap: 14px;
}
.location-card dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--red);
}
.location-card dd {
  margin: 2px 0 0;
}
.location-card .btn {
  margin-top: 6px;
}
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--steel-300);
  min-height: 320px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--charcoal-900);
  color: var(--steel-300);
  padding: 44px 0 24px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-grid a {
  text-decoration: none;
  color: var(--steel-300);
}
.footer-grid a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid var(--charcoal-700);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--steel-500);
}

/* Page header (inner pages) */
.page-header {
  background: var(--charcoal-900);
  color: var(--white);
  padding: 40px 0 32px;
  border-bottom: 3px solid var(--red);
}
.page-header .eyebrow {
  color: #f28a7b;
}
.page-header p {
  color: var(--steel-300);
  max-width: 60ch;
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--steel-500);
  margin-bottom: 10px;
}
.breadcrumbs a {
  color: var(--steel-500);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--white);
}

/* Menu */
.menu-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--steel-300);
  padding: 14px 0;
}
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-chip {
  border: 1px solid var(--steel-300);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.filter-chip[aria-pressed="true"] {
  background: var(--charcoal-900);
  border-color: var(--charcoal-900);
  color: var(--white);
}
.filter-chip.veg[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
}
.menu-note {
  background: #fdf3e8;
  border: 1px solid #f0d9b5;
  color: #7a5a1e;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  margin: 28px 0;
}

.menu-category {
  margin-top: 44px;
  scroll-margin-top: calc(var(--header-h) + 110px);
}
.menu-category h2 {
  font-size: 1.6rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.menu-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-md);
  padding: 14px;
}
.menu-item-photo {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.menu-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-item-body {
  flex: 1;
  min-width: 0;
}
.menu-item-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}
.menu-item-top h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
}
.menu-item-desc {
  font-size: 0.86rem;
  color: var(--steel-700);
  margin: 4px 0 10px;
}
.menu-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--steel-700);
}
.tag.veg {
  background: #e4f3e9;
  color: var(--green-dark);
}
.menu-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.menu-item-price {
  font-family: var(--font-display);
  color: var(--steel-500);
  font-size: 0.85rem;
}
.add-btn {
  border: 1px solid var(--charcoal-900);
  background: var(--white);
  color: var(--charcoal-900);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
}
.add-btn:hover {
  background: var(--charcoal-900);
  color: var(--white);
}
.add-btn.is-added {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* Basket */
.basket-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 15px 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.basket-count {
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.basket-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.basket-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.basket-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  background: var(--white);
  z-index: 111;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.basket-drawer.is-open {
  transform: translateX(0);
}
.basket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--steel-300);
}
.basket-head h2 {
  font-size: 1.1rem;
  margin: 0;
}
.basket-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.basket-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.basket-empty {
  color: var(--steel-700);
  text-align: center;
  padding: 40px 10px;
}
.basket-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--steel-100);
}
.basket-line-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.basket-line-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--steel-300);
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}
.basket-foot {
  border-top: 1px solid var(--steel-300);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pickup-field label {
  display: block;
  font-size: 0.82rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--steel-700);
}
.pickup-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--steel-300);
  font-size: 0.95rem;
  background: var(--white);
}
.demo-note {
  font-size: 0.78rem;
  color: var(--steel-700);
  text-align: center;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.92);
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--steel-300);
  font-size: 0.9rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-methods {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 10px;
}
.contact-method {
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--white);
}
.contact-method h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-method p {
  font-size: 0.88rem;
  color: var(--steel-700);
  margin-bottom: 12px;
}
.contact-method.is-todo {
  opacity: 0.7;
  border-style: dashed;
}
.todo-badge {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--steel-100);
  color: var(--steel-700);
  border-radius: 999px;
  padding: 2px 9px;
  margin-bottom: 8px;
}

/* Facebook banner */
.fb-banner {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fb-banner h2 {
  margin-bottom: 4px;
}
.fb-banner p {
  margin: 0;
  color: rgba(250, 249, 246, 0.9);
}

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
