/* Embodied Leadership — Terra design
   Tokens: sand/paper/sage/clay + WP orange accent for CTAs.
   Fonts kept identical to ignasicorella.com (Crimson Pro + DM Sans) */
:root {
  --sand:      #efe8dc;
  --sand-deep: #e2d8c4;
  --paper:     #f8f4ec;
  --sage:      #8a9a7b;
  --sage-deep: #5f6d54;
  --clay:      #b57156;
  --ink:       #2b2521;
  --ink-soft:  #5a4f47;
  --text:      #5a4f47;
  --text-light:#8a7f75;
  --heading:   #2b2521;
  --bg-cream:  #f8f4ec;
  --bg-dark:   #2b2521;
  --line:      #cec3ad;
  --accent:      #ac6206;
  --accent-hover:#8a4e05;
  --accent-soft: #d4b78a;
  --serif: "Crimson Pro", Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 0.4em; }
h2 em, h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 400; }
p { margin-bottom: 1.1em; }

.container       { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide  { max-width: 1400px;   margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow{ max-width: 780px;    margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(80px, 12vw, 160px) 0; }
.bg-cream { background: var(--paper); }
.bg-dark { background: var(--ink); color: rgba(248,244,236,0.85); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--paper); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage-deep);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
}
.bg-dark .eyebrow { color: var(--accent-soft); }

/* Header — transparent over hero, ink strip on scroll (white logo shows on both) */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(26,22,19,0.85) 0%, rgba(26,22,19,0.35) 60%, transparent 100%);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(43,37,33,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(43,37,33,0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 90px !important; width: auto !important; max-width: none !important; display: block; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55)); }
.brand:hover { color: #fff; }
.nav-lang { display: flex; gap: 4px; }
.nav-lang a {
  color: rgba(248,244,236,.75);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-bottom: 1px solid transparent;
}
.nav-lang a.active, .nav-lang a:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* HERO — 2-col with title + side facts panel */
.hero {
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: flex; align-items: center;
  background: var(--sand);
  overflow: hidden;
  color: var(--ink);
  padding: 140px 0 60px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('/landing-pages/assets/img/sitges/sitges-sunset-aerial-catalonia.webp') center 40%/cover no-repeat;
  filter: saturate(1.1) brightness(1);
  opacity: 0.62;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(239,232,220,0.05) 0%, rgba(239,232,220,0.55) 55%, rgba(239,232,220,0.97) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 230px; }
}
@media (min-width: 769px) {
  .hero-grid { margin-top: 48px; }
}
.hero-eyebrow {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
@media (min-width: 769px) {
  .hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.32em; }
}
.hero-eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--clay); }
.hero h1 {
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.02;
  white-space: normal;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 900px) {
  .hero h1 { white-space: nowrap; font-size: clamp(2.75rem, 3.6vw, 4.75rem); }
}
.hero .subtitle {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  color: var(--ink);
  line-height: 1.3;
  max-width: 42ch;
  margin-bottom: 44px;
  font-weight: 500;
  font-style: italic;
}
@media (min-width: 769px) {
  .hero .subtitle { max-width: none; font-size: clamp(1.85rem, 2.4vw, 2.6rem); font-weight: 600; line-height: 1.35; }
}
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-side {
  padding: 20px 24px;
  border-left: 3px solid var(--clay);
  text-align: right;
  justify-self: end;
  max-width: 260px;
  background: rgba(248,244,236,0.72);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.hero-side .hero-fact .value a { text-align: right; }
.hero-fact { margin-bottom: 22px; }
.hero-fact:last-child { margin-bottom: 0; }
.hero-fact .label {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-bottom: 5px;
  font-weight: 700;
}
.hero-fact .value {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.3;
  font-weight: 500;
}
.hero-fact .value small { font-size: 0.8rem; color: var(--sage-deep); font-family: var(--sans); font-weight: 500; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 34px;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  border-radius: 2px;
}
.btn:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--sand); }
.bg-dark .btn-ghost { color: var(--paper); border-color: var(--paper); }

