:root {
  --green: #579500;
  --green-deep: #3f7100;
  --yellow: #edf5c8;
  --yellow-soft: #f8fbe9;
  --pink: #f8afd6;
  --pink-deep: #d85d9a;
  --pink-soft: #fff1f8;
  --pink-ink: #b8447d;
  --lilac: #fff1f8;
  --blue: #579500;
  --ink: #000000;
  --muted: #475238;
  --paper: #fffff8;
  --white: #ffffff;
  --line: rgba(87, 149, 0, 0.22);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  --font-sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 241, 248, 0.82), rgba(255, 255, 248, 0.9) 42%);
}

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

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

[data-photo-rotation] {
  transition:
    opacity 220ms ease,
    transform 520ms ease;
}

[data-photo-rotation].is-changing {
  opacity: 0;
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  width: min(1840px, calc(100% - 64px));
  margin: 8px auto 0;
  position: relative;
  z-index: 5;
}

.utility-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
  padding: 8px 18px 12px;
  color: var(--ink);
  background: var(--pink);
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.header-top {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  min-width: 330px;
  line-height: 1;
}

.brand-mark {
  width: 104px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--pink-deep);
  background: var(--white);
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 400;
  box-shadow: 0 12px 24px rgba(191, 93, 136, 0.18);
}

.brand-name {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 300;
  letter-spacing: 0;
}

.brand-tag {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.66);
  letter-spacing: 0.6px;
}

.touch,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: 11px 24px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 138, 24, 0.18);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.touch:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(7, 138, 24, 0.22);
}

.nav-row .touch {
  gap: 10px;
  min-width: 176px;
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(199, 67, 125, 0.28);
}

.button-secondary {
  background: var(--yellow);
  color: var(--green-deep);
  border-color: var(--yellow);
}

.header-line {
  display: none;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 136px;
  margin-top: 0;
  padding: 22px 34px 22px 28px;
  color: var(--ink);
  background: var(--pink-ink);
  border-radius: 72px 40px 40px 72px;
  box-shadow: 0 24px 60px rgba(111, 17, 72, 0.22);
}

.main-nav,
.contact-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-nav a,
.contact-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a.active,
.main-nav a:hover,
.contact-links a:hover {
  color: var(--green-deep);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
  white-space: nowrap;
}

