:root {
  --sky: #cfe7f1;
  --sky-deep: #a8cfdf;
  --cream: #f8edd8;
  --paper: #fbf2df;
  --ink: #25362d;
  --green: #264f2f;
  --leaf: #61b64e;
  --red: #e54a24;
  --orange: #f7941f;
  --yellow: #ffd044;
  --blue-dark: #175b78;
  --shadow: 0 18px 28px rgba(87, 58, 22, 0.13);
  --edge: rgba(97, 73, 36, 0.16);
  --page-pad: clamp(28px, 6vw, 116px);
  --wide-pad: clamp(40px, 7vw, 132px);
  --content-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.68), transparent 22%),
    var(--paper);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(229, 74, 36, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 12px var(--page-pad);
  color: var(--ink);
  background: rgba(250, 241, 222, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 65, 28, 0.18);
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  color: var(--green);
  filter: none;
  white-space: nowrap;
}

.brand-the,
.brand-co {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.brand-main {
  color: var(--green);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 42px);
  font-weight: 800;
  text-shadow: none;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 4px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav .active::after {
  transform: scaleX(1);
}

.header-social {
  justify-self: end;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 13px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  background: rgba(255, 250, 240, 0.55);
  border: 1px solid var(--edge);
  border-radius: 999px;
}

.ig-glyph {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.ig-glyph::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.ig-glyph::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
  min-height: min(780px, 78vh);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 90px) var(--page-pad);
  background:
    linear-gradient(90deg, rgba(248, 237, 216, 0.96) 0 38%, rgba(248, 237, 216, 0.58) 54%, rgba(248, 237, 216, 0.18) 100%),
    radial-gradient(circle at 76% 58%, rgba(255, 255, 255, 0.85) 0 13%, transparent 14%),
    linear-gradient(180deg, #cde6f0 0 46%, #d6c295 47% 100%);
  border-bottom: 1px solid rgba(111, 78, 31, 0.22);
}

.cloud {
  position: absolute;
  width: 118px;
  height: 34px;
  background: #fff8e5;
  border-radius: 999px;
  opacity: 0.96;
}

.cloud::before,
.cloud::after {
  position: absolute;
  bottom: 10px;
  content: "";
  background: #fff8e5;
  border-radius: 50%;
}

.cloud::before {
  left: 18px;
  width: 44px;
  height: 44px;
}

.cloud::after {
  right: 18px;
  width: 58px;
  height: 58px;
}

.cloud-one {
  top: 100px;
  left: auto;
  right: 36%;
  opacity: 0.45;
}

.cloud-two {
  top: 86px;
  right: 7%;
  opacity: 0.38;
  transform: scale(0.8);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.find-intro h2,
.story h2,
.retail h2 {
  margin: 0;
  font-weight: 1000;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.7vw, 5.1rem);
  text-shadow: none;
}

.hero-copy > p:last-of-type {
  max-width: 500px;
  margin: 20px 0 0;
  color: #30443a;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  color: #fff;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  border: 2px solid rgba(38, 79, 47, 0.42);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(82, 49, 20, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 0 11px 20px rgba(82, 49, 20, 0.18);
  transform: translateY(-1px);
}

.button-hot {
  background: linear-gradient(180deg, #f06a2a 0%, #df3f1f 100%);
}

.button-light {
  color: var(--green);
  background: #fff8e8;
}

.button-instagram {
  gap: 9px;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.hero-accent {
  position: absolute;
  right: -1%;
  bottom: -2%;
  z-index: 1;
  width: min(210px, 28vw);
  opacity: 0.36;
  transform: rotate(6deg);
}

.real-tub {
  position: relative;
  z-index: 3;
  width: min(430px, 76%);
  border-radius: 34px;
  transform: translateX(-6%) rotate(3deg);
  filter: drop-shadow(0 26px 22px rgba(72, 48, 22, 0.28));
  mix-blend-mode: multiply;
}

.feature-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  min-height: 50vh;
  padding: 28px var(--page-pad);
  background: var(--cream);
  border-top: 1px solid rgba(111, 78, 31, 0.2);
  border-bottom: 1px solid rgba(111, 78, 31, 0.2);
}

.feature-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 110px;
  padding: 0 clamp(18px, 2vw, 34px);
  border-left: 1px solid var(--edge);
}

.feature-strip article:first-child {
  padding-left: 0;
  border-left: 0;
}

.feature-strip article:last-child {
  padding-right: 0;
}

.feature-strip h2,
.location-card h3,
.request-card h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.feature-strip p,
.location-card p,
.request-card p {
  margin: 0;
  color: #263844;
  font-weight: 700;
}

.badge {
  position: relative;
  width: 72px;
  height: 72px;
  background: #fffaf0;
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.badge-fire::before {
  position: absolute;
  inset: 15px 20px 13px;
  content: "";
  background: linear-gradient(135deg, #ffca45 0 42%, #e33b20 43% 100%);
  border-radius: 55% 55% 58% 58%;
  clip-path: polygon(50% 0, 82% 38%, 70% 100%, 30% 100%, 18% 38%);
}

.badge-leaf::before {
  position: absolute;
  inset: 20px 15px;
  content: "";
  background: var(--green);
  border-radius: 0 80% 0 80%;
  transform: rotate(45deg);
}

.badge-balance::before {
  position: absolute;
  top: 16px;
  left: 32px;
  width: 8px;
  height: 40px;
  content: "";
  background: #c27c18;
}

.badge-balance::after {
  position: absolute;
  top: 21px;
  left: 17px;
  width: 36px;
  height: 24px;
  content: "";
  border-top: 5px solid #c27c18;
  border-right: 5px solid #c27c18;
  border-left: 5px solid #c27c18;
  border-radius: 0 0 20px 20px;
}

.badge-cactus::before {
  position: absolute;
  top: 12px;
  left: 28px;
  width: 16px;
  height: 47px;
  content: "";
  background: #6a993f;
  border: 3px solid #406826;
  border-radius: 14px;
}

.badge-cactus::after {
  position: absolute;
  top: 24px;
  left: 14px;
  width: 39px;
  height: 29px;
  content: "";
  border-right: 9px solid #6a993f;
  border-left: 9px solid #6a993f;
  border-radius: 16px;
}

.lineup {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  min-height: 68vh;
  padding: clamp(54px, 7vw, 92px) var(--page-pad);
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 255, 255, 0.9), transparent 34%),
    var(--paper);
}

.section-heading {
  position: relative;
  z-index: 2;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.section-heading .eyebrow {
  color: var(--green);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  text-shadow: none;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  color: #114155;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.product-grid-current {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  justify-items: center;
  min-height: 380px;
  padding: 10px 18px 22px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-photo {
  width: min(285px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 10px;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 14px rgba(89, 61, 28, 0.18));
}

.product-photo-angle {
  width: min(286px, 100%);
  transform: rotate(-2deg);
}

.product-card h3 {
  margin: 8px 0 8px;
  color: #ca5a1f;
  font-size: 1.34rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  min-height: 72px;
  margin: 0;
  color: #263844;
  font-weight: 700;
}

.product-card-note {
  align-content: center;
  justify-items: start;
  min-height: 380px;
  padding: clamp(28px, 3.4vw, 44px);
  text-align: left;
  background: rgba(255, 248, 232, 0.78);
  border: 1px solid var(--edge);
  border-radius: 16px;
}

.product-card-note .eyebrow {
  margin-bottom: 8px;
  color: #c94b27;
}

.product-card-note h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  text-transform: none;
}

.product-card-note p {
  min-height: auto;
  margin-bottom: 22px;
}

.heat {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 26px;
  margin-top: 12px;
  padding: 4px 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  border-radius: 999px;
}

.mild {
  background: #6ead43;
}

.hot {
  background: #d7361e;
}

.medium {
  background: #d99a27;
}

.extra {
  background: #8f1d17;
}

.seasonal {
  background: var(--orange);
}

.find-band {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1.1fr;
  gap: clamp(18px, 2.5vw, 36px);
  align-items: stretch;
  min-height: 52vh;
  padding: clamp(42px, 6vw, 76px) var(--page-pad);
  background:
    linear-gradient(90deg, rgba(207, 231, 241, 0.86), rgba(207, 231, 241, 0.58)),
    var(--sky);
}

.find-intro,
.location-card,
.request-card {
  padding: 24px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(20, 77, 94, 0.14);
  border-radius: 12px;
}

.find-intro {
  background: transparent;
  border: 0;
}

.find-intro .eyebrow,
.retail .eyebrow {
  color: var(--green);
  font-size: 1rem;
}

.find-intro h2 {
  color: #175b78;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.location-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.location-card span {
  display: block;
  margin-top: 8px;
  color: #52616c;
  font-weight: 700;
}

.request-card {
  display: grid;
  align-content: center;
  color: #fff;
  background: linear-gradient(145deg, #16864a, #0e663a);
}

.request-card p {
  margin-bottom: 16px;
  color: #fff;
}

.market-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(540px, 1.42fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: 78vh;
  padding: clamp(56px, 7vw, 98px) var(--page-pad);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(255, 250, 240, 0.7)),
    #fffaf0;
  border-top: 1px solid rgba(97, 73, 36, 0.18);
  border-bottom: 1px solid rgba(97, 73, 36, 0.18);
}

.market-gallery-copy {
  max-width: 520px;
}

.market-gallery h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  font-weight: 1000;
  line-height: 0.98;
}

.market-gallery p:not(.eyebrow) {
  color: #30443a;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.6;
}

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}

