/* ============================================================
   Foxfire Arts — shared stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --sage: #74785f;        /* sidebar — sampled from your screenshot */
  --sage-dark: #62654f;
  --topbar-bg: #c8cdb7;    /* header — sampled lighter than the sidebar */
  --cream: #f2efe2;
  --cream-bright: #fbf3df;
  --page-bg: #ffffff;      /* matched to your screenshot's white content panel */
  --ink: #1e2c20;
  --muted: #4c584e;
  --gold: #be6e3c;
  --gold-wash: rgba(190, 110, 60, 0.32);
  --lang-group-bg: rgba(255, 255, 255, 0.35);
  --lang-active-bg: #fdfbf6;
  --lang-active-text: #2b2a22;
  --lang-inactive-text: #6b6a5c;
  --sidebar-width: 200px;
  --shell-max-width: 1360px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Work Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  overflow-y: scroll;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
}

.site-shell {
  max-width: var(--shell-max-width);
  margin: 0 auto;
  background: var(--page-bg);
}

a { color: inherit; }

/* ---------- Top bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--topbar-bg);
  padding: 18px 32px;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
}

.footer-logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--lang-group-bg);
  border-radius: 10px;
  padding: 4px;
}

.lang-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 44px;
  border-radius: 6px;
  background: var(--lang-active-bg);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.lang-switch a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--lang-inactive-text);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.18s ease;
}

.lang-switch a.pill-target {
  color: var(--lang-active-text);
}

/* ---------- Layout ---------- */
.layout {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 88px - 90px);
  position: relative;
}

.layout::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: var(--sage);
  opacity: 0.7;
}

.sidebar {
  background: var(--sage);
  width: var(--sidebar-width);
  flex-shrink: 0;
}

.sidebar-inner {
  position: sticky;
  top: 0;
  padding: 20px 0;
}