.nav-arrow {
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  min-width: 210px;
  padding: 14px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(111, 17, 72, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.submenu a {
  color: var(--pink-deep);
  padding: 10px 14px;
  border-radius: 999px;
}

.submenu a:hover {
  color: var(--green-deep);
  background: var(--yellow-soft);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.contact-links {
  margin-left: auto;
  gap: 26px;
}

.social-links {
  gap: 10px;
  color: var(--ink);
}

.social {
  width: 18px;
  height: 18px;
  color: var(--ink);
  transition: color 180ms ease, transform 180ms ease;
}

.social-links > a:not(.cart) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}

.social-links a:hover .social {
  color: var(--yellow);
  transform: translateY(-2px) scale(1.08);
}

.cart {
  position: relative;
  color: var(--ink);
  width: 30px;
  height: 32px;
  border: 2px solid var(--ink);
  border-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.cart::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.hero-shell {
  width: 100%;
  min-height: 720px;
  margin: -36px auto 108px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48% 48% / 0 0 9% 9%;
  background:
    linear-gradient(115deg, var(--yellow-soft) 0 42%, var(--pink-soft) 42% 100%);
  box-shadow: none;
  animation: heroRise 700ms ease both;
}

.hero-shell::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -92px;
  height: 190px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 64% 64% 0 0;
  z-index: 3;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: clamp(110px, 11vw, 180px) 0 170px clamp(34px, 10vw, 210px);
}

.hero-copy > * {
  animation: fadeUp 620ms ease both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 180ms;
}

.hero-copy > :nth-child(4),
.hero-copy > :nth-child(5),
.hero-copy > :nth-child(6) {
  animation-delay: 270ms;
}

.promo-pill {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 22px 10px;
  color: var(--white);
  background: var(--pink-deep);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 300;
  box-shadow: 0 14px 28px rgba(199, 67, 125, 0.2);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  color: var(--pink-deep);
  font-family: var(--font-sans);
  font-size: clamp(58px, 8.5vw, 116px);
  line-height: 0.98;
  font-weight: 300;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-copy p:not(.eyebrow) {
  max-width: 510px;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.28;
  font-weight: 300;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(4, 91, 18, 0.28);
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-dots button[aria-current="true"] {
  background: var(--pink-deep);
  transform: scale(1.25);
}

.hero-art {
  position: relative;
  z-index: 4;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 118px clamp(22px, 8vw, 180px) 158px 0;
  animation: floatIn 780ms ease both;
}

.hero-art img {
  width: min(100%, 570px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 14px solid var(--white);
  border-radius: 42% 58% 50% 50% / 48% 42% 58% 52%;
  box-shadow: 0 24px 56px rgba(217, 101, 152, 0.18);
  transition: opacity 320ms ease, transform 320ms ease;
  animation: gentleFloat 5.5s ease-in-out infinite;
}

.doodle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.doodle-trail {
  left: -40px;
  top: 170px;
  width: 360px;
  height: 360px;
  border: 5px dashed rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.78) transparent transparent rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  transform: rotate(28deg);
}

.doodle-bone {
  right: 18%;
  top: 260px;
  width: 96px;
  height: 36px;
  border: 9px solid var(--pink-deep);
  border-radius: 28px;
  transform: rotate(-28deg);
  opacity: 0.72;
}

.doodle-bone::before,
.doodle-bone::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 9px solid var(--pink-deep);
  border-radius: 50%;
  background: transparent;
  top: -26px;
}

.doodle-bone::before {
  left: -22px;
  box-shadow: 0 40px 0 -9px transparent;
}

.doodle-bone::after {
  right: -22px;
}

.doodle-paw {
  right: 42%;
  bottom: 118px;
  width: 54px;
  height: 54px;
  border: 8px solid var(--pink-deep);
  border-radius: 45% 45% 55% 55%;
  opacity: 0.55;
  transform: rotate(18deg);
}

.doodle-paw::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 6px solid var(--pink-deep);
  border-radius: 50%;
  left: -24px;
  top: -26px;
  box-shadow:
    30px -12px 0 -6px transparent,
    30px -12px 0 0 var(--pink-deep),
    62px 0 0 -6px transparent,
    62px 0 0 0 var(--pink-deep);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(217, 101, 152, 0.24);
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-arrow:hover {
  background: var(--pink-deep);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow-left {
  left: 34px;
  transform: translateY(-50%);
}

.hero-arrow-right {
  right: 34px;
  transform: translateY(-50%);
}

.hero-shell.is-changing h1,
.hero-shell.is-changing [data-hero-text],
.hero-shell.is-changing [data-hero-image] {
  opacity: 0;
  transform: translateY(12px) scale(0.99);
}

.section-title {
  color: var(--pink-deep);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1;
  text-align: center;
  font-weight: 300;
  margin: 0 0 36px;
}

.quick-services {
  text-align: center;
  margin-bottom: 92px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature-cards article,
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.feature-cards article:hover,
.story-card:hover,
.benefit-grid article:hover,
.product:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(38, 49, 29, 0.16);
}

.feature-cards img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  transition: transform 520ms ease;
}

.feature-cards article:hover img,
.story-card:hover img,
.shop-preview img:hover,
.member:hover img,
.wide-photo:hover img,
.location:hover img {
  transform: scale(1.04);
}

.feature-cards div {
  padding: 34px;
}

.feature-cards h3,
.benefit-grid h3,
.story-card h2 {
  color: var(--pink-deep);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 300;
  margin: 0 0 14px;
}

.feature-cards p,
.benefit-grid p,
.story-card p,
.shop-band p,
.about-layout p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.feature-cards a {
  display: inline-block;
  margin-top: 24px;
  color: var(--green-deep);
  font-weight: 600;
  text-transform: uppercase;
}

.about-band,
.benefits-band {
  background: var(--pink-soft);
  padding: 88px 0;
  border-radius: 72px;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
}

.about-layout,
.shop-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.about-layout img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  border: 12px solid var(--white);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.about-layout h2,
.shop-band h2,
.contact-section h2,
.location h2 {
  color: var(--pink-deep);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 300;
  margin: 0 0 22px;
}

.about-layout .button,
.shop-band .button {
  margin-top: 30px;
}

.shop-band {
  padding: 92px 0;
}

.shop-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 34px;
  border: 8px solid var(--yellow-soft);
  transition: transform 320ms ease, border-color 320ms ease;
}

.shop-preview img:nth-child(2),
.shop-preview img:nth-child(3) {
  transform: translateY(22px);
}

.shop-preview img:hover {
  border-color: var(--pink-soft);
}

.benefits-band {
  background: var(--yellow-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 34px;
  background: var(--white);
  border-top: 8px solid var(--pink);
  box-shadow: var(--shadow);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin: 92px auto;
}

.story-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  transition: transform 520ms ease;
}

.story-card div {
  padding: 32px;
}

.story-card a {
  color: var(--blue);
  font-size: 24px;
  font-weight: 600;
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 80px;
}

.location img {
  width: 100%;
  border: 10px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 520ms ease;
}

.hours {
  margin-top: 22px;
  font-weight: 600;
}

.hours div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 18px;
  margin: 9px 0;
}

.contact-section {
  max-width: 700px;
  margin: 0 auto 95px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px 16px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 36px 28px;
  text-align: center;
  color: var(--green-deep);
  background: var(--yellow);
  border-radius: 44px;
  font-size: 14px;
}

.site-footer p {
  margin: 6px 0 18px;
}

.bottom-phone {
  display: block;
  margin: 18px 0;
  color: var(--pink-deep);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.page-heading {
  text-align: center;
  margin: 88px auto 52px;
}

.page-heading h1 {
  color: var(--pink-deep);
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  font-weight: 300;
  margin: 0 0 18px;
}

.page-heading p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}

.wide-photo {
  margin: 76px auto;
}

.wide-photo img {
  width: 100%;
  border: 10px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 520ms ease;
}

.service-list {
  display: grid;
  gap: 34px;
  max-width: 880px;
  margin: 0 auto 90px;
}

.service-detail {
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.service-detail:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-detail h2 {
  color: var(--pink-deep);
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 12px;
}

.service-detail p {
  margin: 0 auto;
  max-width: 760px;
  font-weight: 600;
}

.addon-list {
  max-width: 780px;
  margin: 0 auto 95px;
  text-align: center;
  font-weight: 600;
}

.addon-list h2 {
  color: var(--pink-deep);
  font-size: 34px;
  font-weight: 300;
  margin-bottom: 24px;
}

.addon-list p {
  margin: 10px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin: 0 auto 110px;
}

.member {
  text-align: center;
  transition: transform 220ms ease;
}

.member:hover {
  transform: translateY(-6px);
}

.member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 28px;
  border: 10px solid var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 520ms ease;
}

.member h2 {
  color: var(--pink-deep);
  font-size: 31px;
  font-weight: 300;
  margin: 0 0 4px;
}

.member .role {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
}

.member p:last-child {
  margin: 0;
  font-weight: 600;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 30px;
  margin: 78px auto 100px;
}

.product {
  position: relative;
  text-align: center;
  color: var(--ink);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--yellow-soft);
  border-radius: 28px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product:hover img {
  transform: scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .feature-cards article,
.reveal.is-visible .benefit-grid article,
.reveal.is-visible .story-card,
.reveal.is-visible .shop-preview img {
  animation: fadeUp 620ms ease both;
}

.reveal.is-visible .feature-cards article:nth-child(2),
.reveal.is-visible .benefit-grid article:nth-child(2),
.reveal.is-visible .story-card:nth-child(2),
.reveal.is-visible .shop-preview img:nth-child(2) {
  animation-delay: 100ms;
}

.reveal.is-visible .benefit-grid article:nth-child(3),
.reveal.is-visible .shop-preview img:nth-child(3) {
  animation-delay: 180ms;
}

.reveal.is-visible .benefit-grid article:nth-child(4),
.reveal.is-visible .shop-preview img:nth-child(4) {
  animation-delay: 260ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(24px) rotate(1deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.quick {
  position: absolute;
  inset: auto 0 0;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px;
  color: var(--ink);
  font-size: 14px;
}

.badge {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--green);
  color: var(--white);
  padding: 5px 10px;
  font-size: 13px;
  z-index: 2;
}

.product h2 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 6px;
}

.price {
  margin: 0;
  font-size: 14px;
}

.sale {
  color: #757575;
  text-decoration: line-through;
  display: block;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1350px) {
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .social-links {
    display: none;
  }

  .nav-row .touch {
    min-width: 160px;
  }
}

@media (max-width: 960px) {
  .nav-row,
  .header-top,
  .contact-links {
    align-items: center;
    flex-direction: column;
  }

  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .contact-links {
    margin-left: 0;
    gap: 10px;
  }

  .nav-row {
    gap: 18px;
    min-height: 0;
    padding: 24px;
    border-radius: 38px;
  }

  .brand {
    min-width: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand-mark {
    width: 82px;
    height: 82px;
    font-size: 28px;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-shell,
  .about-layout,
  .shop-band,
  .location {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    margin-top: 28px;
    border-radius: 0 0 28% 28% / 0 0 5% 5%;
  }

  .hero-art {
    padding: 0 28px 110px;
  }

  .hero-copy {
    padding: 68px 32px 24px;
  }

  .hero-arrow {
    width: 56px;
    height: 56px;
    font-size: 40px;
  }

  .hero-arrow-left {
    left: 16px;
  }

  .hero-arrow-right {
    right: 16px;
  }

  .doodle-bone,
  .doodle-paw {
    display: none;
  }

  .feature-cards,
  .story-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .site-header,
  .hero-shell,
  .page,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .utility-bar,
  .main-nav,
  .hero-actions,
  .footer-links {
    align-items: center;
    flex-direction: column;
  }

  .utility-bar {
    border-radius: 38px;
    color: var(--green-deep);
    background: var(--yellow);
  }

  .brand {
    flex-direction: column;
    gap: 10px;
  }

  .brand-name {
    font-size: 32px;
  }

  .brand-tag {
    font-size: 10px;
  }

  .main-nav {
    gap: 12px;
  }

  .nav-item {
    flex-direction: column;
    padding: 0;
  }

  .nav-arrow,
  .submenu {
    display: none;
  }

  .touch,
  .button {
    width: 100%;
  }

  .hero-copy {
    padding: 50px 24px 24px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 25px;
  }

  .promo-pill {
    font-size: 25px;
  }

  .hero-art img {
    border-width: 10px;
    border-radius: 36px;
  }

  .hero-arrow {
    top: 58%;
    width: 48px;
    height: 48px;
    font-size: 36px;
  }

  .hero-dots {
    justify-content: center;
    gap: 8px;
  }

  .about-band,
  .benefits-band {
    border-radius: 36px;
  }

  .section-title,
  .page-heading h1 {
    font-size: 42px;
  }

  .feature-cards div,
  .story-card div {
    padding: 26px;
  }

  .about-band,
  .benefits-band,
  .shop-band {
    padding: 62px 0;
  }

  .benefit-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
