/* ============================================================
   Les Petits Cuisiniers de Tours — Délégation de Toulouse
   Design archetype: WARM & HUMAN COMMUNITY
   ============================================================ */

:root {
  --cream:        #FFF3E0;
  --cream-dark:   #F5E6C8;
  --cream-deeper: #EDD9A3;
  --terra:        #D4522A;
  --terra-light:  #E8754D;
  --terra-dark:   #A93D1C;
  --warm-brown:   #5C3D2E;
  --warm-mid:     #8B5E3C;
  --warm-text:    #3B2417;
  --warm-muted:   #7A5C46;
  --white:        #FFFFFF;
  --shadow-soft:  0 4px 24px rgba(84,40,10,0.13);
  --shadow-card:  0 8px 32px rgba(84,40,10,0.16);
  --radius-photo: 24px;
  --radius-card:  20px;
  --radius-btn:   50px;
}

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

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--warm-text);
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dark); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--warm-brown);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; color: var(--terra); }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.85;
  color: var(--warm-muted);
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream    { background: var(--cream); }
.section--white    { background: var(--white); }
.section--terra    { background: var(--terra); }
.section--warm     { background: #FDF0DC; }

/* ── NAVIGATION ─────────────────────────────────────────────── */

.site-nav {
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-deeper);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 24px;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand .logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand .wordmark {
  height: 34px;
  object-fit: contain;
  /* dark artwork on transparent bg — shows as-is on light cream header */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--warm-brown);
  padding: 6px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--terra);
  color: var(--white);
}

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--terra-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--warm-brown);
  border-radius: 2px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-lockup .logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-lockup .wordmark {
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--cream-dark);
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--terra-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: var(--cream-dark);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--terra-light); }

.footer-contact p {
  font-size: 0.9rem;
  color: var(--cream-dark);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--terra-light);
}

.footer-bottom {
  max-width: 1160px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,243,224,0.6);
}

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--warm-brown);
  overflow: visible;
  min-height: 620px;
}

.hero-photo {
  position: relative;
  width: 100%;
  min-height: 620px;
}

.hero-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(59,36,23,0.78) 40%, rgba(59,36,23,0.2) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  max-width: 640px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra-light);
  background: rgba(255,243,224,0.12);
  border: 1.5px dotted var(--terra-light);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content .lead {
  color: rgba(255,243,224,0.9);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.hero-pulled-card-wrap {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding: 0 48px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(84,40,10,0.22); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover { background: var(--terra-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--terra);
}
.btn-white:hover { background: var(--cream); color: var(--terra-dark); }

/* ── SQUIGGLE DIVIDERS ───────────────────────────────────────── */

.squiggle {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 48px;
}

.squiggle--down { margin-top: -2px; }
.squiggle--up   { margin-bottom: -2px; transform: scaleY(-1); }

/* ── STAMP BADGE ─────────────────────────────────────────────── */

.stamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  border: 4px dashed rgba(255,255,255,0.5);
  outline: 3px solid var(--terra);
  outline-offset: 4px;
  box-shadow: var(--shadow-soft);
  padding: 12px;
  line-height: 1.3;
  flex-shrink: 0;
}

/* ── POLAROID CARDS ──────────────────────────────────────────── */

.polaroid {
  background: var(--white);
  border: 6px solid var(--cream);
  border-bottom-width: 36px;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: inline-block;
}

.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--warm-muted);
  padding: 8px 8px 0;
  font-style: italic;
}

.polaroid--tilt-left  { transform: rotate(-2.5deg); }
.polaroid--tilt-right { transform: rotate(2.1deg); }
.polaroid--tilt-sm    { transform: rotate(-1.2deg); }

/* ── FEATURE CARDS ───────────────────────────────────────────── */

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }

.card--dotted {
  border: 2px dotted var(--cream-deeper);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 { margin-bottom: 10px; }

.card p { font-size: 0.97rem; color: var(--warm-muted); }

/* ── PHOTO CARD (rounded big photo + content) ────────────────── */

.photo-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-card-body {
  padding: 28px 28px 32px;
}

/* ── IMPACT NUMBERS ──────────────────────────────────────────── */

.impact-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.impact-item {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px dotted var(--cream-deeper);
  min-width: 160px;
}

.impact-item .stat {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-item .label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--warm-muted);
  line-height: 1.4;
}

/* ── PULLED-UP CARD (over hero) ──────────────────────────────── */

.pulled-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px 36px;
  box-shadow: 0 16px 48px rgba(84,40,10,0.22);
  max-width: 600px;
  border-left: 6px solid var(--terra);
}

.pulled-card h3 { margin-bottom: 10px; }
.pulled-card p  { font-size: 0.97rem; color: var(--warm-muted); }

/* ── STAGGERED GRID ──────────────────────────────────────────── */

.stagger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.stagger-grid .card:nth-child(2) { margin-top: 40px; }
.stagger-grid .card:nth-child(3) { margin-top: 20px; }

.stagger-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.stagger-grid-2 .card:nth-child(even) { margin-top: 36px; }

/* ── PROGRAMME CARDS ─────────────────────────────────────────── */

.programme-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-dark);
}

.programme-card-header {
  background: var(--cream);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px dotted var(--cream-deeper);
}

.programme-card-header .icon { font-size: 1.8rem; }
.programme-card-header h3 { margin: 0; font-size: 1.15rem; }

.programme-card-body {
  padding: 24px 24px 28px;
}