.gallery-frame {
  display: inline-block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #d6c295;
  border: 8px solid rgba(255, 250, 240, 0.78);
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(87, 58, 22, 0.15);
  break-inside: avoid;
}

.gallery-frame + .gallery-frame {
  margin-top: 14px;
}

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

.instagram-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  min-height: 66vh;
  padding: clamp(54px, 7vw, 96px) var(--page-pad);
  color: #fff8e8;
  background:
    linear-gradient(135deg, rgba(220, 57, 31, 0.92), rgba(247, 148, 31, 0.76)),
    #e54a24;
  border-top: 1px solid rgba(97, 73, 36, 0.18);
  border-bottom: 1px solid rgba(97, 73, 36, 0.18);
}

.instagram-copy {
  max-width: 680px;
}

.instagram-section .eyebrow {
  color: #fff8e8;
}

.instagram-section h2 {
  margin: 0;
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 1000;
  line-height: 0.98;
}

.instagram-section p:not(.eyebrow) {
  color: rgba(255, 248, 232, 0.94);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.6;
}

.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: clamp(20px, 2.4vw, 30px);
  color: var(--green);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(255, 250, 240, 0.62);
  border-radius: 12px;
  box-shadow: 0 20px 34px rgba(119, 47, 17, 0.18);
}

