/* ============================================================
   Restaurant Tijsterman — Demo Site
   Palette: Amber #E8A020 | Navy #1A1A2E | Warm off-white #F5F0E8
   Typefaces: Playfair Display (serif) + Inter (sans)
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:      #E8A020;
  --amber-dark: #C4841A;
  --navy:       #1A1A2E;
  --navy-mid:   #2A2A45;
  --bg:         #F5F0E8;
  --bg-warm:    #EDE7D8;
  --text:       #2C2C2C;
  --text-light: #6B6355;
  --white:      #FFFFFF;
  --radius:     8px;
  --header-h:   72px;
  --transition: 260ms ease;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

address { font-style: normal; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, .logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

em { font-style: italic; color: var(--amber); }

/* ── LAYOUT HELPERS ───────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-top: 0.5rem; }
.section-header p { max-width: 600px; margin: 0.75rem auto 0; color: var(--text-light); }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.7); }

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.section-eyebrow--amber { color: var(--amber); }

/* ── IMAGE FILL HELPERS ───────────────────────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

.btn-full { width: 100%; justify-content: center; }

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 26, 46, 1.0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,160,32,0.15);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo .logo-main {
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo .logo-sub {
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.desktop-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.desktop-nav a:hover { color: var(--amber); }

.header-cta { margin-left: 1rem; flex-shrink: 0; }

.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU FULLSCREEN OVERLAY ──────────────────────── */
.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy);
  width: 100%;
  height: 100svh;
  height: 100dvh;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu__overlay.is-open {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 1.5rem 2rem 3rem;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
  margin-bottom: 2rem;
}
.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__list {
  list-style: none;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  padding: 1.1rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.mobile-menu__item:hover { color: var(--amber); }

.mobile-menu__cta { margin-top: 2.5rem; width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,46,0.25) 0%,
    rgba(26,26,46,0.55) 55%,
    rgba(26,26,46,0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s ease infinite;
}
.hero__scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── HIGHLIGHTS STRIP ─────────────────────────────────────── */
.highlights {
  padding: 5rem 0;
  background: var(--bg);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(26,26,46,0.08);
  border: 1px solid rgba(232,160,32,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,26,46,0.14);
}

.highlight-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232,160,32,0.15), rgba(232,160,32,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1.5px solid rgba(232,160,32,0.25);
}
.highlight-card__icon svg { width: 28px; height: 28px; color: var(--amber); }

.highlight-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.highlight-card__text { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ── STORY SECTION ────────────────────────────────────────── */
.story {
  padding: 6rem 0;
  background: var(--bg-warm);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story__text .section-eyebrow { margin-bottom: 0.5rem; }

.story__title {
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.story__text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.0rem;
}

.story__text .btn { margin-top: 1.5rem; }

.story__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 60px rgba(26,26,46,0.18);
}
.story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── MENU SECTION ─────────────────────────────────────────── */
.menu-section { padding: 0; }

.menu-section__bg {
  background: var(--navy);
  padding: 6rem 0;
}

.menu-section__bg .section-header { margin-bottom: 3.5rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.menu-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.menu-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,160,32,0.5);
  transform: translateY(-4px);
}

.menu-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.menu-card__number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.menu-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(232,160,32,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.menu-card__icon svg { width: 26px; height: 26px; color: var(--amber); }

.menu-card__title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.menu-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.menu-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.menu-card__link:hover { gap: 0.75rem; }
.menu-card__link svg { width: 16px; height: 16px; }

/* ── FEESTEN SECTION ──────────────────────────────────────── */
.feesten {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feesten__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feesten__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feesten__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,46,0.92) 0%,
    rgba(26,26,46,0.80) 55%,
    rgba(26,26,46,0.50) 100%
  );
}

.feesten__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.feesten__text {
  max-width: 560px;
  color: var(--white);
}

.feesten__title {
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}

.feesten__text > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.feesten__list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.feesten__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.feesten__list svg { width: 18px; height: 18px; color: var(--amber); flex-shrink: 0; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews {
  padding: 6rem 0;
  background: var(--bg);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(26,26,46,0.08);
  border: 1px solid rgba(232,160,32,0.1);
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.star {
  width: 18px;
  height: 18px;
  fill: var(--amber);
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  quotes: "\201C" "\201D";
}
.review-card__text::before { content: open-quote; }
.review-card__text::after { content: close-quote; }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(26,26,46,0.08);
  padding-top: 1.25rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.review-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}
.review-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  padding: 5rem 0;
  background: var(--bg-warm);
  border-top: 1px solid rgba(232,160,32,0.2);
  border-bottom: 1px solid rgba(232,160,32,0.2);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
}

.cta-band__text h2 { color: var(--navy); }
.cta-band__text p { color: var(--text-light); max-width: 480px; margin-top: 0.5rem; }

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__block {
  margin-bottom: 2rem;
}

.contact__block h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.5rem;
}
.contact__block h3 svg { width: 18px; height: 18px; }

.contact__block address,
.contact__block a,
.contact__block p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact__block a:hover { color: var(--amber); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 0.3rem 0; color: var(--text-light); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }
.hours-table__accent td { color: var(--amber); font-weight: 600; }

.contact__form-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(26,26,46,0.18);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A898; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.footer-logo .logo-main { color: var(--white); font-size: 1.6rem; }
.footer-logo .logo-sub { color: var(--amber); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'Inter', sans-serif; }

.footer-tagline { font-size: 0.88rem; line-height: 1.65; max-width: 300px; margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer-col address, .footer-col p, .footer-col a {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.footer-col a:hover { color: var(--amber); }

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-col nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col nav a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-credits a { color: var(--amber); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story__grid { gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-band__text p { margin: 0.5rem auto 0; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  .mobile-menu__overlay { display: block; }

  .highlights__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .story__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story__image { order: -1; }
  .story__img-wrap { aspect-ratio: 16/9; }

  .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .feesten__list { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .highlights { padding: 3rem 0; }
  .story { padding: 4rem 0; }
  .menu-section__bg { padding: 4rem 0; }
  .reviews { padding: 4rem 0; }
  .contact { padding: 4rem 0; }
  .footer-inner { padding-top: 3rem; padding-bottom: 2rem; }
}
