:root {
  --paper: #f5efe5;
  --paper-deep: #e8dccb;
  --ink: #1e1a16;
  --muted: #62594f;
  --line: #d2c3ae;
  --crimson: #8f2730;
  --indigo: #243d5b;
  --ochre: #b5752b;
  --sage: #758463;
  --clay: #b75b41;
  --white: #fffaf3;
  --shadow: 0 24px 70px rgba(32, 28, 24, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  z-index: 100;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 229, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 203, 185, 0.8);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
}

.logo-slot {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  letter-spacing: 0;
  margin-top: 0;
}

.logo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-logo {
  background: transparent;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 9px;
  border-radius: 999px;
  color: #37312b;
  font-size: 13px;
  font-weight: 760;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 250, 243, 0.82);
  color: var(--crimson);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  background: #15120f;
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-logo-slot {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
}

.hero-brand-lockup strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.hero-brand-lockup span:last-child {
  display: block;
  color: rgba(255, 250, 243, 0.72);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.88) 0%, rgba(21, 17, 13, 0.68) 36%, rgba(21, 17, 13, 0.14) 76%),
    url("assets/rangresha-studio-hero.png") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--paper));
  z-index: -1;
}

.hero-content {
  padding: 92px 0 104px;
  color: var(--white);
  max-width: 820px;
}

.eyebrow {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #f0c96e; }

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 7.5vw, 98px);
  max-width: 920px;
}

h2 {
  font-size: clamp(35px, 4.8vw, 62px);
}

h3 {
  font-size: 25px;
}

p { margin: 0; color: var(--muted); }
.hero p { color: rgba(255, 250, 242, 0.86); font-size: 20px; max-width: 690px; }

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(32, 28, 24, 0.14); }
.button.primary { background: var(--crimson); color: var(--white); }
.button.secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.button.ghost { background: rgba(255, 250, 242, 0.12); color: var(--white); border-color: rgba(255, 250, 242, 0.42); }
.button.disabled {
  cursor: default;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.button.disabled:hover {
  transform: none;
  box-shadow: none;
}

.section {
  padding: 104px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--white), #fbf6ee);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head p { font-size: 17px; }

.grid {
  display: grid;
  gap: 24px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 46px rgba(32, 28, 24, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover { border-color: rgba(143, 39, 48, 0.32); box-shadow: 0 22px 56px rgba(32, 28, 24, 0.09); }

.institution-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 52px;
  align-items: stretch;
}

.mentor-card {
  background:
    linear-gradient(145deg, rgba(255,250,243,0.94), rgba(245,239,229,0.98)),
    linear-gradient(120deg, rgba(143,39,48,0.09), transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  gap: 18px;
}

.founder-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.founder-photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: #211b16;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.founder-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 36%;
}

.founder-credentials {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.founder-credentials li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.founder-credentials strong {
  display: block;
  color: var(--ink);
}

.mentor-photo-slot,
.image-slot {
  min-height: 260px;
  border: 1px dashed #b8aa98;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,250,243,0.72), rgba(232,220,203,0.48)),
    repeating-linear-gradient(135deg, rgba(32,28,24,0.04) 0 1px, transparent 1px 16px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 22px;
  font-weight: 760;
}

.image-slot.tall { min-height: 390px; }
.image-slot.small { min-height: 180px; }

.replacement-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 20px;
}

.showcase-grid .gallery-item:first-child {
  grid-row: span 2;
}

.showcase-grid .gallery-item {
  margin: 0;
}

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

.event-card {
  border-top: 4px solid var(--crimson);
}

.testimonial-ready blockquote {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-ready cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 760;
  margin-top: 24px;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255,250,243,0.18);
  background: rgba(255,250,243,0.07);
  border-radius: var(--radius);
  margin-top: 34px;
}

.button.whatsapp {
  background: var(--sage);
  color: var(--white);
}

@media (prefers-reduced-motion: no-preference) {
  .card,
  .gallery-item,
  .button,
  .image-slot,
  .mentor-card {
    animation: riseIn 520ms ease both;
  }

  @keyframes riseIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

.art-panel {
  min-height: 230px;
  border-radius: var(--radius);
  border: 1px solid rgba(32, 28, 24, 0.1);
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.12), rgba(255, 250, 242, 0.88)),
    radial-gradient(circle at 18% 18%, rgba(143, 39, 48, 0.36) 0 9%, transparent 9.5%),
    linear-gradient(118deg, var(--indigo), var(--sage) 48%, var(--ochre));
  position: relative;
  overflow: hidden;
}

.art-panel::after {
  content: "";
  position: absolute;
  inset: 18px 22px;
  border: 1px solid rgba(255, 250, 242, 0.72);
  box-shadow: inset 0 0 0 18px rgba(255, 250, 242, 0.08);
}

.art-panel::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 1px;
  left: 14%;
  top: 54%;
  background: rgba(255, 250, 242, 0.48);
  transform: rotate(-13deg);
}

