/* ============================================================
   Gasthaus Weserblick — Demo Stylesheet
   Warm terracotta / sage green / cream palette
   Self-contained — no inheritance from main studio-chop.de CSS
   ============================================================ */

/* ---- Variables -------------------------------------------------- */
:root {
  --terracotta:     #c45c3c;
  --terracotta-dk:  #a8472b;
  --terracotta-lt:  #e07a5a;
  --sage:           #7a8b5b;
  --sage-dk:        #5e6e44;
  --sage-lt:        #9aab7b;
  --cream:          #f5f0e8;
  --cream-dk:       #e8dcc8;
  --white:          #ffffff;
  --charcoal:       #2d2a24;
  --charcoal-lt:    #4a453e;
  --text:           #1c1c1a;
  --text-light:     #6b6760;
  --text-on-dark:   #e0ddd7;
  --border:         #d6cec0;
  --shadow:         0 2px 12px rgba(45,42,36,.1);
  --shadow-lg:      0 8px 30px rgba(45,42,36,.15);
  --font:           'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono:      'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
  --radius:         6px;
  --radius-lg:      10px;
  --max-width:      1200px;
  --nav-height:     64px;
}

/* ---- Reset minimal --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--terracotta); text-decoration: none; transition: color .15s; }
a:hover { color: var(--terracotta-dk); }
ul { list-style: none; }

/* ---- Utility --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-heading); }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* ---- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta); color: var(--white); border-color: var(--terracotta);
}
.btn--primary:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); color: var(--white); }
.btn--ghost {
  background: transparent; color: var(--terracotta); border-color: var(--terracotta);
}
.btn--ghost:hover { background: var(--terracotta); color: var(--white); }
.btn--sm { padding: .5rem 1.25rem; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn--light {
  background: var(--white); color: var(--charcoal); border-color: var(--white);
}
.btn--light:hover { background: var(--cream); border-color: var(--cream); color: var(--charcoal); }
.btn--outline-light {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn--outline-light:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ---- Badge ----------------------------------------------------- */
.badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: .2rem .6rem;
  border-radius: 3px; background: var(--sage); color: var(--white);
}
.badge--featured { background: var(--terracotta); }

/* ---- Demo-Notice Banner ---------------------------------------- */
.demo-notice {
  background: var(--charcoal); color: var(--text-on-dark); text-align: center;
  padding: .5rem 1.25rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; position: relative; z-index: 2000; line-height: 1.4;
}
.demo-notice a { color: var(--terracotta-lt); text-decoration: underline; }
.demo-notice a:hover { color: var(--terracotta); }

/* ---- Navigation ------------------------------------------------ */
.site-nav {
  background: var(--charcoal);
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-height);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  letter-spacing: .02em;
}
.nav__logo:hover { color: var(--terracotta-lt); }
.nav__links {
  display: flex; align-items: center; gap: .25rem;
}
.nav__links a {
  display: inline-flex; align-items: center;
  padding: .5rem .85rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; color: var(--text-on-dark);
  transition: all .15s;
}
.nav__links a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav__links a.active { color: var(--terracotta-lt); background: rgba(255,255,255,.06); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  position: fixed; top: 18px; right: 1.25rem; z-index: 2001;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.nav-toggle:checked ~ .site-nav .nav__inner {
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal); z-index: 2000;
  justify-content: center;
}
.nav-toggle:checked ~ .site-nav .nav__links {
  flex-direction: column; gap: .5rem;
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ---- Sections -------------------------------------------------- */
.section {
  padding: 4rem 0;
}
.section--warm {
  background: var(--cream);
}
.section__eyebrow {
  font-family: var(--font); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--sage); margin-bottom: .5rem;
}
.section__title {
  font-size: 2.25rem; margin-bottom: .75rem;
}
.section__subtitle {
  max-width: 600px; color: var(--text-light);
  font-size: 1.1rem; margin-bottom: 2.5rem;
}

