:root {
  --bg: #f0e9d8;
  --bg-2: #e8dfca;
  --bg-3: #ddd4bb;
  --bg-card: #ffffff;
  --bg-card-hover: #faf8f4;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.18);
  --text: #0d0c0b;
  --text-soft: #3d3a35;
  --text-dim: #6b6660;
  --text-faint: #9a9590;
  --gold: #d4a843;
  --gold-bright: #e8b850;
  --gold-deep: #a8843a;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;
  --max: 1280px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #0d0c0b; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--body);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold { color: var(--gold); }

/* ============ LOGO ============ */
.nav-logo img { display: block; height: 64px; width: auto; transition: height 0.3s; }
nav.scrolled .nav-logo img { height: 50px; }
.footer-logo img { display: block; height: 80px; width: auto; }

/* ============ NAV — always dark ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: rgba(10, 10, 11, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled {
  padding: 0.85rem 2.5rem;
  background: rgba(10, 10, 11, 0.98);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-self: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: #ffffff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: #0d0c0b !important;
  padding: 0.85rem 1.5rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s;
  justify-self: end;
}
.nav-cta:hover { background: var(--gold-bright); }
.nav-cta .arr { transition: transform 0.25s; }
.nav-cta:hover .arr { transform: translateX(3px); }
.menu-tog { display: none; background: none; border: none; color: #ffffff; cursor: pointer; padding: 0.5rem; }
.menu-tog svg { width: 26px; height: 26px; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  background: var(--bg);
}
.hero-left {
  padding: 11rem 3rem 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow { margin-bottom: 2rem; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 1.75rem;
  letter-spacing: -0.035em;
  color: var(--text);
}
.hero h1 .gold { color: var(--gold); display: block; }
.hero-intro {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.75rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: #0d0c0b;
}
.btn-gold:hover { background: var(--gold-bright); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn .arr { transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(3px); }

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
/* Carousel slide — opacity transitions driven by JS */
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
/* Cream-to-transparent gradient blends photo into the light hero-left */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(240, 233, 216, 1) 0%,
    rgba(240, 233, 216, 0.55) 18%,
    rgba(240, 233, 216, 0.1) 40%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

/* ============ CAPABILITY BAR — stays dark ============ */
.capability {
  background: #0d0c0b;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem 2.5rem;
}
.cap-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.cap-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cap-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cap-icon svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cap-text {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  color: #ffffff;
}

/* ============ ABOUT ============ */
.about {
  padding: 6rem 2.5rem;
  background: var(--bg);
}
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about-text .label { display: inline-block; margin-bottom: 1.25rem; }
.about-text h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  margin-bottom: 1.75rem;
  line-height: 1;
  color: var(--text);
}
.about-text h2 .gold { color: var(--gold); }
.about-text p {
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}
.about-text .btn { margin-top: 1.5rem; }

/* Video / media container in about section */
.about-media {
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #0d0c0b;
}
.about-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-watermark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 110px;
  height: auto;
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
  filter: brightness(10);
}

/* ============ SERVICES ============ */
.services {
  padding: 4rem 2.5rem 6rem;
  background: var(--bg-2);
}
.services-head {
  max-width: var(--max);
  margin: 0 auto 3rem;
}
.services-head .label { display: inline-block; margin-bottom: 1rem; }
.services-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1;
  color: var(--text);
}
.services-head h2 .gold { color: var(--gold); }
.services-head .head-sub {
  color: var(--text-soft);
  margin-top: 1rem;
  max-width: 50ch;
  font-size: 1rem;
}

.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Service cards — white with black border */
.svc-card {
  background: var(--bg-card);
  border: 1.5px solid #0d0c0b;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.svc-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5));
}
.svc-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.svc-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
.svc-head .ico {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.svc-head .ico svg { width: 100%; height: 100%; stroke-width: 1.5; }
.svc-title {
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.svc-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}

/* CONTACT CARD */
.svc-contact {
  grid-column: span 2;
  background: var(--gold);
  color: #0d0c0b;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  border: 1.5px solid #0d0c0b;
}
.svc-contact .ct-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.65);
}
.svc-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #0d0c0b;
}

/* QUOTE FORM */
.quote-form { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.quote-form .field { display: flex; flex-direction: column; gap: 0.2rem; }
.quote-form label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10, 10, 11, 0.65); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(10, 10, 11, 0.2);
  padding: 0.55rem 0.7rem;
  color: #0d0c0b;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  width: 100%;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(10, 10, 11, 0.5);
  background: rgba(255, 255, 255, 0.4);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(10, 10, 11, 0.38); }
