:root {
  --ink: #0b2d4f;
  --blue: #004c91;
  --blue-deep: #003d78;
  --blue-soft: #eaf5fb;
  --cream: #fbfcfb;
  --mist: #f2f7fa;
  --line: #cddbe3;
  --leaf: #446c4e;
  --sun: #caa15d;
  --text: #24384b;
  --muted: #5c6b78;
  --shadow: 0 20px 60px rgba(5, 44, 76, .12);
  --header-height: clamp(74px, 7.8vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(154px, 1fr) auto minmax(154px, 1fr);
  align-items: center;
  gap: 32px;
  padding: clamp(10px, 1.25vw, 18px) clamp(24px, 5.5vw, 82px);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border-bottom: 1px solid rgba(205, 219, 227, .72);
  transition: box-shadow .2s ease, min-height .2s ease, padding .2s ease;
}

.site-header.is-scrolled {
  min-height: clamp(64px, 6vw, 88px);
  box-shadow: 0 8px 28px rgba(8, 35, 59, .08);
}

.brand {
  width: max-content;
  color: var(--blue);
  font-family: "Brush Script MT", "Snell Roundhand", cursive;
  font-weight: 700;
  line-height: .74;
  letter-spacing: 0;
  text-shadow: 0 .5px 0 rgba(0, 76, 145, .18);
}

.brand span {
  display: block;
  font-size: clamp(29px, 3.1vw, 49px);
}

.brand span + span {
  margin-left: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
  font-size: clamp(8px, .84vw, 12px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: var(--ink);
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(28px, 2.9vw, 42px);
  padding: 0 clamp(16px, 1.7vw, 24px);
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 0;
  font-size: clamp(8px, .76vw, 11px);
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}

.button-outline {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .92);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  height: clamp(438px, 46.55vw, 670px);
  min-height: 0;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: none;
  background:
    linear-gradient(90deg, rgba(5, 22, 36, .64) 0%, rgba(5, 22, 36, .32) 45%, rgba(5, 22, 36, .06) 78%),
    linear-gradient(0deg, rgba(5, 22, 36, .2), rgba(5, 22, 36, .03));
}

.hero-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(132px, 17vh, 210px);
}

.hero-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero-hotspot {
  position: absolute;
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.hero-hotspot-primary {
  left: 12.2%;
  top: 67.5%;
  width: 13.5%;
  height: 5.7%;
}

.hero-hotspot-secondary {
  left: 28.2%;
  top: 67.5%;
  width: 10.2%;
  height: 5.7%;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 61px);
  text-shadow: 0 4px 18px rgba(0, 0, 0, .28);
}

h2 {
  font-size: clamp(30px, 3.15vw, 46px);
}

.hero p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, .94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.2vw, 31px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.rule {
  width: 204px;
  height: 1px;
  margin-top: 26px;
  background: #fff;
}

.rule::after {
  display: block;
  width: 14px;
  height: 14px;
  margin: -6px auto 0;
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.intro-section,
.source-section,
.packaging-section,
.inquiry-section,
.locator-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.intro-section {
  height: clamp(218px, 23.2vw, 334px);
}

.source-section {
  height: clamp(230px, 24.45vw, 352px);
}

.packaging-section {
  height: clamp(239px, 25.4vw, 366px);
}

.inquiry-section {
  height: clamp(191px, 20.3vw, 292px);
}

.locator-section {
  height: clamp(142px, 15.1vw, 218px);
}

.intro-copy,
.source-copy,
.packaging-copy,
.inquiry-copy,
.locator-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px) clamp(28px, 9vw, 138px);
}

.intro-copy {
  min-height: 0;
  padding-left: clamp(90px, 20.3vw, 300px);
  padding-right: clamp(14px, 2vw, 30px);
  background: #fff;
}

.intro-copy h2 {
  max-width: none;
  font-size: clamp(24px, 2.6vw, 38px);
  white-space: nowrap;
}

.intro-copy p,
.source-copy p,
.packaging-copy p,
.inquiry-copy p,
.locator-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.58;
}

