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

:root {
  --ink:        #1a1814;
  --ink-light:  #4a453e;
  --cream:      #f5f1eb;
  --warm-white: #faf8f4;
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --rule:       #d8d0c4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s;
}
.nav-logo img { height: 56px; width: auto; }
.nav-links { display: flex; gap: 2.8rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  color: var(--ink-light);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: var(--cream); }
.nav-cta {
  font-size: 0.82rem !important;
  letter-spacing: 0.2em;
  padding: 0.55rem 1.4rem;
  background: var(--ink);
  color: var(--cream) !important;
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold); color: var(--cream) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,24,20,0.72) 0%,
    rgba(26,24,20,0.35) 55%,
    rgba(26,24,20,0.15) 100%
  );
}
/* Background word — the signature element */
.hero-bg-word {
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  font-family: var(--serif);
  font-size: clamp(10rem, 20vw, 22rem);
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 6rem;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 3rem;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.75rem 2rem;
  transition: background 0.2s, border-color 0.2s;
}
.btn-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  background: var(--gold);
  padding: 0.75rem 2rem;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); }
/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.hero-dot.active { background: var(--gold); width: 40px; }
/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.92rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-light); }
.btn-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.35rem;
  transition: color 0.2s, gap 0.2s;
}
.btn-underline:hover { color: var(--gold); gap: 1.2rem; }
.btn-underline::after { content: '→'; }
.btn-underline.light { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.btn-underline.light:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ── POSITIONING BAND ── */
.positioning {
  background: var(--ink);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: center;
}
.pos-divider { background: rgba(255,255,255,0.1); align-self: stretch; }
.pos-left { padding-right: 5rem; }
.pos-right { padding-left: 5rem; }
.pos-statement {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
  font-style: italic;
}
.pos-statement strong {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-light);
}
.pos-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.95;
  margin-bottom: 2.5rem;
}
.pos-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pos-stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pos-stat-label {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── PRACTICE AREAS ── */
.practice {
  padding: 7rem 4rem;
  background: var(--warm-white);
}
.practice-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.practice-header-right {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.9;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}
.practice-item {
  padding: 2.8rem 2.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.practice-item:nth-child(3n) { border-right: none; }
.practice-item:nth-last-child(-n+3) { border-bottom: none; }
.practice-item:hover { background: var(--cream); }
.practice-item:hover .practice-arrow { transform: translateX(6px); }
.practice-numeral {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.practice-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.practice-desc {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.practice-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  transition: transform 0.2s;
  display: inline-block;
}

/* ── SELECTED WORK ── */
.work {
  padding: 7rem 4rem;
  background: var(--cream);
}
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.work-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
  display: block;
}
.work-card:first-child {
  grid-row: 1 / 3;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, opacity 0.3s;
  opacity: 0.85;
}
.work-card:first-child img { min-height: 580px; }
.work-card:not(:first-child) img { min-height: 280px; }
.work-card:hover img { transform: scale(1.04); opacity: 0.7; }
.work-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(26,24,20,0.85) 0%, transparent 100%);
  transform: translateY(6px);
  transition: transform 0.3s;
}
.work-card:hover .work-card-info { transform: translateY(0); }
.work-card-category {
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.work-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
}
.work-card-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 8rem 4rem;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 180px;
  height: 180px;
  background: var(--gold);
  z-index: -1;
}
.about-content .section-label { margin-bottom: 1.5rem; }
.about-content .section-title { margin-bottom: 2rem; }
.about-body p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 2;
  margin-bottom: 1.5rem;
}
.about-body p:first-child {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}
.about-tagline {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

/* ── PRINCIPALS ── */
.principals {
  padding: 7rem 4rem;
  background: var(--cream);
}
.principals-header {
  text-align: center;
  margin-bottom: 5rem;
}
.principals-header .section-label { justify-content: center; }
.principals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.principal-card {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.principal-card:hover { box-shadow: 0 8px 40px rgba(26,24,20,0.1); }
.principal-photo {
  width: 240px;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
}
.principal-photo-placeholder {
  width: 240px;
  height: 320px;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink-light);
  letter-spacing: 0.1em;
}
.principal-details {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.principal-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.principal-role {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.principal-school {
  font-size: 1rem;
  color: var(--ink-light);
  border-left: 2px solid var(--gold);
  padding-left: 0.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.principal-bio {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.principal-link {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.principal-link:hover { gap: 1rem; }
.principal-link::after { content: '→'; }

/* ── ACHIEVEMENTS ── */
.achievements {
  background: var(--ink);
  padding: 5rem 4rem;
}

.achievements-header {
  text-align: center;
  margin-bottom: 4rem;
}

.achievements-header .section-label {
  justify-content: center;
}

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

.achievement-item {
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: rgba(184,150,90,0.1);
}

.achievement-item img {
  max-width: 80%;
  max-height: 120px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.achievement-item:hover img {
  opacity: 1;
}


/* ── CLIENT LOGOS ── */
.clients {
  padding: 5rem 4rem;
  background: var(--warm-white);
}
.clients-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.clients-header .section-label { justify-content: center; }
.clients-scroll-wrap { overflow: hidden; position: relative; }
.clients-scroll-wrap::before,
.clients-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.clients-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--warm-white), transparent); }
.clients-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--warm-white), transparent); }
.clients-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.client-logo:hover { opacity: 0.9; filter: none; }
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  padding: 9rem 4rem;
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: 'FD';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 40vw;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
}
.cta-band .section-label { justify-content: center; margin-bottom: 2rem; }
.cta-band .section-title {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 3.5rem;
  line-height: 1.9;
}
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; align-items: center; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand img { height: 48px; margin-bottom: 1.5rem; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,241,235,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(245,241,235,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.footer-contact-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.3);
}
.footer-contact-value {
  font-size: 0.92rem;
  color: rgba(245,241,235,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-value:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy {
  font-size: 0.92rem;
  color: rgba(245,241,235,0.25);
  letter-spacing: 0.1em;
}
.footer-descriptor {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.2);
}

/* ── FADE ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.12s; }
.fade-up-d2 { transition-delay: 0.24s; }
.fade-up-d3 { transition-delay: 0.36s; }
.fade-up-d4 { transition-delay: 0.48s; }
.fade-up-d5 { transition-delay: 0.6s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 0 1.5rem 5rem; }
  .hero-headline { font-size: 45px; }
  .hero-bg-word { display: none; }
  .positioning { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .pos-divider { display: none; }
  .pos-left { padding-right: 0; margin-bottom: 3rem; }
  .pos-right { padding-left: 0; }
  .practice, .work, .about-strip, .principals, .achievements, .clients, .cta-band { padding: 5rem 1.5rem; }
  .practice-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-item:nth-child(3n) { border-right: 1px solid var(--rule); }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-card:first-child { grid-row: auto; }
  .about-strip { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-accent { display: none; }
  .principals-grid { grid-template-columns: 1fr; }
  .principal-card { grid-template-columns: 1fr; }
  .principal-photo, .principal-photo-placeholder { width: 100%; height: 280px; }
  .achievements-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .work-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}