@import "tailwindcss";

:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: Consolas, "Courier New", monospace;
  --ink: #153830;
  --forest: #0b5d50;
  --forest-dark: #063b33;
  --mint: #d9eee5;
  --cream: #f7f3e8;
  --sand: #e9dec5;
  --gold: #cda85d;
  --paper: #fffdf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(21, 56, 48, 0.14);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(6, 59, 51, 0.16);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: rgba(21, 56, 48, 0.65);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

nav a:not(.nav-cta):hover {
  color: var(--forest);
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--forest-dark);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 0 20px;
}

.primary-button {
  min-height: 54px;
  padding: 0 25px;
}

.nav-cta:hover,
.primary-button:hover {
  background: var(--forest);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 70px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(56px, 7vw, 102px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h1 em {
  display: block;
  color: var(--forest);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(21, 56, 48, 0.74);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 6px;
  color: var(--forest);
}

.hero-art {
  position: relative;
  min-height: 540px;
}

.hero-art::before {
  position: absolute;
  inset: 6% 0 2% 2%;
  border-radius: 46% 46% 12px 12px;
  background: linear-gradient(150deg, var(--mint), #b6d9ca);
  content: "";
}

.sun-orbit {
  position: absolute;
  top: 70px;
  right: 48px;
  width: 205px;
  height: 205px;
  border: 1px solid rgba(6, 59, 51, 0.2);
  border-radius: 50%;
}

.sun-dot {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 14px rgba(205, 168, 93, 0.16);
}

.time-card {
  position: absolute;
  z-index: 2;
  top: 172px;
  right: 54px;
  display: grid;
  width: 290px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  color: white;
  background: rgba(6, 59, 51, 0.9);
  box-shadow: 0 30px 70px rgba(6, 59, 51, 0.22);
  backdrop-filter: blur(14px);
}

.time-card span,
.time-card small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.time-card strong {
  margin: 10px 0 26px;
  font-family: Georgia, serif;
  font-size: 53px;
  font-weight: 400;
}

.arch {
  position: absolute;
  bottom: 36px;
  width: 92px;
  height: 170px;
  border: 18px solid rgba(255, 253, 247, 0.75);
  border-bottom: 0;
  border-radius: 60px 60px 0 0;
}

.arch-one {
  left: 55px;
}

.arch-two {
  left: 150px;
  height: 125px;
}

.features {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--forest-dark);
}

.section-heading {
  display: grid;
  margin-bottom: 65px;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
}

.features .eyebrow {
  color: #93cbb6;
}

.section-heading h2,
.trust-section h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-grid article {
  min-height: 285px;
  padding: 34px 34px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-grid article + article {
  padding-left: 34px;
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-number {
  color: #93cbb6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.feature-grid h3 {
  margin: 58px 0 16px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.feature-grid p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.trust-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: end;
}

.trust-links {
  display: grid;
  border-top: 1px solid rgba(21, 56, 48, 0.18);
}

.trust-links a {
  display: flex;
  padding: 25px 4px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(21, 56, 48, 0.18);
  font-weight: 700;
}

.trust-links a:hover strong {
  transform: translate(3px, -3px);
}

.trust-links strong {
  color: var(--forest);
  transition: transform 180ms ease;
}

footer {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(21, 56, 48, 0.14);
  color: rgba(21, 56, 48, 0.64);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.footer-brand {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 860px) {
  nav a:not(.nav-cta) {
    display: none;
  }

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

  .hero-copy {
    padding-bottom: 30px;
  }

  .hero-art {
    min-height: 460px;
    margin-bottom: 60px;
  }

  .section-heading,
  .trust-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero,
  .trust-section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy {
    padding-top: 55px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-art::before {
    inset: 2% 0 0;
  }

  .time-card {
    top: 116px;
    right: 22px;
    width: 250px;
  }

  .features {
    padding: 80px 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .feature-grid article + article {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .feature-grid h3 {
    margin-top: 28px;
  }

  .trust-section {
    padding: 80px 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