/* ---- Hero ------------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-lt) 60%, #3d3a34 100%);
  color: var(--white); padding: 6rem 0 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 20h15l-12 9 5 16-13-8-13 8 5-16-12-9h15z' fill='rgba(255,255,255,.03)'/%3E%3C/svg%3E") repeat;
  opacity: .4;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero__eyebrow {
  font-family: var(--font); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--terracotta-lt); margin-bottom: .75rem;
}
.hero__title {
  font-size: 3.25rem; font-weight: 700; line-height: 1.1;
  margin-bottom: 1rem; color: var(--white);
}
.hero__text {
  max-width: 600px; margin: 0 auto 2rem;
  font-size: 1.15rem; color: var(--text-on-dark); line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Page Hero (inner pages) ----------------------------------- */
.page-hero {
  background: var(--cream); padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero--sm { padding: 2.5rem 0 2rem; }
.page-hero__title {
  font-size: 2.2rem; margin-bottom: .5rem;
}
.page-hero__text {
  max-width: 650px; color: var(--text-light); font-size: 1.05rem;
}

/* ---- Feature Grid ---------------------------------------------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.feature-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--border); transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { color: var(--text-light); font-size: .95rem; }
.feature-card__icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--sage); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 700;
}
.feature-card__icon--veg::after { content: '\1F33F'; }
.feature-card__icon--wine::after { content: '\1F377'; }
.feature-card__icon--heart::after { content: '\2764'; }
.feature-card__icon--view::after { content: '\26F5'; }

/* ---- Dish Grid (featured dishes) ------------------------------- */
.dish-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.dish-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.dish-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.dish-card__image {
  height: 140px; background: var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; position: relative;
  font-family: var(--font-heading); font-style: italic;
  color: var(--text-light); font-size: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 5L22 18h14l-11 8 4 15-11-7-11 7 4-15-11-8h14z' fill='%23e8dcc8'/%3E%3C/svg%3E");
}
.dish-card__image .badge { position: absolute; top: .75rem; left: .75rem; }
.dish-card__body { padding: 1.25rem; }
.dish-card__title { font-size: 1.15rem; margin-bottom: .35rem; }
.dish-card__desc { font-size: .9rem; color: var(--text-light); margin-bottom: .75rem; }
.dish-card__price { font-weight: 700; color: var(--terracotta); font-size: 1.1rem; }

/* ---- Testimonial ----------------------------------------------- */
.section--testimonial {
  background: var(--charcoal); color: var(--white);
  padding: 4rem 0;
}
.testimonial {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.testimonial p {
  font-family: var(--font-heading); font-size: 1.35rem;
  font-style: italic; line-height: 1.7; color: var(--text-on-dark);
}
.testimonial cite {
  display: block; margin-top: 1.5rem;
  font-style: normal; color: var(--terracotta-lt); font-size: .9rem;
}

/* ---- Location Grid --------------------------------------------- */
.location-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 2rem;
}
.location-item {
  text-align: left; padding: 1.5rem;
  background: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.location-item h4 { margin-bottom: .5rem; color: var(--charcoal); }
.location-item p { color: var(--text-light); font-size: .9rem; }

/* ---- CTA Section ----------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dk) 100%);
  color: var(--white); text-align: center; padding: 4rem 0;
}
.cta-section h2 { font-size: 2.25rem; margin-bottom: .75rem; color: var(--white); }
.cta-section p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-on-dark); }

/* ---- Menu Category --------------------------------------------- */
.menu-category {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.menu-category:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.menu-category__title {
  font-size: 1.75rem; margin-bottom: .25rem;
}
.menu-category__note {
  color: var(--text-light); font-size: .95rem; margin-bottom: 1.5rem;
}

.menu-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream-dk);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item--featured {
  background: var(--cream);
  margin: 0 -1rem; padding: 1.25rem 1rem;
  border-radius: var(--radius); border-bottom: 0;
}
.menu-item__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .75rem; margin-bottom: .25rem;
}
.menu-item__title {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 600;
}
.menu-item__price {
  font-weight: 700; color: var(--terracotta);
  white-space: nowrap;
}
.menu-item__desc {
  color: var(--text-light); font-size: .9rem; line-height: 1.6;
}
.menu-item__meta {
  font-size: .8rem; color: var(--text-light); margin-top: .35rem;
}
.menu-item__tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .1rem .45rem; border-radius: 3px;
  background: var(--sage); color: var(--white);
  margin-left: .35rem;
}
.menu-item__tag--alt {
  background: var(--terracotta);
}
.menu-allergen-note {
  margin-top: 2rem; padding: 1rem;
  background: var(--cream); border-radius: var(--radius);
  font-size: .85rem; color: var(--text-light);
  border-left: 3px solid var(--sage);
}

