:root {
  --brulea-ink: #171714;
  --brulea-muted: #65645e;
  --brulea-paper: #f8f6f1;
  --brulea-white: #fff;
  --brulea-copper: #a85430;
  --brulea-line: #ded9ce;
  --brulea-shell: min(1180px, calc(100vw - 40px));
  color-scheme: light;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brulea-ink);
  background: var(--brulea-white);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.brulea-shell {
  width: var(--brulea-shell);
  margin-inline: auto;
}

.brulea-skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--brulea-white);
  background: var(--brulea-ink);
  transform: translateY(-160%);
}

.brulea-skip-link:focus {
  transform: translateY(0);
}

.brulea-site-header {
  border-bottom: 1px solid var(--brulea-line);
  background: rgba(255, 255, 255, 0.96);
}

.brulea-site-header > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brulea-brand {
  display: inline-flex;
  align-items: center;
}

.brulea-brand img {
  width: 216px;
  max-height: 58px;
  object-fit: contain;
}

.brulea-site-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.92rem;
}

.brulea-site-header nav a {
  text-decoration: none;
}

.brulea-contact-link {
  padding: 12px 18px;
  border: 1px solid var(--brulea-ink);
  border-radius: 999px;
}

.brulea-editorial-hero {
  max-width: 980px;
  padding-block: clamp(76px, 11vw, 150px) clamp(56px, 8vw, 104px);
}

