html {
  font-size: 16px;
}

:root {
  --container-max: 1140px;
  --page-padding: 1rem;
  --text-color: #000000;
  --background-color: #ffffff;
  --surface-black: #000000;
  --surface-blush: #f6d6d0;
  --surface-peach: rgba(242, 193, 168, 0.84);
  --surface-cream: #fdfdd7;
  --accent: #f62401;
  --accent-hover: #dd2001;
  --nav-accent: #fba9ff;
  --quote-border: #f62401;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-color);
  background: var(--background-color);
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}

.container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--container-max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-black);
  color: #ffffff;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 153px;
}

.site-logo {
  flex: 0 0 auto;
  width: 282px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.site-nav__menu {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__checkbox {
  display: none;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav__link {
  display: block;
  padding: 30px 8px;
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: normal;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link[aria-current="page"] {
  color: var(--nav-accent);
}

.site-nav__toggle:focus-visible,
.site-nav__checkbox:focus-visible + .site-nav__toggle {
  outline: 2px solid var(--nav-accent);
  outline-offset: 4px;
}

.hero {
  min-height: 400px;
  background: url("images/sunbanner.png") center center / cover no-repeat;
}

.title-band {
  background: var(--surface-black);
  color: #ffffff;
}

.title-band__inner {
  display: flex;
  align-items: center;
  min-height: 113px;
  padding: 35px 0;
}

.title-band h1,
.title-band h2 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 400;
}

.band {
  padding: 30px 0;
}

.band--blush {
  background: var(--surface-blush);
}

.band--peach {
  background: var(--surface-peach);
}

.band--cream {
  background: var(--surface-cream);
}

.band--spacer {
  min-height: 62px;
  padding: 0;
}

.content-block > *:first-child {
  margin-top: 0;
}

.content-block > *:last-child {
  margin-bottom: 0;
}

.content-block p,
.content-block ul,
.content-block ol,
.content-block blockquote {
  margin: 0 0 1rem;
}

.content-block ul,
.content-block ol {
  padding-left: 1.4rem;
}

.content-block li + li {
  margin-top: 0.75rem;
}

.copy {
  font-size: 1.125rem;
}

.copy--large {
  font-size: 1.5rem;
}

.copy--center {
  text-align: center;
}

.contact-link {
  font-size: 1.875rem;
  font-weight: 700;
}

.page-note {
  font-size: 0.95rem;
  font-style: italic;
}

.press-entry {
  background: var(--surface-black);
  color: #ffffff;
}

.press-entry__inner {
  min-height: 155px;
  padding: 34px 0 36px;
}

.press-entry h2 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.2;
}

.press-entry__summary {
  margin: 12px 0 0;
  font-size: 1.125rem;
}

.article {
  background: var(--surface-blush);
  padding: 20px 0 60px;
}

.article__body > *:first-child {
  margin-top: 0;
}

.article__body > *:last-child {
  margin-bottom: 0;
}

.article__meta {
  font-style: italic;
}

.article__quote {
  margin: 1rem 0;
  padding: 0 0 0 1.25rem;
  border-left: 6px solid var(--quote-border);
  font-size: 1.125rem;
}

.article__quote p:last-child {
  margin-bottom: 0;
}

.article__callout {
  font-weight: 700;
}

.policy-grid {
  display: grid;
  gap: 0;
}

.policy-block {
  padding: 16px 0 29px;
}

.policy-block h2 {
  margin: 0 0 14px;
  font-size: 1.125rem;
  line-height: 1.4;
}

.policy-block p {
  margin: 0 0 0.75rem;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block--blush {
  background: var(--surface-blush);
}

.policy-block--peach {
  background: #f2c1a8;
}

.policy-block--cream {
  background: var(--surface-cream);
}

.policy-subpoint {
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--surface-black);
  color: #ffffff;
  text-align: center;
}

.site-footer__inner {
  min-height: 501px;
  padding: 37px 0 49px;
}

.site-footer__logo {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  object-fit: contain;
}

.site-footer__title {
  margin: 15px 0 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2;
}

.site-footer__subtitle {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.4;
}

.highlight-yellow {
  background: #ffff00;
  color: #000000;
}

.highlight-pink {
  background: #fab6ed;
  color: #000000;
}

.page-letter {
  background: var(--surface-blush);
  padding: 30px 0 60px;
}

.page-letter dl,
.page-letter dd {
  margin: 0;
}

.page-letter dd {
  padding: 0;
}

@media (max-width: 1199px) {
  .site-header__inner {
    min-height: 153px;
  }

  .site-logo {
    width: 188px;
  }

  .site-nav__link {
    font-size: 1.5rem;
  }

  .site-footer__inner {
    min-height: 634px;
  }
}

@media (max-width: 991px) {
  .site-header__inner {
    min-height: 127px;
  }

  .site-logo {
    width: 138px;
  }

  .site-nav__link {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 1rem;
  }

  .site-header__inner {
    min-height: 93px;
  }

  .site-logo {
    width: 107px;
  }

  .site-nav__link {
    font-size: 0.875rem;
  }

  .copy,
  .press-entry__summary,
  .article__quote,
  .policy-block h2 {
    font-size: 1rem;
  }

  .site-footer__inner {
    min-height: 623px;
    padding-top: 69px;
  }

  .site-footer__title {
    font-size: 1.3333333333rem;
  }

  .site-footer__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .container {
    width: min(calc(100% - 2rem), 340px);
  }

  .site-header__inner {
    min-height: 74px;
  }

  .site-logo {
    width: 112px;
  }

  .hero {
    min-height: 274px;
  }

  .title-band__inner {
    min-height: 113px;
    padding: 28px 0;
  }

  .copy--large,
  .contact-link {
    font-size: 1.1111111111rem;
  }

  .site-footer__inner {
    min-height: 625px;
  }

  .site-footer__logo {
    width: 255px;
    height: 255px;
  }

  .site-footer__title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

@media (max-width: 539px) {
  .site-nav__menu {
    width: auto;
  }

  .site-nav__toggle {
    display: inline-flex;
    min-width: 3rem;
    min-height: 3rem;
    font-size: 0;
  }

  .site-nav__toggle::before {
    content: "\2630";
    font-size: 1.75rem;
    line-height: 1;
  }

  .site-nav__panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: none;
    flex-direction: column;
    min-width: 220px;
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .site-nav__checkbox:checked + .site-nav__toggle + .site-nav__panel {
    display: flex;
  }

  .site-nav__link {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 1.25rem;
    text-align: center;
  }
}

@media (min-width: 576px) {
  .container {
    width: min(calc(100% - 2rem), 540px);
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hero {
    min-height: 176px;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 2rem), 720px);
  }

  .hero {
    min-height: 235px;
  }
}

@media (min-width: 992px) {
  .container {
    width: min(calc(100% - 2rem), 940px);
  }

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

@media (min-width: 1200px) {
  .container {
    width: min(calc(100% - 2rem), 1140px);
  }

  .hero {
    min-height: 400px;
  }
}
