```css
:root {
  --ink: #17211d;
  --muted: #5e6d66;
  --forest: #17342c;
  --forest-light: #244d40;
  --paper: #f4f1e9;
  --white: #ffffff;
  --line: rgba(23, 52, 44, 0.16);
  --shadow: 0 24px 70px rgba(18, 36, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 255, 255, 0.85),
      transparent 34rem
    ),
    var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  min-height: 168px;
  padding: 20px clamp(24px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: min(480px, 46vw);
  height: auto;
  max-height: 128px;
  object-fit: contain;
  object-position: left center;
}

.header-company {
  flex: 0 1 auto;
  margin-left: auto;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: right;
  white-space: nowrap;
}

/* MAIN */

main {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  min-height: calc(100vh - 240px);
}

/* LEFT-SIDE BUSINESS PHOTO */

.hero-photo {
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(23, 52, 44, 0.18),
      rgba(23, 52, 44, 0.38)
    ),
    #d9ded9;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

/* RIGHT-SIDE CREAM CONTENT AREA */

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(56px, 7vw, 104px)
    clamp(32px, 6vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.25rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 650px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

/* DARK-GREEN CONTACT BOX */

.contact-card {
  max-width: 650px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(145deg, var(--forest), #10271f);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.contact-card address {
  margin: 0;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
}

.contact-card address strong {
  font-size: 1.08rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-links a {
  width: fit-content;
  max-width: 100%;
  color: var(--white);
  font-weight: 650;
  line-height: 1.45;
  text-decoration-color: rgba(255, 255, 255, 0.48);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  text-decoration-color: var(--white);
}

/* FOOTER */

.site-footer {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px clamp(24px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0b1b16;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

/* TABLET */

@media (max-width: 980px) {
  .site-header {
    min-height: 138px;
    gap: 24px;
  }

  .brand img {
    width: min(380px, 48vw);
    max-height: 98px;
  }

  .header-company {
    max-width: 45%;
    font-size: clamp(1.2rem, 3.2vw, 2rem);
    white-space: normal;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo,
  .hero-photo img {
    min-height: min(62vh, 620px);
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}

/* MOBILE */

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    min-height: 104px;
    padding: 12px 18px;
  }

  .brand {
    flex: 0 1 54%;
  }

  .brand img {
    width: 100%;
    max-height: 78px;
  }

  .header-company {
    flex: 0 1 44%;
    max-width: 44%;
    margin-left: auto;
    font-size: clamp(0.88rem, 4vw, 1.15rem);
    line-height: 1.15;
    white-space: normal;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 44vh;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .hero-content {
    padding: 48px 24px 58px;
  }

  .contact-card {
    padding: 26px 24px;
  }
}

/* VERY SMALL PHONES */

@media (max-width: 375px) {
  .site-header {
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    flex-basis: 52%;
  }

  .header-company {
    flex-basis: 46%;
    max-width: 46%;
    font-size: 0.8rem;
  }
}

.header-company {
  text-decoration: none;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.header-company:hover,
.header-company:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
```