.brulea-eyebrow {
  margin: 0 0 16px;
  color: var(--brulea-copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brulea-editorial-hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6.6vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.brulea-intro {
  max-width: 780px;
  margin: 34px 0 0;
  color: var(--brulea-muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.6;
}

.brulea-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--brulea-muted);
  font-size: 0.84rem;
}

.brulea-meta > * + *::before {
  content: "·";
  margin-right: 22px;
}

.brulea-hero-media {
  width: min(1380px, calc(100vw - 24px));
  margin: 0 auto clamp(72px, 9vw, 130px);
  overflow: hidden;
  border-radius: clamp(18px, 3vw, 38px);
  background: var(--brulea-paper);
}

.brulea-hero-media img {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.brulea-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(210px, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding-bottom: clamp(80px, 12vw, 160px);
}

.brulea-editorial-body > :first-child {
  margin-top: 0;
}

.brulea-editorial-body h2,
.brulea-editorial-body h3,
.brulea-editorial-body h4,
.brulea-related h2,
.brulea-references h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.brulea-editorial-body h2 {
  margin: 2.4em 0 0.72em;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.brulea-editorial-body h3 {
  margin: 2em 0 0.65em;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.brulea-editorial-body p,
.brulea-editorial-body li {
  color: #33322f;
}

.brulea-editorial-body blockquote {
  margin: 2.2em 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--brulea-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.45;
}

.brulea-editorial-body figure {
  margin: 2.8em 0;
}

.brulea-editorial-body figure img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.brulea-editorial-body figcaption {
  margin-top: 10px;
  color: var(--brulea-muted);
  font-size: 0.78rem;
}

.brulea-editorial-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.92rem;
}

.brulea-editorial-body th,
.brulea-editorial-body td {
  padding: 12px;
  border-bottom: 1px solid var(--brulea-line);
  text-align: left;
  vertical-align: top;
}

.brulea-reading-note {
  position: sticky;
  top: 28px;
  padding: 28px;
  border-top: 2px solid var(--brulea-ink);
  background: var(--brulea-paper);
}

.brulea-reading-note p:last-child {
  margin-bottom: 0;
  color: var(--brulea-muted);
  font-size: 0.9rem;
}

.brulea-advertisement {
  padding-block: clamp(44px, 7vw, 90px) clamp(82px, 11vw, 132px);
  background: #ecece7;
  border-block: 1px solid #d1d1cb;
  --ad-bg: #ff521f;
  --ad-bg-2: #ff8a00;
  --ad-ink: #ffffff;
  --ad-muted: #fff3e9;
  --ad-accent: #ffe600;
  --ad-accent-ink: #111111;
  --ad-ghost: rgba(255, 255, 255, 0.12);
  --ad-shade: rgba(54, 13, 0, 0.88);
  --ad-button: #ffe600;
  --ad-button-ink: #111111;
}

.brulea-social-ad {
  width: min(100%, 760px);
  margin-inline: auto;
  overflow: hidden;
  color: #111111;
  background: #ffffff;
  border: 3px solid #111111;
  border-radius: 22px;
  box-shadow: 12px 12px 0 #111111;
}

.brulea-advertisement-sponsor {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: #ffffff;
}

.brulea-advertiser-profile {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brulea-advertiser-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #171715;
  border-radius: 10px;
}

.brulea-advertiser-avatar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brulea-advertiser-profile > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brulea-advertiser-profile strong {
  overflow: hidden;
  font-size: 1rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brulea-advertiser-profile small {
  color: #5d5d59;
  font-size: 0.75rem;
  font-weight: 750;
}

.brulea-advertisement-label {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 12px;
  color: #111111;
  background: #ffe600;
  border: 2px solid #111111;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #111111;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brulea-advertisement-creative {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--ad-ink);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(145deg, var(--ad-bg), var(--ad-bg-2));
}

.brulea-advertisement-creative::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 62%;
  aspect-ratio: 1;
  top: 12%;
  right: -18%;
  border: clamp(34px, 7vw, 66px) solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.brulea-advertisement-creative::after {
  content: attr(data-product-name);
  position: absolute;
  z-index: 0;
  top: 13%;
  left: -0.05em;
  color: var(--ad-ghost);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(6.4rem, 18vw, 10.5rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brulea-advertisement-offer {
  position: absolute;
  z-index: 6;
  top: 24px;
  left: 24px;
  width: fit-content;
  margin: 0;
  padding: 10px 12px;
  color: var(--ad-accent-ink);
  background: var(--ad-accent);
  border: 2px solid #111111;
  border-radius: 5px;
  box-shadow: 4px 4px 0 #111111;
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  transform: rotate(-2deg);
}

.brulea-advertisement-media {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
}

.brulea-advertisement-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to bottom, transparent 44%, var(--ad-shade) 94%);
  pointer-events: none;
}

.brulea-advertisement-media img {
  position: relative;
  z-index: 1;
  width: 176%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 36px 25px rgba(17, 17, 17, 0.34));
  transform: translateY(-5%) rotate(-1deg);
}

.brulea-advertisement-media figcaption {
  position: absolute;
  z-index: 6;
  top: 24px;
  right: 24px;
  padding: 10px 12px;
  color: #ffffff;
  background: #111111;
  border: 2px solid #111111;
  border-radius: 5px;
  box-shadow: 4px 4px 0 var(--ad-accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brulea-advertisement-copy {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 84px;
  left: 28px;
  padding: 0;
}

.brulea-advertisement-kicker {
  width: fit-content;
  margin: 0 0 13px;
  padding: 7px 9px;
  color: var(--ad-accent-ink);
  background: var(--ad-accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brulea-advertisement h2 {
  max-width: 700px;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.9rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 0 4px 26px rgba(17, 17, 17, 0.36);
}

.brulea-advertisement-body {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--ad-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 850;
  line-height: 1.25;
}

.brulea-advertisement-proof {
  position: absolute;
  z-index: 6;
  right: 24px;
  bottom: 24px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #ffffff;
  background: #111111;
  border: 2px solid #111111;
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ad-accent);
  font-size: 0.75rem;
  font-weight: 900;
}

.brulea-advertisement-proof span {
  color: var(--ad-accent);
  font-weight: 950;
}

.brulea-advertisement-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 17px;
  background: #ffffff;
  border-top: 3px solid #111111;
}

.brulea-advertisement-action > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.brulea-advertisement-action strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.brulea-advertisement-action span {
  color: #706b64;
  font-size: 0.78rem;
}

.brulea-advertisement-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 18px;
  color: var(--ad-button-ink);
  background: var(--ad-button);
  border: 2px solid #111111;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #111111;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brulea-advertisement-cta:hover,
.brulea-advertisement-cta:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #111111;
}

.brulea-advertisement-disclosure {
  margin: 0;
  padding: 0 17px 15px;
  color: #77716a;
  background: #ffffff;
  font-size: 0.66rem;
  line-height: 1.5;
}

.brulea-advertisement--sand {
  --ad-bg: #ffe12b;
  --ad-bg-2: #ff9426;
  --ad-ink: #111111;
  --ad-muted: #17130e;
  --ad-accent: #ff4d1f;
  --ad-accent-ink: #ffffff;
  --ad-ghost: rgba(17, 17, 17, 0.1);
  --ad-shade: rgba(255, 221, 84, 0.94);
  --ad-button: #111111;
  --ad-button-ink: #ffffff;
}

.brulea-advertisement--steel {
  --ad-bg: #00d8cf;
  --ad-bg-2: #0675df;
  --ad-ink: #ffffff;
  --ad-muted: #e7ffff;
  --ad-accent: #ff4f9a;
  --ad-accent-ink: #111111;
  --ad-ghost: rgba(255, 255, 255, 0.13);
  --ad-shade: rgba(2, 33, 61, 0.9);
  --ad-button: #ff4f9a;
  --ad-button-ink: #111111;
}

.brulea-advertisement--forest {
  --ad-bg: #b6ff37;
  --ad-bg-2: #32cf76;
  --ad-ink: #111111;
  --ad-muted: #172216;
  --ad-accent: #111111;
  --ad-accent-ink: #ffffff;
  --ad-ghost: rgba(17, 17, 17, 0.1);
  --ad-shade: rgba(158, 241, 58, 0.93);
  --ad-button: #111111;
  --ad-button-ink: #ffffff;
}

.brulea-preview-badge {
  padding: 8px 12px;
  color: #7b331e;
  background: #f2ddd3;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.brulea-advertising-preview-intro {
  max-width: 820px;
  padding-block: clamp(72px, 10vw, 132px) clamp(44px, 7vw, 90px);
}

.brulea-advertising-preview-intro h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.brulea-advertising-preview-intro > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--brulea-muted);
  font-size: 1.15rem;
}

.brulea-advertising-preview-list .brulea-advertisement + .brulea-advertisement {
  padding-top: 0;
}

.brulea-related,
.brulea-references {
  width: var(--brulea-shell);
  margin: 0 auto;
  padding-block: clamp(64px, 9vw, 120px);
  border-top: 1px solid var(--brulea-line);
}

.brulea-related h2,
.brulea-references h2 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.brulea-related ul,
.brulea-references ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brulea-related li,
.brulea-references li {
  border-top: 1px solid var(--brulea-line);
}

.brulea-related a,
.brulea-references a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  text-decoration: none;
}

.brulea-references li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brulea-references li span {
  color: var(--brulea-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.brulea-site-footer {
  margin-top: 80px;
  padding-block: 64px;
  color: var(--brulea-white);
  background: var(--brulea-ink);
}

.brulea-site-footer > div {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.brulea-site-footer img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.brulea-site-footer p {
  max-width: 580px;
  color: #c9c6bf;
}

.brulea-site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brulea-content-card > a {
  display: grid;
  grid-template-columns: minmax(160px, 34%) minmax(0, 1fr);
  gap: 24px;
  color: inherit;
  text-decoration: none;
}

.brulea-content-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.brulea-content-card h3 {
  margin: 0.2em 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.brulea-content-card p {
  color: var(--brulea-muted);
}

@media (max-width: 820px) {
  :root {
    --brulea-shell: min(100% - 28px, 720px);
  }

  body {
    font-size: 16px;
  }

  .brulea-site-header > div {
    min-height: 76px;
  }

  .brulea-brand img {
    width: 168px;
  }

  .brulea-site-header nav a:not(.brulea-contact-link) {
    display: none;
  }

  .brulea-contact-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .brulea-editorial-layout {
    grid-template-columns: 1fr;
  }

  .brulea-reading-note {
    position: static;
  }

  .brulea-advertisement {
    padding-block: 26px 76px;
  }

  .brulea-social-ad {
    border-width: 2px;
    border-radius: 16px;
    box-shadow: 7px 7px 0 #111111;
  }

  .brulea-advertisement-sponsor {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }

  .brulea-advertiser-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .brulea-advertisement-label {
    padding: 8px 9px;
    font-size: 0.58rem;
    box-shadow: 2px 2px 0 #111111;
  }

  .brulea-advertisement-creative {
    aspect-ratio: 4 / 5;
  }

  .brulea-advertisement-copy {
    right: 18px;
    bottom: 70px;
    left: 18px;
    padding: 0;
  }

  .brulea-advertisement-offer {
    top: 16px;
    left: 16px;
    padding: 8px 9px;
    font-size: 0.58rem;
    box-shadow: 3px 3px 0 #111111;
  }

  .brulea-advertisement h2 {
    font-size: clamp(2.4rem, 11vw, 2.75rem);
  }

  .brulea-advertisement-media {
    inset: 0;
  }

  .brulea-advertisement-media img {
    width: 190%;
    transform: translateY(-7%) rotate(-1deg);
  }

  .brulea-advertisement-media figcaption {
    top: 16px;
    right: 16px;
    padding: 8px 9px;
    font-size: 0.59rem;
    box-shadow: 3px 3px 0 var(--ad-accent);
  }

  .brulea-advertisement-kicker {
    margin-bottom: 10px;
    font-size: 0.62rem;
  }

  .brulea-advertisement-body {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .brulea-advertisement-proof {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 8px 10px;
    font-size: 0.66rem;
  }

  .brulea-advertisement-action {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .brulea-advertisement-cta {
    width: 100%;
    justify-content: space-between;
  }

  .brulea-advertisement-disclosure {
    padding: 0 16px 16px;
  }

  .brulea-preview-badge {
    font-size: 0.6rem;
  }

  .brulea-site-footer > div {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
