:root {
  --cream: #fff3de;
  --ivory: #fff7ea;
  --paper: #f9eedc;
  --ink: #1f1a16;
  --muted: #8d867a;
  --line: #d6c7b5;
  --orange: #f59a0b;
  --orange-dark: #d87f00;
  --blush: #f5c6b8;
  --sage: #a9b89e;
  --terracotta: #c9784a;
  --gold: #d9a441;
  --clay: #d8b99b;
  --container: min(85vw, 1540px);
  --display: "Bodoni 72", "Didot", "Baskerville", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 17%, rgba(245, 198, 184, .35), transparent 28rem),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 55%, #ffffff 100%);
  color: var(--ink);
  font-family: var(--sans);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 52px 0 28px;
  transition: padding .28s ease, background .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled {
  width: 100%;
  padding: 18px 7.5vw;
  background: rgba(255, 247, 234, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 199, 181, .62);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(6.4rem, 8.4vw, 8.8rem);
  height: clamp(4.1rem, 5.8vw, 5.8rem);
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.62);
}

.primary-nav {
  display: flex;
  gap: clamp(1.75rem, 3.1vw, 4rem);
  align-items: center;
  color: #302922;
  font-size: .98rem;
  font-weight: 600;
}

.primary-nav a,
.site-footer a,
.text-link,
.category-card a {
  position: relative;
}

.primary-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .26s ease;
}

.primary-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.icon-button,
.menu-toggle,
.arrow-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #74695d;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease;
}

.icon-button {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-button:hover,
.menu-toggle:hover,
.arrow-button:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.menu-toggle {
  width: 2.7rem;
  height: 2.2rem;
  gap: .38rem;
}

.menu-toggle span {
  display: block;
  width: 2.3rem;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(.48rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-.48rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  align-content: center;
  gap: 1.1rem;
  padding: 7rem 8vw 4rem;
  background: rgba(255, 243, 222, .97);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity .25s ease, transform .25s ease;
}

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

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4.6rem);
  line-height: .95;
}

.hero {
  position: relative;
  overflow: hidden;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7.2rem) 0 4.6rem;
}

.hero-background-word {
  position: absolute;
  top: 6.4rem;
  left: 50%;
  z-index: -1;
  color: transparent;
  font-size: clamp(6.6rem, 21vw, 21.5rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: 0;
  opacity: .42;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(245, 154, 11, .28), rgba(245, 198, 184, .06));
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 620px;
}

.hero-copy {
  z-index: 2;
  grid-column: 1 / span 4;
  padding-top: 4.8rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 7.4ch;
  margin-bottom: 2rem;
  font-size: clamp(5.1rem, 7.1vw, 7.9rem);
  line-height: .86;
}

.hero-intro {
  max-width: 33rem;
  margin-bottom: 2.1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.7rem;
  align-items: center;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.8rem;
  min-height: 4.6rem;
  padding: 1rem 2.2rem;
  background: var(--orange);
  color: white;
  box-shadow: 0 20px 42px rgba(245, 154, 11, .22);
  font-size: 1.06rem;
  font-weight: 800;
  transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 26px 52px rgba(216, 127, 0, .28);
  transform: translateY(-3px);
}

.text-link {
  color: #3b332c;
  font-weight: 800;
}

.text-link span,
.category-card a span {
  display: inline-block;
  transition: transform .22s ease;
}

.text-link:hover span,
.category-card a:hover span {
  transform: translateX(.28rem);
}

.hero-visual {
  z-index: 1;
  grid-column: 5 / span 5;
  align-self: end;
  position: relative;
  filter: drop-shadow(0 34px 30px rgba(42, 33, 27, .1));
}

