:root {
  --c1: #F2D9AF;
  --c2: #47221A;
  --c3: #FAC709;
  --c4: #DF7152;
  --c5: #84B19D;
  --cRed: #C00C0F;
  --bg: #FFF9EE;
  --bg-soft: #FFF5E2;
  --card: rgba(255, 249, 238, 0.78);
  --text: #111111;
  --muted: #50555C;
  --line: rgba(71, 34, 26, 0.12);
  --shadow: 0 12px 40px rgba(71, 34, 26, 0.10);
  --shadow-lg: 0 24px 64px rgba(71, 34, 26, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(250, 199, 9, 0.15), transparent 28%),
    linear-gradient(180deg, #FFF9EE 0%, #FFF5E2 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section-heading { max-width: 680px; margin-bottom: 48px; }
.eyebrow {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(223, 113, 82, 0.12);
  color: var(--c4);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 16px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--c2);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(44px, 6.5vw, 96px); max-width: 720px; margin-bottom: 18px; }
h2 { font-size: clamp(30px, 4vw, 58px); margin-bottom: 14px; }
h3 { font-size: clamp(20px, 1.8vw, 26px); margin-bottom: 10px; }
p { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 68ch; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(71, 34, 26, 0.14); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--c2); color: #fff; }
.btn-secondary { background: rgba(255,255,255,.64); border: 1px solid rgba(71,34,26,.18); backdrop-filter: blur(10px); }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(255, 249, 238, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(71,34,26,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img, .footer-brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span, .footer-brand span {
  font-weight: 800;
  font-size: 17px;
  color: var(--c2);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--c2);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--c4);
  transition: transform .22s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta {
  background: var(--c2);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity .2s ease;
}
.header-cta:hover { opacity: .85; }
.nav-toggle { display: none; border: 0; background: none; font-size: 26px; color: var(--c2); padding: 4px; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;         /* FIX: needed for absolute children */
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-size: cover;
  background-position: center center;
  transform: scale(1.08);
  will-change: transform;
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(17,17,17,.12) 0%, rgba(17,17,17,.48) 100%),
    linear-gradient(100deg, rgba(71,34,26,.58) 0%, rgba(71,34,26,.06) 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 72px;
  padding-left: 56px;
}
.hero-copy {
  max-width: 700px;
  color: #fff;
}
.hero-copy .eyebrow { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.hero-copy h1, .hero-copy p { color: #fff; }
.hero-text { max-width: 580px; font-size: 17px; opacity: .92; max-width: 100%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 36px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
}
.hero-stat {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; margin-bottom: 4px; color: #fff; }
.hero-stat span { font-size: 13px; opacity: .82; color: #fff; }

/* ── Services ────────────────────────────────────────── */
.section-services { background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,245,226,.9)); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: box-shadow .3s ease, transform .3s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(17,17,17,.72) 100%);
  z-index: 1;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 24px 26px;
  color: #fff;
}
.service-card-body h3, .service-card-body p { color: #fff; }
.service-card-tag {
  display: inline-flex;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 12px;
}
.service-details {
  margin-top: 56px;
  display: grid;
  gap: 24px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(71,34,26,.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-detail:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.service-detail:nth-child(even) .service-detail-copy { order: 2; }
.service-detail:nth-child(even) .service-detail-media { order: 1; }
.service-detail-copy { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.service-detail-media { min-height: 320px; }  /* removed overflow:hidden, border-radius — handled by parent */
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.schedule {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(132,177,157,.12);
  border-radius: 14px;
  border: 1px solid rgba(132,177,157,.22);
}
.schedule strong { color: var(--c2); display: block; margin-bottom: 10px; font-size: 14px; }
.schedule ul { margin: 0; padding-left: 18px; color: var(--muted); }
.schedule li { margin-bottom: 6px; line-height: 1.6; font-size: 15px; }

/* ── Gallery ─────────────────────────────────────────── */
.section-gallery { overflow: clip; }
.gallery-feature {
  width: 100%;
  margin: 0 0 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-block: 28px;
  padding-inline-start: 32px;
  padding-inline-end: 0;
}
.gallery-feature::-webkit-scrollbar { display: none; }
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 68vw, 860px);
  gap: 20px;
  /* RIGHT space lives here — Chrome includes grid padding in scrollable width */
  padding-inline-end: 32px;
}
.gallery-panel {
  position: relative;
  height: clamp(220px, 40vw, 520px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: box-shadow .5s ease;
}
.gallery-panel.is-active {
  box-shadow: var(--shadow-lg);
}
/* Image zoom + brightness — the enlarge effect */
.gallery-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  filter: brightness(0.72);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.gallery-panel.is-active img {
  transform: scale(1.0);
  filter: brightness(1);
}
.gallery-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,.28));
  opacity: 0;
  transition: opacity .5s ease;
}
.gallery-panel.is-active::after { opacity: 1; }

/* ── Slider wrap (positions arrows relative to the strip) ── */
.gallery-wrap { position: relative; }

/* ── Prev / Next arrows ──────────────────────────────────── */
.gallery-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(71,34,26,.12);
  background: rgba(255,249,238,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  font-size: 20px;
  color: var(--c2);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, box-shadow .2s ease, transform .22s ease;
}
.gallery-arrow--prev { left: 20px; }
.gallery-arrow--next { right: 20px; }
.gallery-arrow:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.08);
}
@media (hover: hover) {
  .gallery-arrow { display: flex; }
}

/* ── Dot indicators ──────────────────────────────────────── */
.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0 40px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(71,34,26,.18);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.gallery-dot.is-active {
  background: var(--c2);
  width: 24px;
}

.gallery-wall img, .instagram-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-wall {
  columns: 3 220px;
  gap: 6px;
}
.gallery-tile {
  break-inside: avoid;
  margin-bottom: 6px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-tile:hover { transform: translateY(-2px) !important; box-shadow: var(--shadow-lg); }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 900px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  object-fit: contain;
  display: block;
  user-select: none;
}
.lightbox-arrow {
  position: relative;
  z-index: 3;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 999px;
  width: 52px;
  height: 52px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 12px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  margin: 0;
  max-width: none;
}

/* ── Staff ───────────────────────────────────────────── */
.section-staff { background: linear-gradient(180deg, rgba(132,177,157,.06), rgba(255,255,255,.5)); }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.staff-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(71,34,26,.08);
  box-shadow: var(--shadow);
  transition: box-shadow .3s ease, transform .3s ease;
}
.staff-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.staff-photo { aspect-ratio: 4 / 5; overflow: hidden; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease; }
.staff-card:hover .staff-photo img { transform: scale(1.04); }
.staff-content { padding: 26px 28px; }
.staff-content p { font-size: 15px; line-height: 1.72; }

