:root {
  --ink: #151315;
  --coal: #242124;
  --muted: #6d6762;
  --line: #e8e0d7;
  --paper: #fbf7f1;
  --white: #fffdf9;
  --cream: #f3ebe0;
  --champagne: #caa46a;
  --rose: #a85f56;
  --sage: #73826b;
  --shadow: 0 22px 70px rgba(36, 33, 36, 0.12);
  --soft-shadow: 0 12px 36px rgba(36, 33, 36, 0.08);
  --radius: 6px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(202, 164, 106, 0.45);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 38px;
  padding: 8px 18px;
  background: var(--coal);
  color: rgba(255, 253, 249, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 247, 241, 0.92);
  border-bottom: 1px solid rgba(232, 224, 215, 0.85);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(21, 19, 21, 0.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #312d2c;
  font-size: 0.9rem;
  font-weight: 750;
}

.primary-nav a:hover {
  background: rgba(202, 164, 106, 0.14);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button,
.menu-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.icon-button:hover,
.menu-button:hover {
  border-color: var(--champagne);
  background: rgba(255, 253, 249, 0.7);
}

.icon-search {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -7px;
  bottom: -4px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 999px;
}

.icon-bag {
  width: 18px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 2px 2px 7px 7px;
  position: relative;
}

.icon-bag::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.menu-button {
  display: none;
  gap: 4px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: start center;
  padding: 84px 16px 24px;
  background: rgba(21, 19, 21, 0.54);
}

.search-panel[hidden] {
  display: none !important;
}

.search-card {
  width: min(100%, 620px);
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.search-card h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.search-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.search-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 850;
}

.search-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.search-results a,
.search-results p {
  display: block;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.search-dismiss {
  width: 100%;
  margin-top: 16px;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 8.7em;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.35rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 850;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: 70px 0 82px;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.94) 0%, rgba(251, 247, 241, 0.72) 58%, rgba(232, 224, 215, 0.9) 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.hero-kicker {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3f3935;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-row.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

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

.button.secondary:hover {
  border-color: var(--champagne);
  background: rgba(202, 164, 106, 0.1);
}

.button.inverse {
  border-color: rgba(255, 253, 249, 0.28);
  background: var(--white);
  color: var(--ink);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 44px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-details div {
  padding: 18px 16px 18px 0;
}

.hero-details div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-details dt {
  margin-bottom: 5px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 0;
  color: #38322f;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  align-items: end;
  gap: 18px;
}

.showcase-main {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.showcase-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-main figcaption {
  padding: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.showcase-product {
  display: grid;
  gap: 8px;
  margin-bottom: 44px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.showcase-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.showcase-product span,
.product-category {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-product strong {
  line-height: 1.2;
}

.showcase-product em {
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.editorial-strip {
  padding: 0;
  background: var(--coal);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strip-grid a {
  display: grid;
  gap: 8px;
  min-height: 176px;
  padding: 32px 28px;
  border-left: 1px solid rgba(255, 253, 249, 0.12);
}

.strip-grid a:last-child {
  border-right: 1px solid rgba(255, 253, 249, 0.12);
}

.strip-grid span {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.strip-grid strong {
  font-size: 1.12rem;
}

.strip-grid small {
  color: rgba(255, 253, 249, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

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

.category-card {
  position: relative;
  display: grid;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.category-card.feature {
  grid-row: span 2;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(21, 19, 21, 0.72));
}

.category-card span,
.category-card small {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
  color: var(--white);
}

.category-card span {
  bottom: 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.category-card small {
  bottom: 18px;
  color: rgba(255, 253, 249, 0.76);
  font-size: 0.9rem;
}

.category-card:not(.feature) small {
  display: none;
}

.occasion-section {
  background: #f4eee6;
}

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

.occasion-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.occasion-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--white);
}

.occasion-card span {
  font-weight: 900;
}

.occasion-card small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.product-section {
  background: var(--white);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-chip {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--coal);
  font-weight: 850;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.product-card {
  min-width: 0;
  background: var(--white);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #f7f1e9;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  gap: 8px;
  padding: 14px 0 0;
}

.product-title {
  min-height: 44px;
  font-size: 1rem;
  line-height: 1.28;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.price {
  font-weight: 900;
}

.compare-price {
  color: var(--muted);
  text-decoration: line-through;
}

.product-actions {
  margin-top: 4px;
}

.product-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-panel {
  background: var(--paper);
}

.service-grid,
.hire-grid,
.about-grid,
.store-grid,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.service-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-image.tall {
  max-height: 620px;
}

.service-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.service-copy p,
.hire-grid p,
.about-grid p,
.store-grid p,
.benefit-stack p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hire-band {
  background: var(--coal);
  color: var(--white);
}

.hire-grid p {
  color: rgba(255, 253, 249, 0.72);
}

.hire-grid img,
.about-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 249, 0.18);
  box-shadow: var(--shadow);
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3f3935;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 12px;
  height: 1px;
  background: var(--champagne);
}

.proof-section {
  background: #f4eee6;
}

.proof-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: stretch;
}

.testimonial-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.testimonial-card blockquote {
  margin: 24px 0 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: #2f2926;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.testimonial-card cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 850;
}

.benefit-stack {
  display: grid;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.benefit-stack article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 0;
}

.benefit-stack p {
  margin: 9px 0 0;
}

.store-grid {
  align-items: stretch;
}

address {
  margin: 18px 0;
  color: #312d2c;
  font-style: normal;
  font-weight: 850;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
}

.contact-list dt {
  color: var(--muted);
  font-weight: 850;
}

.contact-list dd {
  margin: 0;
  font-weight: 900;
}

.hours-card {
  padding: 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.hours-card h3 {
  margin-bottom: 8px;
}

.hours-card p {
  margin: 4px 0;
}

.map {
  width: 100%;
  min-height: 520px;
  border: 0;
  box-shadow: var(--soft-shadow);
}

.final-cta {
  padding-top: 30px;
}

.cta-card {
  padding: clamp(30px, 6vw, 66px);
  border: 1px solid var(--line);
  background: var(--coal);
  color: var(--white);
  text-align: center;
}

.cta-card .eyebrow {
  color: var(--champagne);
}

.cta-card h2 {
  max-width: 850px;
  margin-inline: auto;
}

.cta-card .button.secondary {
  border-color: rgba(255, 253, 249, 0.3);
  color: var(--white);
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--ink);
  color: rgba(255, 253, 249, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 1.1fr;
  gap: 30px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  border-color: rgba(255, 253, 249, 0.5);
}

.footer-brand small {
  color: rgba(255, 253, 249, 0.62);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 249, 0.13);
  font-size: 0.88rem;
}

.footer-bottom p:first-child {
  max-width: 770px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 700;
  display: none;
  min-height: 42px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
  box-shadow: var(--soft-shadow);
}

.back-to-top.is-visible {
  display: inline-flex;
}

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

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

@media (max-width: 1080px) {
  .primary-nav {
    position: fixed;
    inset: 118px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100vh - 140px);
    overflow: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .menu-button {
    display: grid;
  }

  .hero-grid,
  .service-grid,
  .hire-grid,
  .about-grid,
  .store-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 720px;
  }

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

  .category-card.feature {
    grid-row: auto;
    grid-column: span 2;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .announcement {
    flex-direction: column;
    gap: 2px;
    font-size: 0.74rem;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

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

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .icon-button,
  .menu-button {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading.split {
    display: block;
  }

  .text-link,
  .filter-row {
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 62px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .button-row,
  .hero-details {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-details div,
  .hero-details div + div {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-details div:first-child {
    border-top: 0;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-product {
    margin: 0;
  }

  .strip-grid,
  .category-grid,
  .occasion-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid a,
  .strip-grid a:last-child {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 253, 249, 0.12);
  }

  .category-card.feature {
    grid-column: auto;
  }

  .category-card {
    min-height: 250px;
  }

  .occasion-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .occasion-card {
    min-width: 72%;
    scroll-snap-align: start;
  }

  .service-image.tall,
  .service-image img {
    max-height: 430px;
    height: 430px;
  }

  .map {
    min-height: 360px;
  }

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

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand span:not(.brand-mark) {
    max-width: 112px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-kicker {
    font-size: 1.02rem;
  }

  .occasion-card {
    min-width: 82%;
  }
}

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

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