:root {
  --ink: #24211d;
  --muted: #6f675d;
  --paper: #fbf8f1;
  --cream: #f4ecdc;
  --sage: #71806b;
  --clay: #a7654d;
  --coffee: #4a3428;
  --line: rgba(36, 33, 29, 0.14);
  --shadow: 0 24px 70px rgba(46, 34, 25, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

#nl-badge-frame {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.page .site-header {
  background: rgba(251, 248, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(44, 36, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-size: 15px;
  line-height: 1.05;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.7;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 10px 16px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 21, 17, 0.74), rgba(27, 21, 17, 0.32) 50%, rgba(27, 21, 17, 0.58)),
    url("assets/homegrown/coffee-cart.jpg") center 48%/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(36px, 4vw, 52px) clamp(18px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c6a7;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 70px;
}

h2 {
  margin-bottom: 18px;
  font-size: 54px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-copy-mobile {
  display: none;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button.primary {
  background: var(--clay);
  color: #fff;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.button.warm {
  background: var(--coffee);
  color: #fff;
}

.button.neutral {
  border-color: var(--line);
  background: #fff;
  color: var(--coffee);
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  margin: 44px 0 0;
  font-size: 19px;
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 38px;
}

.service-band {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 86px);
  background: #fff;
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(46, 34, 25, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 101, 77, 0.52);
  box-shadow: 0 20px 44px rgba(46, 34, 25, 0.12);
}

.service-card:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.service-card span,
.steps span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.package-item p,
.steps p {
  font-size: 15px;
}

.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-action::after {
  content: "\2192";
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.service-card:hover .service-card-action::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.text-link {
  display: inline-flex;
  border-bottom: 1px solid var(--clay);
  color: var(--clay);
  font-weight: 800;
}

.package-list {
  display: grid;
  gap: 14px;
}

.package-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

a.package-item:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 101, 77, 0.42);
  box-shadow: 0 18px 44px rgba(46, 34, 25, 0.1);
}

.package-item strong {
  color: var(--coffee);
  font-size: 18px;
}

.package-item.highlight {
  background: var(--coffee);
  color: #fff;
}

.package-item.highlight p,
.package-item.highlight strong {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 340px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 3px solid rgba(74, 52, 40, 0.58);
  object-fit: cover;
}

.process {
  background: var(--cream);
}

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

.steps div {
  border-top: 1px solid rgba(36, 33, 29, 0.2);
  padding-top: 22px;
}

.faq-section {
  background: var(--paper);
}

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

.faq-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.faq-grid h3 {
  font-size: 20px;
}

.faq-grid p {
  font-size: 15px;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 660px;
  background: #fff;
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.story-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 86px);
}

.reviews-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 7vw, 100px);
  background: var(--coffee);
  color: #fff;
}

.reviews-band h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.reviews-band p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.reviews-band .eyebrow {
  color: #f2c6a7;
}

.reviews-band .button {
  white-space: nowrap;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  padding: clamp(72px, 10vw, 130px) clamp(18px, 6vw, 86px);
  background: var(--sage);
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section .eyebrow {
  color: #f7d2b6;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 20px;
  font-weight: 700;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.label-note {
  color: rgba(111, 103, 93, 0.72);
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(18px, 6vw, 86px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-main {
  padding-top: 92px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: end;
  padding: clamp(72px, 10vw, 120px) clamp(18px, 6vw, 86px) clamp(54px, 8vw, 90px);
  background: var(--cream);
}

.page-hero h1 {
  color: var(--ink);
  font-size: 70px;
}

.page-hero p {
  font-size: 19px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.coffee-gallery-page .page-hero {
  align-items: center;
}

.coffee-gallery-page .page-hero img {
  height: clamp(520px, 68vh, 680px);
  aspect-ratio: auto;
}

.pricing-grid,
.menu-grid,
.gallery-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card,
.menu-card,
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
}

.pricing-card h3,
.menu-card h3,
.proof-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.price-list,
.menu-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li,
.menu-list li {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.price-list strong,
.menu-list strong {
  color: var(--ink);
}

.price-list strong {
  text-align: right;
}

.savings {
  display: block;
  margin-top: 3px;
  color: var(--clay);
  font-size: 12px;
  white-space: nowrap;
}

.quote-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
  white-space: nowrap;
}

.options-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  border-radius: var(--radius);
  object-fit: cover;
}

.masonry-gallery {
  column-count: 4;
  column-gap: 18px;
}

.masonry-gallery img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
  break-inside: avoid;
  border-radius: var(--radius);
  background: var(--cream);
}

.photo-masonry {
  column-count: 3;
}

.image-focus-top {
  object-position: center 30%;
}

.wide-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 6vw, 86px);
  background: #fff;
}

.wide-feature img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.coffee-moments {
  background: var(--cream);
}

.cta-band {
  padding: clamp(62px, 8vw, 96px) clamp(18px, 6vw, 86px);
  background: var(--coffee);
  color: #fff;
  text-align: center;
}

