/* ============================================================
   VARIANT 03 — KITCHEN NOTES
   Personal cookbook on warm paper. Handwritten margin notes.
   Libre Caslon Text (body) + Caveat (handwritten accents)
   LIGHT variant. Intimate, approachable, warm.
   ============================================================ */

:root {
  --paper: #f8f2e4;
  --paper-warm: #f1e8d3;
  --paper-shadow: #e8dcc0;
  --ink: #2b1810;
  --ink-soft: #4a3323;
  --ink-faint: #7a6a56;
  --persimmon: #d44a1b;
  --persimmon-deep: #a83815;
  --ribbon: #8c6930;
  --rule: #c7b68f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(232, 220, 192, 0.55), transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0 0.05 0 0 0 0.09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.handwritten {
  font-family: "Caveat", cursive;
  font-weight: 500;
  color: var(--persimmon);
}
.handwritten.inline {
  display: inline-block;
  font-size: 19px;
  color: var(--persimmon-deep);
  transform: rotate(-1.5deg);
  margin-left: 6px;
}

/* ---------- Top nav ---------- */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 36px;
  background: rgba(248, 242, 228, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px dashed var(--rule);
  font-family: "Libre Caslon Text", serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.top-nav a { color: var(--ink); text-decoration: none; transition: color 0.3s; }
.top-nav a:hover { color: var(--persimmon); }
.top-nav .variant-label {
  font-family: "Caveat", cursive;
  font-size: 20px;
  color: var(--persimmon);
  font-weight: 500;
  transform: rotate(-1deg);
}
.top-nav .cta {
  padding: 6px 16px;
  border: 1px solid var(--persimmon);
  color: var(--persimmon);
  font-style: italic;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.top-nav .cta:hover { background: var(--persimmon); color: var(--paper); }

/* ---------- Hero / paper card ---------- */
.hero {
  padding: 120px 48px 80px;
  position: relative;
}
.paper-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
  background: var(--paper);
  padding: 56px;
  box-shadow: 0 40px 80px rgba(74, 51, 35, 0.12), 0 2px 0 rgba(74, 51, 35, 0.03);
  position: relative;
  border: 1px solid rgba(199, 182, 143, 0.6);
}
.paper-hero::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 74px;
  width: 1px;
  background: rgba(212, 74, 27, 0.35);
}

.taped-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transform: rotate(-1.2deg);
  background: white;
  padding: 12px 12px 40px;
}
.taped-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}
.tape {
  position: absolute;
  width: 80px;
  height: 22px;
  background: rgba(212, 175, 120, 0.45);
  border: 1px solid rgba(212, 175, 120, 0.6);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.tape-tl { top: -8px; left: 20px; transform: rotate(-12deg); }
.tape-br { bottom: 14px; right: 16px; transform: rotate(-8deg); }

.hero-text { padding-left: 20px; }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--rule);
  margin-bottom: 28px;
}
.card-label {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.recipe-serves {
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: var(--persimmon);
  font-weight: 600;
}
.recipe-serves em {
  font-style: normal;
}

h1 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--persimmon-deep);
}
.amp {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  color: var(--persimmon);
  font-weight: 400;
}

