/* Luxury Hero Section */
.hero-editorial {
  position: relative;
  background: radial-gradient(circle at 75% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-sand-warm) 100%);
  padding: 6rem 0 7rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-editorial {
    padding: 4rem 0 5rem;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-brass);
}

.hero-title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  color: var(--text-main);
  font-weight: 400;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  font-style: italic;
  font-family: var(--font-serif-editorial);
  color: var(--gold-brass-dark);
}

.hero-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  background: var(--gold-brass);
  color: var(--bg-sand);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold-brass);
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #9A7737;
  color: #FFFFFF;
  border-color: #9A7737;
  box-shadow: 0 12px 35px rgba(184, 135, 59, 0.28);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gold-brass-dark);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold-brass);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--bg-brass-tint);
  color: var(--gold-brass-dark);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  background: #181715;
  padding: 1rem;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}

.hero-badge-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-obsidian);
  color: var(--text-light);
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--gold-brass);
  max-width: 240px;
  box-shadow: var(--shadow-dark-card);
}

@media (max-width: 768px) {
  .hero-badge-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

.hero-badge-card .badge-caption {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-brass);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.hero-badge-card .badge-value {
  font-family: var(--font-serif-editorial);
  font-size: 1.25rem;
  line-height: 1.3;
}

/* Narrative Section */
.section-narrative {
  padding: 7rem 0;
  background-color: var(--bg-sand);
}

.narrative-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-serif-editorial);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1.15;
  color: var(--text-main);
  font-weight: 400;
}

.narrative-quote-box {
  background: var(--bg-sand-warm);
  border-left: 3px solid var(--gold-brass);
  padding: 2.5rem 3rem;
  margin: 3rem 0;
  font-family: var(--font-serif-editorial);
  font-size: 1.6rem;
  line-height: 1.45;
  color: var(--text-main);
  font-style: italic;
}

.narrative-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 850px) {
  .narrative-pillars {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  padding: 2.2rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-brass);
  box-shadow: var(--shadow-luxury);
}

.pillar-num {
  font-family: var(--font-serif-regal);
  font-size: 0.9rem;
  color: var(--gold-brass-dark);
  margin-bottom: 1rem;
  display: block;
}

.pillar-title {
  font-family: var(--font-serif-editorial);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.pillar-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Collections Grid Section */
.section-collections {
  padding: 7rem 0;
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  position: relative;
}

.section-collections .section-eyebrow {
  color: var(--gold-brass);
}

.section-collections .section-heading {
  color: var(--text-light);
}

.collection-grid-5 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.collection-card {
  position: relative;
  background: var(--bg-obsidian-card);
  border: 1px solid rgba(197, 160, 89, 0.2);
  overflow: hidden;
  group: hover;
  transition: var(--transition-slow);
}

.collection-card:hover {
  border-color: var(--gold-brass);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.collection-card.col-span-7 {
  grid-column: span 7;
}

.collection-card.col-span-5 {
  grid-column: span 5;
}

.collection-card.col-span-4 {
  grid-column: span 4;
}

@media (max-width: 992px) {

  .collection-card.col-span-7,
  .collection-card.col-span-5,
  .collection-card.col-span-4 {
    grid-column: span 12;
  }
}

.collection-img-wrap {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.85);
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.1) 0%, rgba(18, 17, 16, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
}

.collection-badge {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-brass);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.collection-title {
  font-family: var(--font-serif-editorial);
  font-size: 1.8rem;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.collection-desc {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  max-width: 90%;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-brass);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-link {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* Heritage Old Delhi Section */
.section-heritage-roots {
  padding: 7.5rem 0;
  background: var(--bg-sand-warm);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.heritage-img-stack {
  position: relative;
}

.heritage-img-main {
  width: 90%;
  height: 480px;
  object-fit: cover;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-luxury);
}

.heritage-img-sub {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--gold-brass);
  box-shadow: var(--shadow-dark-card);
}

@media (max-width: 768px) {
  .heritage-img-sub {
    position: static;
    width: 100%;
    margin-top: 1rem;
    height: 220px;
  }

  .heritage-img-main {
    width: 100%;
  }
}

.address-highlight {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 1.5rem 1.8rem;
  margin-top: 2rem;
}

.address-title {
  font-family: var(--font-serif-regal);
  font-size: 0.8rem;
  color: var(--gold-brass-dark);
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}

.address-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* Masterpiece Catalog Section with Live Filters */
.section-catalog {
  padding: 7rem 0;
  background: var(--bg-sand);
}

.catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* =====================================================
   COLLECTION PAGE HERO — BESPOKE EDITORIAL PANORAMA
   ===================================================== */
.collection-hero {
  position: relative;
  /* Match the source image's 3.2:1 ratio so `cover` has nothing to crop,
     with a floor/ceiling so the band stays usable at extreme widths. */
  min-height: clamp(360px, 31.25vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0d0d0d;
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  padding: 8.5rem 0 0;
}

.collection-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #DFBE7B 25%, #B8873B 50%, #DFBE7B 75%, transparent);
  z-index: 5;
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.collection-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor to the right so the statues stay in frame when the viewport is
     narrower than 3.2:1 and cropping is unavoidable. */
  object-position: right center;
  display: block;
}

.collection-hero-overlay { display: none; }

.collection-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.collection-hero-content {
  max-width: 340px;
  background: transparent;
  padding: 1.5rem 1.8rem;
  border-left: 3px solid rgba(197, 160, 89, 0.7);
}

.collection-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.collection-hero-eyebrow .eyebrow-line {
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold-brass);
}

.collection-hero-eyebrow .eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
}

