:root {
  color: #1e1e1a;
  background: #666633;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #666633;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #666633;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #f2df9b;
  outline-offset: 3px;
}

.site-shell {
  width: min(800px, calc(100% - 32px));
  min-height: 100vh;
  margin: 24px auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgb(0 0 0 / 18%);
}

.site-header {
  background: #666633;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 14px 20px 12px;
  color: #fff;
  font-size: clamp(2.65rem, 8vw, 4.35rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.06em;
}

.brand-text {
  display: inline-block;
  white-space: nowrap;
}

.brand-mark {
  width: 46px;
  height: 68px;
  margin: 0 5px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #050505;
}

.site-nav a {
  min-width: 120px;
  padding: 11px 18px 12px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #dedebd;
  color: #181811;
}

.site-content {
  padding: 38px 52px 48px;
  color: #666633;
  font-size: 1rem;
  line-height: 1.62;
}

.home-copy {
  min-height: 238px;
}

.home-copy p {
  margin: 2px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.65;
}

.home-photo {
  float: right;
  width: 300px;
  height: 225px;
  margin: 0 0 20px 28px;
  object-fit: cover;
}

.about-heading {
  margin: 0 0 26px;
  text-align: center;
}

.about-heading h1 {
  margin: 0;
  color: #666633;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.about-heading p {
  margin: 12px 0 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.about-copy {
  overflow: auto;
}

.about-copy p {
  margin: 0 0 17px;
  color: #666633;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.58;
}

.about-copy p:nth-of-type(1),
.about-copy p:nth-of-type(4),
.about-copy p:nth-of-type(7),
.about-copy p:nth-of-type(10) {
  color: #57572c;
}

.about-photo {
  float: right;
  width: 153px;
  height: 213px;
  margin: 0 0 18px 28px;
  object-fit: cover;
}

.site-footer {
  padding: 24px 24px 20px;
  background: #666633;
  color: #000;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.footer-company {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  margin: 17px 0 0;
  font-size: 0.78rem;
  font-weight: 400;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 680px) {
  .site-shell {
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .site-content {
    padding: 30px 24px 36px;
  }

  .home-copy p,
  .about-copy p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .brand-lockup {
    min-height: 86px;
    padding: 11px 12px 9px;
    font-size: 2.5rem;
  }

  .brand-mark {
    width: 38px;
    height: 56px;
    margin: 0 3px;
  }

  .site-nav a {
    min-width: 50%;
    padding: 10px 10px 11px;
  }

  .site-content {
    padding: 26px 18px 30px;
  }

  .home-photo,
  .about-photo {
    float: none;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 24px;
  }

  .home-copy p {
    font-size: 0.99rem;
  }

  .about-heading {
    margin-bottom: 24px;
  }

  .about-heading h1 {
    font-size: 2rem;
  }
}