/* Section head + optional wave */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 70px; }
.section-head .wave {
  display: block;
  margin: 24px auto 0;
  color: var(--sage);
  opacity: 0.5;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split.reverse .split-img { order: 2; }
.split-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.split-text .lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--heading);
  line-height: 1.5;
  margin-bottom: 1em;
  font-weight: 400;
}
.split ul { list-style: none; margin: 24px 0; padding: 0; }
.split ul li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 1.05rem;
  color: var(--text);
}
.split ul li::before {
  content: "";
  position: absolute; left: 0; top: 24px;
  width: 18px; height: 1px;
  background: var(--clay);
}
.split ul li:last-child { border-bottom: none; }

/* Pillars — 3 soft cards with roman numerals */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  background: var(--paper);
  padding: 44px clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.bg-cream .pillar { background: var(--sand); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--heading);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.pillar p { font-size: 0.98rem; color: var(--ink-soft); }

/* Pullquote — dark ink with optional image background */
.pullquote {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  background: var(--ink);
  color: rgba(248,244,236,0.85);
  position: relative;
  overflow: hidden;
}
.pullquote.with-image::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center 38%;
  filter: brightness(0.42) sepia(0.15);
  z-index: 0;
}
.pullquote.with-image blockquote { position: relative; z-index: 1; }
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.85rem);
  line-height: 1.35;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  quotes: "\201C" "\201D";
}
.pullquote blockquote::before {
  content: open-quote;
  font-size: 1.4em;
  color: var(--accent-soft);
  line-height: 0.1;
  vertical-align: -0.4em;
  margin-right: 8px;
}
.pullquote blockquote::after {
  content: close-quote;
  color: var(--accent-soft);
}

/* Agenda — poetic list */
.agenda {
  max-width: 620px;
  margin: 0 auto;
}
.day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.day:last-child { border-bottom: none; }
.day .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--clay);
  font-weight: 400;
  line-height: 1;
}
.day .num small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--sage-deep);
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
.day .label {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--heading);
  line-height: 1.35;
  font-weight: 400;
}

/* Team — editorial portraits (4:5), warm duotone, terracotta accent line */
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(48px, 5vw, 80px);
}
.member {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
}
.member img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  filter: contrast(1.03) saturate(0.88) sepia(0.08);
  transition: filter .35s, box-shadow .35s;
  box-shadow:
    0 4px 0 0 var(--clay),
    0 8px 24px rgba(43,37,33,0.10);
}
.member:hover img {
  filter: contrast(1.03) saturate(1) sepia(0);
  box-shadow:
    0 4px 0 0 var(--clay),
    0 14px 34px rgba(43,37,33,0.14);
}
.member h3 { font-size: 1.4rem; margin-bottom: 6px; font-weight: 400; letter-spacing: -0.005em; }
.member .role {
  font-family: var(--sans);
  color: var(--sage-deep);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.member p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); }

/* Location — mosaic gallery */
.location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 140px);
  gap: 8px;
}
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.gallery-mosaic img:nth-child(1) { grid-row: 1 / 3; }
.gallery-mosaic img:nth-child(2) { grid-row: 1; }
.gallery-mosaic img:nth-child(3) { grid-row: 2 / 4; grid-column: 2; }
.gallery-mosaic img:nth-child(4) { grid-row: 3; grid-column: 1; }

/* Dates — light quiet cards */
.dates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.date-card {
  background: var(--paper);
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: background .2s, border-color .2s, transform .2s;
  text-align: left;
  color: inherit;
  display: block;
}
.bg-cream .date-card { background: var(--sand); }
.date-card:hover {
  background: var(--sand-deep);
  border-color: var(--sage);
  transform: translateY(-4px);
  color: inherit;
}
.date-card .season {
  font-family: var(--sans);
  color: var(--sage-deep);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  display: block;
}
.date-card .month {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--heading);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
}
.date-card .days {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clay);
}
.date-card .year {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.info-item {
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.info-item:nth-child(3n) { border-right: none; }
.info-item h4 {
  font-family: var(--sans);
  color: var(--sage-deep);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  font-weight: 500;
}
.info-item p { margin: 0; color: var(--heading); font-family: var(--serif); font-size: 1.2rem; font-weight: 400; line-height: 1.35; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--heading);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: -6px;
  font-size: 1.75rem;
  color: var(--clay);
  transition: transform .3s;
  font-family: var(--serif);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) { margin-top: 16px; }
.faq details p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }

