:root {
  --bg: #f5f3ef;
  --bg-soft: #eeebe5;
  --text: #201c1a;
  --muted: #796f69;
  --line: #d8d2cb;
  --accent: #958373;
  --accent-dark: #7d6b5b;
  --white: #ffffff;
  --black: #050505;
  --shadow: 0 24px 70px rgba(32, 28, 26, .08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(149, 131, 115, .16), transparent 26%),
    radial-gradient(circle at 74% 2%, rgba(190, 181, 171, .2), transparent 22%),
    linear-gradient(rgba(32, 28, 26, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 28, 26, .018) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  z-index: -2;
  animation: ambientDrift 20s ease-in-out infinite alternate;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: min(1360px, calc(100% - 56px));
  margin: 0 auto;
}

.section {
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 1000;
}

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(216, 210, 203, .9);
  background: rgba(245, 243, 239, .78);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}

.nav {
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand-mark,
.floating-logo,
.giant-logo {
  display: inline-block;
  position: relative;
  flex: none;
  background: none;
  border-radius: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}

.brand strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.04em;
}

.brand small,
.kicker,
.eyebrow-line small,
.contact-card small,
.field label,
.footer span,
.stats small {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: .42em;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 700;
}

.nav-menu {
  justify-self: center;
  display: flex;
  gap: 42px;
  align-items: center;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .26s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--text);
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px rgba(32, 28, 26, .06);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(32, 28, 26, .12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 72px);
  padding-top: 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: center;
  gap: 28px;
  min-height: 560px;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.eyebrow-line span:nth-child(2) {
  display: block;
  width: 180px;
  height: 1px;
  background: var(--line);
}

.small-logo {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(32, 28, 26, .13);
  transform: rotate(2deg);
  animation: floatLogo 6s ease-in-out infinite;
}

.small-logo::before {
  width: 8px;
  height: 58px;
  left: 42px;
  top: 17px;
}

.small-logo::after {
  width: 58px;
  height: 8px;
  left: 17px;
  top: 42px;
}

.hero h1 {
  font-size: clamp(70px, 8.4vw, 156px);
  line-height: .82;
  letter-spacing: -.085em;
  max-width: 930px;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero p {
  max-width: 620px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.rings {
  position: absolute;
  right: -250px;
  top: 60px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(32, 28, 26, .08);
  border-radius: 50%;
  animation: spinSlow 26s linear infinite;
}

.rings::before,
.rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(32, 28, 26, .08);
  border-radius: 50%;
  inset: 60px;
}

.rings::after {
  inset: 130px;
}

.muted-logo {
  width: 210px;
  height: 210px;
  background: rgba(32, 28, 26, .12);
  border-radius: 42px;
  position: absolute;
  right: 10px;
  bottom: 80px;
  transform: rotate(11deg);
  animation: floatLogo 8s ease-in-out infinite;
}

.muted-logo::before {
  width: 14px;
  height: 126px;
  left: 98px;
  top: 42px;
  background: rgba(255,255,255,.88);
}

.muted-logo::after {
  width: 126px;
  height: 14px;
  left: 42px;
  top: 98px;
  background: rgba(255,255,255,.88);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 122px;
  transform: translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .44em;
  color: var(--accent-dark);
  text-align: center;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--line);
  margin: 16px auto 0;
  animation: bounceDown 1.6s ease-in-out infinite;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 86px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(245, 243, 239, .8);
}

.marquee-track {
  display: flex;
  gap: 44px;
  min-width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-size: clamp(24px, 2.2vw, 38px);
  color: rgba(32, 28, 26, .24);
  font-weight: 900;
  letter-spacing: -.04em;
}

.marquee b {
  color: rgba(149, 131, 115, .38);
  font-size: 34px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.services {
  padding: 80px 0 100px;
}

.section-heading {
  margin-bottom: 36px;
}

.kicker {
  display: block;
  margin-bottom: 18px;
}

.section-heading h2,
.approach-copy h2,
.faq h2,
.contact-info h2 {
  font-size: clamp(42px, 4.2vw, 76px);
  line-height: .95;
  letter-spacing: -.065em;
  max-width: 760px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  position: relative;
  overflow: hidden;
  background: rgba(245, 243, 239, .62);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:nth-child(n+4) {
  border-bottom: none;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(149, 131, 115, .22), transparent 46%);
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover::before,
.service-card.featured::before {
  opacity: 1;
}

.service-card:hover,
.service-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(32, 28, 26, .08);
}

.service-card small {
  font-family: ui-monospace, monospace;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 28px;
}

.service-icon {
  font-size: 38px;
  color: var(--accent-dark);
  margin-bottom: 34px;
  display: block;
  line-height: 1;
}

.service-card h3 {
  font-size: 26px;
  letter-spacing: -.04em;
  margin-bottom: 14px;
  position: relative;
}

.service-card p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 420px;
  position: relative;
}