.cta-band p {
  width: min(720px, 100%);
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.button.light {
  background: #fff;
  color: var(--coffee);
}

.menu-note-grid {
  margin-bottom: 28px;
}

.quote-section {
  align-items: start;
}

.quote-hero {
  align-items: center;
}

.form-status {
  margin: 0;
  border: 1px solid rgba(113, 128, 107, 0.32);
  border-radius: var(--radius);
  background: rgba(113, 128, 107, 0.12);
  color: var(--coffee);
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
}

.form-status.is-error {
  border-color: rgba(167, 101, 77, 0.4);
  background: rgba(167, 101, 77, 0.12);
  color: #713e2f;
}

.success-dialog {
  width: min(520px, calc(100% - 36px));
  max-width: none;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 32px 90px rgba(36, 33, 29, 0.3);
}

.success-dialog::backdrop {
  background: rgba(36, 33, 29, 0.68);
  backdrop-filter: blur(5px);
}

.success-dialog-inner {
  padding: clamp(30px, 6vw, 50px);
}

.success-dialog h2 {
  margin-bottom: 18px;
  font-size: 42px;
}

.success-dialog p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.success-dialog .button {
  margin-top: 10px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mobile-sticky-cta {
  display: none;
}

.legal-page {
  width: min(860px, 100%);
  min-height: 70vh;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 64px;
}

.legal-page h2 {
  margin-top: 44px;
  font-size: 32px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: start;
  padding: 32px;
}

.not-found p {
  max-width: 520px;
}

.bean-trickle {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: min(34vh, 320px);
  overflow: hidden;
  pointer-events: none;
}

.coffee-bean {
  position: absolute;
  top: -28px;
  left: var(--x);
  width: var(--size);
  height: calc(var(--size) * 1.45);
  border-radius: 52% 48% 50% 50%;
  background: linear-gradient(135deg, #8b6247 0%, #563828 54%, #332017 100%);
  box-shadow: 0 3px 7px rgba(43, 29, 23, 0.16);
  opacity: 0;
  transform: rotate(var(--start-rotation));
}

.coffee-bean::after {
  position: absolute;
  inset: 13% 39% 13% 42%;
  border-left: 1px solid rgba(244, 219, 195, 0.56);
  border-radius: 50%;
  content: "";
  transform: rotate(13deg);
}

.bean-trickle.is-active .coffee-bean {
  animation: bean-fall 1.4s cubic-bezier(0.22, 0.72, 0.32, 1) var(--delay) both;
}

.coffee-bean:nth-child(1) { --x: 8%; --size: 10px; --delay: 0.08s; --drift: 18px; --fall: 210px; --start-rotation: -18deg; --turn: 205deg; }
.coffee-bean:nth-child(2) { --x: 20%; --size: 13px; --delay: 0.22s; --drift: -14px; --fall: 260px; --start-rotation: 24deg; --turn: -170deg; }
.coffee-bean:nth-child(3) { --x: 34%; --size: 9px; --delay: 0.02s; --drift: 10px; --fall: 180px; --start-rotation: 42deg; --turn: 240deg; }
.coffee-bean:nth-child(4) { --x: 47%; --size: 12px; --delay: 0.3s; --drift: 22px; --fall: 235px; --start-rotation: -35deg; --turn: 180deg; }
.coffee-bean:nth-child(5) { --x: 61%; --size: 10px; --delay: 0.14s; --drift: -19px; --fall: 285px; --start-rotation: 18deg; --turn: -220deg; }
.coffee-bean:nth-child(6) { --x: 73%; --size: 13px; --delay: 0.36s; --drift: 12px; --fall: 205px; --start-rotation: 35deg; --turn: 190deg; }
.coffee-bean:nth-child(7) { --x: 85%; --size: 9px; --delay: 0.18s; --drift: -11px; --fall: 245px; --start-rotation: -24deg; --turn: -210deg; }
.coffee-bean:nth-child(8) { --x: 94%; --size: 11px; --delay: 0.05s; --drift: -20px; --fall: 190px; --start-rotation: 12deg; --turn: 230deg; }

@keyframes bean-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0) rotate(var(--start-rotation));
  }

  16% {
    opacity: 0.82;
  }

  72% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift), var(--fall), 0) rotate(var(--turn));
  }
}

@media (max-width: 640px) {
  .bean-trickle {
    height: 240px;
  }

  .coffee-bean:nth-child(n + 7) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bean-trickle {
    display: none;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 44px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .intro,
  .split,
  .story,
  .reviews-band,
  .contact-section,
  .page-hero,
  .wide-feature {
    grid-template-columns: 1fr;
  }

  .coffee-gallery-page .page-hero img {
    height: min(118vw, 620px);
  }

  .intro p:last-child {
    margin-top: 0;
  }

  .service-grid,
  .steps,
  .faq-grid,
  .pricing-grid,
  .menu-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

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

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

  .masonry-gallery,
  .photo-masonry {
    column-count: 2;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 86px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .legal-page h1 {
    font-size: 42px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    padding: 9px 14px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-right: 18px;
    margin-left: 18px;
    margin-bottom: 44px;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: block;
  }

  .hero p,
  .page-hero p,
  .intro p:last-child {
    font-size: 16px;
    line-height: 1.58;
  }

  .section,
  .service-band,
  .reviews-band,
  .contact-section,
  .page-hero,
  .wide-feature {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section,
  .service-band {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .package-item,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .package-item,
  .pricing-card,
  .menu-card,
  .proof-card,
  .service-card div {
    padding: 22px;
  }

  .price-list li,
  .menu-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-list strong {
    text-align: left;
  }

  .quote-link {
    width: 100%;
    justify-content: center;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

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

  .masonry-gallery,
  .photo-masonry {
    column-count: 1;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 30;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--clay);
    color: #fff;
    box-shadow: 0 18px 42px rgba(74, 52, 40, 0.32);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
  }
}