.intro-copy strong {
  margin-top: 18px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.water-drop {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 10px;
  height: 15px;
  background: var(--blue);
  border-radius: 9px 9px 9px 0;
  opacity: .38;
  transform: rotate(-45deg);
}

.intro-media,
.source-photo,
.packaging-visual,
.map-visual {
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.intro-media img,
.source-photo img,
.packaging-visual img,
.map-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-section {
  background: #f6fafc;
}

.source-photo {
  min-height: 0;
}

.source-copy {
  min-height: 0;
  background: #f9fbfc;
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 10px;
  content: "->";
  transition: transform .2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.line-art {
  position: absolute;
  right: -26px;
  bottom: 10px;
  width: min(58%, 430px);
  opacity: .76;
  pointer-events: none;
}

.packaging-section {
  background: var(--blue-soft);
}

.packaging-visual {
  min-height: 0;
}

.packaging-copy {
  min-height: 0;
}

.inquiry-section {
  background: #fff;
  border-top: 1px solid rgba(205, 219, 227, .55);
  border-bottom: 1px solid rgba(205, 219, 227, .55);
}

.inquiry-copy {
  padding-left: clamp(28px, 12vw, 215px);
}

.inquiry-copy p {
  max-width: 450px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, .7vw, 10px);
  align-content: center;
  padding: clamp(14px, 2vw, 28px) clamp(28px, 8vw, 118px) clamp(14px, 2vw, 28px) 26px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .85), #fff);
}

.inquiry-form label {
  display: grid;
  gap: 6px;
}

.inquiry-form span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  height: clamp(24px, 2.35vw, 34px);
  min-height: 0;
  padding: 7px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.inquiry-form textarea {
  height: clamp(50px, 5.2vw, 76px);
  min-height: 0;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #8b99a5;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 76, 145, .12);
}

.form-wide {
  grid-column: 1 / -1;
}

.inquiry-form button {
  width: 100%;
  min-height: clamp(24px, 2.35vw, 34px);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.locator-copy {
  padding-left: clamp(28px, 12vw, 215px);
  padding-top: clamp(18px, 2.5vw, 36px);
  padding-bottom: clamp(14px, 2vw, 30px);
}

.locator-copy h2 {
  font-size: clamp(24px, 2.7vw, 40px);
}

.locator-copy p {
  margin-top: clamp(10px, 1vw, 16px);
  font-size: clamp(10px, .95vw, 14px);
}

.locator-copy .text-link {
  margin-top: clamp(10px, 1vw, 16px);
  font-size: clamp(8px, .76vw, 11px);
}

.map-visual {
  min-height: 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr .9fr .9fr 1.05fr 112px;
  gap: clamp(16px, 4vw, 78px);
  padding: clamp(18px, 2.5vw, 36px) clamp(24px, 7vw, 150px) clamp(38px, 4.5vw, 66px);
  background: #fff;
  color: var(--ink);
  border-top: 1px solid rgba(205, 219, 227, .72);
}

.site-footer .brand span {
  font-size: clamp(26px, 2.9vw, 42px);
}

.footer-brand p {
  margin: clamp(6px, .9vw, 14px) 0 clamp(8px, 1vw, 16px);
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9px, .95vw, 14px);
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(18px, 1.95vw, 28px);
  height: clamp(18px, 1.95vw, 28px);
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: clamp(7px, .7vw, 10px);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, .35vw, 5px);
}

.footer-column h3 {
  margin: 0 0 clamp(4px, .65vw, 10px);
  color: var(--blue);
  font-size: clamp(8px, .84vw, 12px);
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #3c5064;
  font-size: clamp(9px, .98vw, 14px);
  line-height: 1.28;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--blue);
}

.footer-stamp {
  width: clamp(88px, 9.8vw, 142px);
  justify-self: end;
  align-self: center;
}

.footer-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(32px, 3.45vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}

@media (min-width: 901px) {
  .hero-copy {
    display: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 22px;
  }

  .site-nav {
    gap: 22px;
    font-size: 11px;
  }

  .header-cta {
    padding-inline: 18px;
  }

}

@media (max-width: 900px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding: 14px 22px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 22px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(8, 35, 59, .08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(205, 219, 227, .62);
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero {
    height: 650px;
    background: url("assets/mockup-hero-clean.png") center / cover no-repeat;
  }

  .hero-video {
    display: none;
  }

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

  .hero-scrim {
    display: block;
  }

  .hero-hotspots {
    display: none;
  }

  .intro-section,
  .source-section,
  .packaging-section,
  .inquiry-section,
  .locator-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  .source-photo {
    order: 2;
  }

  .source-copy {
    order: 1;
  }

  .intro-media,
  .source-photo,
  .packaging-visual,
  .map-visual {
    min-height: 330px;
  }

  .inquiry-form {
    padding: 0 28px 58px;
  }

  .locator-copy,
  .inquiry-copy {
    padding-left: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 92px;
  }

  .footer-stamp {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 34px;
  }

  .hero {
    height: 600px;
  }

  .hero-copy {
    width: min(100% - 34px, 520px);
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero p {
    font-size: 22px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .intro-copy,
  .source-copy,
  .packaging-copy,
  .inquiry-copy,
  .locator-copy {
    padding: 48px 22px;
  }

  .intro-media,
  .source-photo,
  .packaging-visual,
  .map-visual {
    min-height: 250px;
  }

  .line-art {
    width: 76%;
    opacity: .36;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 0 22px 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 22px 90px;
  }

  .footer-stamp {
    width: 118px;
  }
}

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

  .hero-video {
    display: none;
  }

  .hero {
    background-image: url("assets/agape-video-poster.png");
    background-size: cover;
    background-position: center;
  }
}