.hero-sub {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.quote-block {
  position: relative;
  padding: 20px 24px 20px 44px;
  background: rgba(232, 220, 192, 0.4);
  border-left: 3px solid var(--persimmon);
  margin-bottom: 28px;
}
.open-q {
  position: absolute;
  top: -14px;
  left: 12px;
  font-family: "Libre Caslon Text", serif;
  font-size: 80px;
  line-height: 1;
  color: var(--persimmon);
  opacity: 0.5;
}
.quote-block p {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
}
.signed {
  font-size: 28px;
  transform: rotate(-1deg);
  display: inline-block;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Libre Caslon Text", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-style: italic;
}

.margin-note {
  position: absolute;
  top: 200px;
  right: 80px;
  font-size: 22px;
  max-width: 180px;
  transform: rotate(3deg);
  pointer-events: none;
}
.note-hero { display: none; }
@media (min-width: 1400px) { .note-hero { display: block; } }

/* ---------- Ingredients / Philosophy ---------- */
.ingredients {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.ing-card {
  background: var(--paper-warm);
  padding: 44px 40px;
  border: 1px solid rgba(199, 182, 143, 0.5);
  box-shadow: 0 24px 48px rgba(74, 51, 35, 0.08);
  transform: rotate(-0.4deg);
}
.ing-header {
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.ing-card h2 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 34px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.ing-header .handwritten {
  font-size: 20px;
  color: var(--persimmon);
}
.ing-list {
  list-style: none;
  font-family: "Libre Caslon Text", serif;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.ing-list li {
  padding-left: 2em;
  text-indent: -2em;
  margin-bottom: 6px;
}
.ing-list li::before {
  content: "·";
  display: inline-block;
  width: 1em;
  color: var(--persimmon);
  font-weight: bold;
}
.qty {
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: var(--persimmon-deep);
  font-weight: 600;
  display: inline-block;
  min-width: 50px;
}

.method h3 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.method h3::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--persimmon);
  margin-top: 6px;
}
.method p {
  font-family: "Libre Caslon Text", serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.method p strong { color: var(--ink); }
.method p em { font-style: italic; color: var(--persimmon-deep); }

/* ---------- Shared section head ---------- */
.section-head {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 48px;
}
.section-head h2 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, 5vw, 68px);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.head-note {
  font-size: 24px;
  transform: rotate(-1deg);
  display: inline-block;
}

/* ---------- Recipes / Services ---------- */
.recipes {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(232, 220, 192, 0.3));
}
.recipe-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.recipe-card {
  background: var(--paper);
  padding: 36px 36px 48px;
  border: 1px solid rgba(199, 182, 143, 0.6);
  box-shadow: 0 16px 36px rgba(74, 51, 35, 0.08);
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.recipe-card:nth-child(odd) { transform: rotate(-0.5deg); }
.recipe-card:nth-child(even) { transform: rotate(0.4deg); }
.recipe-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 24px 48px rgba(74, 51, 35, 0.15);
}

.recipe-meta {
  display: flex;
  justify-content: space-between;
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--rule);
}
.recipe-meta .num { color: var(--persimmon); font-weight: bold; }

.recipe-card h3 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.recipe-card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}
.recipe-note {
  font-size: 20px;
  transform: rotate(-1deg);
  display: inline-block;
  color: var(--persimmon);
}

/* ---------- History ---------- */
.history {
  padding: 100px 0;
}
.history-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.hist-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px dashed var(--rule);
}
.hist-entry:last-child { border-bottom: none; }
.hist-years {
  font-family: "Caveat", cursive;
  font-size: 26px;
  color: var(--persimmon-deep);
  font-weight: 600;
  padding-top: 6px;
  transform: rotate(-1deg);
}
.hist-body h3 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.where {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--persimmon);
  margin-bottom: 12px;
}
.stars { color: var(--persimmon); letter-spacing: 0.2em; font-style: normal; }
.hist-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- Gallery ---------- */
.gallery-section {
  padding: 100px 0;
  background: rgba(232, 220, 192, 0.2);
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
}

.gallery-intro {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 48px;
}

.gallery-main-title {
  font-family: "Libre Caslon Text", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.gallery-sub {
  font-size: 26px;
  transform: rotate(-1deg);
  display: inline-block;
}

.gallery-chapter {
  margin-bottom: 80px;
  padding: 0 48px;
}

.chapter-label {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 48px;
}

.chapter-title {
  font-size: 36px;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

.chapter-rule {
  flex: 1;
  height: 1px;
  border-top: 1px dashed var(--rule);
}

.polaroid-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.polaroid-grid--centered {
  justify-content: center;
}

.polaroid {
  flex: 0 0 auto;
  width: 200px;
  background: white;
  padding: 10px 10px 44px;
  box-shadow: 0 18px 32px rgba(74, 51, 35, 0.22);
  transform: rotate(var(--tilt));
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  position: relative;
}

.polaroid.pol-lg {
  width: 260px;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 5;
  box-shadow: 0 28px 56px rgba(74, 51, 35, 0.32);
}

.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.9);
  display: block;
}