.collection-hero-title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 8px rgba(240,230,210,0.8);
}

.collection-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #B8873B 0%, #8C6226 50%, #C5A059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collection-hero-copy {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 6px rgba(240,230,210,0.7);
}

.collection-hero-badges {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.collection-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(247, 240, 225, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  padding: 0.3rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  width: fit-content;
}

.collection-hero-badge .badge-dot {
  color: var(--gold-brass);
  font-size: 0.65rem;
}

@media (max-width: 992px) {
  .collection-hero { min-height: 380px; padding: 7rem 0 0; }
  .collection-hero-content { max-width: 300px; padding: 1.2rem 1.5rem; }
  .collection-hero-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
}

@media (max-width: 768px) {
  .collection-hero {
    min-height: auto;
    padding: 5.5rem 0 0;
    flex-direction: column;
    align-items: stretch;
    background-color: #FAF8F5 !important;
  }
  .collection-hero-bg {
    position: relative;
    inset: auto;
    height: 230px;
    background-color: #FAF8F5;
  }
  .collection-hero-container {
    padding: 1.5rem 1.25rem 2rem;
    background-color: #FAF8F5;
  }
  .collection-hero-content {
    max-width: 100%;
    border-left: none;
    border-top: 3px solid rgba(197, 160, 89, 0.6);
    padding: 1.25rem 0 0;
  }
  .collection-hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
    color: #191713 !important;
    text-shadow: none !important;
  }
  .collection-hero-title em {
    display: inline-block;
  }
  .collection-hero-copy {
    color: #4A443D !important;
    text-shadow: none !important;
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .collection-hero-badge {
    background: rgba(197, 160, 89, 0.12) !important;
    border-color: rgba(197, 160, 89, 0.3) !important;
    color: #191713 !important;
  }
  .filter-bar {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    /* Must be flex-start: `center` on a horizontally scrolling flex container
       pushes the overflowing start (including "Everything") out of reach. */
    justify-content: flex-start !important;
    gap: 0.6rem !important;
    padding: 0.5rem 1rem 1rem !important;
    margin-bottom: 1.5rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Snap so categories come to rest cleanly instead of mid-word. */
    scroll-snap-type: x proximity;
    scroll-padding-left: 1rem;
  }
  .filter-btn {
    scroll-snap-align: start;
  }
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.7rem !important;
    padding: 0.5rem 0.75rem !important;
  }
  .filter-btn::after {
    left: 0.75rem;
    right: 0.75rem;
  }
  .filter-btn[data-filter="all"] {
    padding-right: 1rem !important;
  }
}

/* =====================================================
   END COLLECTION HERO
   ===================================================== */

/* ── Category filter: editorial row, not form buttons ──
   Was a set of hard-bordered rectangles that wrapped onto a ragged second row.
   Now typographic: the active category is marked by a brass underline rather
   than a filled box, and the whole row scrolls horizontally instead of wrapping. */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  /* Centred so a wrapped row reads as a balanced index rather than an
     orphaned tail hanging off the left edge. */
  justify-content: center;
  gap: 0.2rem 0.35rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Left-aligned once everything fits on one line — centring only earns its
   keep when the row wraps. */
@media (min-width: 1600px) {
  .filter-bar {
    justify-content: flex-start;
  }
}

.filter-bar .swiper-wrapper {
  align-items: center;
}

.filter-btn {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-sans, inherit);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* The underline is a pseudo-element so it can animate from the centre and
   never shifts the text, unlike a real border. */
.filter-btn::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.15rem;
  height: 1.5px;
  background: var(--gold-brass);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: var(--text-main);
}

.filter-btn:hover::after {
  transform: scaleX(1);
}

.filter-btn.active {
  color: var(--text-main);
  font-weight: 600;
}

.filter-btn.active::after {
  transform: scaleX(1);
  height: 2px;
  background: var(--gold-brass-dark);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--gold-brass-dark);
  outline-offset: 2px;
  border-radius: 2px;
}

/* "Everything" is a reset, not a peer of the categories — a hairline divider
   separates it so the eye reads it as the way back to the full set. */
.filter-btn[data-filter="all"] {
  margin-right: 0.6rem;
  padding-right: 1.2rem;
}

.filter-btn[data-filter="all"]::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.95rem;
  background: rgba(197, 160, 89, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .filter-btn::after {
    transition: none;
  }
}

.filter-btn.swiper-slide {
  width: auto;
}

/* Filled-box hover/active replaced by the underline treatment above. */

.products-carousel {
  padding: 10px 10px 30px 10px;
  margin: -10px -10px -30px -10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-brass);
  box-shadow: var(--shadow-luxury);
}