/* Form — minimalist underline inputs */
.form-wrap { max-width: 620px; margin: 0 auto; }
.form-wrap label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  color: var(--sage-deep);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.form-wrap input, .form-wrap select, .form-wrap textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  margin-bottom: 24px;
  background: transparent;
  color: var(--heading);
  transition: border-color .2s;
}
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus {
  outline: none;
  border-bottom-color: var(--clay);
}
.form-wrap textarea { min-height: 120px; resize: vertical; }
.form-wrap .btn { width: 100%; padding: 20px; margin-top: 12px; }
.form-msg { padding: 16px; margin-bottom: 24px; display: none; font-size: 0.95rem; }
.form-msg.success { background: #e8efe0; color: #3a5a2f; display: block; border-left: 3px solid var(--sage-deep); }
.form-msg.error { background: #f3ded8; color: #7a3520; display: block; border-left: 3px solid var(--clay); }
.hp { position: absolute !important; left: -9999px !important; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(248,244,236,0.55);
  padding: 60px 0 40px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.site-footer .footer-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: center;
}
.site-footer .brand-serif img { height: 55px; width: auto; display: block; }
.site-footer a { color: var(--sand); }
.site-footer a:hover { color: #fff; }

/* Sticky mobile CTA — appears after hero, hidden near the form */
.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 90px;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(43,37,33,0.28);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .2s;
  z-index: 90;
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta { display: inline-block; }
  .sticky-cta.show { opacity: 1; transform: none; pointer-events: auto; }
  .sticky-cta:hover { background: var(--accent-hover); color: #fff !important; }
  body.has-cookie .sticky-cta { bottom: 170px; }
}

/* Cookie banner — visual match to WP gdpr-cookie-compliance */
.cookie-bar {
  position: fixed;
  left: 20px; right: 20px; bottom: 12px;
  max-width: 1160px;
  margin: 0 auto;
  background: var(--ink);
  color: rgba(248,244,236,0.9);
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  display: none;
  z-index: 200;
  font-size: 0.9rem;
  line-height: 1.55;
}
.cookie-bar.show { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
/* When banner is visible: on desktop keep the hero full-screen (bg image fills the
   viewport) but push content up with extra bottom padding so CTAs clear the banner.
   On mobile, screen space is tighter — shrink the hero to fit its content instead. */
@media (min-width: 769px) {
  body.has-cookie .hero {
    align-items: flex-start !important;
    padding-top: 140px !important;
    padding-bottom: 180px !important;
  }
}
@media (max-width: 768px) {
  body.has-cookie .hero {
    min-height: auto !important;
    align-items: flex-start !important;
    padding-top: 140px !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 560px) {
  body.has-cookie .hero { padding-top: 120px !important; padding-bottom: 40px !important; }
}
.cookie-bar p { margin: 0; flex: 1 1 340px; }
.cookie-bar a.info { color: var(--accent-soft); text-decoration: underline; }
.cookie-bar .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie-bar button {
  font-family: var(--sans);
  padding: 12px 24px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.cookie-bar .btn-accept  { background: var(--accent); color: #fff; }
.cookie-bar .btn-accept:hover  { background: var(--accent-hover); }
.cookie-bar .btn-reject  { background: transparent; color: rgba(248,244,236,0.75); border: 1px solid rgba(248,244,236,0.35); }
.cookie-bar .btn-reject:hover  { color: #fff; border-color: #fff; }
@media (max-width: 560px) {
  .cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 14px 16px; }
  .cookie-bar p { font-size: 0.8rem; line-height: 1.4; flex-basis: 100%; }
  .cookie-bar .cookie-actions { width: 100%; }
  .cookie-bar button { flex: 1; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { padding: 24px 0 0; border-left: none; border-top: 3px solid var(--clay); background: none; max-width: none; text-align: left; justify-self: stretch; backdrop-filter: none; }
  .hero-side .hero-fact .value a { text-align: left; }
  .split, .location-wrap { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-img { order: 0; }
  .pillars { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .member { grid-template-columns: 140px 1fr; gap: 20px; }
  .dates { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .info-item:nth-child(2n) { border-right: none; }
  .gallery-mosaic { grid-template-rows: repeat(3, 120px); }
}
@media (max-width: 560px) {
  section { padding: 72px 0; }
  .brand img { height: 60px !important; }
  .info-grid { grid-template-columns: 1fr; }
  .info-item { border-right: none !important; }
  .member { grid-template-columns: 1fr; }
  .member img { max-width: 200px; }
}
