:root {
  color-scheme: light;
  --burgundy: #5a0f1f;
  --burgundy-deep: #3d0915;
  --burgundy-soft: #7a1a2e;
  --gold: #c9a96a;
  --gold-light: #e3c98a;
  --gold-deep: #9a7d44;
  --cream: #f6f1e7;
  --ivory: #fbf8f1;
  --ink: #1a0a0e;
  --muted: #6b5a5e;
  --line: rgba(201, 169, 106, 0.25);
  --shadow: 0 30px 80px rgba(58, 9, 20, 0.24);
  --radius: 4px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 158px;
}

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  gap: 0;
  padding: 0;
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.anniversary-banner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 18px;
  color: var(--gold-light);
  background:
    linear-gradient(90deg, rgba(61, 9, 21, 0.96), rgba(26, 10, 14, 0.98) 48%, rgba(90, 15, 31, 0.96)),
    var(--ink);
  border-bottom: 1px solid rgba(227, 201, 138, 0.34);
  box-shadow: inset 0 -1px 0 rgba(154, 125, 68, 0.28);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.anniversary-icon {
  color: #f5df9d;
  font-size: 0.88rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(227, 201, 138, 0.42);
}

.anniversary-copy,
.anniversary-date {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.anniversary-date {
  gap: 10px;
  color: #f4dda1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.anniversary-date::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 201, 138, 0.72));
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 273px;
  height: 86px;
  flex: 0 0 273px;
  object-fit: cover;
  object-position: center;
}

.nav-links {
  display: none;
}

.nav-links a,
.nav-dropdown-trigger,
.site-footer a {
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(201, 169, 106, 0.46);
  background: var(--burgundy-deep);
  box-shadow: 0 18px 38px rgba(26, 10, 14, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--cream);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--gold-light);
  background: rgba(246, 241, 231, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Mobile nav open state */
.site-header.nav-is-open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 4px 0 12px;
  background: var(--burgundy-deep);
  border-bottom: 1px solid rgba(201, 169, 106, 0.25);
  box-shadow: 0 8px 24px rgba(26, 10, 14, 0.3);
  gap: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header.nav-is-open .nav-links > a {
  padding: 13px 20px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header.nav-is-open .nav-links > a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}

.site-header.nav-is-open .nav-dropdown {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header.nav-is-open .nav-dropdown-trigger {
  padding: 13px 20px;
  color: var(--cream);
  text-align: left;
}

.site-header.nav-is-open .nav-dropdown-menu {
  position: static;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.site-header.nav-is-open .nav-dropdown-menu a {
  padding: 10px 20px 10px 36px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.header-actions a.button {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 24px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.language-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-width: 78px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.72);
}

.language-option {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-option.is-active {
  color: var(--gold-light);
  background: var(--burgundy);
}

.mobile-apply-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(16px);
}

.mobile-apply-bar .button {
  width: 100%;
}

body.is-applying {
  padding-bottom: 0;
}

body.is-applying .mobile-apply-bar {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-small {
  display: none;
  min-height: 40px;
  padding: 0 18px;
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button-primary {
  color: var(--burgundy-deep);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.button-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-ghost,
.button-outline {
  color: var(--burgundy);
  background: transparent;
  border-color: var(--burgundy);
}

.hero .button-ghost {
  color: var(--gold-light);
  border-color: var(--gold);
}

.button-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  place-items: center;
  border-radius: 50%;
  color: var(--burgundy-deep);
  background: rgba(251, 248, 241, 0.8);
  font-size: 1rem;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  gap: 44px;
  max-width: none;
  margin: 0;
  padding: 70px 18px 82px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(ellipse at 70% 28%, rgba(201, 169, 106, 0.2), transparent 55%),
    linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 58%, var(--burgundy-soft) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 82%, rgba(201, 169, 106, 0.14), transparent 38%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23c9a96a' stroke-opacity='.06' stroke-width='1'><circle cx='60' cy='60' r='28'/><circle cx='60' cy='60' r='44'/><circle cx='60' cy='60' r='12'/></g></svg>");
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0;
  color: var(--burgundy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero .eyebrow,
.application-copy .eyebrow {
  color: var(--gold-light);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--cream);
  font-size: clamp(3.4rem, 15vw, 6rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--burgundy-deep);
  font-size: clamp(2.45rem, 10vw, 3.9rem);
}

h3 {
  margin-bottom: 8px;
  color: var(--burgundy-deep);
  font-size: 1.48rem;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(246, 241, 231, 0.82);
  font-size: 1.05rem;
  font-weight: 300;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.trust-strip {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(201, 169, 106, 0.28);
  color: rgba(246, 241, 231, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-media {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 106, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--burgundy-deep);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: saturate(0.86) contrast(0.95);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(61, 9, 21, 0.08), rgba(61, 9, 21, 0.55)),
    radial-gradient(ellipse at 45% 40%, transparent 30%, rgba(26, 10, 14, 0.42));
  pointer-events: none;
}

.hero-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: grid;
  width: min(308px, calc(100% - 28px));
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(201, 169, 106, 0.45);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(61, 9, 21, 0.9);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.hero-card strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
}

.hero-card span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(246, 241, 231, 0.82);
  font-size: 0.92rem;
  font-weight: 300;
}

.hero-card span::before,
.requirement-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--gold);
}

.intro-band {
  padding: 34px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.intro-band p {
  max-width: var(--max);
  margin: 0 auto;
  color: var(--burgundy-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 6vw, 2.4rem);
  font-weight: 600;
  line-height: 1.12;
}

.intro-band a {
  display: inline-block;
  margin-left: 10px;
  color: var(--gold-deep);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.section,
.benefits-section,
.testimonials,
.social-section,
.application-section,
.contact-section,
.split-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 18px;
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 16px;
  margin-bottom: 34px;
}

.steps,
.benefit-grid,
.testimonial-grid,
.social-feed,
.contact-grid {
  display: grid;
  gap: 18px;
}

.step-card,
.benefit,
.testimonial-grid figure,
.social-post,
.contact-grid article {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.step-card,
.benefit {
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--burgundy);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.step-card p,
.benefit p,
.split-section p,
.application-copy p,
.contact-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.benefits-section {
  max-width: none;
  background:
    radial-gradient(ellipse at 20% 8%, rgba(201, 169, 106, 0.16), transparent 38%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.benefits-section .section-heading,
.benefit-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(201, 169, 106, 0.7);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--burgundy-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.split-section {
  display: grid;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  background: var(--gold-light);
}

.featured-home-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
}

.featured-home-card {
  flex: 0 0 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 16px 40px rgba(58, 9, 20, 0.08);
}

.fhc-media {
  display: grid;
  aspect-ratio: 3 / 4;
  place-items: center;
  background: var(--ivory);
}

.fhc-media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
}

.fhc-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.fhc-copy h3,
.fhc-copy p {
  margin-bottom: 0;
}

.fhc-copy h3 {
  color: var(--burgundy-deep);
  font-size: 1.25rem;
}

.fhc-copy p:not(.product-sku) {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.45;
}

.featured-home-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonials {
  max-width: none;
  color: var(--cream);
  background:
    linear-gradient(180deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
}

.testimonials .section-heading,
.testimonial-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.testimonials .eyebrow {
  color: var(--gold-light);
}

.testimonials h2 {
  color: var(--cream);
}

.testimonial-grid figure {
  border-color: rgba(201, 169, 106, 0.22);
  background: rgba(246, 241, 231, 0.04);
  backdrop-filter: blur(6px);
}

.testimonial-grid blockquote {
  margin: 0 0 18px;
  color: rgba(246, 241, 231, 0.9);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 300;
}

.testimonial-grid blockquote::before {
  content: "\201C";
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}

.testimonial-grid figcaption {
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 106, 0.22);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-section {
  display: grid;
  gap: 8px;
}

.social-post {
  display: grid;
  gap: 16px;
  background: #fffdf8;
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
}

.social-post.is-error {
  border-color: rgba(122, 26, 46, 0.28);
  background: rgba(246, 241, 231, 0.64);
}

.social-post-header,
.social-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social-platform {
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-handle,
.social-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.social-content {
  min-height: 96px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
}

.social-meta {
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.social-link {
  width: fit-content;
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-status {
  margin: 0;
  color: var(--muted);
}

.social-embed-wrapper {
  display: grid;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
  justify-items: center;
}

.social-embed-wrapper > *,
.social-embed-wrapper iframe,
.instagram-media,
.fb-post,
.fb-post span,
.fb-post iframe {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.social-embeds-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

/* Fallback card shown when an embed SDK is blocked by privacy settings */
.embed-fallback-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 550px);
  min-height: 54px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--burgundy);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  gap: 12px;
  transition: border-color 180ms ease;
}

.embed-fallback-link:hover {
  border-color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.embed-fallback-link strong {
  font-weight: 700;
}

/* Instagram blockquote raw state (before embed.js processes it).
   Instagram's inline styles override these when the embed loads. */
blockquote.instagram-media:not([style]) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 550px);
  min-height: 54px;
  padding: 0;
  border: none;
  background: none;
  margin: 0;
}

.application-section {
  display: grid;
  gap: 30px;
  max-width: none;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 106, 0.18), transparent 42%),
    linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
}

.application-copy,
.application-form {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.application-copy {
  display: grid;
  gap: 16px;
  color: var(--cream);
}

.application-copy h2 {
  color: var(--cream);
}

.application-copy p {
  color: rgba(246, 241, 231, 0.78);
}

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

.requirement-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.application-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.form-row,
.form-grid {
  display: grid;
  gap: 7px;
}

.form-row {
  min-width: 0;
}

.form-grid {
  gap: 16px;
  align-items: start;
}

label,
legend {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(201, 169, 106, 0.42);
  border-radius: 3px;
  color: var(--ink);
  background: #fffdf8;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(227, 201, 138, 0.62);
  outline-offset: 2px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-row,
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.check-row input,
.consent-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-success {
  padding: 12px;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  color: var(--burgundy);
  background: rgba(201, 169, 106, 0.14);
  font-weight: 700;
}

.form-note.is-error {
  padding: 12px;
  border-left: 3px solid #c0392b;
  border-radius: 0;
  color: #7a1a2e;
  background: rgba(192, 57, 43, 0.08);
  font-weight: 600;
}

.date-input {
  appearance: none;
  -webkit-appearance: none;
}

.field-note,
.form-helper {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 8px 0;
}

.form-section-label {
  margin: 0 0 4px;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  gap: 32px;
}

.contact-grid article {
  background: var(--cream);
}

.contact-grid a {
  color: var(--burgundy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-grid [data-i18n="hoursText"] {
  white-space: pre-line;
}

.about-page,
.credit-page,
.services-page {
  padding-bottom: 0;
}

.page-hero {
  display: grid;
  gap: 18px;
  padding: 78px 18px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(61, 9, 21, 0.96), rgba(90, 15, 31, 0.94)),
    var(--burgundy);
}

.page-hero > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.page-hero .eyebrow {
  color: var(--gold-light);
}

.page-hero h1 {
  max-width: 860px;
  color: var(--cream);
  font-size: clamp(3.1rem, 10vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(246, 241, 231, 0.82);
  font-weight: 300;
}

.story-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 18px;
}

.story-grid {
  display: grid;
  gap: 24px;
}

.story-feature {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.story-feature-text {
  display: block;
}

.story-feature img {
  width: 100%;
  height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
}

.story-photo-gallery {
  display: grid;
  gap: 16px;
}

.story-photo-gallery img {
  width: 100%;
  height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
}

.story-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
}

.story-card span {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.press-section {
  display: grid;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 18px;
  border-top: 1px solid var(--line);
}

.press-copy {
  display: grid;
  gap: 16px;
}

.press-copy blockquote {
  margin: 0;
  color: var(--burgundy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
}

.press-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.press-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px 24px 24px 30px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
  text-decoration: none;
}

.press-card span,
.press-card em {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-card strong {
  color: var(--burgundy-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.08;
}

.about-cta {
  border-bottom: 0;
}

.services-detail-grid {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  align-content: start;
}

.service-detail-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  padding: 6px 8px;
  border: 1px solid rgba(201, 169, 106, 0.34);
  color: var(--burgundy);
  background: var(--ivory);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 34px 18px 92px;
  border-top: 3px solid var(--gold);
  color: rgba(246, 241, 231, 0.7);
  background: var(--burgundy-deep);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 560px) {
  body {
    padding-bottom: 0;
  }

  .mobile-apply-bar {
    display: none;
  }

  .button-small {
    display: inline-flex;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

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

@media (min-width: 760px) {
  .header-main {
    padding: 11px 28px;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions a.button {
    display: inline-flex;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-links a {
    transition: color 180ms ease;
  }

  .nav-links a:hover,
  .nav-dropdown-trigger:hover {
    color: var(--burgundy);
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    padding: 102px 28px 118px;
  }

  .hero-copy {
    justify-self: end;
    max-width: 650px;
    margin-right: 0;
  }

  .hero-media {
    justify-self: start;
    max-width: 480px;
    min-height: 600px;
    margin-left: 0;
  }

  .hero-media img {
    min-height: 600px;
  }

  .section,
  .benefits-section,
  .testimonials,
  .social-section,
  .contact-section,
  .split-section {
    padding: 104px 28px;
  }

  .steps,
  .testimonial-grid,
  .social-feed {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-embeds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

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

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

  .story-feature {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .story-feature-text {
    display: block;
  }

  .story-feature img {
    height: 100%;
    min-height: 280px;
  }

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

  .story-photo-gallery img {
    height: 300px;
  }

  .story-card {
    align-content: center;
  }

  .press-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    align-items: center;
    padding: 96px 28px;
  }

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

  .split-section {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .application-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
    align-items: start;
    padding-right: 28px;
    padding-left: 28px;
  }

  .application-copy,
  .application-form {
    width: 100%;
    max-width: 580px;
  }

  .application-copy {
    justify-self: end;
    padding-top: 22px;
  }

  .application-form {
    justify-self: start;
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 28px;
  }
}

@media (min-width: 1040px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .featured-home-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: visible;
  }

  .featured-home-card {
    flex-basis: auto;
  }
}

@media (max-width: 389px) {
  .header-main {
    padding-right: 12px;
    padding-left: 12px;
  }

  .anniversary-banner {
    gap: 7px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.63rem;
    letter-spacing: 0.11em;
  }

  .anniversary-date {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .anniversary-date::before {
    width: 16px;
  }

  .brand-mark {
    width: 213px;
    height: 71px;
    flex-basis: 213px;
  }

  .language-toggle {
    min-width: 72px;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 559px) {
  .anniversary-copy {
    font-size: 0;
  }

  .anniversary-copy::after {
    content: "Celebrating 50 Years";
    font-size: 0.66rem;
  }

  .hero-actions {
    display: none;
  }
}

.api-template-page {
  padding-bottom: 0;
  background: #fffdf8;
}

.template-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.template-header .button-small {
  display: inline-flex;
}

.api-template-main {
  display: grid;
  gap: 58px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 18px 80px;
}

.api-intro {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.api-intro h1 {
  max-width: 12ch;
  margin: 16px 0;
  color: var(--burgundy-deep);
  font-size: clamp(3rem, 11vw, 5.25rem);
}

.api-intro p,
.template-panel p,
.api-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.api-note,
.template-panel,
.platform-card,
.handoff-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.api-note {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 24px;
}

.api-note strong {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.template-layout,
.platform-grid {
  display: grid;
  gap: 18px;
}

.template-panel,
.platform-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(58, 9, 20, 0.08);
}

.panel-heading,
.platform-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-heading span,
.platform-badge {
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-heading h2,
.handoff-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 3rem);
}

.platform-card a {
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  border: 1px solid rgba(201, 169, 106, 0.34);
  border-radius: var(--radius);
  background: #1a0a0e;
}

code {
  display: block;
  min-width: max-content;
  padding: 18px;
  color: #fbf8f1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.65;
}

.platform-grid .section-heading {
  margin-bottom: 16px;
}

.platform-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.platform-card dt {
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-card dd {
  margin: 0 0 10px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.handoff-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
}

@media (min-width: 760px) {
  .template-header {
    padding: 18px 28px;
  }

  .api-template-main {
    padding: 70px 28px 104px;
  }

  .api-intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  }

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

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

  .platform-grid .section-heading {
    grid-column: 1 / -1;
  }

  .handoff-panel {
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    align-items: start;
  }
}

.shop-page {
  padding-bottom: 0;
  background: #fffdf8;
}

.shop-page .header-main {
  flex-wrap: wrap;
}

.shop-page .nav-links {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 18px;
  overflow: visible;
  padding: 4px 0 2px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  scrollbar-width: none;
  text-transform: uppercase;
}

.shop-page .nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a.is-active,
.nav-dropdown-trigger.is-active {
  position: relative;
  color: var(--burgundy);
}

.nav-links a.is-active::after,
.nav-dropdown-trigger.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
}

.shop-main {
  display: grid;
  gap: 0;
}

.shop-hero {
  display: grid;
  gap: 20px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 60px 18px 48px;
}

.shop-hero h1 {
  max-width: 880px;
  color: var(--burgundy-deep);
  font-size: clamp(3.2rem, 12vw, 5.5rem);
}

.shop-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding-top: 8px;
}

.button-burgundy {
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
  box-shadow: 0 16px 34px rgba(90, 15, 31, 0.18);
}

.button-burgundy:hover {
  background: var(--burgundy-soft);
  border-color: var(--burgundy-soft);
}

.text-cta {
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration-color: rgba(201, 169, 106, 0.65);
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.shop-section,
.shop-contact {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px 18px;
}

.featured-shop-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(246, 241, 231, 0.75), rgba(255, 253, 248, 0));
}

.shop-section-header {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.shop-section-header h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 8vw, 3.4rem);
}

.shop-section-header > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
}

.featured-grid,
.inventory-grid {
  display: grid;
  column-gap: 22px;
  row-gap: 34px;
}

.featured-grid,
.inventory-grid {
  grid-template-columns: 1fr;
}

.product-card {
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease;
}

.product-card-featured {
  box-shadow: none;
}

.product-card.is-sold {
  opacity: 0.58;
}

.product-media {
  isolation: isolate;
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: transparent;
}

.product-card-featured .product-media {
  aspect-ratio: 1 / 1;
}

.inventory-grid .product-media {
  aspect-ratio: 1 / 1;
  overflow: visible;
  background: transparent;
}

.product-media img {
  width: 82%;
  height: 82%;
  max-width: 260px;
  max-height: 260px;
  padding: 0;
  filter: drop-shadow(0 18px 26px rgba(61, 9, 21, 0.12));
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: center;
}

.inventory-grid .product-media img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  object-position: center;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(201, 169, 106, 0.38);
  color: var(--burgundy);
  background: rgba(255, 253, 248, 0.9);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 0 2px;
}

.product-sku {
  margin-bottom: 0;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 0;
  color: var(--burgundy-deep);
  font-size: 1.32rem;
  overflow-wrap: anywhere;
}

.product-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.45;
}

.desc-toggle {
  display: inline;
  margin-left: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-variant-control {
  display: grid;
  gap: 7px;
  padding: 8px 0 2px;
}

.product-variant-slider {
  min-height: 24px;
  padding: 0;
  border: 0;
  accent-color: var(--burgundy);
  background: transparent;
}

.product-variant-labels {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  color: var(--gold-deep);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.product-variant-labels span {
  min-width: 0;
}

.product-variant-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-variant-option {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(201, 169, 106, 0.36);
  color: var(--muted);
  background: var(--ivory);
  cursor: pointer;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-variant-option.is-active,
.product-variant-option:hover {
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-meta span,
.product-status {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-meta span {
  padding: 4px 7px;
  border: 1px solid rgba(201, 169, 106, 0.28);
  background: var(--ivory);
}

.product-card-footer {
  display: grid;
  gap: 10px;
  align-items: center;
  padding-top: 8px;
  border-top: 0;
}

.product-ask {
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--burgundy);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 106, 0.65);
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.product-ask:disabled {
  color: var(--muted);
  cursor: default;
  text-decoration: none;
}

.inventory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(201, 169, 106, 0.36);
  border-radius: 999px;
  color: var(--muted);
  background: #fffdf8;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--cream);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.shop-contact {
  display: grid;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.shop-contact > div > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-weight: 300;
}

.shop-contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.shop-contact-details article,
.inventory-inquiry {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.shop-contact-details article {
  padding: 18px;
}

.shop-contact-details h3 {
  font-size: 1.24rem;
}

.shop-contact-details p {
  margin-bottom: 0;
  color: var(--muted);
}

.shop-contact-details a {
  color: var(--burgundy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.inventory-inquiry {
  display: grid;
  gap: 14px;
  padding: 18px;
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-3px);
  }

  .product-card:hover .product-media img {
    filter: drop-shadow(0 22px 32px rgba(61, 9, 21, 0.16));
  }
}

@media (min-width: 400px) {
  .featured-grid,
  .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 700px) {
  .shop-section-header {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
    align-items: end;
  }

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

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

@media (min-width: 900px) {
  .shop-page .header-main {
    flex-wrap: nowrap;
  }

  .shop-page .nav-links {
    order: initial;
    width: auto;
    gap: 26px;
    overflow: visible;
    padding: 0;
  }

  .shop-hero,
  .shop-section,
  .shop-contact {
    padding-right: 28px;
    padding-left: 28px;
  }

  .shop-hero {
    padding-top: 86px;
    padding-bottom: 68px;
  }

  .shop-contact {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.6fr);
    align-items: start;
  }
}

@media (min-width: 1180px) {
  .featured-grid,
  .inventory-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 760px) and (max-width: 1039px) {
  .brand-mark {
    width: 243px;
    height: 78px;
    flex-basis: 243px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .button-small {
    padding-right: 14px;
    padding-left: 14px;
    letter-spacing: 0.12em;
  }
}
