:root {
  --ink: #123d34;
  --deep-ink: #0c3028;
  --paper: #f8f5ed;
  --card: #e7eee1;
  --sun: #efb84e;
  --line: rgba(18, 61, 52, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, 100svh);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 42px 24px 70px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 18px;
  content: "";
  border: 1px solid rgba(18, 61, 52, 0.13);
  border-radius: 3px;
}

.hero::after {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(18, 61, 52, 0.09) 0.65px, transparent 0.65px);
  background-size: 10px 10px;
  opacity: 0.34;
}

.hero__content {
  width: min(100%, 790px);
  text-align: center;
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 164px;
  height: 134px;
  margin-bottom: 25px;
  transition: transform 220ms ease;
}

.brand:hover {
  transform: translateY(-3px);
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 13px;
  color: #9a6611;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(3rem, 7vw, 5.45rem);
  line-height: 0.94;
}

.hero__intro {
  max-width: 475px;
  margin: 25px auto 35px;
  color: rgba(18, 61, 52, 0.78);
  font-size: 1.03rem;
  line-height: 1.55;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 30px rgba(25, 58, 46, 0.05);
}

.contact-link {
  display: flex;
  min-width: 0;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.24;
  transition: color 180ms ease, background-color 180ms ease;
}

.contact-link + .contact-link {
  border-left: 1px solid var(--line);
}

.contact-link:hover {
  color: var(--paper);
  background: var(--ink);
}

.contact-link small {
  display: block;
  margin-bottom: 3px;
  opacity: 0.66;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link__icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.contact-link__icon svg {
  width: 13px;
  height: 13px;
}

.scroll-cue {
  position: absolute;
  bottom: 29px;
  left: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(18, 61, 52, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
}

.botanical {
  position: absolute;
  z-index: -1;
  display: block;
  max-width: none;
  mix-blend-mode: multiply;
  opacity: 0.14;
  pointer-events: none;
}

.botanical--apple {
  top: 8%;
  left: -52px;
  width: 290px;
  transform: rotate(-17deg);
}

.botanical--pineapple {
  top: -51px;
  right: -36px;
  width: 298px;
  transform: rotate(13deg);
  transform-origin: center;
}

.botanical--pear {
  right: 7vw;
  bottom: -110px;
  width: 288px;
  transform: rotate(-13deg);
}

.stores {
  padding: clamp(80px, 10vw, 145px) 24px clamp(90px, 11vw, 150px);
  background: var(--deep-ink);
  color: var(--paper);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading .eyebrow {
  color: var(--sun);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 0.97;
}

.section-heading > p:last-child {
  max-width: 395px;
  margin: 0 auto;
  color: rgba(248, 245, 237, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.store-grid {
  display: grid;
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.store-card {
  display: flex;
  min-height: 346px;
  flex-direction: column;
  padding: 28px 28px 25px;
  border: 1px solid rgba(248, 245, 237, 0.26);
  background: rgba(248, 245, 237, 0.035);
  transition: transform 220ms ease, background-color 220ms ease;
}

.store-card:hover {
  background: rgba(248, 245, 237, 0.08);
  transform: translateY(-6px);
}

.store-card--featured {
  color: var(--ink);
  border-color: var(--card);
  background: var(--card);
}

.store-card--featured:hover {
  background: #f1f5ec;
}

.store-card__number {
  margin-bottom: 58px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.68;
}

.store-card h3 {
  margin-bottom: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.store-card address {
  min-height: 48px;
  margin-bottom: 20px;
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.5;
  opacity: 0.78;
}

.store-card__phone {
  margin-bottom: 4px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 6vw;
  color: var(--paper);
  background: #08261f;
  font-size: 0.76rem;
}

footer p {
  margin: 0;
  color: rgba(248, 245, 237, 0.65);
}

footer > a:last-child {
  justify-self: end;
  text-decoration: none;
}

.footer-brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 720px) {
  .hero {
    min-height: 710px;
    padding: 34px 20px 66px;
  }

  .hero::before {
    inset: 10px;
  }

  .brand {
    width: 132px;
    height: 108px;
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero__intro {
    margin: 19px auto 27px;
    font-size: 0.94rem;
  }

  .contact-links {
    grid-template-columns: 1fr;
    border-radius: 6px;
  }

  .contact-link {
    justify-content: flex-start;
    padding: 12px 18px;
  }

  .contact-link + .contact-link {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .botanical {
    opacity: 0.1;
  }

  .botanical--apple {
    top: 7%;
    left: -113px;
    width: 245px;
  }

  .botanical--pineapple {
    top: -46px;
    right: -112px;
    width: 255px;
  }

  .botanical--pear {
    right: -72px;
    bottom: -80px;
    width: 230px;
  }

  .store-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .store-card {
    min-height: 267px;
    padding: 24px 23px 22px;
  }

  .store-card h3 {
    margin-top: 40px;
    font-size: 1.85rem;
  }

  .store-card__number {
    margin-bottom: 0;
  }

  .store-card address {
    min-height: 0;
  }

  footer {
    grid-template-columns: 1fr auto;
    padding: 23px 24px;
  }

  footer p {
    display: none;
  }
}

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

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