.product-img-box {
  position: relative;
  height: 380px;
  background: #FAF8F5;
  border-bottom: 1px solid var(--border-default);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.product-img-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain !important;
  object-position: center center;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 16px rgba(25, 23, 19, 0.08));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img-box img {
  transform: scale(1.04);
}

/* -------------------------------------------------------------------------
   Front Page: "Some of what is here" Category Carousel
   Keep category showcase images 100% full-bleed edge-to-edge (object-fit: cover)
   with zero padding and dark seamless backdrop, exactly as originally intended.
   ---------------------------------------------------------------------- */
.products-carousel .product-card,
.category-card {
  overflow: hidden;
}

.products-carousel .product-img-box,
.category-img-box {
  position: relative !important;
  height: 380px !important;
  background: #171615 !important;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
  overflow: hidden !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}

.products-carousel .product-img-link,
.category-img-link {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.products-carousel .product-img-box img,
.category-img-box img,
.category-card-img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  filter: none !important;
  border-radius: 0 !important;
  transform: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.products-carousel .product-card:hover .product-img-box img,
.category-card:hover .category-img-box img {
  transform: scale(1.06) !important;
}

.product-badge-corner {
  display: none !important;
}

.product-quick-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(250, 248, 245, 0.95);
  color: var(--text-main);
  border: 1px solid var(--gold-brass);
  padding: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.product-card:hover .product-quick-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-btn:hover {
  background: var(--gold-brass);
  color: #FFFFFF;
}

.product-details {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-form-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: var(--font-serif-editorial);
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.product-statement {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex: 1;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-meta-item strong {
  color: var(--text-main);
  font-weight: 600;
}

.product-price {
  margin-top: 1rem;
  font-family: var(--font-serif-editorial);
  font-size: 1.1rem;
  color: var(--gold-brass-dark);
  font-weight: 600;
}

.product-price .woocommerce-Price-amount {
  color: var(--gold-brass-dark);
}

/* Story / Brass Material Section */
.section-art-of-brass {
  padding: 7.5rem 0;
  background: var(--bg-obsidian);
  color: var(--text-light);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.brass-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .brass-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.brass-craft-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.craft-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.craft-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-brass);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.craft-content h4 {
  font-family: var(--font-serif-editorial);
  font-size: 1.25rem;
  color: var(--gold-brass-light);
  margin-bottom: 0.25rem;
}

.craft-content p {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* Timeline Section */
.section-timeline {
  padding: 7rem 0;
  background: var(--bg-sand);
}

.timeline-track {
  position: relative;
  margin-top: 4rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(197, 160, 89, 0.3);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-track::before {
    left: 20px;
  }
}

.timeline-milestone {
  position: relative;
  margin-bottom: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .timeline-milestone {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-left: 50px;
  }
}

.timeline-milestone:nth-child(even) .milestone-card {
  grid-column: 2;
}

.timeline-milestone:nth-child(even) .milestone-year-wrap {
  grid-column: 1;
  text-align: right;
}

@media (max-width: 768px) {

  .timeline-milestone:nth-child(even) .milestone-card,
  .timeline-milestone:nth-child(even) .milestone-year-wrap {
    grid-column: 1;
    text-align: left;
  }
}

.milestone-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--bg-obsidian);
  border: 2px solid var(--gold-brass);
  border-radius: 50%;
  z-index: 2;
}

@media (max-width: 768px) {
  .milestone-dot {
    left: 20px;
    top: 24px;
  }
}

.milestone-year {
  font-family: var(--font-serif-regal);
  font-size: 2.2rem;
  color: var(--gold-brass-dark);
  font-weight: 700;
}

.milestone-card {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.milestone-card:hover {
  border-color: var(--gold-brass);
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.milestone-heading {
  font-family: var(--font-serif-editorial);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.milestone-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Journal / Stories Section */
.section-journal {
  padding: 7rem 0;
  background: var(--bg-sand-warm);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

.journal-card {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.journal-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-brass);
  box-shadow: var(--shadow-luxury);
}

.journal-img-box {
  height: 280px;
  overflow: hidden;
  background: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.journal-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(25, 23, 19, 0.08));
  transition: transform 0.6s ease;
}

.journal-card:hover .journal-img-box img {
  transform: scale(1.05);
}

.journal-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journal-cat {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.journal-title {
  font-family: var(--font-serif-editorial);
  font-size: 1.45rem;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.journal-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.journal-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.journal-card:hover .journal-read-link {
  color: var(--gold-brass-dark);
  transform: translateX(4px);
}

/* Homepage Closing Banner */
.section-closing-banner {
  padding: 8rem 0;
  background: var(--bg-card-hover);
  color: var(--text-main);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border-default);
}

.closing-container {
  max-width: 860px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.closing-copy {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 3rem;
}



/* =====================================================
   HERO VIDEO SECTION Ã¢â‚¬â€ Cinematic Redesign
   ===================================================== */

/* Keyframes */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLineGrow {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 40px;
    opacity: 1;
  }
}

@keyframes heroRuleExpand {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes heroWordReveal {
  from {
    opacity: 0;
    transform: translateY(40px) skewY(3deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes progressFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Section */
.hero-video-bg {
  position: relative;
  background-color: var(--bg-obsidian);
  border-bottom: none;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  overflow: hidden;
}

/* Video wrap */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-wrap video.hero-video-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-video-wrap video.hero-video-item.active {
  opacity: 1;
}

/* Overlays */
.hero-video-wrap .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.82) 0%, rgba(12, 11, 10, 0.45) 55%, transparent 100%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.6) 0%, transparent 50%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Content wrap Ã¢â‚¬â€ anchored bottom-left Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-content-wrap {
  position: absolute;
  bottom: 12%;
  left: 0;
  padding: 0 5vw;
  z-index: 10;
  max-width: 700px;
  transition: opacity 0.35s ease;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-eyebrow-line {
  display: block;
  height: 1px;
  background: var(--gold-brass);
  animation: heroLineGrow 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  width: 0;
  opacity: 0;
}

.hero-eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Headline */
.hero-headline {
  font-family: var(--font-serif-editorial);
  font-size: clamp(3.2rem, 7vw, 6rem);
  /* Was line-height:1, which sets the line box to exactly the font size and
     clips italic descenders (the "g" in "Heritage") against overflow:hidden. */
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text-light);
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.hero-headline-row {
  display: flex;
  gap: 0.3em;
  /* overflow:hidden masks the 40px slide-up of .hero-word. Padding below the
     text keeps the mask edge clear of descenders; the negative margin cancels
     the padding so line spacing is unchanged. */
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}

.hero-headline-italic {
  font-style: italic;
  margin-top: 0.05em;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  animation: heroWordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-word:nth-child(1) {
  animation-delay: 0.45s;
}

.hero-word:nth-child(2) {
  animation-delay: 0.58s;
}

.hero-word:nth-child(3) {
  animation-delay: 0.71s;
}

.hero-word.gold {
  color: var(--gold-brass-light);
  animation-delay: 0.6s;
}

/* Horizontal rule */
.hero-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-brass) 0%, transparent 100%);
  margin-bottom: 1.6rem;
  transform-origin: left;
  opacity: 0;
  animation: heroRuleExpand 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

/* Bottom row: body + CTAs side by side */
.hero-bottom-row {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.hero-body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 225, 215, 0.82);
  max-width: 320px;
  margin: 0;
}

/* CTAs */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2rem;
  background: var(--gold-brass);
  color: var(--bg-obsidian);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold-brass);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-cta-primary:hover {
  background: transparent;
  color: var(--gold-brass-light);
  border-color: var(--gold-brass-light);
}

.hero-cta-ghost {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.65);
  border-bottom: 1px solid rgba(250, 248, 245, 0.25);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.hero-cta-ghost:hover {
  color: var(--text-light);
  border-color: var(--text-light);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Slide UI Ã¢â‚¬â€ bottom right Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-slide-ui {
  position: absolute;
  bottom: 2.5rem;
  right: 5vw;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 10;
}

.hero-progress-bar {
  width: 80px;
  height: 1px;
  background: rgba(250, 248, 245, 0.2);
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-brass);
  transition: none;
}

.hero-progress-fill.running {
  animation: progressFill linear forwards;
  animation-duration: var(--hero-video-duration, 10s);
}

.hero-slide-counter {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(250, 248, 245, 0.5);
  font-weight: 500;
}

#hero-slide-current {
  color: var(--gold-brass-light);
  font-weight: 700;
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ Nav arrows Ã¢â€ â‚¬Ã¢â€ â‚¬ */
.hero-slider-btn {
  width: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--gold-brass);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-slider-btn:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--gold-brass);
  color: var(--gold-brass-light);
}

.hero-slider-btn.prev {
  left: 2rem;
}

.hero-slider-btn.next {
  right: 2rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Scroll hint Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.6s forwards;
}

.hero-scroll-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.4);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-brass) 0%, transparent 100%);
  animation: scrollBounce 2s ease-in-out 2s infinite;
}