.service-arrow {
  position: absolute;
  top: 38px;
  right: 38px;
  color: var(--accent-dark);
  font-size: 26px;
}

.approach {
  padding: 90px 0 110px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 630px;
  gap: 70px;
  align-items: center;
}

.approach-copy p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  max-width: 650px;
  margin-top: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 620px;
  gap: 30px;
  margin-top: 55px;
}

.stats strong {
  display: block;
  color: var(--accent);
  font-size: clamp(38px, 4vw, 56px);
  line-height: .9;
  letter-spacing: -.06em;
}

.stats small {
  display: block;
  margin-top: 12px;
}

.grid-box {
  min-height: 620px;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  overflow: hidden;
}

.circle-line {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(32, 28, 26, .12);
  border-radius: 50%;
}

.black-logo {
  width: 320px;
  height: 320px;
  border-radius: 58px;
}

.black-logo::before {
  width: 18px;
  height: 198px;
  left: 151px;
  top: 61px;
}

.black-logo::after {
  width: 198px;
  height: 18px;
  left: 61px;
  top: 151px;
}

.process {
  padding: 90px 0 110px;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-row {
  display: grid;
  grid-template-columns: 120px minmax(220px, 360px) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 135px;
  border-bottom: 1px solid var(--line);
}

.process-row span {
  color: rgba(32, 28, 26, .13);
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -.07em;
}

.process-row h3 {
  font-size: 30px;
  letter-spacing: -.045em;
}

.process-row p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.faq {
  padding: 78px 0 92px;
}

.faq-wrap {
  max-width: 920px;
}

.faq h2 {
  margin-bottom: 60px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 86px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-item button span {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.faq-item button b {
  color: var(--accent-dark);
  font-size: 30px;
  font-weight: 400;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.faq-content p {
  overflow: hidden;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  max-width: 760px;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
  padding-bottom: 30px;
}

.contact {
  padding: 90px 0 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 630px;
  gap: 70px;
}

.contact-info p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.48;
  max-width: 600px;
  margin: 30px 0 56px;
}

.contact-card {
  min-height: 94px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 26px;
  margin-bottom: 14px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
  background: rgba(149, 131, 115, .08);
  transform: translateX(4px);
  box-shadow: 0 14px 30px rgba(32, 28, 26, .06);
}

.contact-card small {
  grid-column: 1 / 2;
}

.contact-card strong {
  grid-column: 1 / 2;
  font-size: 20px;
}

.contact-card span {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  align-self: center;
  color: var(--accent-dark);
  font-size: 24px;
}

.contact-form {
  border: 1px solid var(--line);
  padding: 42px;
  background: rgba(245, 243, 239, .7);
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  margin-bottom: 12px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  min-height: 60px;
  background: transparent;
  padding: 0 18px;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
  padding-top: 18px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.35);
}

::placeholder {
  color: rgba(121, 111, 105, .62);
}

.full-btn {
  width: 100%;
  min-height: 60px;
  border: none;
  cursor: pointer;
}

.form-status {
  margin-top: 16px;
  min-height: 24px;
  color: var(--muted);
}

.footer {
  padding: 58px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer span {
  justify-self: center;
}

.footer p {
  justify-self: end;
  color: var(--muted);
}

@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 1.5%, 0) scale(1.02); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: .8; }
  50% { transform: translateY(8px); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible h1,
.reveal.visible h2,
.reveal.visible h3,
.reveal.visible p,
.reveal.visible .eyebrow-line,
.reveal.visible .hero-actions,
.reveal.visible .stats,
.reveal.visible .contact-card,
.reveal.visible .field {
  animation: fadeUp .75s cubic-bezier(.2,.8,.2,1) both;
}

.reveal.visible .stats { animation-delay: .08s; }
.reveal.visible .contact-card { animation-delay: .1s; }
.reveal.visible .field { animation-delay: .12s; }

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

@media (max-width: 1100px) {
  .container {
    width: min(100% - 36px, 940px);
  }

  .nav {
    grid-template-columns: auto auto;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 84px;
    background: rgba(245, 243, 239, .96);
    border: 1px solid var(--line);
    padding: 24px;
    display: grid;
    gap: 18px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 330px;
  }

  .rings {
    right: -190px;
    top: -30px;
    width: 520px;
    height: 520px;
  }

  .muted-logo {
    right: 60px;
    bottom: 30px;
  }

  .scroll-hint {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:nth-child(n+4) {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(n+5) {
    border-bottom: none;
  }

  .process-row {
    grid-template-columns: 90px 1fr;
  }

  .process-row p {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer span,
  .footer p,
  .footer-brand {
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .brand small {
    display: none;
  }

  .nav {
    height: 64px;
  }

  .hero {
    padding-top: 48px;
  }

  .eyebrow-line {
    gap: 12px;
    margin-bottom: 28px;
  }

  .eyebrow-line span:nth-child(2) {
    width: 70px;
  }

  .small-logo {
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }

  .small-logo::before {
    height: 40px;
    left: 29px;
    top: 12px;
    width: 6px;
  }

  .small-logo::after {
    width: 40px;
    top: 29px;
    left: 12px;
    height: 6px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 90px);
  }

  .hero p,
  .approach-copy p,
  .contact-info p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services,
  .approach,
  .process,
  .faq,
  .contact {
    padding: 78px 0 92px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n),
  .service-card:nth-child(n+5) {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-card {
    padding: 30px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .grid-box {
    min-height: 380px;
  }

  .circle-line {
    width: 300px;
    height: 300px;
  }

  .black-logo {
    width: 210px;
    height: 210px;
    border-radius: 42px;
  }

  .black-logo::before {
    width: 14px;
    height: 128px;
    left: 98px;
    top: 41px;
  }

  .black-logo::after {
    width: 128px;
    height: 14px;
    left: 41px;
    top: 98px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .process-row p {
    grid-column: 1;
  }

  .faq-item button span {
    font-size: 21px;
  }

  .contact-form {
    padding: 24px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-status {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status.success {
  color: #2f7d4f;
}

.form-status.error {
  color: #b23b3b;
}

.full-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* FINAL OVERRIDE: force image-only logos everywhere */
.brand-mark,
.floating-logo,
.giant-logo,
.muted-logo,
.black-logo {
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
  border-radius: 0 !important;
}

.brand-mark img { width: 30px !important; height: 30px !important; }
.small-logo img { width: 92px !important; height: 92px !important; border-radius: 12px !important; }
.muted-logo img,
.giant-logo img { width: 210px !important; height: 210px !important; }
.black-logo img { width: 320px !important; height: 320px !important; }

.brand-mark::before,
.brand-mark::after,
.floating-logo::before,
.floating-logo::after,
.giant-logo::before,
.giant-logo::after,
.muted-logo::before,
.muted-logo::after,
.black-logo::before,
.black-logo::after {
  display: none !important;
  content: none !important;
}

/* Inline SVG logo styling: use inline SVG elements inside the logo containers */
.brand-mark,
.floating-logo,
.giant-logo,
.muted-logo,
.black-logo {
  background: none;
  display: inline-block;
  line-height: 0;
}

/* Hide decorative pseudo-elements used by the old CSS logo */
.brand-mark::before,
.brand-mark::after,
.floating-logo::before,
.floating-logo::after,
.giant-logo::before,
.giant-logo::after,
.muted-logo::before,
.muted-logo::after,
.black-logo::before,
.black-logo::after {
  display: none !important;
}

/* SVG sizing for each logo instance */
.logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.brand-mark img { width: 30px; height: 30px; }
.small-logo img { width: 92px; height: 92px; border-radius: 20px; }
.muted-logo img { width: 210px; height: 210px; }
.giant-logo img { width: 210px; height: 210px; }
.black-logo img { width: 320px; height: 320px; }

/* Clean display for the provided PNG logo: remove CSS-drawn backgrounds, shadows and rotations */
.brand-mark,
.floating-logo,
.giant-logo,
.muted-logo,
.black-logo {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Hide any decorative pseudo-elements left from previous CSS */
.brand-mark::before,
.brand-mark::after,
.floating-logo::before,
.floating-logo::after,
.giant-logo::before,
.giant-logo::after,
.muted-logo::before,
.muted-logo::after,
.black-logo::before,
.black-logo::after {
  display: none !important;
  content: none !important;
}

/* Keep positioning but let the image visual define the corner radius if needed */
.small-logo { width: 92px; height: 92px; }
.muted-logo { width: 210px; height: 210px; position: absolute; right: 10px; bottom: 80px; }
.black-logo { width: 320px; height: 320px; }

/* Adjustments for rotation and placement that matched the original design */
.small-logo { transform: rotate(2deg); box-shadow: 0 18px 40px rgba(32, 28, 26, .13); }
.muted-logo { transform: rotate(11deg); position: absolute; right: 10px; bottom: 80px; }
.black-logo { border-radius: 58px; }