.quote-form select option { background: #ffffff; color: #0d0c0b; }
.quote-form textarea { resize: vertical; min-height: 64px; }
.form-submit {
  background: #0d0c0b;
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.form-submit:hover { background: #2a2a2e; }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
#formStatus { font-size: 0.82rem; color: rgba(10, 10, 11, 0.65); min-height: 1.2em; }
.form-success { text-align: center; padding: 2rem 0; }
.form-success .check { font-size: 2.5rem; color: #0d0c0b; margin-bottom: 0.75rem; }
.form-success p { color: #0d0c0b; font-size: 0.95rem; line-height: 1.5; }

/* ============ RECENT PROJECTS STRIP ============ */
.projects-strip {
  padding: 4rem 2.5rem 6rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.strip-head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.strip-head .label { display: inline-block; margin-bottom: 0.5rem; }
.strip-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
}
.strip-head h2 .gold { color: var(--gold); }

.strip-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.strip-tile {
  aspect-ratio: 5/4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #0d0c0b;
  transition: all 0.3s;
  cursor: pointer;
}
.strip-tile:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.strip-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s;
}
.strip-tile:hover::before { opacity: 1; }
.strip-cap {
  position: absolute;
  bottom: 0.85rem; left: 0.85rem; right: 0.85rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
  z-index: 1;
}
.strip-cap span { display: block; color: var(--gold); font-size: 0.7rem; font-weight: 600; margin-top: 0.2rem; letter-spacing: 0.15em; }
.strip-tile:hover .strip-cap { opacity: 1; transform: translateY(0); }

/* ============ FOOTER — stays dark ============ */
footer {
  background: #0d0c0b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.footer-tagline strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.footer-contacts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-contacts a, .footer-contacts span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s;
}
.footer-contacts a:hover { color: var(--gold); }
.footer-contacts svg { width: 16px; height: 16px; color: var(--gold); stroke-width: 1.5; flex-shrink: 0; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a { transition: color 0.25s; color: rgba(255, 255, 255, 0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .nav-links { gap: 1.5rem; }
  .cap-grid { gap: 1rem; }
  .cap-text { font-size: 0.75rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-right { min-height: 45vh; }
  /* On stacked mobile layout, blend top of photo into cream section above */
  .hero-right::before {
    background: linear-gradient(
      180deg,
      rgba(240, 233, 216, 0.7) 0%,
      rgba(240, 233, 216, 0.1) 25%,
      transparent 50%
    );
  }
  .cap-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-contact { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
  .footer-contacts { justify-content: center; }
  .nav-links { display: none; }
  .menu-tog { display: block; }
}

@media (max-width: 640px) {
  nav { padding: 0.85rem 1rem; gap: 0.75rem; }
  nav.scrolled { padding: 0.7rem 1rem; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #0d0c0b;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-cta { padding: 0.6rem 0.9rem; font-size: 0.68rem; letter-spacing: 0.08em; }
  .nav-cta .arr { display: none; }
  .nav-logo img { height: 44px; }
  nav.scrolled .nav-logo img { height: 40px; }

  .hero-left { padding: 6rem 1.25rem 2.5rem; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); line-height: 0.92; }
  .hero-intro { font-size: 0.98rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn { justify-content: center; padding: 1rem 1.25rem; }
  .hero-right { min-height: 38vh; }

  .capability { padding: 2rem 1.25rem; }
  .cap-grid { grid-template-columns: 1fr; gap: 1rem; }

  .about { padding: 4rem 1.25rem; }
  .about-text h2 { font-size: 2.25rem; }
  .about-media { aspect-ratio: 4/3; }

  .services { padding: 3rem 1.25rem 4rem; }
  .services-head h2 { font-size: 2.25rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .svc-contact { grid-column: span 1; padding: 1.75rem 1.5rem; }
  .svc-contact h3 { font-size: 1.2rem; }

  .projects-strip { padding: 3rem 1.25rem 4rem; }
  .strip-head h2 { font-size: 1.75rem; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .strip-tile { aspect-ratio: 4/3; }
  .strip-tile::before { opacity: 1; }
  .strip-cap { opacity: 1; transform: none; font-size: 0.7rem; }
  .strip-cap span { font-size: 0.62rem; }

  footer { padding: 2.5rem 1.25rem 1.25rem; }
  .footer-grid { gap: 1.5rem; padding-bottom: 1.5rem; }
  .footer-logo img { height: 70px; }
  .footer-contacts { flex-direction: column; gap: 0.75rem; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2.25rem; }
  .nav-cta { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .nav-logo img { height: 40px; }
}

/* ============ SUPPORTING PAGES ============ */
.page-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2.5rem 5rem;
}
.page-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; color: var(--text); }
.page-wrap h1 .gold { color: var(--gold); }
.page-wrap .page-intro { color: var(--text-dim); margin-bottom: 3rem; font-size: 0.9rem; }
.page-wrap h2 { font-size: 1.1rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--text); letter-spacing: 0.02em; }
.page-wrap p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.page-wrap ul { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; padding-left: 1.5rem; }
.page-wrap ul li { margin-bottom: 0.4rem; }
.page-wrap a { color: var(--gold); }
.page-wrap a:hover { text-decoration: underline; }
.page-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; }
.page-back:hover { color: var(--gold-bright); }

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found .code { font-size: clamp(5rem, 20vw, 12rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 1rem; opacity: 0.15; }
.not-found h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; color: var(--text); }
.not-found p { color: var(--text-soft); margin-bottom: 2rem; max-width: 36ch; }