/* ── Slide change re-animation ── */
.hero-word {
  display: inline-block;
  opacity: 1;
}

.hero-eyebrow {
  opacity: 1;
}

.hero-rule {
  opacity: 1;
  transform-origin: left;
}

.hero-bottom-row {
  opacity: 1;
}

/* Triggered by JS on each slide */
.hero-content-wrap.slide-animate .hero-eyebrow {
  animation: heroFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.hero-content-wrap.slide-animate .hero-word {
  animation: heroWordReveal 0.6s ease forwards;
}

.hero-content-wrap.slide-animate .hero-rule {
  animation: heroRuleExpand 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-content-wrap.slide-animate .hero-bottom-row {
  animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .hero-video-bg {
    aspect-ratio: auto;
    height: 92vh;
    height: 92svh;
    min-height: 540px;
    max-height: 780px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero-video-wrap .hero-overlay {
    background: linear-gradient(0deg, rgba(12, 11, 10, 0.95) 0%, rgba(12, 11, 10, 0.65) 55%, rgba(12, 11, 10, 0.35) 100%);
  }

  .hero-content-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 2rem 1.5rem 4rem;
    max-width: 100%;
    z-index: 10;
  }

  .hero-eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 7.5vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 1rem;
  }

  .hero-rule {
    margin-bottom: 1.2rem;
    width: 80px;
  }

  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hero-body {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 100%;
    color: rgba(245, 240, 230, 0.92);
  }

  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-cta-primary {
    padding: 0.75rem 1.4rem;
    font-size: 0.7rem;
  }

  .hero-cta-ghost {
    padding: 0.75rem 1.1rem;
    font-size: 0.7rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* Reposition slider arrows to bottom right so they NEVER overlap content */
  .hero-slider-btn {
    top: auto;
    bottom: 1.25rem;
    transform: none;
    width: 38px;
    height: 38px;
    z-index: 15;
  }

  .hero-slider-btn.prev {
    left: auto;
    right: 4.2rem;
  }

  .hero-slider-btn.next {
    right: 1.25rem;
  }

  .hero-slide-ui {
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
  }
}

@media (max-width: 600px) {
  .hero-content-wrap {
    bottom: 8%;
    padding: 0 1.25rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-body {
    font-size: 0.88rem;
  }

  .hero-slide-ui {
    display: none;
  }
}

/* =====================================================
   PREMIUM MARQUEE STRIP
   ===================================================== */

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-strip {
  background: var(--bg-sand);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: 100%;
}

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.marquee-strip:hover .marquee-inner {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 1.4rem 1.1rem 0;
  font-family: var(--font-serif-editorial);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--text-main);
  transition: color 0.3s ease;
  cursor: default;
}

.marquee-item:hover {
  color: var(--gold-brass-dark);
}

.marquee-item:nth-child(even) {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-item:nth-child(even):hover {
  color: var(--gold-brass-dark);
}

.marquee-dot {
  font-size: 0.5rem;
  color: var(--gold-brass);
  opacity: 0.8;
  vertical-align: middle;
  flex-shrink: 0;
}

/* =====================================================
   HERITAGE SECTION (ARTISAN STORY)
   ===================================================== */
.heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  background: var(--bg-brass-tint);
  color: var(--text-main);
  overflow: hidden;
}

/* the seam between the two halves */
.heritage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.45) 18%, rgba(197, 160, 89, 0.45) 82%, transparent);
  z-index: 3;
}