/* ── Instagram ───────────────────────────────────────── */
.section-instagram { background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(242,217,175,.28)); }
.instagram-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.instagram-grid .insta-item {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.instagram-grid .insta-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* ── Contact ─────────────────────────────────────────── */
.section-contact { padding-bottom: 80px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-list { display: grid; gap: 12px; margin: 28px 0 24px; }
.contact-item {
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(71,34,26,.08);
  transition: background .2s ease;
}
.contact-item:hover { background: rgba(255,255,255,.96); }
.contact-item strong { color: var(--c2); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; width: 100%; margin-bottom: 2px; }
.contact-item a { color: var(--c2); font-weight: 600; font-size: 16px; }
.social-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.social-pills a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 20px; border-radius: 999px;
  background: rgba(71,34,26,.08); color: var(--c2); font-weight: 700; font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.social-pills a:hover { background: var(--c2); color: #fff; transform: translateY(-2px); }
.contact-visual {
  aspect-ratio: 4 / 5;         /* FIX: aspect-ratio instead of min-height stretching */
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--c2);
  color: rgba(255,255,255,.85);
  padding: 32px 0 48px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 28px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand span { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-copy { margin: 0; grid-column: 1 / -1; color: rgba(255,255,255,.48); font-size: 13px; }

/* ── Reveal animations ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-up { transform: translateY(36px); }
.reveal-zoom { transform: scale(.95); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .service-card img, .btn, .hero-media, .staff-card, .gallery-tile {
    transition: none !important; transform: none !important; opacity: 1 !important;
  }
}

/* ── Tablet (≤ 1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  :root { --container: min(1160px, calc(100vw - 48px)); }
  /* service-cards stays 2-column — already the default */
  .service-detail,
  .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-copy { order: unset; }
  .service-detail:nth-child(even) .service-detail-media { order: unset; }
  .service-detail-copy { padding: 32px 36px; }
  .service-detail-media { min-height: 280px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-visual { aspect-ratio: 16 / 9; }
  .gallery-feature { padding-inline: calc((100vw - var(--container)) / 2 + 24px); }
  .gallery-track { grid-auto-columns: 82vw; }
  .site-nav { gap: 16px; }
  .hero-content { padding-left: 32px; }
}

/* ── Mobile (≤ 768px) ────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,249,238,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(71,34,26,.10);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 6px;
  }
  .site-nav.open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-links a { padding: 8px 4px; font-size: 16px; }
  .header-cta { text-align: center; padding: 12px; }
  .hero-actions { gap: 20px; }
  .hero-actions .btn { min-height: 56px; font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; max-width: 100%; margin: 0 auto; }
  .hero-content { padding-left: 16px; padding-right: 16px; }
  .section { padding: 72px 0; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 3 / 2; }
  .staff-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gallery-wall { columns: unset; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .gallery-tile { margin-bottom: 0; aspect-ratio: 1 / 1; border-radius: 12px; }
  .gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* ── Small mobile (≤ 520px) ──────────────────────────── */
@media (max-width: 520px) {
  :root { --container: min(1160px, calc(100vw - 32px)); }
  h1 { font-size: 40px; letter-spacing: -0.025em; }
  h2 { font-size: 30px; }
  .hero-content { padding-bottom: 40px; padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-actions .btn { margin: 0; min-height: 56px; font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .gallery-feature { padding-inline-start: 16px; }
  .gallery-track { gap: 10px; padding-inline-end: 16px; }
  .gallery-panel { border-radius: 20px; height: clamp(260px, 68vw, 400px); }
  .gallery-wall { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .gallery-tile { border-radius: 10px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 18px; margin: 0 6px; }
  .lightbox-img-wrap { max-width: 96vw; }
  .contact-item strong { width: 100%; }
  .contact-visual { aspect-ratio: 3 / 2; }
  .service-detail_copy { padding: 24px; }
  .staff-content { padding: 20px; }
}
