:root {
  --ink: #14362c;
  --ink-muted: #5e6f65;
  --paper: #f4f0e6;
  --cream: #fbf8f0;
  --lime: #d9e7a7;
  --orange: #f16b3a;
  --line: rgba(20, 54, 44, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 30px clamp(24px, 5vw, 78px) 24px;
  display: flex;
  flex-direction: column;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: radial-gradient(rgba(20, 54, 44, 0.08) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  opacity: 0.28;
  pointer-events: none;
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.ambient--one {
  width: 42vw;
  height: 42vw;
  top: -30vw;
  left: 7vw;
  background: rgba(217, 231, 167, 0.48);
}

.ambient--two {
  width: 30vw;
  height: 30vw;
  right: -20vw;
  bottom: -11vw;
  background: rgba(241, 107, 58, 0.12);
}

.site-header,
.site-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 10px;
}

.brand:focus-visible,
.contact-panel__item:focus-visible {
  outline: 3px solid rgba(241, 107, 58, 0.55);
  outline-offset: 4px;
}

.brand-mark {
  position: relative;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-mark__letter {
  font-size: 22px;
  line-height: 1;
  transform: translateX(-1px);
}

.brand-mark__dot {
  position: absolute;
  width: 7px;
  height: 7px;
  right: -2px;
  top: 7px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--paper);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-name strong {
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}

.site-address {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero {
  width: 100%;
  max-width: 1420px;
  margin: auto;
  padding: clamp(34px, 5vh, 64px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 6.6vw, 104px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h1 em {
  display: block;
  margin-left: clamp(28px, 6vw, 92px);
  color: var(--orange);
  font-weight: 400;
}

.intro {
  max-width: 610px;
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.75vw, 27px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.supporting-copy {
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
}

.contact-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(20, 54, 44, 0.32);
  background: rgba(251, 248, 240, 0.52);
}

.contact-panel__item {
  min-width: 0;
  min-height: 82px;
  padding: 17px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: normal;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.contact-panel__item:nth-child(even) {
  border-left: 1px solid var(--line);
}

.contact-panel__item:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.contact-panel__item small,
.contact-panel__item strong,
.contact-panel__item > span {
  display: block;
  overflow-wrap: anywhere;
}

.contact-panel__item small {
  margin-bottom: 7px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel__item strong,
.contact-panel__item > span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

a.contact-panel__item:hover {
  color: var(--orange);
  background: rgba(217, 231, 167, 0.24);
}

a.contact-panel__item:hover strong {
  color: var(--orange);
}

.hero-art {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1.05;
  justify-self: center;
  isolation: isolate;
}

.orbit,
.sun,
.canopy,
.trunk,
.ground-line {
  position: absolute;
}

.orbit {
  border: 1px solid rgba(20, 54, 44, 0.28);
  border-radius: 50%;
}

.orbit--outer {
  inset: 0 6% 10% 1%;
}

.orbit--inner {
  inset: 13% 18% 22% 14%;
  border-style: dashed;
}

.sun {
  width: 26%;
  aspect-ratio: 1;
  top: 15%;
  right: 4%;
  z-index: -1;
  border-radius: 50%;
  background: var(--orange);
}

.canopy {
  left: 50%;
  border-radius: 48% 52% 46% 54% / 54% 44% 56% 46%;
  transform: translateX(-50%) rotate(-7deg);
}

.canopy--back {
  width: 54%;
  height: 49%;
  top: 15%;
  margin-left: -11%;
  background: var(--lime);
}

.canopy--front {
  width: 51%;
  height: 49%;
  top: 25%;
  margin-left: 10%;
  background: var(--ink);
  transform: translateX(-50%) rotate(10deg);
}

.trunk {
  width: 8%;
  height: 35%;
  left: 50%;
  bottom: 16%;
  z-index: -1;
  transform: translateX(-50%) rotate(4deg);
  border-radius: 70% 30% 8% 8%;
  background: var(--orange);
}

.ground-line {
  width: 67%;
  height: 1px;
  left: 16%;
  bottom: 16%;
  background: var(--ink);
}

.art-caption {
  position: absolute;
  right: 3%;
  bottom: 4%;
  margin: 0;
  padding-left: 15px;
  border-left: 2px solid var(--orange);
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.footer-note {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0;
}

@media (max-height: 850px) and (min-width: 981px) {
  .page-shell {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .hero {
    padding: 18px 0;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(60px, 6vw, 90px);
  }

  .intro {
    margin-top: 22px;
    font-size: 22px;
    line-height: 1.32;
  }

  .supporting-copy {
    margin-top: 17px;
  }

  .contact-panel {
    margin-top: 14px;
  }

  .contact-panel__item {
    min-height: 70px;
    padding: 12px 16px;
  }

  .contact-panel__item strong,
  .contact-panel__item > span {
    font-size: 17px;
  }

  .hero-art {
    width: min(100%, 460px);
  }

  .site-footer {
    padding-top: 14px;
  }
}

@media (max-width: 980px) {
  .page-shell {
    min-height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    width: min(80vw, 480px);
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 22px 20px 20px;
  }

  .site-address {
    display: none;
  }

  .hero {
    padding: 60px 0 48px;
  }

  h1 {
    font-size: clamp(60px, 19vw, 82px);
    line-height: 0.88;
  }

  h1 em {
    margin-left: 20px;
  }

  .intro {
    margin-top: 30px;
  }

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

  .contact-panel__item {
    min-height: 74px;
    padding: 15px 17px;
  }

  .contact-panel__item:nth-child(even) {
    border-left: 0;
  }

  .contact-panel__item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .hero-art {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column-reverse;
  }
}

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