:root {
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --teal: #126b67;
  --teal-dark: #0c504d;
  --teal-deep: #073c3a;
  --aqua: #32b7b5;
  --copper: #b66b43;
  --copper-dark: #8f4d2c;
  --sand: #ddc09d;
  --sand-light: #f5e8d7;
  --purple: #61269b;
  --purple-dark: #46176f;
  --ink: #293735;
  --muted: #626d69;
  --surface: #fffdf9;
  --page: #faf3e8;
  --line: #e3d4c1;
  --shadow: 0 24px 70px rgb(7 60 58 / 14%);
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgb(50 183 181 / 16%), transparent 25rem),
    radial-gradient(circle at 95% 38%, rgb(97 38 155 / 9%), transparent 30rem),
    linear-gradient(180deg, #fffaf2 0, var(--page) 40%, #f6eadb 100%);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgb(143 77 44 / 10%) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  background: var(--teal-deep);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-shell {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 6rem;
  padding-block: 1rem;
}

.wordmark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.wordmark img,
.footer-brand img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
}

.wordmark span,
.footer-brand span {
  display: grid;
  line-height: 1.25;
}

.wordmark strong,
.footer-brand strong {
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.wordmark small,
.footer-brand small {
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: var(--teal-dark);
  box-shadow: 0 10px 25px rgb(7 60 58 / 18%);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--teal-deep);
  box-shadow: 0 14px 32px rgb(7 60 58 / 24%);
  transform: translateY(-2px);
}

.hero {
  padding-top: 1rem;
}

.banner-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(143 77 44 / 22%);
  border-radius: 1.6rem;
  background: var(--sand-light);
  box-shadow: var(--shadow);
}

.banner-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: inherit;
  box-shadow: inset 0 0 35px rgb(255 253 249 / 18%);
  content: "";
  pointer-events: none;
}

.banner-frame img {
  width: 100%;
  height: auto;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  width: calc(100% - 4rem);
  margin: -2rem auto 0;
  padding: 1.75rem;
  border: 1px solid rgb(227 212 193 / 85%);
  border-radius: 1.4rem;
  background: rgb(255 253 249 / 94%);
  box-shadow: 0 20px 55px rgb(7 60 58 / 14%);
  backdrop-filter: blur(16px);
}

.hero-logo {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 1.45rem;
  filter: drop-shadow(0 8px 12px rgb(7 60 58 / 18%));
}

.hero-copy p {
  max-width: 42rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.eyebrow {
  margin: 0 0 0.45rem !important;
  color: var(--copper-dark) !important;
  font-size: 0.76rem !important;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

h1 em {
  color: var(--purple);
  font-weight: 500;
}

.primary-button {
  min-height: 3.5rem;
  padding-inline: 1.35rem;
  text-align: center;
}

.about {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 8vw, 7rem);
  padding: clamp(5rem, 10vw, 8rem) clamp(0rem, 4vw, 3rem);
}

.section-heading {
  align-self: start;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
}

.about-copy {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--copper);
  color: #475652;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.about-copy p {
  margin: 0 0 1.15rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
  color: var(--teal-dark);
  font-weight: 700;
}

.connect {
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 90% 10%, rgb(50 183 181 / 22%), transparent 22rem),
    linear-gradient(145deg, var(--teal-deep), #092e37 68%, #25103c);
  box-shadow: var(--shadow);
  color: white;
}

.connect-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.connect .eyebrow {
  color: #efbd91 !important;
}

.connect h2 {
  color: white;
}

.connect-heading > p {
  max-width: 28rem;
  margin: 0;
  color: #d9e5e2;
  font-size: 1.05rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 6.25rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 1rem;
  background: rgb(255 255 255 / 8%);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-card:hover {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 13%);
  transform: translateY(-3px);
}

.social-card:focus-visible {
  outline-color: #f2bd91;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.8rem;
  background: rgb(255 255 255 / 13%);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.instagram-mark {
  position: relative;
  border: 3px solid currentColor;
  background: transparent;
}

.instagram-mark::before {
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.instagram-mark::after {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.social-copy {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}

.social-copy strong {
  font-size: 1rem;
}

.social-copy small {
  margin-top: 0.2rem;
  overflow: hidden;
  color: #c6d8d5;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-arrow {
  color: #efbd91;
  font-size: 1.1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
}

.site-footer > a {
  color: var(--teal-dark);
  font-weight: 800;
  text-underline-offset: 0.25em;
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .primary-button {
    grid-column: 1 / -1;
  }

  .about {
    gap: 3rem;
  }

  .connect-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 1rem, 72rem);
  }

  .site-header {
    min-height: 5.25rem;
  }

  .header-cta {
    display: none;
  }

  .wordmark img {
    width: 2.85rem;
    height: 2.85rem;
  }

  .banner-frame {
    border-radius: 1rem;
  }

  .hero-card {
    grid-template-columns: 1fr;
    width: calc(100% - 1rem);
    margin-top: -0.6rem;
    padding: 1.35rem;
    text-align: center;
  }

  .hero-logo {
    width: 5rem;
    height: 5rem;
    margin: -3.2rem auto 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .primary-button {
    width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 4.5rem;
  }

  .about-copy {
    padding: 1.25rem 0 0;
    border-top: 3px solid var(--copper);
    border-left: 0;
  }

  .connect {
    padding: 2rem 1.15rem;
    border-radius: 1.25rem;
  }

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

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

@media (max-width: 390px) {
  .wordmark small {
    display: none;
  }

  .social-card {
    min-height: 5.75rem;
  }
}

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

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