/* ---------- left: image with parallax ---------- */
.heritage__visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-card-hover);
}

.heritage__media {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 15%;
  will-change: transform;
  filter: saturate(0.92) contrast(1.04);
}

.heritage__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 17, 16, 0.85) 0%, rgba(18, 17, 16, 0) 45%);
  pointer-events: none;
  z-index: 2;
}

.heritage__sheen {
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(224, 192, 126, 0.20) 45%, rgba(255, 244, 224, 0.32) 50%, rgba(224, 192, 126, 0.20) 55%, transparent);
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.is-revealed .heritage__sheen {
  animation: sweep 2600ms cubic-bezier(0.22, 0.61, 0.36, 1) 500ms 1 forwards;
}

@keyframes sweep {
  0% {
    left: -80%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    left: 190%;
    opacity: 0;
  }
}

.heritage__place {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
}

/* ---------- right: the words ---------- */
.heritage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 6vw 7rem 5vw;
  max-width: 38rem;
}

.heritage .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-meta);
  margin-bottom: 2.25rem;
}

.heritage .eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--accent-sindoor);
  flex: none;
}

.heritage .deva {
  font-family: var(--font-deva);
  font-size: 1.1rem;
  color: var(--gold-brass);
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.heritage .quote {
  position: relative;
  font-family: var(--font-serif-editorial);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--text-main);
}

.heritage .quote em {
  font-style: normal;
  color: var(--gold-brass-dark);
}

.heritage .quote::before {
  content: "\201C";
  position: absolute;
  left: -0.55em;
  top: -0.06em;
  font-size: 1.5em;
  line-height: 1;
  color: rgba(197, 160, 89, 0.34);
}

.heritage .rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold-brass);
  margin: 2.75rem 0;
}

.heritage .prose p {
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 34rem;
}

.heritage .prose p+p {
  margin-top: 1.15rem;
}

.heritage .signature {
  margin-top: 3rem;
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
}

.heritage .signature__name {
  font-family: var(--font-script);
  font-size: 2.8rem;
  line-height: 0.9;
  color: var(--gold-brass-dark);
}

.heritage .signature__role {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-meta);
  padding-bottom: 0.35rem;
}

.heritage .storylink {
  align-self: flex-start;
  margin-top: 2.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
  text-decoration: none;
  padding-bottom: 0.45rem;
  position: relative;
}

.heritage .storylink span {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  margin-left: 0.5rem;
}

.heritage .storylink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-brass);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.heritage .storylink:hover::after {
  transform: scaleX(0.28);
}

.heritage .storylink:hover span {
  transform: translateX(0.4rem);
}

.heritage .storylink:focus-visible {
  outline: 1px solid var(--gold-brass-light);
  outline-offset: 0.5rem;
}

/* ---------- scroll reveal ---------- */
.heritage .reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.is-revealed .reveal {
  opacity: 1;
  transform: none;
}

.is-revealed .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.is-revealed .reveal:nth-child(2) {
  transition-delay: 0.14s;
}