.course-card ul,
.feature-list,
.check-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.course-card li,
.feature-list li,
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  margin: 8px 0;
}

.course-card li::before,
.feature-list li::before,
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  position: absolute;
  left: 0;
  top: 10px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.portrait {
  background:
    linear-gradient(150deg, rgba(143,39,48,0.25), transparent 35%),
    linear-gradient(180deg, #27211b, var(--ink));
  color: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.portrait p { color: rgba(255, 250, 242, 0.78); }

.page-hero {
  padding: 94px 0 72px;
  background:
    linear-gradient(180deg, rgba(255,250,243,0.92), rgba(245,239,229,1)),
    radial-gradient(circle at 88% 18%, rgba(36,61,91,0.16), transparent 26%),
    radial-gradient(circle at 16% 0%, rgba(183,91,65,0.14), transparent 30%);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 820px;
  font-size: 19px;
  margin-top: 18px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  margin-top: 36px;
}

.stat-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat-strip div:last-child { border-right: 0; }
.stat-strip strong { display: block; font-size: 20px; }

.masonry {
  columns: 3 280px;
  column-gap: 24px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 20px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-art {
  height: var(--h, 240px);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255,250,243,0.18), rgba(255,250,243,0.78)),
    repeating-linear-gradient(90deg, rgba(255,250,243,0.24) 0 1px, transparent 1px 18px),
    linear-gradient(var(--a, 120deg), var(--crimson), var(--ochre), var(--sage), var(--indigo));
}

.artwork-img {
  width: 100%;
  display: block;
  border-radius: 6px;
  background: var(--paper-deep);
}

.artwork-img.full {
  height: auto;
}

.artwork-img.cover {
  height: var(--h, 260px);
  object-fit: cover;
  object-position: var(--pos, center);
}

.gallery-item.real-art {
  padding: 10px;
}

.gallery-item.real-art figcaption {
  padding: 0 4px 4px;
}

.artwork-credit {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  margin-top: 2px;
}

figcaption {
  color: var(--ink);
  font-weight: 760;
  margin-top: 10px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-intro {
  margin: -4px 0 2px;
  max-width: 680px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 750;
  color: #352f29;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

textarea { min-height: 132px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(159, 47, 53, 0.18);
  border-color: var(--crimson);
}

.notice {
  display: none;
  padding: 14px 16px;
  background: rgba(125, 139, 103, 0.14);
  border: 1px solid rgba(125, 139, 103, 0.38);
  border-radius: var(--radius);
  color: #334023;
  font-weight: 750;
}

.notice.show { display: block; }

.notice.error {
  background: rgba(159, 47, 53, 0.1);
  border-color: rgba(159, 47, 53, 0.32);
  color: #7c2429;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admission-whatsapp-button {
  width: fit-content;
  min-height: 54px;
  padding-inline: 24px;
  font-size: 15px;
}

.placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px dashed #b8aa98;
  background: rgba(255, 250, 242, 0.58);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(143,39,48,0.32), transparent 38%),
    linear-gradient(180deg, #221d18, #15110e);
  color: var(--white);
  padding: 74px 0;
}

.cta-band p { color: rgba(255, 250, 242, 0.78); max-width: 680px; margin-top: 14px; }

.site-footer {
  background: #17120f;
  color: var(--white);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 0.8fr;
  gap: 34px;
}

.site-footer p,
.site-footer a { color: rgba(255, 250, 242, 0.75); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 12px 0 0; }
.site-footer li { margin: 8px 0; }
.copyright { border-top: 1px solid rgba(255,250,242,0.14); margin-top: 34px; padding-top: 20px; color: rgba(255,250,242,0.62); }

.footer-note {
  margin-top: 18px;
  color: rgba(255, 250, 242, 0.58);
  font-size: 14px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-kicker span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 250, 243, 0.26);
  border-radius: 999px;
  color: rgba(255, 250, 243, 0.88);
  font-size: 13px;
  font-weight: 760;
}

.pill.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.editorial-panel {
  position: relative;
  border-left: 3px solid var(--crimson);
  padding: 10px 0 10px 24px;
}

.course-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.course-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.course-meta span {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.7);
  color: var(--muted);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 780;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: attr(data-index);
  display: block;
  color: rgba(143, 39, 48, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 18px;
}

.exam-band {
  background:
    linear-gradient(90deg, rgba(255,250,243,0.92), rgba(255,250,243,0.72)),
    linear-gradient(135deg, rgba(36,61,91,0.12), rgba(143,39,48,0.1));
  border-block: 1px solid var(--line);
}

.pathway {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.pathway li {
  counter-increment: step;
  list-style: none;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.pathway li::before {
  content: counter(step, decimal-leading-zero);
  color: var(--crimson);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
}

.branch-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.branch-card.compact {
  gap: 14px;
}

.branch-grid.compact .branch-card {
  gap: 16px;
}

.branch-address {
  color: var(--ink);
  font-style: normal;
  line-height: 1.65;
}

.branch-contact {
  color: var(--muted);
  font-weight: 760;
}

.branch-contact a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.branch-actions {
  margin-top: 8px;
  gap: 10px;
}

.branch-actions .button {
  min-height: 44px;
  padding: 10px 15px;
}

.muted-note {
  color: var(--muted);
  font-size: 15px;
}

.branch-card .placeholder {
  min-height: 160px;
  margin-top: auto;
}

.map-placeholder {
  gap: 12px;
}

.map-placeholder small {
  max-width: 260px;
  color: var(--muted);
  line-height: 1.45;
}

.map-lines {
  width: min(220px, 90%);
  display: grid;
  gap: 8px;
}

.map-lines span {
  height: 1px;
  background: rgba(98, 89, 79, 0.42);
}

.form.card {
  padding: clamp(24px, 4vw, 42px);
}

.contact-panel {
  position: sticky;
  top: 102px;
}

.admission-shell {
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 6px; }
  .grid.three, .grid.four, .section-head, .split, .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { margin-left: auto; }
  .hero { min-height: 760px; }
  .contact-panel { position: static; }
  .institution-intro, .showcase-grid, .workshop-row, .contact-cta { grid-template-columns: 1fr 1fr; }
  .founder-feature { grid-template-columns: 1fr 1fr; gap: 34px; }
  .showcase-grid .gallery-item:first-child { grid-row: span 1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand { min-width: auto; }
  .brand strong { font-size: 13px; }
  .brand .logo-slot { display: grid; flex: 0 0 44px; width: 44px; height: 44px; }
  .brand > span:not(.logo-slot) { display: block; }
  .brand > span:not(.logo-slot) > span { display: none; }
  .hero { min-height: 720px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(22, 18, 14, 0.76), rgba(22, 18, 14, 0.5)),
      url("assets/rangresha-studio-hero.png") center / cover no-repeat;
  }
  .hero-content { padding: 58px 0 84px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 23px; }
  .section { padding: 70px 0; }
  .page-hero { padding: 64px 0 48px; }
  .grid.three, .grid.two, .grid.four, .section-head, .split, .footer-grid, .form-grid, .stat-strip { grid-template-columns: 1fr; }
  .institution-intro, .showcase-grid, .workshop-row, .contact-cta, .founder-feature { grid-template-columns: 1fr; }
  .stat-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-strip div:last-child { border-bottom: 0; }
  .button { width: 100%; }
  .hero-actions .button, .actions .button { width: 100%; }
  .course-card .button { align-self: stretch; }
  .hero-kicker span { width: 100%; justify-content: center; }
  .card { padding: 22px; }
  .art-panel { min-height: 190px; }
  .hero-brand-lockup { align-items: flex-start; }
  .hero-logo-slot { width: 66px; height: 66px; flex-basis: 66px; }
  .hero-brand-lockup strong { font-size: 21px; }
  .contact-cta { padding: 22px; }
  .founder-photo-frame { aspect-ratio: 4 / 5; }
}