.polaroid.pol-lg img {
  height: 280px;
}

.polaroid figcaption {
  font-family: "Caveat", cursive;
  font-size: 20px;
  color: var(--ink);
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- Contact ---------- */
.contact {
  padding: 120px 48px;
}
.contact-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  padding: 64px 56px;
  border: 1px solid rgba(199, 182, 143, 0.6);
  box-shadow: 0 40px 80px rgba(74, 51, 35, 0.15);
  text-align: center;
  position: relative;
}
.contact h2 {
  font-family: "Libre Caslon Text", serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.contact-lede {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact-lede strong { color: var(--persimmon-deep); }

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
  margin-bottom: 28px;
}
.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Libre Caslon Text", serif;
}
.lbl {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.row a, .row span {
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
}
.row a:hover { color: var(--persimmon); }

.closing {
  font-size: 26px;
  color: var(--persimmon-deep);
  transform: rotate(-0.8deg);
  display: inline-block;
}

/* ---------- Footer ---------- */
.foot {
  padding: 32px 48px;
  text-align: center;
  font-family: "Libre Caslon Text", serif;
  font-size: 14px;
  color: var(--ink-faint);
  border-top: 1px dashed var(--rule);
}
.foot .handwritten { font-size: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .top-nav { padding: 14px 20px; font-size: 12px; }
  .top-nav .variant-label { display: none; }
  .hero { padding: 100px 20px 60px; }
  .paper-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 28px;
  }
  .paper-hero::before { display: none; }
  .hero-text { padding-left: 0; }
  .ingredients { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .ing-card { padding: 32px 24px; }
  .section-head { padding: 0 24px; }
  .recipe-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .history-list { padding: 0 24px; }
  .hist-entry { grid-template-columns: 1fr; gap: 8px; }
  .gallery-section { padding: 60px 0; }
  .gallery-intro { padding: 0 24px; margin-bottom: 52px; }
  .gallery-chapter { padding: 0 16px; margin-bottom: 52px; }
  .chapter-title { font-size: 28px; }
  .polaroid-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .polaroid { width: 260px; transform: rotate(var(--tilt)); }
  .polaroid.pol-lg { width: 280px; }
  .polaroid img { height: 240px; }
  .polaroid.pol-lg img { height: 260px; }
  .contact { padding: 80px 20px; }
  .contact-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .polaroid, .polaroid.pol-lg { width: 90vw; }
  .polaroid img, .polaroid.pol-lg img { height: 56vw; }
}

/* ============================================================
   @media print — PDF resume stylesheet
   ============================================================ */
@media print {
  @page { margin: 0.5in; size: letter; }

  body {
    background: white !important;
    background-image: none !important;
    color: #2b1810 !important;
    font-size: 10.5pt;
    line-height: 1.4;
  }

  .top-nav, .taped-photo, .tape, .gallery-section, .foot, .margin-note, .closing { display: none !important; }
  .handwritten { color: #d44a1b !important; }

  /* Hero */
  .hero { padding: 0 !important; }
  .paper-hero {
    display: block !important;
    background: white !important;
    padding: 0 0 8pt !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1pt solid #d44a1b !important;
    transform: none !important;
  }
  .paper-hero::before { display: none; }
  .hero-text { padding: 0; }
  .card-header { padding-bottom: 4pt; margin-bottom: 4pt; border-color: #ccc !important; }
  .card-label { color: #7a6a56 !important; font-size: 8pt !important; }
  .recipe-serves { display: none; }
  h1 { font-size: 32pt !important; color: #2b1810 !important; line-height: 1 !important; margin-bottom: 3pt !important; }
  h1 em { color: #a83815 !important; }
  .amp { color: #d44a1b !important; }
  .hero-sub { color: #333 !important; font-size: 10pt !important; margin-bottom: 5pt !important; }
  .quote-block {
    background: white !important;
    border-left: 2pt solid #d44a1b !important;
    padding: 3pt 0 3pt 8pt !important;
    margin-bottom: 6pt !important;
  }
  .open-q { display: none; }
  .quote-block p { color: #2b1810 !important; font-size: 10pt !important; margin-bottom: 2pt !important; }
  .signed { color: #d44a1b !important; font-size: 12pt !important; }
  .hero-tags { color: #7a6a56 !important; font-size: 8pt !important; }

  /* Ingredients / method */
  .ingredients { display: block !important; padding: 6pt 0 !important; max-width: none; }
  .ing-card { background: white !important; border: none !important; padding: 0 !important; box-shadow: none !important; transform: none !important; margin-bottom: 6pt; }
  .ing-card h2 { font-size: 14pt !important; color: #2b1810 !important; }
  .ing-header { padding-bottom: 2pt; margin-bottom: 4pt; border-color: #ccc !important; }
  .ing-header .handwritten { font-size: 11pt !important; }
  .ing-list { font-size: 9.5pt !important; line-height: 1.5; }
  .ing-list li { margin-bottom: 1pt; color: #333 !important; }
  .qty { color: #a83815 !important; font-size: 11pt !important; min-width: 40pt !important; }

  .method h3 { font-size: 13pt !important; color: #2b1810 !important; margin-bottom: 4pt !important; }
  .method h3::after { background: #d44a1b !important; }
  .method p { color: #333 !important; font-size: 10pt !important; margin-bottom: 4pt !important; }
  .method p em { color: #a83815 !important; }

  /* Section heads */
  .section-head { text-align: left !important; padding: 0 !important; margin-bottom: 6pt !important; }
  .section-head h2 {
    font-size: 14pt !important;
    color: #2b1810 !important;
    border-bottom: 0.5pt solid #d44a1b;
    padding-bottom: 2pt;
  }
  .head-note { display: none; }

  /* Recipes */
  .recipes { padding: 6pt 0 !important; background: white !important; }
  .recipe-grid { grid-template-columns: 1fr 1fr !important; padding: 0 !important; gap: 8pt !important; }
  .recipe-card {
    background: white !important;
    border: 0.5pt solid #ddd !important;
    padding: 6pt 8pt !important;
    box-shadow: none !important;
    transform: none !important;
    page-break-inside: avoid;
  }
  .recipe-meta { font-size: 8pt !important; padding-bottom: 2pt; margin-bottom: 2pt; border-color: #ccc !important; }
  .recipe-meta .num { color: #d44a1b !important; }
  .recipe-card h3 { font-size: 11pt !important; color: #2b1810 !important; margin-bottom: 2pt !important; }
  .recipe-card p { font-size: 9pt !important; color: #333 !important; margin-bottom: 0 !important; }
  .recipe-note { display: none; }

  /* History */
  .history { padding: 6pt 0 !important; }
  .history-list { padding: 0 !important; max-width: none; }
  .hist-entry { grid-template-columns: 80pt 1fr !important; gap: 10pt !important; padding: 4pt 0 !important; border-color: #ddd !important; page-break-inside: avoid; }
  .hist-years { font-size: 11pt !important; padding-top: 1pt !important; transform: none; }
  .hist-body h3 { font-size: 11pt !important; color: #2b1810 !important; }
  .where { color: #d44a1b !important; font-size: 9pt !important; margin-bottom: 2pt !important; }
  .hist-body p { font-size: 9pt !important; color: #333 !important; }

  /* Contact */
  .contact { padding: 6pt 0 !important; page-break-before: avoid; }
  .contact-card {
    background: white !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    text-align: left;
    max-width: none;
  }
  .contact h2 { font-size: 14pt !important; color: #2b1810 !important; margin-bottom: 4pt !important; border-bottom: 0.5pt solid #d44a1b; padding-bottom: 2pt; }
  .contact-lede { font-size: 10pt !important; color: #333 !important; margin-bottom: 4pt !important; }
  .contact-lede strong { color: #a83815 !important; }
  .contact-rows { padding: 3pt 0 !important; border-color: #ddd !important; margin-bottom: 0 !important; gap: 2pt !important; }
  .row { font-size: 9pt; }
  .lbl { color: #7a6a56 !important; font-size: 8pt !important; }
  .row a, .row span { font-size: 10pt !important; color: #2b1810 !important; }
}