.hero-visual img {
  width: min(112%, 53rem);
  margin-inline: auto;
  border-radius: 32px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.feature-panel {
  grid-column: 10 / span 3;
  padding-top: 4.2rem;
}

.collection-switcher {
  display: grid;
  grid-template-columns: 2.7rem 1fr 2.7rem;
  align-items: center;
  margin-bottom: 2.7rem;
}

.arrow-button {
  width: 2.7rem;
  height: 2.7rem;
  color: #292b2e;
  font-size: 2.4rem;
  line-height: 1;
}

.slide-number {
  color: #292b2e;
  font-size: clamp(4rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.detail-list {
  border-top: 2px solid rgba(141, 134, 122, .58);
}

.detail-row {
  display: grid;
  gap: .35rem;
  border-bottom: 2px solid rgba(141, 134, 122, .58);
  padding: 1.28rem 0;
}

.detail-row span,
.visit-details span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.detail-row strong,
.visit-details strong {
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  font-weight: 700;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-top: 4.3rem;
  color: rgba(31, 26, 22, .22);
  font-size: clamp(1.35rem, 2.25vw, 2.3rem);
  font-weight: 900;
}

.categories,
.store-story,
.visit-panel,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.categories {
  padding: clamp(4.8rem, 7vw, 7.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(0, 55rem);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.story-copy h2,
.visit-card h2 {
  font-size: clamp(3rem, 5.4vw, 6.3rem);
  line-height: .94;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.7rem);
}

.category-card {
  overflow: hidden;
  background: rgba(255, 247, 234, .74);
  border: 1px solid rgba(214, 199, 181, .62);
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(42, 33, 27, .07);
  transition: transform .24s ease, box-shadow .24s ease;
}

.category-card:hover {
  box-shadow: 0 26px 66px rgba(42, 33, 27, .12);
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.category-card:hover img {
  transform: scale(1.045);
}

.category-card div {
  padding: 1.35rem 1.35rem 1.55rem;
}

.category-card p {
  margin-bottom: .65rem;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 900;
}

.category-card h3 {
  min-height: 3.1rem;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.3vw, 2.55rem);
  font-weight: 400;
  line-height: .98;
}

.category-card a {
  color: #3d342b;
  font-weight: 800;
}

.store-story {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(22rem, 7fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  padding: clamp(4rem, 7vw, 7.2rem) 0;
  border-top: 1px solid var(--line);
}

.story-copy p:last-child {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: end;
}

.service-item {
  min-height: 18rem;
  padding: 1.6rem;
  background: rgba(255, 247, 234, .7);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.service-item span {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 2.2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-size: .76rem;
  font-weight: 900;
}

.service-item:nth-child(2) span {
  background: var(--sage);
}

.service-item:nth-child(3) span {
  background: var(--terracotta);
}

.service-item h3 {
  margin-bottom: .8rem;
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}

.service-item p {
  color: var(--muted);
  line-height: 1.58;
}

.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 1px;
  margin-bottom: 5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.visit-card,
.visit-details {
  background: var(--ink);
  color: var(--ivory);
}

.visit-card {
  padding: clamp(2rem, 4vw, 4rem);
}

.visit-card .eyebrow {
  color: var(--gold);
}

.visit-card h2 {
  margin-bottom: 2.3rem;
  color: var(--ivory);
}

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

.visit-details div {
  display: grid;
  align-content: center;
  gap: .55rem;
  min-height: 10rem;
  padding: 2rem;
  border-left: 1px solid rgba(255, 247, 234, .18);
  border-bottom: 1px solid rgba(255, 247, 234, .18);
}

.visit-details span {
  color: rgba(255, 247, 234, .55);
}

.visit-details strong {
  color: var(--ivory);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.8rem 0 4.5rem;
  border-top: 1px solid var(--line);
  color: #40372e;
}

.site-footer .brand {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-brand {
  width: 9.5rem;
  height: 7.2rem;
}

.footer-brand img {
  transform: scale(1.18);
}

.site-footer p {
  max-width: 26rem;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: .9rem;
  justify-content: start;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

:focus-visible {
  outline: 3px solid rgba(245, 154, 11, .62);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  :root {
    --container: min(90vw, 980px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-top: 2.2rem;
  }

  .primary-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    min-height: 0;
  }

  .hero-copy {
    grid-column: 1 / span 4;
  }

  .hero-visual {
    grid-column: 4 / span 5;
    grid-row: 1;
  }

  .feature-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 16rem 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    gap: 0 1.5rem;
  }

  .detail-row {
    border-top: 2px solid rgba(141, 134, 122, .48);
  }

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

  .store-story,
  .visit-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(90vw, 40rem);
  }

  .site-header {
    padding: 1.3rem 0 1rem;
  }

  .site-header.is-scrolled {
    padding: .9rem 5vw;
  }

  .brand {
    width: 6.2rem;
    height: 4.6rem;
  }

  .icon-button {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-background-word {
    top: 4.1rem;
    font-size: clamp(5.4rem, 30vw, 9.5rem);
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  h1 {
    max-width: 8ch;
    margin-bottom: 1.4rem;
    font-size: clamp(4rem, 17vw, 5.35rem);
  }

  .hero-intro {
    margin-bottom: 1.4rem;
  }

  .button-primary {
    width: 100%;
    min-height: 4.25rem;
  }

  .text-link {
    width: 100%;
  }

  .hero-visual {
    order: 2;
  }

  .feature-panel {
    order: 3;
    display: block;
    padding-top: .5rem;
  }

  .collection-switcher {
    max-width: 18rem;
    margin: .3rem auto 1.6rem;
  }

  .slide-number {
    font-size: 4rem;
  }

  .detail-list {
    display: block;
  }

  .logo-row {
    justify-content: center;
    margin-top: 2.5rem;
    text-align: center;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .story-copy h2,
  .visit-card h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .category-grid,
  .service-grid,
  .visit-details,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-card h3 {
    min-height: auto;
  }

  .store-story {
    gap: 1.5rem;
  }

  .service-item {
    min-height: 0;
  }

  .visit-details div {
    min-height: 8rem;
    border-left: 0;
  }
}

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

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