.social-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  color: #fff8e8;
  font-weight: 1000;
  background: var(--green);
  border-radius: 50%;
}

.social-card h3 {
  margin: 0 0 8px;
  color: #d9401f;
  font-size: 1.15rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.instagram-section .social-card p {
  margin: 0;
  color: #30443a;
  font-weight: 800;
}

.market-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 64vh;
  padding: clamp(54px, 7vw, 94px) var(--page-pad);
  background: #f2c75c;
  border-top: 1px solid rgba(97, 73, 36, 0.18);
  border-bottom: 1px solid rgba(97, 73, 36, 0.18);
}

.market-proof-copy {
  max-width: 560px;
}

.market-proof h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
  line-height: 0.98;
}

.market-proof p:not(.eyebrow) {
  color: #30443a;
  font-size: 1.05rem;
  font-weight: 800;
}

.market-proof figure {
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 250, 240, 0.74);
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(87, 58, 22, 0.2);
}

.market-proof img {
  width: 100%;
  height: min(520px, 54vh);
  object-fit: cover;
  object-position: 50% 42%;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(54px, 7vw, 96px) var(--page-pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.56), transparent 24%),
    linear-gradient(90deg, rgba(207, 231, 241, 0.4), rgba(207, 231, 241, 0.78)),
    linear-gradient(180deg, #cfe7f1 0 48%, #e3c98a 49% 100%);
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.story-copy .eyebrow {
  color: var(--green);
}

.story h2 {
  max-width: 680px;
  color: var(--green);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  text-shadow: none;
}

.story p {
  max-width: 620px;
  color: #273b31;
  font-size: 1.05rem;
  font-weight: 700;
}

.story-photos {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: start;
}

.story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fffaf0;
  border: 8px solid rgba(255, 250, 240, 0.78);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(68, 48, 23, 0.18);
}

.story-photo img {
  width: 100%;
  height: auto;
}

.story-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--edge);
  border-radius: 999px;
}

.story-photo-main {
  margin-top: 38px;
}

.story-photo-dax {
  grid-row: span 2;
}

.story-photo-booth {
  transform: rotate(-1.5deg);
}

.signature {
  color: #c94b27 !important;
  font-family: Georgia, serif;
  font-size: 1.6rem !important;
  font-style: italic;
}

