:root {
  --ink: #132722;
  --muted: #64736e;
  --paper: #f4f1e8;
  --white: #fffefa;
  --green: #1c5b4b;
  --green-dark: #0f4035;
  --lime: #cadd74;
  --line: rgba(19, 39, 34, 0.14);
  --shadow: 0 28px 80px rgba(15, 64, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 36px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  min-height: 700px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 36px 110px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 span {
  color: var(--green);
}

.hero-text {
  max-width: 670px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary:hover {
  background: rgba(28, 91, 75, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  border-radius: 2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(202, 221, 116, 0.42), transparent 28%),
    linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.grid-plane {
  position: absolute;
  right: -30%;
  bottom: -33%;
  width: 140%;
  height: 85%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(380px) rotateX(58deg) rotateZ(-8deg);
}

.floating-card {
  position: absolute;
  display: flex;
  width: 230px;
  padding: 20px;
  background: rgba(255, 254, 250, 0.95);
  box-shadow: 0 18px 40px rgba(5, 30, 24, 0.25);
  flex-direction: column;
}

.floating-card strong {
  margin-top: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.floating-card small {
  color: var(--muted);
}

.card-one {
  top: 72px;
  left: 45px;
}

.card-two {
  right: 38px;
  bottom: 62px;
}

.card-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.floor-icon::before,
.floor-icon::after {
  position: absolute;
  content: "";
  inset: 11px;
  border: 2px solid var(--green);
  transform: skewY(-20deg);
}

.floor-icon::after {
  inset: 16px 8px 7px 15px;
}

.globe-icon::before,
.globe-icon::after {
  position: absolute;
  content: "";
  inset: 9px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
}

.globe-icon::after {
  inset: 9px 16px;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 36px;
}

.business {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-end;
  justify-content: space-between;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.business-card {
  position: relative;
  min-height: 510px;
  padding: 50px;
  color: var(--ink);
  background: var(--white);
}

.business-card.accent-card {
  color: var(--white);
  background: var(--green);
}

.number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.accent-card .number,
.accent-card p {
  color: rgba(255, 255, 255, 0.68);
}

.line-icon {
  width: 85px;
  height: 85px;
  margin: 38px 0 45px;
  border: 1px solid var(--line);
}

.floor-lines {
  background:
    linear-gradient(30deg, transparent 46%, var(--green) 48%, var(--green) 51%, transparent 53%),
    linear-gradient(150deg, transparent 46%, var(--green) 48%, var(--green) 51%, transparent 53%);
}

.commerce-lines {
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--lime) 48%, var(--lime) 51%, transparent 52%),
    linear-gradient(transparent 47%, var(--lime) 48%, var(--lime) 51%, transparent 52%);
}

.business-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.business-card p {
  color: var(--muted);
}

.business-card ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.business-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.accent-card li {
  border-color: rgba(255, 255, 255, 0.16);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-copy {
  padding-top: 34px;
  color: var(--muted);
  font-size: 18px;
}

.principles {
  display: flex;
  margin-top: 44px;
  gap: 12px;
  flex-wrap: wrap;
}

.principles span {
  padding: 9px 16px;
  color: var(--green);
  border: 1px solid rgba(28, 91, 75, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 750;
}

.contact {
  max-width: none;
  padding-right: max(36px, calc((100vw - 1168px) / 2));
  padding-left: max(36px, calc((100vw - 1168px) / 2));
  color: var(--white);
  background: var(--green-dark);
}

.contact .eyebrow {
  color: var(--lime);
}

.contact h2 {
  max-width: 750px;
}

.contact-links {
  display: grid;
  margin-top: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(2, 1fr);
}

.contact-links a {
  display: flex;
  padding: 30px 0;
  flex-direction: column;
  text-decoration: none;
}

.contact-links a + a {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-links small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-links strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
}

footer {
  display: flex;
  padding: 40px max(36px, calc((100vw - 1168px) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: #092f27;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

footer strong {
  color: var(--white);
}

footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  color: var(--lime);
}

.policy-page {
  background: var(--white);
}

.policy-page .site-header {
  border-bottom: 1px solid var(--line);
}

.policy-wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 90px 36px 120px;
}

.policy-intro {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.policy-intro h1 {
  margin-bottom: 20px;
}

.policy-intro > p:last-child {
  color: var(--muted);
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.policy-content section {
  padding-top: 54px;
}

.policy-content h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.policy-content p,
.policy-content li {
  color: #475852;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-content address {
  padding: 24px;
  border-left: 3px solid var(--green);
  background: var(--paper);
  font-style: normal;
}

.policy-content address a {
  color: var(--green);
}

@media (max-width: 850px) {
  nav {
    gap: 16px;
  }

  nav a:not(:last-child) {
    display: none;
  }

  .hero {
    padding-top: 55px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .business-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 25px;
  }

  .business-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .policy-wrap {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  h1 {
    font-size: 48px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 75px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .floating-card {
    width: 205px;
  }

  .card-one {
    top: 35px;
    left: 22px;
  }

  .card-two {
    right: 22px;
    bottom: 35px;
  }

  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .business-card {
    padding: 35px 28px;
  }

  .contact {
    padding-right: 22px;
    padding-left: 22px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a + a {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    gap: 26px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer-links {
    gap: 8px;
  }
}