.nav-link {
  display: block;
  margin: 2px 10px;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nav-link.sub {
  margin-left: 22px;
  font-weight: 500;
  font-size: 14px;
}

.nav-link:hover,
.nav-link.selected {
  background-color: #a28c59;
  color: var(--cream-bright);
}

.content {
  flex: 1;
  padding: 56px 48px;
}

.content-home {
  padding-top: 64px;
}

/* ---------- Hero (home page) ---------- */
.hero {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 320px; text-align: center; }

.hero-text h1 {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #3d4a35;
}

.hero-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-intro .intro-line2 {
  display: block;
  margin-top: 46px;
}

.hero-explore {
  font-size: 13.5px;
  color: var(--muted);
  opacity: 0.85;
  max-width: 42ch;
  margin: 22px auto 0;
  line-height: 1.6;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero-image {
  flex: 1 1 360px;
  position: relative;
  aspect-ratio: 6 / 7;
  min-height: 400px;
  max-width: 400px;
  border-radius: 4px;
  overflow: hidden;
  background-image: url('../images/hero-painting.jpg');
  background-size: 130%;
  background-position: 58% 22%;
}

.firefly {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(219,142,50,0.8);
  animation: drift 6s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
  50% { transform: translateY(-14px) translateX(8px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .firefly { animation: none; }
}

/* ---------- Section heading ---------- */
.page-heading {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 0 0 8px;
  color: #3d4a35;
}

.page-subheading {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 36px;
  max-width: 60ch;
}

.contact-intro {
  max-width: 70ch;
  margin: 0 0 6px;
}

.contact-intro-line2 {
  max-width: 70ch;
  margin: 0 0 36px;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.placeholder-tile {
  aspect-ratio: 4 / 5;
  border: 1.5px dashed var(--sage);
  border-radius: 6px;
  background: rgba(136, 139, 108, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

.placeholder-tile svg { opacity: 0.5; }

/* ---------- Story list (image + text per painting) — Layout A ---------- */
.story-list {
  display: flex;
  flex-direction: column;
  max-width: 940px;
}

.story-item {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 34px 0;
}

.story-item:first-child { padding-top: 0; }

/* Placeholder version (dashed box + icon), used until a real photo is added */
.story-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1.5px dashed var(--sage);
  border-radius: 6px;
  background: rgba(136, 139, 108, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

.story-image svg { opacity: 0.5; }

/* Real-photo version — drop an <img class="story-photo"> in place of .story-image */
.story-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.story-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; }

.story-text h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #3d4a35;
  margin: 0 0 10px;
}

.story-text p {
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
  font-size: 14.5px;
}

.story-separator {
  border: none;
  border-top: 1px solid rgba(136, 139, 108, 0.32);
  margin: 0;
}

.tile-caption {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Bio page ---------- */
.bio-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.bio-portrait {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed var(--sage);
  background: rgba(136, 139, 108, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  flex-shrink: 0;
}

.bio-portrait-img {
  width: 220px;
  height: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 40%;
  flex-shrink: 0;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1.5px var(--gold);
}

.bio-text { flex: 1 1 320px; line-height: 1.7; color: var(--ink); }
.bio-text p { margin: 0 0 16px; }

.bio-quote {
  margin: 28px 0 16px;
  padding: 18px 0 18px 22px;
  border-left: 3px solid var(--gold);
}

.bio-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 6px;
}

.bio-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Forms ---------- */
.contact-form { max-width: 900px; }

.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }

.contact-form .form-field:nth-of-type(1),
.contact-form .form-field:nth-of-type(2) {
  max-width: 420px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.required-star {
  color: var(--gold);
  margin-left: 2px;
}

.form-field input,
.form-field textarea {
  border: 1.5px solid rgba(136, 139, 108, 0.4);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  max-width: 100%;
}

.form-field textarea {
  resize: both;
  max-width: 100%;
  min-height: 110px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* honeypot field — hidden from real visitors, left for bots to fill in */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.btn:hover { background: #c67a24; }

.note-box {
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(136, 139, 108, 0.08);
  color: var(--muted);
  font-size: 13px;
  max-width: 60ch;
}

/* ---------- Donate ---------- */
.donate-card {
  max-width: 440px;
  border: 1.5px solid rgba(136, 139, 108, 0.3);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}

.donate-card p { color: var(--muted); line-height: 1.6; margin: 0 0 24px; }

.donate-goal-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 6px !important;
}

.donate-goal {
  color: var(--ink) !important;
  font-size: 15.5px;
}

.donate-note {
  font-size: 12.5px;
  color: var(--muted);
  opacity: 0.8;
  margin: 14px 0 0 !important;
}

/* ---------- Thank you ---------- */
.thankyou-card {
  max-width: 440px;
  border: 1.5px solid rgba(212, 148, 42, 0.4);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  background: rgba(212, 148, 42, 0.06);
}

.thankyou-card .thankyou-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.thankyou-card p { color: var(--muted); line-height: 1.6; margin: 0 0 24px; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  border-top: 1px solid rgba(116, 120, 95, 0.25);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ---------- Timeline / Journey page ---------- */
.timeline-list {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  border-left: 2px solid rgba(190, 110, 60, 0.35);
  padding-left: 0;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 0 0 40px 32px;
  margin-left: -2px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--page-bg);
}

.timeline-photo {
  flex: 0 0 260px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
}

.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-photo.placeholder {
  border: 1.5px dashed var(--sage);
  background: rgba(136, 139, 108, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
  padding: 10px;
}

.timeline-photo.placeholder svg { opacity: 0.5; }

.timeline-text { flex: 1 1 0; padding-top: 4px; }

.timeline-age {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-text h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: #3d4a35;
  margin: 0 0 8px;
}

.timeline-text p {
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  font-size: 14.5px;
}

/* ---------- FAQ page ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(136, 139, 108, 0.25);
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item h2 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: #3d4a35;
  margin: 0 0 8px;
}

.faq-item p {
  color: var(--ink);
  line-height: 1.65;
  margin: 0;
  font-size: 14.5px;
}

/* ---------- Exhibition page ---------- */
.exhibition-banner {
  display: flex;
  gap: 36px;
  align-items: stretch;
  max-width: 940px;
  margin-bottom: 40px;
  border: 1.5px solid rgba(190, 110, 60, 0.35);
  border-radius: 10px;
  overflow: hidden;
}

.exhibition-photo {
  flex: 1 1 320px;
  min-height: 220px;
}

.exhibition-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exhibition-details {
  flex: 1 1 320px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exhibition-details .exhibition-date {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin: 0 0 10px;
}

.exhibition-details h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #3d4a35;
  margin: 0 0 12px;
}

.exhibition-details p {
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 8px;
  font-size: 14.5px;
}

@media (max-width: 820px) {
  .story-item { grid-template-columns: 1fr; gap: 18px; }
  .story-image, .story-photo { width: 100%; max-width: 100%; }
  .exhibition-banner { flex-direction: column; }
  .exhibition-photo { min-height: 220px; }
  .timeline-item { flex-direction: column; gap: 14px; padding-left: 24px; }
  .timeline-photo { flex-basis: auto; width: 100%; max-width: 360px; }
}

@media (max-width: 680px) {
  .exhibition-banner { flex-direction: column; }
  .exhibition-photo { min-height: 200px; }
  .timeline-item { flex-direction: column; gap: 14px; padding-left: 24px; }
  .timeline-photo { flex-basis: auto; width: 100%; max-width: 320px; }
  .layout::after { display: none; }
}

/* Hamburger button — hidden on desktop/tablet, shown on phones */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch { margin-left: auto; }

/* ---- Laptop / small desktop ---- */
@media (max-width: 1180px) {
  .site-shell { max-width: 100%; }
  .content { padding: 48px 36px; }
}

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .sidebar { width: 176px; }
  .nav-link { font-size: 14px; padding: 9px 12px; }
  .nav-link.sub { font-size: 13px; margin-left: 18px; }
  .content { padding: 40px 28px; }
  .content-home { padding-top: 90px; }
  .hero { gap: 32px; }
  .hero-text h1 { font-size: 36px; }
  .hero-image { min-height: 340px; }
  .page-heading { font-size: 26px; }
}

@media (max-width: 900px) {
  .hero { justify-content: center; }
  .hero-image { flex-basis: 320px; max-width: 420px; margin: 0 auto; }
}

/* ---- Mobile phone ---- */
@media (max-width: 680px) {
  .topbar { padding: 14px 18px; gap: 8px; }
  .logo-img { height: 36px; }
  .lang-switch a { padding: 7px 11px; font-size: 12px; }

  .menu-toggle { display: flex; }

  .layout { flex-direction: column; min-height: 0; }

  .sidebar {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .sidebar.nav-open { max-height: 600px; }

  .sidebar-inner {
    position: static;
    padding: 8px 10px 16px;
    display: flex;
    flex-direction: column;
  }

  .nav-link { margin: 2px 0; }
  .nav-link.sub { margin-left: 14px; }

  .content { padding: 32px 20px; }
  .content-home { padding-top: 36px; }

  .hero-text h1 { font-size: 30px; letter-spacing: 2px; }
  .hero-tagline { font-size: 14px; }
  .hero-intro { font-size: 15.5px; }
  .hero-intro .intro-line2 { margin-top: 32px; }
  .hero-image { min-height: 300px; max-width: 340px; }

  .page-heading { font-size: 22px; letter-spacing: 1.5px; }
  .page-subheading { font-size: 14px; margin-bottom: 26px; }

  .story-item { grid-template-columns: 1fr; padding: 22px 0; gap: 16px; }
  .story-image, .story-photo { width: 100%; max-width: 100%; }
  .story-text h2 { font-size: 18px; }

  .bio-portrait, .bio-portrait-img { width: 160px; height: 160px; }

  .donate-card { padding: 24px 20px; }
}

@media (max-width: 400px) {
  .hero-text h1 { font-size: 26px; }
  .content { padding: 26px 16px; }
  .lang-switch a { padding: 8px 12px; font-size: 12px; }
}

/* ============================================================
   Gallery layout options (for comparison — see gallery-layouts.html)
   All three keep a uniform placeholder box size regardless of the
   eventual image's real shape (object-fit: cover on real photos),
   and roughly a 2/3 image : 1/3 text split.
   ============================================================ */

.layout-demo-section { margin-bottom: 64px; }

.layout-demo-heading {
  font-family: var(--font-display);
  font-size: 20px;
  color: #3d4a35;
  margin: 0 0 4px;
}

.layout-demo-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 28px;
  max-width: 60ch;
}

/* Shared placeholder look */
.ph-image {
  border: 1.5px dashed var(--sage);
  border-radius: 6px;
  background: rgba(136, 139, 108, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

.ph-image svg { opacity: 0.5; }

/* --- Layout A: side-by-side, image ~2/3, text ~1/3 --- */
.layoutA-list { display: flex; flex-direction: column; max-width: 940px; }
.layoutA-item { display: flex; gap: 32px; align-items: stretch; padding: 34px 0; }
.layoutA-item:first-child { padding-top: 0; }
.layoutA-item .layoutA-photo {
  flex: 2 1 0;
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.layoutA-text { flex: 1 1 0; display: flex; flex-direction: column; justify-content: center; }
.layoutA-text h3 { font-family: var(--font-display); font-size: 20px; color: #3d4a35; margin: 0 0 10px; }
.layoutA-text p { color: var(--ink); line-height: 1.65; margin: 0; font-size: 14.5px; }
.layoutA-sep { border: none; border-top: 1px solid rgba(136, 139, 108, 0.32); margin: 0; }

/* --- Layout B: stacked cards, image on top (larger), text below --- */
.layoutB-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.layoutB-card {
  border: 1px solid rgba(136, 139, 108, 0.28);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.layoutB-card .ph-image { aspect-ratio: 4 / 3; border: none; border-bottom: 1.5px dashed var(--sage); border-radius: 0; }
.layoutB-text { padding: 16px 18px 20px; }
.layoutB-text h3 { font-family: var(--font-display); font-size: 17px; color: #3d4a35; margin: 0 0 6px; }
.layoutB-text p { color: var(--ink); line-height: 1.55; margin: 0; font-size: 13.5px; }

/* --- Layout C: alternating zigzag, same 2:1 ratio, sides swap --- */
.layoutC-list { display: flex; flex-direction: column; max-width: 860px; }
.layoutC-item { display: flex; gap: 28px; align-items: stretch; padding: 28px 0; }
.layoutC-item:first-child { padding-top: 0; }
.layoutC-item.reverse { flex-direction: row-reverse; }
.layoutC-item .ph-image { flex: 2 1 0; aspect-ratio: 3 / 2; }
.layoutC-text { flex: 1 1 0; display: flex; flex-direction: column; justify-content: center; }
.layoutC-text h3 { font-family: var(--font-display); font-size: 19px; color: #3d4a35; margin: 0 0 8px; }
.layoutC-text p { color: var(--ink); line-height: 1.6; margin: 0; font-size: 14px; }
.layoutC-sep { border: none; border-top: 1px solid rgba(136, 139, 108, 0.32); margin: 0; }

@media (max-width: 640px) {
  .layoutA-item, .layoutC-item, .layoutC-item.reverse { flex-direction: column; }
}