.is-revealed .reveal:nth-child(3) {
  transition-delay: 0.23s;
}

.is-revealed .reveal:nth-child(4) {
  transition-delay: 0.32s;
}

.is-revealed .reveal:nth-child(5) {
  transition-delay: 0.41s;
}

.is-revealed .reveal:nth-child(6) {
  transition-delay: 0.50s;
}

.is-revealed .reveal:nth-child(7) {
  transition-delay: 0.58s;
}

/* ---------- responsive ---------- */
@media (max-width: 992px) {
  .heritage {
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    width: 100% !important;
    background: var(--bg-brass-tint) !important;
  }

  .heritage::after {
    display: none !important;
  }

  .heritage__visual {
    position: relative !important;
    width: 100% !important;
    height: 52vh !important;
    min-height: 340px !important;
    max-height: 480px !important;
    overflow: hidden !important;
  }

  .heritage__media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    transform: none !important;
  }

  .heritage__place {
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .heritage__content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 3rem 1.5rem 4rem !important;
    background: var(--bg-brass-tint) !important;
    box-sizing: border-box !important;
  }

  .heritage .quote::before {
    left: -0.4em;
    font-size: 1.2em;
  }

  .heritage .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  .heritage .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .heritage__sheen {
    display: none;
  }

  .heritage .storylink span,
  .heritage .storylink::after {
    transition: none;
  }
}


/* ===== HOMEPAGE EXPANSION â€” START ===== */

/* ==========================================================
   SHARED GRAMMAR â€” eyebrow / section-title / section-lede /
   section-header / buttons. Used by all five sections.
   ========================================================== */

.da-eyebrow {
  display: block;
  font-family: var(--font-serif-regal);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-brass);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.da-section-title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  color: var(--text-main);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

.da-section-lede {
  max-width: 52ch;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
}

/* Section header: side-by-side on desktop */
.da-section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.da-section-header__text {
  flex: 1 1 auto;
}

/* Centred variant */
.da-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.da-section-header--center .da-section-lede {
  margin-inline: auto;
}

/* --- Buttons ------------------------------------------- */
.da-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.85rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 240ms cubic-bezier(.22, .61, .36, 1),
    border-color 240ms cubic-bezier(.22, .61, .36, 1),
    color 240ms cubic-bezier(.22, .61, .36, 1),
    transform 240ms cubic-bezier(.22, .61, .36, 1);
}

.da-btn:focus-visible {
  outline: 2px solid var(--gold-brass);
  outline-offset: 3px;
}

.da-btn--primary {
  background-color: var(--text-main);
  color: var(--bg-sand);
  border-color: var(--text-main);
}

.da-btn--primary:hover {
  background-color: var(--gold-brass-dark);
  border-color: var(--gold-brass-dark);
  transform: translateY(-2px);
}

.da-btn--outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-default);
}

.da-btn--outline:hover {
  border-color: var(--gold-brass);
  color: var(--gold-brass-dark);
}

.da-btn--whatsapp {
  background-color: #25D366;
  color: #fff;
  border-color: #25D366;
  animation: waPulse 2.4s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
}

.da-btn--whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
  animation: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}


/* ==========================================================
   1. FEATURED PRODUCTS
   ========================================================== */

.da-featured {
  padding-block: clamp(4rem, 9vw, 8rem);
  background-color: var(--bg-sand);
  border-top: 1px solid var(--border-default);
}

/* The same element is both .swiper-wrapper and .da-featured__grid. Below 900px
   Swiper owns it (flex track, transformed); at 900px and up the JS destroys the
   instance and these grid rules take over. !important is needed because Swiper
   writes display/transform inline when it initialises. */
@media (min-width: 900px) {
  .da-featured__grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    transform: none !important;
  }

  /* .swiper-slide stays in the markup for the mobile carousel; strip the width
     and flex sizing Swiper's stylesheet applies so grid can size the columns. */
  .da-featured__grid > .product-card.swiper-slide {
    width: auto !important;
    margin: 0 !important;
    flex-shrink: 1;
  }

  .da-featured__carousel {
    overflow: visible;
  }

  .da-featured__pagination {
    display: none;
  }
}

/* Mobile: one card per view. Swiper sets slide widths itself, so the grid
   declaration is deliberately absent here. */
@media (max-width: 899px) {
  .da-featured__carousel {
    overflow: hidden;
  }

  .da-featured__grid > .product-card {
    height: auto;
  }

  /* Static, below the clipped track — not absolutely positioned inside it. */
  .da-featured__pagination.swiper-pagination-bullets {
    position: static;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .da-featured__pagination .swiper-pagination-bullet {
    margin: 0 !important;
  }

  .da-featured__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: var(--text-meta);
    opacity: 0.45;
    transition: opacity 0.3s ease, background-color 0.3s ease;
  }

  .da-featured__pagination .swiper-pagination-bullet-active {
    background: var(--gold-brass);
    opacity: 1;
  }
}

.da-featured__cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