/* ---- Reservation Form ------------------------------------------ */
.form-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 2rem;
}
.reservation-form,
.contact-form {
  background: var(--cream); padding: 2rem;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block; font-weight: 600; margin-bottom: .35rem;
  font-size: .9rem;
}
.form-input {
  width: 100%; padding: .7rem .85rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem;
  background: var(--white); transition: border-color .15s;
}
.form-input:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(196,92,60,.15); }
.form-textarea { min-height: 100px; resize: vertical; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-note { font-size: .8rem; color: var(--text-light); margin-top: 1rem; }

/* ---- Sidebar --------------------------------------------------- */
.sidebar-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border); margin-bottom: 1rem;
  background: var(--white);
}
.sidebar-card__title {
  font-family: var(--font-heading); margin-bottom: .75rem;
}
.sidebar-card p { color: var(--text-light); font-size: .9rem; }
.sidebar-card--success {
  border-color: var(--sage); background: #f0f5ea;
}

/* ---- Hours Table ----------------------------------------------- */
.hours-table {
  width: 100%; border-collapse: collapse;
}
.hours-table td {
  padding: .2rem 0; font-size: .9rem;
}
.hours-table td:last-child { text-align: right; }

/* ---- Gallery --------------------------------------------------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item--wide { grid-column: 1 / -1; }
.gallery-item__image {
  width: 100%; height: 200px;
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery-item--wide .gallery-item__image { height: 260px; }
.gallery-item__caption {
  font-size: .85rem; color: var(--text-light); margin-top: .4rem;
  font-style: italic;
}

/* ---- Gallery Placeholders -------------------------------------- */
.gallery-placeholder {
  background: var(--cream-dk); color: var(--text-light);
  font-family: var(--font-heading); font-style: italic;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4l4 11h11l-9 6 3 12-9-6-9 6 3-12-9-6h11z' fill='%23d6cec0'/%3E%3C/svg%3E");
  position: relative;
}
.gallery-placeholder__label {
  position: absolute; bottom: .75rem; left: .75rem;
  background: rgba(45,42,36,.75); color: var(--white);
  padding: .35rem .75rem; border-radius: 3px;
  font-size: .8rem; font-style: normal;
  font-family: var(--font);
}