.programme-card-body .blurb {
  font-weight: 600;
  color: var(--warm-brown);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.programme-card-body .detail {
  font-size: 0.92rem;
  color: var(--warm-muted);
}

/* ── SECTION TITLES ──────────────────────────────────────────── */

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.divider-dots {
  border: none;
  border-top: 3px dotted var(--cream-deeper);
  margin: 48px 0;
}

/* ── SPLIT LAYOUT ────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split--reverse .split-image { order: 2; }
.split--reverse .split-content { order: 1; }

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-photo);
  box-shadow: var(--shadow-card);
}

/* ── BLOG CARDS ──────────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.blog-grid .photo-card:nth-child(2) { margin-top: 48px; }

.blog-card-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--warm-brown);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-dek {
  font-size: 0.9rem;
  color: var(--warm-muted);
  margin-bottom: 16px;
}

.read-more {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more::after { content: "→"; }

/* ── ARTICLE ─────────────────────────────────────────────────── */

.article-hero {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0 0 32px 32px;
  box-shadow: var(--shadow-card);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--warm-text);
  margin-bottom: 1.4em;
}

.article-dek {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--warm-muted);
  line-height: 1.7;
  border-left: 4px solid var(--terra);
  padding-left: 20px;
  margin-bottom: 32px;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--warm-brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--cream-deeper);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--warm-text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(212,82,42,0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */

.page-hero {
  background: var(--warm-brown);
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(212,82,42,0.18);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 240px; height: 240px;
  background: rgba(255,243,224,0.07);
  border-radius: 50%;
}

.page-hero .tagline { color: var(--terra-light); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero .lead { color: rgba(255,243,224,0.88); max-width: 640px; margin: 0 auto; }

/* ── TEAM TRUSTEES ───────────────────────────────────────────── */

.trustee-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px dotted var(--cream-deeper);
}

.trustee-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
  border: 3px solid var(--cream-deeper);
}

.trustee-card h4 { color: var(--warm-brown); font-size: 1rem; margin-bottom: 4px; }
.trustee-card p  { font-size: 0.85rem; color: var(--terra); font-weight: 700; }

/* ── WAYS TO HELP ────────────────────────────────────────────── */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.way-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}

.way-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.way-card .icon-big {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.way-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.way-card p  { font-size: 0.95rem; color: var(--warm-muted); margin-bottom: 20px; }

/* ── DECORATIVE ELEMENTS ─────────────────────────────────────── */

.dot-border {
  border: 2px dotted var(--terra);
  border-radius: var(--radius-card);
  padding: 24px;
}

.highlight-box {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border-left: 5px solid var(--terra);
}

.photo-cluster {
  position: relative;
}

/* ── HOMEPAGE INTRO SECTION ──────────────────────────────────── */

.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.polaroid-cluster {
  position: relative;
  height: 400px;
}

.polaroid-cluster .p1 {
  position: absolute;
  width: 240px;
  top: 0; left: 0;
}

.polaroid-cluster .p2 {
  position: absolute;
  width: 220px;
  top: 80px; right: 0;
}

.polaroid-cluster .p3 {
  position: absolute;
  width: 200px;
  bottom: 0; left: 60px;
}

/* ── FULL BLEED PHOTO BANNER ─────────────────────────────────── */

.photo-banner {
  position: relative;
  width: 100%;
}

.photo-banner img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(59,36,23,0.15) 0%, rgba(59,36,23,0.7) 100%);
}

.photo-banner-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 48px 80px;
  max-width: 1160px;
  margin: 0 auto;
}

.photo-banner-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.photo-banner-content p {
  color: rgba(255,243,224,0.9);
  font-size: 1.05rem;
  max-width: 560px;
}

.photo-banner-pulled {
  position: relative;
  margin-top: -72px;
  z-index: 5;
  padding: 0 48px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-end;
}

/* ── SVG SQUIGGLE (inline) ───────────────────────────────────── */

.svg-squiggle {
  width: 100%;
  height: 48px;
  overflow: hidden;
}

/* ── MOBILE ──────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .split           { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-image,
  .split--reverse .split-content { order: unset; }

  .stagger-grid    { grid-template-columns: 1fr; }
  .stagger-grid .card:nth-child(2),
  .stagger-grid .card:nth-child(3) { margin-top: 0; }

  .blog-grid       { grid-template-columns: 1fr; }
  .blog-grid .photo-card:nth-child(2) { margin-top: 0; }

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

  .home-intro-grid { grid-template-columns: 1fr; }
  .polaroid-cluster { height: 280px; }
  .polaroid-cluster .p2 { right: 20px; }

  .footer-inner    { grid-template-columns: 1fr; gap: 32px; }

  .hero-content    { padding: 40px 24px; max-width: 100%; }
  .hero-pulled-card-wrap { padding: 0 24px; margin-top: -40px; }

  .photo-banner-content  { padding: 24px 24px 60px; }
  .photo-banner-pulled   { padding: 0 24px; margin-top: -48px; }

  .impact-row { gap: 16px; }
  .impact-item { padding: 20px 28px; }

  .stagger-grid-2 { grid-template-columns: 1fr; }
  .stagger-grid-2 .card:nth-child(even) { margin-top: 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 2px dotted var(--cream-deeper); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-nav { position: sticky; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero-photo img { height: 480px; }
  .hero-photo { min-height: 480px; }
  .hero { min-height: 480px; }

  .section { padding: 56px 0; }

  .polaroid-cluster { height: 260px; }
  .polaroid-cluster .p1 { width: 160px; }
  .polaroid-cluster .p2 { width: 150px; top: 60px; }
  .polaroid-cluster .p3 { width: 140px; }

  .pulled-card { padding: 22px 22px; }
  .photo-banner img { height: 340px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}