/* ----- Product card: light-mode adaptation -----
   The woo-product-card was built for a dark (#171615) bg.
   Here we invert it to the all-light palette.

   This block is the single source of truth for the featured card. The base
   .product-card rules further up this file still serve the shop archive and
   the category carousel, so they are left alone.
*/
.da-featured .product-card {
  background: var(--bg-sand);
  border-color: var(--border-default);
  box-shadow: none;
  overflow: hidden;
}

.da-featured .product-card:hover {
  box-shadow: var(--shadow-subtle);
}

/* Fixed 4:5 frame. Replaces the old `height: 380px`, which had no breakpoint
   and letterboxed every image on the 2-up mobile grid. Paired with the
   'da_product_card' hard crop so all four cards in a row match exactly. */
.da-featured .product-img-box {
  height: auto;
  aspect-ratio: 4 / 5;
  background: var(--bg-brass-tint);
  border-bottom: 1px solid var(--border-default);
  display: block;
  padding: 0;
  overflow: hidden;
}

.da-featured .product-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.da-featured .product-img-box img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover !important;
  object-position: center center;
  display: block;
  margin: 0;
  filter: none;
  /* Hover zoom removed on request — it pushed the image past the frame and
     clipped it further. The base .product-card:hover scale(1.04) rule further
     up this file still applies to the shop archive and category carousel. */
  transform: none !important;
  transition: none !important;
}

.da-featured .product-card:hover .product-img-box img {
  transform: none !important;
}

/* Warm diagonal stripe for missing images â€” not dark */
.da-featured .product-img-empty {
  display: block;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg,
      rgba(184, 135, 59, 0.07) 0 8px,
      transparent 8px 16px),
    var(--bg-brass-tint);
}

.da-featured .product-badge-corner {
  display: none !important;
}

/* The featured card no longer renders a "Look closer" button — it was replaced
   by the WhatsApp CTA below. The base .product-quick-btn rules further up this
   file are still live for object-card.php and woo-category-card.php. */

/* ----- Text block: equal-height rows across the grid ----- */
.da-featured .product-details {
  padding: 1.35rem 1.3rem 1.5rem;
}

/* Clamped to two lines with a matching min-height, so a one-line title and a
   three-line title still push the rows below them to the same baseline. */
.da-featured .product-card .product-title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.3;
  min-height: calc(2 * 1.3em);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* archive.css blockifies this anchor; inline keeps the line clamp working. */
.da-featured .product-card .product-title a {
  display: inline;
}

.da-featured .product-statement {
  font-size: 0.82rem;
  line-height: 1.5;
  min-height: calc(2 * 1.5em);
  margin-bottom: 1rem;
  flex: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* margin-top:auto pins the CTA to the card bottom unconditionally, so buttons
   line up across the row no matter how long each title or description runs. */
/* Not scoped to .da-featured: the collection archive and shop page cards
   (object-card.php) use the identical button, so these rules are shared. */
.product-cta-row {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

/* Deliberately NOT .wa-animated-btn from wa-styles.css. That button is a loud
   standalone CTA for the header and footer; four saturated green slabs inside
   this grid overwhelmed the sand/brass palette. This is the same quiet outlined
   treatment as .da-btn--outline, and it only turns WhatsApp green on hover so
   the destination still reads clearly. */
/* Elementor's frontend.min.css ships `.swiper-slide a { display: inline }`.
   These cards render inside a Swiper carousel, and that rule has the same
   specificity (0-1-1) while loading later, so it beat `.product-wa-btn` and
   collapsed the button to its text width - `width:100%` is ignored on an
   inline box. Scoping through the card raises specificity so the button keeps
   its own display and fills the card evenly across the row. */
.product-card .product-wa-btn,
.swiper-slide .product-wa-btn {
  display: inline-flex;
  width: 100%;
}

.product-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--gold-brass);
  background: transparent;
  color: var(--gold-brass-dark);
  font-family: var(--font-sans, -apple-system, sans-serif);
  /* Sized to keep "Enquire on WhatsApp" on one line in a ~250px card. */
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, transform 0.35s ease;
}

.product-wa-btn svg {
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.product-wa-btn:hover,
.product-wa-btn:focus-visible {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.product-wa-btn:hover svg {
  transform: scale(1.12);
}

.product-wa-btn:focus-visible {
  outline: 2px solid var(--gold-brass-dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .product-wa-btn,
  .product-wa-btn svg {
    transition: none;
  }
  .product-wa-btn:hover {
    transform: none;
  }
}


/* ==========================================================
   2. THE PROCESS
   ========================================================== */

.da-process {
  padding-block: clamp(4rem, 9vw, 8rem);
  background-color: var(--bg-sand-warm);
  border-block: 1px solid var(--border-default);
}

.da-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .da-process__steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Each step: left border on desktop as separator */
.da-process__step {
  position: relative;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-default);
}

@media (min-width: 768px) {
  .da-process__step {
    border-top: none;
    border-left: 1px solid var(--border-default);
    padding: 0 3rem;
  }

  .da-process__step:first-child {
    border-left: none;
    padding-left: 0;
  }

  .da-process__step:last-child {
    padding-right: 0;
  }
}

/* Large ghost numeral â€” Cormorant Garamond italic, very low opacity */
.da-process__numeral {
  font-family: var(--font-serif-editorial);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-brass);
  opacity: 0.15;
  display: block;
  line-height: 1;
  margin-bottom: 1.25rem;
  user-select: none;
}

.da-process__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--bg-brass-tint);
}

