


*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #E0D4E8;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  line-height: inherit;
}
hr { height: 0; color: inherit; border-top-width: 1px; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p, figure, blockquote, dl, dd { margin: 0; }
ol, ul { list-style: none; margin: 0; padding: 0; }
menu { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: inherit; }
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button, [type="button"], [type="submit"] { -webkit-appearance: button; background-color: transparent; background-image: none; }
table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
img, svg, video, canvas { display: block; vertical-align: middle; max-width: 100%; }
img { height: auto; }
summary { display: list-item; cursor: pointer; }
[hidden] { display: none; }


body {
  font-family: 'Merriweather Sans', 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.0625rem);
  color: #2A1F36;
  background-color: #F6F1F7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: #2A1F36;
}
h1 { font-size: clamp(2.1rem, 3.4vw + 1rem, 3rem); line-height: 1.12; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.6rem, 1.8vw + 1rem, 2.1rem); line-height: 1.22; }
h3 { font-size: 1.4rem; line-height: 1.35; }
h4 { font-size: 1.125rem; line-height: 1.4; }
p { font-size: 1rem; line-height: 1.7; }
strong, b { font-weight: 700; }
em { font-style: italic; }


.page-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.page-shell__header { grid-row: 1; }
.page-shell__main {
  grid-row: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: flex-start;
}
.page-shell__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.page-shell__footer { grid-row: 3; }


.corp-band {
  flex: 1 1 100%;
  min-width: 300px;
  position: relative;
  background-size: cover;
}
.corp-band--half {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 300px;
}
.corp-band:nth-child(odd) { padding: 3rem 1rem 5rem; }
.corp-band:nth-child(even) { padding: 5rem 1rem 3rem; }

.corp-container {
  width: min(92%, 1200px);
  margin-inline: auto;
}
.corp-container--tight { width: min(92%, 860px); }

.corp-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8E3A62;
  margin-bottom: 0.75rem;
}
.corp-band__heading { max-width: 42ch; margin-bottom: 1.25rem; }
.corp-band__lead {
  max-width: 62ch;
  color: #574766;
  font-size: 1.0625rem;
}
.corp-band__content { padding-left: 10%; padding-right: 5%; }


.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #B3521A;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 15px rgba(179, 82, 26, 0.4);
  transition: box-shadow 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}
.action-button:hover {
  filter: brightness(0.92);
  box-shadow: 0 6px 25px rgba(179, 82, 26, 0.5);
  transform: translateY(-2px);
}
.action-button:focus-visible { outline: 3px solid #8E3A62; outline-offset: 3px; }
.action-button--ghost {
  background: transparent;
  color: #8E3A62;
  border: 2px solid #8E3A62;
  box-shadow: none;
}
.action-button--ghost:hover { background: #EADFF0; box-shadow: 0 6px 25px rgba(142, 58, 98, 0.22); }
.action-button--wide { width: 100%; }
.action-button--large { padding: 1.05rem 2.1rem; font-size: 1.0625rem; }

.text-link {
  color: #8E3A62;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.text-link:hover { color: #B3521A; }


.corp-divider { position: relative; height: 0; overflow: visible; }
.corp-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: #EADFF0;
  transform: skewY(-3deg);
  transform-origin: top left;
}
.corp-divider--ink::before { background: #221A2C; }


.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.corp-note { font-size: 0.875rem; color: #6B5A7A; }
.corp-badge {
  display: inline-block;
  background: #B3521A;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.corp-rule { height: 1px; background: #E0D4E8; margin: 2rem 0; border: none; }


body { padding-bottom: 96px; }


@media (max-width: 1024px) {
  .corp-container { width: min(94%, 750px); }
  .corp-band__content { padding-left: 5%; padding-right: 3%; }
  .corp-band--half { flex: 1 1 100%; }
}


@media (max-width: 768px) {
  .corp-container { width: 100%; padding-inline: 1rem; }
  .corp-band:nth-child(odd),
  .corp-band:nth-child(even) { padding: 2.25rem 1rem; }
  .corp-band__content { padding-left: 0; padding-right: 0; }
  .secondary-content { display: none; }
  .decoration { display: none; }
  .corp-divider::before { height: 56px; }
  body { padding-bottom: 84px; }
}