.crew-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  min-height: 72vh;
  padding: clamp(56px, 7vw, 104px) var(--page-pad);
  overflow: hidden;
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(38, 79, 47, 0.96), rgba(38, 79, 47, 0.78)),
    var(--green);
}

.crew-copy {
  max-width: 560px;
}

.crew-section .eyebrow {
  color: #f2c75c;
}

.crew-section h2 {
  margin: 0;
  color: #fff8e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  line-height: 0.95;
}

.crew-section p:not(.eyebrow) {
  color: rgba(255, 248, 232, 0.9);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.6;
}

.crew-section img {
  justify-self: end;
  width: min(900px, 100%);
  max-width: none;
  border: 10px solid rgba(255, 248, 232, 0.18);
  border-radius: 22px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.24);
}

.retail {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 58vh;
  padding: clamp(48px, 7vw, 92px) var(--page-pad);
  background: #fffaf0;
}

.retail h2 {
  color: #d9401f;
  font-size: clamp(2rem, 4vw, 3rem);
}

.retail p {
  color: #344854;
  font-weight: 800;
}

.retail a {
  color: #b83d1f;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.contact-form label {
  display: grid;
  gap: 5px;
  color: #45616d;
  font-size: 0.75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #ccd8d9;
  border-radius: 8px;
  box-shadow: inset 0 1px 2px rgba(45, 56, 48, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(229, 74, 36, 0.62);
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px var(--page-pad);
  color: #fff8e8;
  background: var(--green);
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-social {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.footer-social .ig-glyph {
  width: 16px;
  height: 16px;
  border-radius: 5px;
}

.footer-social .ig-glyph::before {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-width: 2px;
}

.footer-social .ig-glyph::after {
  top: 2px;
  right: 2px;
}

.footer-brand {
  transform: scale(0.78);
  transform-origin: left center;
}

@media (min-width: 721px) {
  .site-header {
    min-height: 84px;
  }

  .hero {
    min-height: 84vh;
    padding-top: clamp(64px, 8vw, 118px);
    padding-bottom: clamp(64px, 8vw, 118px);
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 6.4vw, 6.8rem);
  }

  .hero-copy > p:last-of-type {
    max-width: 590px;
    font-size: clamp(1.18rem, 1.45vw, 1.42rem);
    line-height: 1.55;
  }

  .hero-stage {
    min-height: 560px;
  }

  .real-tub {
    width: min(540px, 76%);
  }

  .feature-strip {
    min-height: 50vh;
  }

  .feature-strip h2 {
    font-size: 1.08rem;
  }

  .feature-strip p {
    max-width: 270px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .lineup {
    min-height: 78vh;
    padding-top: clamp(68px, 8vw, 120px);
    padding-bottom: clamp(68px, 8vw, 120px);
  }

  .section-heading .eyebrow {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
  }

  .product-card h3 {
    font-size: 1.55rem;
  }

  .product-card p {
    max-width: 270px;
    font-size: 1.04rem;
    line-height: 1.55;
  }

  .product-card-note h3 {
    font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  }

  .find-band {
    min-height: 58vh;
  }

  .find-intro h2 {
    font-size: clamp(2.8rem, 4.7vw, 4.6rem);
  }

  .location-card {
    display: grid;
    align-content: center;
  }

  .location-card strong {
    font-size: 1.3rem;
  }

  .location-card p,
  .location-card span {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .market-proof {
    min-height: 74vh;
    grid-template-columns: minmax(320px, 0.82fr) minmax(440px, 1.18fr);
  }

  .market-gallery p:not(.eyebrow) {
    max-width: 520px;
    font-size: 1.13rem;
  }

  .market-proof h2 {
    font-size: clamp(3.1rem, 5.2vw, 5.7rem);
  }

  .market-proof p:not(.eyebrow) {
    max-width: 560px;
    font-size: 1.16rem;
    line-height: 1.6;
  }

  .market-proof img {
    height: min(660px, 66vh);
  }

  .story {
    min-height: 70vh;
  }

  .crew-section {
    min-height: 76vh;
    grid-template-columns: minmax(320px, 0.68fr) minmax(500px, 1.32fr);
  }

  .story h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
  }

  .story p {
    max-width: 720px;
    font-size: 1.18rem;
    line-height: 1.65;
  }

  .signature {
    font-size: 2rem !important;
  }

  .retail {
    min-height: 64vh;
    grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  }

  .retail h2 {
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  }

  .retail p {
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.58;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-social {
    display: none;
  }

  .hero,
  .story,
  .market-gallery,
  .market-proof,
  .crew-section,
  .instagram-section,
  .retail {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .market-gallery-copy,
  .market-proof-copy,
  .story-copy,
  .crew-copy,
  .retail-copy {
    max-width: 720px;
  }

  .story-photos {
    max-width: 760px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .find-band {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .social-card {
    min-height: auto;
  }

  .market-proof {
    min-height: 62vh;
  }

  .market-proof-copy {
    max-width: 720px;
  }

  .crew-section img {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    gap: 12px;
  }

  .brand-main {
    -webkit-text-stroke-width: 1px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
    min-height: 76vh;
    gap: 8px;
    padding: 32px 24px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.85rem);
  }

  .hero-copy > p:last-of-type {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .button {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.82rem;
  }

  .hero-stage {
    min-height: 190px;
  }

  .hero-accent {
    display: none;
  }

  .real-tub {
    width: min(215px, 115%);
    transform: translateX(-18%) rotate(3deg);
  }

  .feature-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: auto;
    padding: 0;
    border-left: 0;
  }

  .feature-strip,
  .lineup,
  .find-band,
  .market-gallery,
  .instagram-section,
  .market-proof,
  .story,
  .crew-section,
  .retail {
    min-height: 62vh;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .feature-strip {
    align-content: center;
    gap: 22px;
  }

  .lineup {
    min-height: 78vh;
    overflow: hidden;
  }

  .product-grid-current {
    display: flex;
    gap: 16px;
    width: calc(100vw - 48px);
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 14px;
  }

  .product-card {
    flex: 0 0 min(250px, 78vw);
    scroll-snap-align: center;
  }

  .product-photo,
  .product-photo-angle {
    width: min(205px, 100%);
  }

  .product-card-note {
    min-height: 330px;
  }

  .find-band {
    display: flex;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .find-intro,
  .location-card {
    flex: 0 0 min(280px, 82vw);
    scroll-snap-align: center;
  }

  .instagram-section {
    align-content: center;
    gap: 28px;
  }

  .market-gallery {
    align-content: center;
    gap: 24px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .market-gallery h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .market-gallery p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    width: calc(100vw - 48px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .gallery-frame,
  .gallery-feature,
  .gallery-tall,
  .gallery-wide {
    flex: 0 0 min(270px, 80vw);
    height: auto;
    scroll-snap-align: center;
  }

  .gallery-frame {
    border-width: 6px;
    border-radius: 16px;
  }

  .gallery-frame + .gallery-frame {
    margin-top: 0;
  }

  .story {
    gap: 26px;
  }

  .story-copy {
    text-align: left;
  }

  .story-photos {
    display: flex;
    gap: 14px;
    width: calc(100vw - 48px);
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .story-photo,
  .story-photo-main,
  .story-photo-dax,
  .story-photo-booth {
    flex: 0 0 min(260px, 78vw);
    margin-top: 0;
    scroll-snap-align: center;
    transform: none;
  }

  .story-photo {
    border-width: 6px;
    border-radius: 16px;
  }

  .instagram-section h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .instagram-section p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .instagram-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .social-card-grid {
    display: flex;
    gap: 14px;
    width: calc(100vw - 48px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .social-card {
    flex: 0 0 min(250px, 78vw);
    scroll-snap-align: center;
  }

  .market-proof {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 76vh;
    overflow: hidden;
    padding: 0;
  }

  .market-proof figure {
    position: absolute;
    inset: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .market-proof img {
    width: 100%;
    height: 100%;
    object-position: 50% 36%;
  }

  .market-proof-copy {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 24px;
    padding: 18px;
    background: rgba(251, 242, 223, 0.9);
    border: 1px solid var(--edge);
    border-radius: 14px;
  }

  .market-proof h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .market-proof p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .crew-section {
    align-content: center;
    gap: 16px;
  }

  .crew-section h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .crew-section p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .crew-section img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    object-position: 50% 18%;
    border-width: 6px;
    border-radius: 16px;
  }

  .product-card {
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-form label {
    font-size: 0.68rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 38px;
    padding: 8px 10px;
  }

  .contact-form textarea {
    max-height: 82px;
  }

  .contact-form button {
    width: 100%;
  }
}