/* ---- About Grid ------------------------------------------------ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.about-image .gallery-placeholder { height: 350px; border-radius: var(--radius-lg); }

/* ---- Team Grid ------------------------------------------------- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin-top: 2rem;
}
.team-card {
  text-align: center;
}
.team-card__image {
  width: 160px; height: 160px; border-radius: 50%;
  margin: 0 auto 1rem;
}
.team-card__title { margin-bottom: .2rem; }
.team-card__role { color: var(--terracotta); font-weight: 600; font-size: .9rem; margin-bottom: .5rem; }
.team-card__bio { color: var(--text-light); font-size: .9rem; }

/* ---- Philosophy Grid ------------------------------------------- */
.philosophy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.philosophy-item {
  padding: 1.5rem; background: var(--cream);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.philosophy-item h3 { margin-bottom: .5rem; color: var(--sage-dk); }
.philosophy-item p { color: var(--text-light); font-size: .95rem; }

/* ---- Event Cards ----------------------------------------------- */
.event-options { display: flex; flex-direction: column; gap: 2rem; }
.event-card {
  display: grid; grid-template-columns: 240px 1fr; gap: 2rem;
  background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.event-card__image { height: 100%; min-height: 200px; border-radius: 0; }
.event-card__body { padding: 1.5rem 1.5rem 1.5rem 0; }
.event-card__title { font-size: 1.5rem; margin-bottom: .75rem; }
.event-card__body p { color: var(--text-light); font-size: .95rem; margin-bottom: .75rem; }
.event-card__list { margin: .75rem 0; padding-left: 1.25rem; }
.event-card__list li {
  list-style: disc; color: var(--text-light);
  font-size: .9rem; margin-bottom: .3rem;
}
.event-card__list li::marker { color: var(--sage); }
.event-card__from {
  font-weight: 700; color: var(--terracotta); font-size: 1rem;
}

/* ---- Contact Grid ---------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-block { margin-bottom: 1.5rem; }
.contact-block h3 { margin-bottom: .5rem; color: var(--sage-dk); }
.contact-block p { color: var(--text-light); font-size: .95rem; line-height: 1.8; }
.contact-note { font-size: .85rem !important; font-style: italic; margin-top: .35rem; }
.contact-form-wrap h3 { margin-bottom: 1rem; }
.contact-success {
  background: #f0f5ea; border: 1px solid var(--sage);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  color: var(--sage-dk); font-weight: 600;
}

/* ---- Footer ---------------------------------------------------- */
.site-footer {
  background: var(--charcoal); color: var(--text-on-dark);
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.footer__col h4 {
  color: var(--white); font-size: 1rem; margin-bottom: .75rem;
}
.footer__col p, .footer__col li {
  font-size: .9rem; line-height: 1.8;
}
.footer__col a { color: var(--terracotta-lt); }
.footer__col a:hover { color: var(--terracotta); }
.footer__links a { display: block; padding: .15rem 0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  font-size: .85rem;
}
.demo-marker { color: var(--terracotta-lt); text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; }

/* ---- Lightbox (gallery) ---------------------------------------- */
.lightbox-overlay {
  display: flex; align-items: center; justify-content: center;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(45,42,36,.92);
  opacity: 0; transition: opacity .25s;
  cursor: pointer; padding: 2rem;
}
.lightbox-content {
  max-width: 800px; width: 100%;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; transform: scale(.95); transition: transform .25s;
}
.lightbox-content .gallery-placeholder {
  min-height: 350px; border-radius: 0;
}
.lightbox-content .gallery-placeholder__label {
  font-size: 1.1rem; padding: .5rem 1rem;
}
.lightbox-caption {
  padding: 1rem 1.25rem; color: var(--text-light);
  font-style: italic; font-size: .95rem;
}

/* ---- Responsive ------------------------------------------------- */
@media (max-width: 900px) {
  .form-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-card__body { padding: 0 1.5rem 1.5rem; }
  .event-card__image { height: 180px; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__title { font-size: 2.5rem; }
  .section__title { font-size: 1.75rem; }
  .page-hero__title { font-size: 1.75rem; }
}

@media (max-width: 640px) {
  .nav__links {
    display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--charcoal); flex-direction: column; padding: 1rem;
    gap: .25rem; z-index: 999;
  }
  .nav-toggle:checked ~ .site-nav .nav__links { display: flex; }
  .nav-toggle:checked ~ .site-nav .nav__inner {
    flex-direction: column; justify-content: flex-start;
    padding-top: 4rem; height: 100vh;
  }
  .nav-burger { display: flex; }
  .hero { padding: 4rem 0 3rem; }
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .section { padding: 2.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide .gallery-item__image { height: 200px; }
  .footer__grid { grid-template-columns: 1fr; }
}
