:root {
  --green: #314329;
  --green-deep: #24351f;
  --green-mid: #42583b;
  --gold: #af9654;
  --cream: #f6f4ee;
  --sage: #e9ede4;
  --ink: #263123;
  --muted: #586451;
  --white: #fff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 5px;
}

.site-header a:focus-visible,
.hero a:focus-visible,
.about a:focus-visible,
.contact a:focus-visible,
.site-footer a:focus-visible {
  outline-color: #d2b66f;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(100% - 3rem, 1220px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  z-index: 10;
  top: -100px;
  left: 1rem;
  padding: .65rem 1rem;
  background: var(--white);
  color: var(--green-deep);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid rgb(246 244 238 / 22%);
  background: var(--green);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  flex: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: .8;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.brand small {
  display: block;
  margin-top: .37rem;
  font-family: var(--font-body);
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  margin-left: auto;
  color: var(--cream);
  font-size: .95rem;
  font-weight: 600;
}

.site-nav a,
.footer-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: .3em;
}

.site-nav a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex: none;
  min-height: 43px;
  padding: .55rem .9rem;
  border: 1px solid var(--cream);
  color: var(--cream);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.header-contact:hover {
  background: var(--cream);
  color: var(--green-deep);
}

.header-contact-short {
  display: none;
}

.arrow {
  font-size: 1rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  padding-block: 4.5rem 5.5rem;
  background: var(--green);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 8vw, 8rem);
  width: clamp(280px, 32vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("assets/logo-vm.jpg") center / cover no-repeat;
  content: "";
  opacity: .8;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: min(59%, 640px);
  padding-bottom: .8rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.55rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.55rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(4rem, 5.6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.hero h1 em {
  position: relative;
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -.025em;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
}

.hero-description {
  max-width: 26rem;
  margin-bottom: 2rem;
  color: #e3e9df;
  font-size: clamp(1.12rem, 1.5vw, 1.27rem);
  line-height: 1.5;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  min-height: 54px;
  padding: .75rem 1.3rem;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.hero .eyebrow {
  color: #e4d2a1;
}

.section-pad {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.solutions {
  background: var(--sage);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  align-items: end;
  gap: 1rem 5rem;
  margin-bottom: clamp(3.2rem, 5vw, 5rem);
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: .6rem;
}

h2 {
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.section-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.section-intro > p:last-child {
  max-width: 24rem;
  margin: 0 0 .3rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(49 67 41 / 24%);
}

.solution-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) 24px;
  gap: 1.3rem;
  padding: 2.7rem 2.3rem 1rem 0;
}

.solution-item + .solution-item {
  padding-left: 2.3rem;
  border-left: 1px solid rgb(49 67 41 / 24%);
}

.solution-mark {
  width: 12px;
  height: 12px;
  margin-top: 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.solution-item h3 {
  margin-bottom: .6rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.solution-item p {
  max-width: 25rem;
  color: var(--muted);
}

.solution-arrow {
  margin-top: .35rem;
  color: var(--green);
  font-size: 1.4rem;
}

.about {
  background: var(--green-mid);
  color: var(--cream);
}

.about .eyebrow {
  color: #e4d2a1;
}

.about h2 {
  color: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2.5rem, 10vw, 9rem);
}

.about h2 {
  max-width: 11ch;
  margin: 0;
}

.about-copy {
  align-self: end;
  max-width: 32rem;
  padding-bottom: .4rem;
}

.about-copy p:first-child {
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
}

.about-copy p:nth-child(2) {
  color: #e3e9df;
}

.about .text-link {
  border-color: var(--cream);
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-weight: 700;
}

.text-link:hover {
  border-bottom-width: 2px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .83fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 10rem);
}

.content-section {
  background: var(--cream);
}

.content-intro h2 {
  max-width: 11ch;
  margin-bottom: 1.3rem;
}

.content-intro > p:not(.eyebrow) {
  max-width: 31rem;
  color: var(--muted);
}

.topic-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(49 67 41 / 24%);
  list-style: none;
}

.topic-list li {
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 1.1rem .25rem;
  border-bottom: 1px solid rgb(49 67 41 / 24%);
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.1rem);
  line-height: 1;
}

.contact {
  padding-block: clamp(5.5rem, 8vw, 8rem);
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .eyebrow {
  color: #e4d2a1;
}

.contact h2 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  color: var(--cream);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 31rem;
  color: #e3e9df;
}

.actions-center {
  justify-content: center;
  margin-top: 1rem;
}

.button-light {
  background: var(--cream);
  color: var(--green-deep);
}

.button-light:hover {
  background: var(--white);
}

.button-outline-light {
  border: 1px solid var(--cream);
  color: var(--cream);
}

.button-outline-light:hover {
  background: rgb(255 255 255 / 11%);
}

.site-footer {
  padding-block: 1.8rem;
  border-top: 1px solid rgb(255 255 255 / 20%);
  background: var(--green);
  color: var(--cream);
}

.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.footer-brand span {
  margin-left: .3rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-links {
  font-size: .9rem;
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 6vw, 5rem);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 2.5rem, 600px);
  }

  .header-inner {
    min-height: 76px;
  }

  .site-nav {
    display: none;
  }

  .header-contact-long {
    display: none;
  }

  .header-contact-short {
    display: inline;
  }

  .section-intro,
  .solution-list,
  .about-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-block: 4rem 19rem;
  }

  .hero::before {
    top: auto;
    right: 50%;
    bottom: 2rem;
    width: 240px;
    transform: translateX(50%);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.4rem, 8.8vw, 4.4rem);
  }

  .section-intro {
    gap: 1rem;
    margin-bottom: 2.4rem;
  }

  .section-intro .eyebrow {
    grid-column: auto;
  }

  .solution-item,
  .solution-item + .solution-item {
    padding: 2rem 0 1.2rem;
    border-left: 0;
  }

  .solution-item + .solution-item {
    border-top: 1px solid rgb(49 67 41 / 24%);
  }

  .about-grid,
  .content-grid {
    gap: 2rem;
  }

  .topic-list li {
    min-height: 82px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
  }
}

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

  .header-inner {
    gap: .5rem;
  }

  .brand {
    gap: .45rem;
    font-size: 1.55rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    max-width: 9.5rem;
    font-size: .5rem;
    white-space: normal;
  }

  .header-contact {
    gap: .25rem;
    padding-inline: .55rem;
    font-size: .77rem;
  }

  .hero {
    padding-top: 2.8rem;
    padding-bottom: 16rem;
  }

  .hero::before {
    bottom: 1.5rem;
    width: 210px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 11.5vw, 3.5rem);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: space-between;
  }

}

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

  .button,
  .header-contact {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