.da-process__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.da-process__step-title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.da-process__step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}


/* ==========================================================
   3. BESPOKE COMMISSIONS
   ========================================================== */

.da-bespoke {
  display: grid;
  grid-template-columns: 1fr;
}

/* .da-bespoke__img--sub is deliberately offset `bottom: -3rem` so it hangs past
   the section edge. With no bottom padding here and the footer sitting flush,
   that 48px overhang landed on top of the footer. Reserve room for it. */
@media (min-width: 768px) {
  .da-bespoke {
    padding-bottom: 5rem;
  }
}

@media (min-width: 768px) {
  .da-bespoke {
    grid-template-columns: 55fr 45fr;
  }
}

.da-bespoke__image {
  position: relative;
  min-height: 380px;
  background: linear-gradient(150deg, var(--bg-brass-tint) 0%, var(--bg-sand-warm) 100%);
}

@media (min-width: 768px) {
  .da-bespoke__image {
    min-height: 640px;
  }
}

.da-bespoke__img--main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.da-bespoke__img--sub {
  position: absolute;
  bottom: -3rem;
  right: -4rem;
  /* Bleeds slightly into the text column */
  width: 50%;
  max-width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 12px solid var(--bg-body);
  box-shadow: 0 20px 40px rgba(18, 17, 16, 0.12);
  z-index: 2;
  display: none;
}

@media (min-width: 768px) {
  .da-bespoke__img--sub {
    display: block;
  }
}

.da-bespoke__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--bg-brass-tint) 0%, var(--bg-sand-warm) 100%);
}

.da-bespoke__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem);
  background-color: var(--bg-sand);
}

.da-bespoke__rule {
  width: 40px;
  height: 1px;
  background: var(--gold-brass);
  margin-block: 1.75rem;
}

.da-bespoke__points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.da-bespoke__point {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}

.da-bespoke__point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-brass);
}

.da-bespoke__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}


/* ==========================================================
   4. TESTIMONIALS â€” hairline rule only, no shadows, no stars
   ========================================================== */

.da-testimonials {
  padding-block: clamp(4rem, 9vw, 8rem);
  background-color: var(--bg-sand);
  border-top: 1px solid var(--border-default);
}

.da-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .da-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.da-testimonial {
  margin: 0;
  padding: 0;
}

.da-testimonial__rule {
  width: 32px;
  height: 1px;
  background: var(--gold-brass);
  margin-bottom: 1.75rem;
}

.da-testimonial__quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
}

.da-testimonial__quote p {
  font-family: var(--font-serif-editorial);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
}

.da-testimonial__author {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-meta);
}

.da-testimonial__author cite {
  font-style: normal;
}


/* ==========================================================
   5. JOURNAL â€” 3-col editorial, 4:3 aspect-ratio, CLS = 0
   ========================================================== */

.da-journal {
  padding-block: clamp(4rem, 9vw, 8rem);
  background-color: var(--bg-sand-warm);
  border-top: 1px solid var(--border-default);
}

.da-journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .da-journal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .da-journal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.da-journal__card {
  display: flex;
  flex-direction: column;
}

.da-journal__img-link {
  display: block;
}

.da-journal__img-box {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--bg-brass-tint);
}

.da-journal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.da-journal__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 1.5rem;
}

.da-journal__cat {
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
}

.da-journal__title {
  font-family: var(--font-serif-editorial);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
}

.da-journal__title a {
  color: var(--text-main);
  text-decoration: none;
}

.da-journal__separator {
  width: 32px;
  height: 1px;
  background: var(--border-default);
  margin-block: 1.25rem;
}

.da-journal__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.da-journal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-default);
  padding-top: 1rem;
}

.da-journal__date {
  font-size: 0.75rem;
  color: var(--text-meta);
  letter-spacing: 0.05em;
}

.da-journal__read-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-brass-dark);
  text-decoration: none;
}

.da-journal__read-link:focus-visible {
  outline: 2px solid var(--gold-brass);
  outline-offset: 3px;
}


/* ==========================================================
   REVEAL ANIMATIONS â€” wrapped in prefers-reduced-motion
   Elements are visible by default if JS never runs.
   ========================================================== */

@media (prefers-reduced-motion: no-preference) {

  .da-journal__img {
    transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
  }

  .da-journal__card:hover .da-journal__img {
    transform: scale(1.04);
  }

  .da-journal__title a {
    transition: color 240ms cubic-bezier(.22, .61, .36, 1);
  }

  .da-journal__title a:hover {
    color: var(--gold-brass-dark);
  }

  .da-journal__read-link {
    transition: opacity 240ms cubic-bezier(.22, .61, .36, 1);
  }

  .da-journal__read-link:hover {
    opacity: 0.6;
  }

  .da-process__img {
    transition: transform 360ms cubic-bezier(.22, .61, .36, 1);
  }

  .da-process__step:hover .da-process__img {
    transform: scale(1.03);
  }

}

/* ===== HOMEPAGE EXPANSION â€” END ===== */

