/* =========================
SECTIONS CSS
========================= */

/* =========================
HERO
========================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92vh;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  background: url("../images/hero.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 210, 164, 0.16), transparent 32%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.62)
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 540px;
  height: 540px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(231, 210, 164, 0.12), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.hero-content::after {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 210, 164, 0.95),
    transparent
  );
  box-shadow: 0 0 14px rgba(231, 210, 164, 0.18);
}

.hero-title {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 6.8vw, 5rem);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 0.95;
  color: #fff;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f8e7ba 18%,
    #ffffff 38%,
    #e5bd63 58%,
    #ffffff 78%,
    #d6ad52 100%
  );
  background-size: 240% auto;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: heroShine 8s linear infinite;
filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.62));
position: relative;
}

@keyframes heroShine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 240% center;
  }
}

.hero p {
  margin: 0 auto 38px;
  max-width: 760px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.96;
  line-height: 1.75;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.68);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-buttons .btn {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

/* =========================
COMMON SECTION HEADER
========================= */

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 12px;
  font-size: 34px;
  letter-spacing: -0.5px;
}

.section-header p {
  opacity: 0.7;
}

/* =========================
FEATURED
========================= */

.featured-products {
  padding: 80px 40px;
  background: var(--dark-section);
}

/* =========================
TRUST SECTION
========================= */

.trust-section {
  padding: 80px 40px;
  background: var(--dark-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.trust-section .trust-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.trust-section .trust-item p {
  font-size: 14px;
  opacity: 0.7;
}

/* =========================
CATEGORIES
========================= */

.categories {
  padding: 80px 40px;
  background: var(--dark-section);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.2)
  );
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* =========================
NEWSLETTER
========================= */

.newsletter {
  padding: 100px 40px;
  text-align: center;
  background: var(--color-black);
  color: var(--color-white);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.newsletter p {
  margin-bottom: 30px;
  opacity: 0.8;
}

/* =========================
INSTAGRAM
========================= */

.instagram {
  padding: 80px 40px;
  background: var(--dark-soft);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.instagram-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.instagram-grid img:hover {
  transform: scale(1.05);
}

/* =========================
FAQ
========================= */

.faq {
  padding: 100px 40px;
  background: var(--dark-section);
}

.faq-container {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #d4af37;
}

.faq-item p {
  font-size: 17px;
  line-height: 1.8;
}

.faq h3,
.faq h4,
.faq strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #d4af37;
}

.faq p {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.8;
}

/* =========================
SHOP HERO
========================= */

.shop-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  text-align: center;
  color: #fff;
  background: url("../images/category-grinders.jpg") center/cover no-repeat;
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.85)
  );
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.shop-title {
  margin-bottom: 10px;
  font-size: clamp(3rem, 5.6vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -1.1px;
  line-height: 1;
  position: relative;
  display: inline-block;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.shop-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 62%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3d38a, rgba(243, 211, 138, 0));
  box-shadow: 0 0 14px rgba(243, 211, 138, 0.22);
}

.shop-hero p {
  opacity: 0.9;
}

/* =========================
SHOP FILTERS
========================= */

.shop-filters {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.filter-btn {
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  background: #101512;
  color: #d4af37;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: linear-gradient(135deg, rgba(243, 211, 138, 0.16), rgba(243, 211, 138, 0.06));
  color: #fff;
  border-color: rgba(243, 211, 138, 0.5);
  box-shadow: 0 10px 24px rgba(243, 211, 138, 0.12);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: #d4af37;
  color: #0b0f0c;
  border-color: #d4af37;
}

/* =========================
PAGE HEROES
========================= */

.about-hero h1,
.about-hero p,
.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 2;
}

.about-hero h1,
.contact-hero h1,
.faq-hero h1 {
  margin-bottom: 10px;
  font-size: 52px;
}

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  text-align: center;
  color: #fff;
  background: url("../images/contact-banner.jpg") center/cover no-repeat;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.faq-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  text-align: center;
  color: #fff;
  background: url("../images/faq-banner.jpg") center/cover no-repeat;
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.faq-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* =========================
PAGE BANNER
========================= */

.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  text-align: center;
  color: #d4af37;
  background: #0d1110;
  background-position: center;
  background-size: cover;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.75)
  );
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-banner h1 {
  margin-bottom: 10px;
  font-size: 46px;
  color: #d4af37;
}

.page-banner p {
  font-size: 18px;
  color: #e6d8a3;
}

/* =========================
LIFESTYLE
========================= */

.lifestyle-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.lifestyle-banner img {
  width: 100%;
  border-radius: 14px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.lifestyle-text {
  max-width: 500px;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* =========================
FOOTER
========================= */

.footer {
  padding: 56px 40px 24px;
  background: linear-gradient(180deg, #101512, #0b0f0c);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  font-size: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(3px);
  color: #c6a76b;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px) {
  .footer-grid,
  .lifestyle-banner,
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero,
  .featured-products,
  .trust-section,
  .categories,
  .newsletter,
  .instagram,
  .faq,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1,
  .shop-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .faq-hero h1 {
    font-size: 40px;
  }

  .hero p,
  .page-banner p {
    font-size: 16px;
  }

  .footer-grid,
  .lifestyle-banner,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 82vh;
    padding: 40px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .shop-hero,
  .contact-hero,
  .faq-hero {
    height: 340px;
  }

  .page-banner h1 {
    font-size: 34px;
  }
}

/* =========================
SHOP PAGE PREMIUM
========================= */

.shop-page {
  padding-bottom: 40px;
}

.shop-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 107, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(7, 10, 8, 0.2), rgba(7, 10, 8, 0.82)),
    url("../images/category-grinders.jpg") center/cover no-repeat;
  overflow: hidden;
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.6)),
    linear-gradient(to right, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.shop-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(198, 167, 107, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -1.5px;
}

.shop-hero p {
  max-width: 600px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.shop-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.shop-meta-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.shop-toolbar {
  position: relative;
  margin-top: -1px;
  padding: 34px 0 20px;
  background:
    linear-gradient(180deg, rgba(16, 21, 18, 0.96), rgba(11, 15, 12, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.shop-toolbar-inner {
  display: grid;
  gap: 28px;
}

.shop-toolbar-copy {
  display: grid;
  gap: 10px;
}

.shop-toolbar-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-toolbar-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 620px;
}

.shop-products {
  padding: 28px 0 100px;
}

.shop-products-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-products-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-products-summary h3 {
  margin-top: 6px;
  margin-bottom: 8px;
}

.shop-products-summary p {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 768px) {
  .shop-hero {
    min-height: 60vh;
    padding: 110px 0 42px;
  }

  .shop-hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.1rem);
  }

  .shop-hero p {
    font-size: 1rem;
  }

  .shop-products {
    padding-top: 20px;
  }
}

/* =========================
PRODUCT PAGE PREMIUM
========================= */

.product-page-main {
  padding-bottom: 40px;
}

.product-page {
  padding: 120px 0 72px;
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.product-topbar-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 480px);
  gap: 44px;
  align-items: start;
}

.product-media-column {
  min-width: 0;
}

.product-summary-column {
  min-width: 0;
}

.product-media-shell {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 107, 0.12), transparent 42%),
    #111613;
  aspect-ratio: 1 / 1.05;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary-column .product-info {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(198, 167, 107, 0.22);
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-summary-column #product-title,
.product-summary-column .product-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.product-price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-price-note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.product-summary-column #product-price,
.product-summary-column .product-price {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.product-summary-column #product-description,
.product-summary-column .product-description {
  max-width: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.product-highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-highlight-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-purchase-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 167, 107, 0.14);
}

.product-purchase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.product-purchase-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-purchase-stock {
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
}

.product-purchase-row {
  margin: 0;
}

.product-purchase-row #add-to-cart-btn,
.product-purchase-row .btn {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  font-size: 15px;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-detail-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-detail-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.product-detail-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.7;
}

.related-products {
  padding: 0 0 100px;
}

.related-products-header {
  margin-bottom: 28px;
}

.related-products-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sticky-cart-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-cart-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .product-summary-column .product-info {
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 104px 0 56px;
  }

  .product-media-shell,
  .product-summary-column .product-info {
    padding: 18px;
    border-radius: 22px;
  }

  .product-summary-column #product-title,
  .product-summary-column .product-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* =========================
HOME PAGE PREMIUM
========================= */

.home-page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)),
    url("../images/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.85)
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.15) 100%
    );
  pointer-events: none;
}

.hero-title {
  text-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 107, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-meta-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.section-header-premium {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-products,
.trust-section,
.categories,
.instagram,
.home-story {
  padding: 96px 0;
}

.featured-products {
  background: var(--dark-section);
}

.featured-grid-home {
  padding: 0;
}

.home-spotlight {
  padding: 0 0 96px;
  background: var(--dark-section);
}

.home-spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 38px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.home-spotlight-media {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1.15 / 0.9;
  background: #111613;
}

.home-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-spotlight-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.home-spotlight-copy > p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.home-spotlight-product {
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 167, 107, 0.14);
}

.home-spotlight-product-label {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-spotlight-product h3 {
  margin-bottom: 6px;
}

.home-spotlight-product p {
  color: var(--accent);
  font-weight: 700;
}

.home-spotlight-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-section {
  background: var(--dark-soft);
}

.trust-grid {
  gap: 24px;
}

.trust-section .trust-item {
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-story {
  background: var(--dark-section);
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 28px;
  align-items: stretch;
}

.home-story-copy {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-story-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-story-copy p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.home-story-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(198, 167, 107, 0.12);
}

.home-story-card h3 {
  margin-bottom: 12px;
}

.home-story-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.categories {
  background: var(--dark-soft);
}

.categories-grid {
  gap: 24px;
}

.instagram {
  background: var(--dark-section);
}

.instagram-grid {
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .home-spotlight-card,
  .home-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 82vh;
    padding: 124px 0 84px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 10vw, 4.2rem);
  }

  .featured-products,
  .trust-section,
  .categories,
  .instagram,
  .home-story {
    padding: 72px 0;
  }

  .home-spotlight {
    padding-bottom: 72px;
  }

  .home-spotlight-card,
  .home-story-copy,
  .home-story-card {
    padding: 20px;
  }
}

/* =========================
HOME SECTION FINAL POLISH
========================= */

.featured-products {
  padding: 82px 0 88px;
}

.featured-products .section-header {
  margin-bottom: 26px;
}

.home-spotlight {
  padding: 0 0 82px;
}

.home-spotlight-card {
  padding: 24px;
  border-radius: 24px;
}

.home-spotlight-copy h2 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-spotlight-copy > p {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.home-spotlight-actions {
  gap: 12px;
}

.categories {
  padding: 82px 0 88px;
}

.categories .section-header {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .featured-products,
  .categories {
    padding: 64px 0 68px;
  }

  .home-spotlight {
    padding-bottom: 64px;
  }

  .home-spotlight-card {
    padding: 18px;
  }
}

/* =========================
HERO CTA POLISH
========================= */

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  max-width: 980px;
}

.hero-content p {
  max-width: 640px;
}

.hero-buttons {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================
HOME LAUNCH POLISH
========================= */

.hero {
  min-height: 88vh;
  padding: 132px 0 88px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  max-width: 980px;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 7vw, 5.25rem);
}

.hero-content p {
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-proof-line {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 6px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof-line span {
  position: relative;
}

.hero-proof-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(198, 167, 107, 0.7);
  transform: translateY(-50%);
}

.featured-products {
  padding: 78px 0 82px;
}

.featured-products .section-header {
  margin-bottom: 24px;
}

.home-spotlight {
  padding: 0 0 78px;
}

.home-spotlight-card {
  padding: 24px;
  border-radius: 26px;
}

.home-spotlight-copy h2 {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-spotlight-copy > p {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.trust-section {
  padding: 78px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-story {
  padding: 78px 0;
}

.home-story-grid {
  gap: 22px;
}

.home-story-copy,
.home-story-card {
  min-height: 100%;
}

.home-story-copy h2 {
  margin-bottom: 12px;
}

.home-story-copy p {
  margin-bottom: 22px;
  font-size: 0.98rem;
}

.home-story-card-accent {
  position: relative;
  overflow: hidden;
}

.home-story-card-accent::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(198, 167, 107, 0.16), transparent 68%);
  pointer-events: none;
}

.story-mini-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.categories {
  padding: 78px 0 78px;
}

.categories .section-header {
  margin-bottom: 24px;
}

.instagram-home {
  padding: 78px 0 92px;
}

.instagram-home .section-header {
  margin-bottom: 26px;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 82vh;
    padding: 118px 0 74px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-proof-line {
    gap: 10px 16px;
    font-size: 12px;
  }

  .hero-proof-line span:not(:last-child)::after {
    display: none;
  }

  .featured-products,
  .trust-section,
  .home-story,
  .categories,
  .instagram-home {
    padding: 64px 0;
  }

  .home-spotlight {
    padding-bottom: 64px;
  }

  .home-spotlight-card {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
CONTENT PAGES LAUNCH POLISH
========================= */

.page-header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 150px 0 56px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(8, 11, 9, 0.34), rgba(8, 11, 9, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1,
.page-header p {
  width: min(92%, 980px);
  margin-left: auto;
  margin-right: auto;
}

.page-header h1 {
  margin-bottom: 10px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  color: #fff;
}

.page-header p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
}

.page-banner {
  min-height: 320px;
  padding: 132px 20px 44px;
}

.page-banner::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.78)),
    linear-gradient(to right, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.3));
}

.page-banner-content {
  max-width: 760px;
}

.page-banner h1 {
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
  color: #f3e7be;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.page-banner p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.about-section,
.policy-section,
.contact-section,
.faq {
  padding: 78px 0;
}

.about-container,
.policy-container,
.contact-container,
.faq-container {
  width: min(92%, 1120px);
  margin: 0 auto;
}

.about-container,
.policy-container {
  max-width: 920px;
}

.about-section + .about-section {
  padding-top: 0;
}

.about-container,
.policy-container,
.faq-container {
  padding: 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.about-container h2,
.policy-container h2,
.contact-info h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
}

.about-container h2:not(:first-child),
.policy-container h2:not(:first-child) {
  margin-top: 28px;
}

.about-container p,
.policy-container p,
.contact-info p {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.76);
}

.policy-container strong,
.contact-details strong {
  color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.contact-info,
.contact-form-container {
  padding: 30px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-details {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 11, 0.82);
  color: #fff;
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(198, 167, 107, 0.56);
  box-shadow: 0 0 0 4px rgba(198, 167, 107, 0.08);
  background: rgba(10, 14, 11, 0.94);
}

.contact-form .btn,
.contact-form .btn-primary {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  justify-self: start;
}

.faq-container {
  max-width: 860px;
  margin-top: 0;
}

.faq-item {
  margin-bottom: 16px;
  padding: 0;
  border: none;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.faq-answer {
  padding: 14px 6px 4px;
}

.faq-answer p {
  max-width: none;
  margin: 0;
  padding: 0 16px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header {
    min-height: 240px;
    padding: 128px 0 42px;
  }

  .page-banner {
    min-height: 280px;
    padding: 120px 20px 36px;
  }

  .about-section,
  .policy-section,
  .contact-section,
  .faq {
    padding: 64px 0;
  }

  .about-container,
  .policy-container,
  .contact-container,
  .faq-container,
  .contact-info,
  .contact-form-container {
    padding: 22px;
    border-radius: 22px;
  }

  .page-banner h1,
  .page-header h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }
}

@media (max-width: 640px) {
  .contact-form .btn,
  .contact-form .btn-primary {
    width: 100%;
    justify-self: stretch;
  }
}

/* =========================
HOME LUXURY IMAGE BLOCKS
========================= */

/* Hero luxury polish */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 210, 164, 0.16), transparent 32%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 540px;
  height: 540px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(231, 210, 164, 0.12), transparent 62%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

.hero-title {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 6.8vw, 5rem);
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 0.95;
  color: #fff;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f8e7ba 18%,
    #ffffff 38%,
    #e5bd63 58%,
    #ffffff 78%,
    #d6ad52 100%
  );
  background-size: 240% auto;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: heroShine 8s linear infinite;
filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.62));
position: relative;
}

@keyframes heroShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 240% center;
  }
}

.hero p {
  margin: 0 auto 38px;
  max-width: 760px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.96;
  line-height: 1.75;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.68);
}

.hero-buttons .btn {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

/* Shared image sections */
.image-block {
  position: relative;
  height: 400px;
  margin: 88px 0;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0b0b0b;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.image-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.74),
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.10)
  );
}

.image-overlay {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 40px;
}

.image-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.image-overlay h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 0.96;
  color: #fff;
}

.image-overlay p {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

/* Individual image positioning */
.setup-block {
  height: 380px;
  margin-top: 96px;
  margin-bottom: 72px;
  background-position: center 54%;
}

.grinder-block {
  height: 410px;
  margin-top: 88px;
  margin-bottom: 96px;
  background-position: center 48%;
}

.lifestyle-block {
  height: 460px; /* bigger bottom image */
  margin-top: 104px;
  margin-bottom: 72px;
  background-position: center 24%; /* show more of the actual image */
}

.lifestyle-block .image-overlay {
  max-width: 500px;
  padding: 46px 40px;
}

/* Insert image between grinder collection and trust */
.image-insert-block {
  margin: 64px 0 96px;
}

.image-insert-card {
  position: relative;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 56%;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.image-insert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.26),
    rgba(0, 0, 0, 0.08)
  );
}

.image-insert-overlay {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 38px;
}

.image-insert-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.image-insert-overlay h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.98;
  color: #fff;
}

.image-insert-overlay p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

/* Better breathing room for nearby sections */
.trust-section {
  padding-top: 8px;
  padding-bottom: 92px;
}

.home-story {
  padding-top: 92px;
  padding-bottom: 92px;
}

.categories {
  padding-top: 92px;
  padding-bottom: 72px;
}

.instagram-home {
  padding-top: 96px;
  padding-bottom: 32px;
}

footer {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .image-block {
    height: 310px;
    margin: 72px 0;
    border-radius: 18px;
    background-position: center center !important;
  }

  .setup-block,
  .grinder-block,
  .lifestyle-block {
    height: 310px;
    margin-top: 72px;
    margin-bottom: 72px;
  }

  .lifestyle-block {
    height: 340px; /* still slightly bigger on mobile/tablet */
  }

  .image-overlay {
    max-width: 100%;
    padding: 24px;
  }

  .lifestyle-block .image-overlay {
    padding: 24px;
  }

  .image-overlay h2 {
    font-size: 1.95rem;
  }

  .image-overlay p {
    font-size: 14px;
    line-height: 1.55;
  }

  .image-insert-block {
    margin: 44px 0 72px;
  }

  .image-insert-card {
    min-height: 240px;
    border-radius: 18px;
    background-position: center center !important;
  }

  .image-insert-overlay {
    max-width: 100%;
    padding: 24px;
  }

  .image-insert-overlay h2 {
    font-size: 1.7rem;
  }

  .image-insert-overlay p {
    font-size: 14px;
    line-height: 1.55;
  }

  .trust-section,
  .home-story,
  .categories,
  .instagram-home {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* =========================
FINAL HOMEPAGE SPACING + IMAGE FIX
========================= */

/* 1) Sørg for at content ikke havner under navbar */
.home-page > section:first-child,
.hero {
  padding-top: 140px;
}

/* 2) Litt bedre generell spacing mellom homepage-seksjoner */
.featured-products {
  padding-top: 88px;
  padding-bottom: 72px;
}

.home-spotlight {
  padding-top: 28px;
  padding-bottom: 28px;
}

.trust-section {
  padding-top: 72px;
  padding-bottom: 88px;
}

.home-story {
  padding-top: 88px;
  padding-bottom: 88px;
}

.categories {
  padding-top: 88px;
  padding-bottom: 72px;
}

.instagram-home {
  padding-top: 88px;
  padding-bottom: 52px;
}

/* 3) Standard image blocks */
.image-block {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0b0b0b;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

/* 4) Setup image */
.setup-block {
  height: 360px;
  margin-top: 72px;
  margin-bottom: 72px;
  background-position: center 54%;
}

/* 5) Grinder image */
.grinder-block {
  height: 400px;
  margin-top: 72px;
  margin-bottom: 96px;
  background-position: center 48%;
}

/* 6) Insert image between crafted grind and trust cards */
.image-insert-block {
  margin: 56px 0 88px;
}

.image-insert-card {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 58%;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.image-insert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.26),
    rgba(0, 0, 0, 0.08)
  );
}

.image-insert-overlay {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 36px;
}

.image-insert-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.image-insert-overlay h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 0.98;
  color: #fff;
}

.image-insert-overlay p {
  max-width: 460px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

/* 7) Bottom lifestyle image — bigger + more of image visible */
.lifestyle-block {
  height: 520px;
  margin-top: 96px;
  margin-bottom: 40px;
  background-position: center 18%;
}

.lifestyle-block .image-overlay {
  max-width: 500px;
  padding: 48px 40px;
}

/* 8) Shared image overlay */
.image-overlay {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 40px;
}

.image-overlay span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.image-overlay h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 0.96;
  color: #fff;
}

.image-overlay p {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

/* 9) Footer tighter against last image */
footer {
  margin-top: 0;
  padding-top: 52px;
}

/* 10) Mobile/tablet */
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }

  .featured-products,
  .trust-section,
  .home-story,
  .categories,
  .instagram-home {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .setup-block,
  .grinder-block,
  .image-block {
    height: 300px;
    margin-top: 56px;
    margin-bottom: 56px;
    background-position: center center !important;
  }

  .lifestyle-block {
    height: 340px;
    margin-top: 72px;
    margin-bottom: 28px;
    background-position: center center !important;
  }

  .image-overlay,
  .lifestyle-block .image-overlay {
    max-width: 100%;
    padding: 24px;
  }

  .image-overlay h2 {
    font-size: 1.95rem;
  }

  .image-overlay p,
  .image-insert-overlay p {
    font-size: 14px;
    line-height: 1.55;
  }

  .image-insert-block {
    margin: 40px 0 64px;
  }

  .image-insert-card {
    min-height: 240px;
    background-position: center center !important;
    border-radius: 18px;
  }

  .image-insert-overlay {
    max-width: 100%;
    padding: 24px;
  }

  .image-insert-overlay h2 {
    font-size: 1.7rem;
  }

  footer {
    padding-top: 40px;
  }
}

/* =========================
FINAL LAUNCH POLISH
========================= */

/* smoother section rhythm */
.featured-products {
  padding-top: 72px;
  padding-bottom: 64px;
}

.home-spotlight {
  padding-top: 12px;
  padding-bottom: 12px;
}

.trust-section {
  padding-top: 56px;
  padding-bottom: 72px;
}

.home-story {
  padding-top: 72px;
  padding-bottom: 72px;
}

.categories {
  padding-top: 72px;
  padding-bottom: 64px;
}

.instagram-home {
  padding-top: 72px;
  padding-bottom: 40px;
}

/* slightly less dead space between image sections */
.setup-block {
  margin-top: 56px;
  margin-bottom: 56px;
}

.grinder-block {
  margin-top: 56px;
  margin-bottom: 72px;
}

.lifestyle-block {
  margin-top: 72px;
  margin-bottom: 24px;
}

/* section heading spacing */
.section-header {
  margin-bottom: 34px;
}

.categories .section-header {
  margin-bottom: 38px;
}

/* product cards breathe a little more */
.featured-grid-home .product-card,
.featured-products .product-card {
  min-height: 100%;
}

.featured-grid-home .product-info,
.featured-products .product-info {
  padding: 18px 18px 20px;
}

.featured-grid-home .product-title,
.featured-products .product-title {
  min-height: 48px;
}

.featured-grid-home .product-price,
.featured-products .product-price {
  margin-bottom: 10px;
}

/* keep sticky/fixed navbar from visually choking content */
.navbar,
.nav-shell,
header#navbar {
  z-index: 1000;
}

.home-page section {
  scroll-margin-top: 110px;
}

/* safer top spacing under nav when scrolling through sections */
.featured-products,
.home-spotlight,
.trust-section,
.home-story,
.categories,
.instagram-home {
  position: relative;
  z-index: 1;
}

/* footer finish */
footer {
  padding-top: 42px;
}

/* =========================
HOME HERO LUXURY MICRO POLISH
Safe append-only block
========================= */

.home-page .hero-overlay {
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.62)),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.10));
}

.home-page .hero-content {
  max-width: 760px;
}

.home-page .hero-title,
.home-page .hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.home-page .hero p {
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.home-page .hero-buttons {
  gap: 14px;
  margin-bottom: 12px;
}

.home-page .hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.home-page .hero-buttons .btn-secondary:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.home-page .hero-proof-line {
  gap: 18px;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.home-page .hero-proof-line span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  right: -10px;
  background: rgba(212, 160, 23, 0.72);
}

@media (max-width: 768px) {
  .home-page .hero-content {
    max-width: 92%;
  }

  .home-page .hero p {
    max-width: 540px;
    font-size: 0.96rem;
  }

  .home-page .hero-buttons {
    gap: 12px;
  }

  .home-page .hero-proof-line {
    font-size: 11px;
    gap: 10px 14px;
  }
}
/* =========================
FOOTER LUXURY MICRO POLISH
========================= */

.footer {
  background: linear-gradient(180deg, #0d110f 0%, #090c0a 100%);
}

.footer-grid {
  gap: 40px;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.footer-brand p,
.footer-links a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  transition:
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.footer-links a:hover {
  color: #f0d38a;
  opacity: 1;
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer .payment-icons,
.footer .footer-payments,
.footer .payment-methods {
  margin-top: 18px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer h4 {
    margin-bottom: 10px;
  }
}

/* =========================
ATELIER PAGE – SAFE VISUAL POLISH
Only targets .atelier-page
========================= */

.atelier-page {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.06), transparent 28%),
    linear-gradient(180deg, #0b0d0c 0%, #090b0a 100%);
}

.atelier-page .atelier-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 72px;
  background-image:
    linear-gradient(to bottom, rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.78)),
    linear-gradient(to right, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12)),
    url('/assets/images/atelier-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.atelier-page .atelier-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(212, 175, 55, 0.10), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 24%);
  pointer-events: none;
}

.atelier-page .atelier-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.70)),
    linear-gradient(to right, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.atelier-page .atelier-hero .shop-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.10), transparent 28%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.atelier-page .shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.atelier-page .atelier-hero .shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 34px 0 0;
  margin-top: 0;
}

.atelier-page .atelier-hero .shop-hero-content::before {
  content: "LIMITLESS ATELIER";
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(4.4rem, 10vw, 8.5rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

.atelier-page .atelier-hero .shop-hero-content::after {
  content: "";
  position: absolute;
  top: -24px;
  right: -56px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.85;
}

.atelier-page .atelier-hero .shop-hero-content > * {
  position: relative;
  z-index: 2;
}

.atelier-page .shop-eyebrow {
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: #e7cf93;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.atelier-page .shop-title {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: clamp(2.9rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.atelier-page .shop-title::after {
  width: 72%;
  bottom: -12px;
  height: 2px;
  opacity: 0.92;
}

.atelier-page .atelier-hero-text,
.atelier-page .shop-hero p {
  max-width: 620px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.80);
}

.atelier-page .atelier-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.atelier-page .atelier-hero-actions .btn {
  min-width: 186px;
  justify-content: center;
}

.atelier-page .atelier-hero-meta {
  max-width: 720px;
  margin-top: 30px;
  gap: 10px;
}

.atelier-page .atelier-hero .atelier-hero-meta .shop-meta-item,
.atelier-page .shop-meta-item {
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.atelier-page #atelier-intro {
  padding-top: 88px;
  padding-bottom: 32px;
  margin-bottom: 10px;
}

.atelier-page #atelier-intro .home-story-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 24px;
}

.atelier-page #atelier-intro .home-story-copy,
.atelier-page #atelier-intro .home-story-card {
  min-height: 100%;
  border-radius: 26px;
}

.atelier-page #atelier-intro .home-story-copy {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.atelier-page #atelier-intro .home-story-copy::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.atelier-page #atelier-intro .section-kicker {
  margin-bottom: 12px;
  color: #e1c57a;
  letter-spacing: 0.18em;
}

.atelier-page #atelier-intro .home-story-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.atelier-page #atelier-intro .home-story-copy p {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.atelier-page #atelier-intro .home-story-copy .btn {
  margin-top: 6px;
}

.atelier-page #atelier-intro .home-story-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.atelier-page #atelier-intro .home-story-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 72%);
  pointer-events: none;
}

.atelier-page #atelier-intro .story-mini-label {
  margin-bottom: 10px;
  color: #e1c57a;
}

.atelier-page #atelier-intro .home-story-card h3 {
  max-width: 260px;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.atelier-page #atelier-intro .home-story-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.atelier-page .shop-products {
  position: relative;
  margin-top: 10px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.atelier-page .shop-products::before,
.atelier-page .atelier-values::before,
.atelier-page .atelier-cross-link::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
  pointer-events: none;
}

.atelier-page .shop-products-header {
  position: relative;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.atelier-page .shop-products-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 185, 107, 0.95), rgba(216, 185, 107, 0));
  pointer-events: none;
}

.atelier-page .shop-products-kicker {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #e1c57a;
}

.atelier-page .shop-products-summary {
  max-width: 720px;
}

.atelier-page .shop-products-summary h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.98);
}

.atelier-page .shop-products-summary h3::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
}

.atelier-page .shop-products-summary p {
  max-width: 560px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

.atelier-page #atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.atelier-page #atelier-grid .product-card {
  position: relative;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.atelier-page #atelier-grid .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.02));
}

.atelier-page #atelier-grid .product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.atelier-page #atelier-grid .product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  display: block;
  background: #111613;
  transition: transform 0.45s ease;
}

.atelier-page #atelier-grid .product-card:hover img {
  transform: scale(1.03);
}

.atelier-page #atelier-grid .product-card h3 {
  margin: 0;
  padding: 20px 20px 8px;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
}

.atelier-page #atelier-grid .product-card p {
  margin: 0;
  padding: 0 20px 22px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #d8b96b;
  letter-spacing: 0.03em;
}

.atelier-page #atelier-grid .product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.atelier-page .atelier-values {
  position: relative;
  margin-top: -10px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: transparent;
}

.atelier-page .atelier-values .trust-grid {
  gap: 22px;
}

.atelier-page .atelier-values .trust-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  border-radius: 24px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.016));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.atelier-page .atelier-values .trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 185, 107, 0.55), rgba(216, 185, 107, 0));
  pointer-events: none;
}

.atelier-page .atelier-values .trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.16);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.atelier-page .atelier-values .trust-icon {
  display: inline-flex;
  margin-bottom: 16px;
  color: #d8b96b;
  font-size: 18px;
}

.atelier-page .atelier-values .trust-item h3 {
  max-width: 220px;
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.atelier-page .atelier-values .trust-item p {
  max-width: 300px;
  font-size: 0.96rem;
  line-height: 1.75;
  opacity: 0.78;
}

.atelier-page .atelier-cross-link {
  position: relative;
  margin-top: -20px;
  padding-top: 72px;
  padding-bottom: 72px;
  background: transparent;
}

.atelier-page .atelier-cross-link .section-kicker {
  color: #e1c57a;
  letter-spacing: 0.18em;
}

.atelier-page .atelier-cross-link .home-story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 390px);
  gap: 22px;
}

.atelier-page .atelier-cross-link .home-story-copy,
.atelier-page .atelier-cross-link .home-story-card {
  border-radius: 24px;
}

.atelier-page .atelier-cross-link .home-story-copy {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.atelier-page .atelier-cross-link .home-story-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.atelier-page .atelier-cross-link .home-story-card::after {
  content: "";
  position: absolute;
  inset: auto auto -34px -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 72%);
  pointer-events: none;
}

.atelier-page .atelier-cross-link .home-story-copy h2,
.atelier-page .atelier-cross-link .home-story-card h3 {
  letter-spacing: -0.02em;
}

.atelier-page .atelier-cross-link .home-story-copy p,
.atelier-page .atelier-cross-link .home-story-card p {
  line-height: 1.8;
}

.atelier-page .btn {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.atelier-page .btn:hover {
  transform: translateY(-1px);
}

.atelier-page .btn-primary {
  background: linear-gradient(135deg, #e2c57c 0%, #cda34a 100%);
  color: #0b0d0c;
  border: 1px solid rgba(226, 197, 124, 0.88);
  box-shadow: 0 14px 30px rgba(205, 163, 74, 0.16);
}

.atelier-page .btn-primary:hover {
  background: linear-gradient(135deg, #ead190 0%, #d6ad57 100%);
  color: #090b0a;
  box-shadow: 0 18px 36px rgba(205, 163, 74, 0.22);
}

.atelier-page .btn-outline {
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

.atelier-page .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(226, 197, 124, 0.24);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.atelier-page #atelier-intro .btn,
.atelier-page .atelier-cross-link .btn {
  min-width: 170px;
}

.atelier-page section {
  position: relative;
  z-index: 1;
}

.atelier-page .container {
  position: relative;
  max-width: 1180px;
}

.atelier-page::after {
  content: "";
  display: block;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #090b0a);
}

/* =========================
ATELIER PRODUCT PAGE
Only targets body.atelier-product-page
========================= */

.atelier-product-page .product-page-main {
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.06), transparent 26%),
    linear-gradient(180deg, #0b0d0c 0%, #090b0a 100%);
}

.atelier-product-page .product-topbar {
  margin-bottom: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.atelier-product-page .product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

.atelier-product-page .product-back-link:hover {
  color: #e1c57a;
  transform: translateX(-2px);
}

.atelier-product-page .product-topbar-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atelier-product-page .product-eyebrow {
  border-color: rgba(212, 175, 55, 0.24);
  color: #e4ca88;
  background: rgba(255, 255, 255, 0.04);
}

.atelier-product-page .product-summary-column #product-title,
.atelier-product-page .product-summary-column .product-title,
.atelier-product-page .related-products-header h2 {
  font-family: "Playfair Display", serif;
}

.atelier-product-page .product-summary-column #product-title,
.atelier-product-page .product-summary-column .product-title {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.atelier-product-page .product-price-note {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}

.atelier-product-page .product-summary-column #product-price,
.atelier-product-page .product-summary-column .product-price {
  color: #e1c57a;
}

.atelier-product-page .product-summary-column #product-description,
.atelier-product-page .product-summary-column .product-description {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.8;
}

.atelier-product-page .product-highlight-strip {
  margin-top: 6px;
  gap: 12px;
}

.atelier-product-page .product-highlight-item {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
}

.atelier-product-page .product-media-shell,
.atelier-product-page .product-summary-column .product-info {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
}

.atelier-product-page .product-media-shell {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.atelier-product-page .product-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.10), transparent 42%),
    #111613;
}

.atelier-product-page .product-image img {
  transition: transform 0.45s ease;
}

.atelier-product-page .product-image:hover img {
  transform: scale(1.02);
}

.atelier-product-page .product-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(74px, 74px));
  gap: 12px;
  margin-top: 18px;
}

.atelier-product-page .product-thumbnails img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  cursor: pointer;
  background: #111613;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.78;
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.atelier-product-page .product-thumbnails img:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.3);
}

.atelier-product-page .product-thumbnails img.active {
  opacity: 1;
  border-color: #e1c57a;
  box-shadow: 0 0 0 1px rgba(225, 197, 122, 0.4);
}

.atelier-product-page .product-summary-column .product-info {
  padding: 34px;
  gap: 24px;
}

.atelier-product-page .product-summary-column .product-description {
  margin-top: 4px;
}

.atelier-product-page .product-purchase-box {
  margin-top: 10px;
  padding: 24px;
  gap: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
  border-color: rgba(212, 175, 55, 0.16);
}

.atelier-product-page .product-purchase-head {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.atelier-product-page .product-purchase-label,
.atelier-product-page .product-option-label,
.atelier-product-page .related-products-kicker,
.atelier-product-page .sticky-cart-label {
  letter-spacing: 0.16em;
}

.atelier-product-page .product-purchase-label {
  color: rgba(255, 255, 255, 0.54);
}

.atelier-product-page .product-purchase-stock {
  color: #e4ca88;
}

.atelier-product-page .product-variant-selectors {
  display: grid;
  gap: 14px;
}

.atelier-product-page .product-option-group {
  display: grid;
  gap: 8px;
}

.atelier-product-page .product-option-label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.atelier-product-page .product-option-select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 15, 13, 0.88);
  color: #fff;
  font: inherit;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.atelier-product-page .product-option-select:focus {
  outline: none;
  border-color: rgba(226, 197, 124, 0.42);
  box-shadow: 0 0 0 4px rgba(226, 197, 124, 0.08);
  background: rgba(12, 15, 13, 0.96);
}

.atelier-product-page .product-option-select option {
  background: #0d100e;
  color: #fff;
}

.atelier-product-page .product-trust {
  display: grid;
  gap: 10px;
}

.atelier-product-page .product-trust .trust-item {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.72;
}

.atelier-product-page .product-trust .trust-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e1c57a;
  box-shadow: 0 0 10px rgba(225, 197, 122, 0.22);
}

.atelier-product-page #add-to-cart-btn,
.atelier-product-page #sticky-add-to-cart {
  min-height: 56px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e2c57c 0%, #cda34a 100%);
  color: #0b0d0c;
  border: 1px solid rgba(226, 197, 124, 0.88);
  box-shadow: 0 14px 30px rgba(205, 163, 74, 0.16);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}

.atelier-product-page #add-to-cart-btn:hover,
.atelier-product-page #sticky-add-to-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(205, 163, 74, 0.22);
  filter: brightness(1.02);
}

.atelier-product-page #add-to-cart-btn:disabled,
.atelier-product-page #sticky-add-to-cart:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: none;
}

.atelier-product-page .product-details-grid {
  margin-top: 10px;
  gap: 16px;
}

.atelier-product-page .product-detail-card {
  background: rgba(255, 255, 255, 0.022);
  border-color: rgba(255, 255, 255, 0.06);
}

.atelier-product-page .product-detail-card h3 {
  letter-spacing: -0.02em;
}

.atelier-product-page .product-detail-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}

.atelier-product-page .sticky-cart {
  padding-bottom: 0;
  background: rgba(7, 9, 8, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.atelier-product-page .sticky-cart-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  border-radius: 18px 18px 0 0;
}

.atelier-product-page .sticky-cart-copy {
  gap: 6px;
}

.atelier-product-page .sticky-cart-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.atelier-product-page #sticky-product-title {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.atelier-product-page .related-products {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 96px;
  background: transparent;
}

.atelier-product-page .related-products-header {
  margin-bottom: 34px;
}

.atelier-product-page .related-products-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #e1c57a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.atelier-product-page .related-products-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.atelier-product-page #related-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.atelier-product-page #related-products .product-card {
  min-width: 0;
}

.atelier-product-page #related-products .product-card-shell {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.atelier-product-page #related-products .product-card-shell:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.16);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
}

.atelier-product-page #related-products .product-card-media {
  position: relative;
  overflow: hidden;
  background: #111613;
}

.atelier-product-page #related-products .product-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.atelier-product-page #related-products .product-card-shell:hover .product-card-media img {
  transform: scale(1.03);
}

.atelier-product-page #related-products .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f0d38a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.atelier-product-page #related-products .product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 20px;
}

.atelier-product-page #related-products .product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.atelier-product-page #related-products .product-meta-label {
  color: rgba(255, 255, 255, 0.50);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atelier-product-page #related-products .product-price {
  color: #e1c57a;
  font-size: 0.95rem;
  font-weight: 700;
}

.atelier-product-page #related-products .product-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.atelier-product-page #related-products .product-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.atelier-product-page #related-products .product-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.8;
}

.atelier-product-page #related-products .product-card-footer {
  margin-top: auto;
}

.atelier-product-page #related-products .product-view-link {
  display: inline-flex;
  align-items: center;
  color: #f0d38a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atelier-product-page #related-products .product-view-link:hover {
  color: #ffffff;
}

.atelier-product-page .product-page {
  padding-top: 140px;
  padding-bottom: 90px;
}

.atelier-product-page .product-container {
  gap: 56px;
}

@media (max-width: 1024px) {
  .atelier-page #atelier-grid,
  .atelier-product-page #related-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atelier-page #atelier-intro .home-story-grid,
  .atelier-page .atelier-cross-link .home-story-grid {
    grid-template-columns: 1fr;
  }

  .atelier-page .atelier-hero .shop-hero-content::after {
    right: -20px;
    width: 180px;
    height: 180px;
  }

  .atelier-product-page .product-container {
    gap: 40px;
  }

  .atelier-product-page .product-summary-column .product-info {
    padding: 26px;
  }
}

@media (max-width: 768px) {
  .atelier-page .atelier-hero {
    min-height: 78vh;
    align-items: flex-end;
    padding: 122px 0 54px;
    background-position: center center;
  }

  .atelier-page .shop-title {
    font-size: clamp(2.3rem, 9vw, 3.4rem);
  }

  .atelier-page .atelier-hero-text,
  .atelier-page .shop-hero p {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .atelier-page .atelier-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .atelier-page .atelier-hero-actions .btn,
  .atelier-page #atelier-intro .btn,
  .atelier-page .atelier-cross-link .btn {
    width: 100%;
    min-width: 0;
  }

  .atelier-page .atelier-hero .shop-hero-content {
    padding-top: 22px;
  }

  .atelier-page .atelier-hero .shop-hero-content::before {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    line-height: 0.9;
    white-space: normal;
    max-width: 320px;
  }

  .atelier-page .atelier-hero .shop-hero-content::after {
    top: -10px;
    right: 0;
    width: 140px;
    height: 140px;
    opacity: 0.72;
  }

  .atelier-page #atelier-intro,
  .atelier-page .shop-products,
  .atelier-page .atelier-values,
  .atelier-page .atelier-cross-link {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .atelier-page #atelier-intro {
    padding-bottom: 20px;
  }

  .atelier-page #atelier-intro .home-story-copy,
  .atelier-page #atelier-intro .home-story-card,
  .atelier-page .atelier-cross-link .home-story-copy,
  .atelier-page .atelier-cross-link .home-story-card {
    padding: 22px;
  }

  .atelier-page .shop-products::before,
  .atelier-page .atelier-values::before,
  .atelier-page .atelier-cross-link::before {
    width: 200px;
    height: 80px;
    top: -24px;
  }

  .atelier-page .atelier-values {
    padding-bottom: 64px;
  }

  .atelier-page .atelier-cross-link {
    padding-bottom: 72px;
  }

  .atelier-page .atelier-values .trust-card {
    padding: 24px 20px;
  }

  .atelier-page .atelier-values .trust-card::before {
    left: 20px;
    right: 20px;
  }

  .atelier-page .container {
    max-width: 92%;
  }

  .atelier-product-page .product-page {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .atelier-product-page .product-container {
    gap: 28px;
  }

  .atelier-product-page .product-summary-column .product-info {
    padding: 20px;
    gap: 20px;
  }

  .atelier-product-page .product-option-select {
    min-height: 50px;
    border-radius: 14px;
  }

  .atelier-product-page #add-to-cart-btn,
  .atelier-product-page #sticky-add-to-cart {
    min-height: 52px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .atelier-product-page .product-detail-card p,
  .atelier-product-page .product-summary-column #product-description,
  .atelier-product-page .product-summary-column .product-description,
  .atelier-product-page .product-trust .trust-item,
  .atelier-product-page #related-products .product-subtitle {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .atelier-product-page .product-topbar {
    margin-bottom: 26px;
    padding-bottom: 12px;
  }

  .atelier-product-page .product-back-link {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .atelier-product-page .product-topbar-note {
    font-size: 10px;
  }

  .atelier-product-page .sticky-cart-inner {
    min-height: 74px;
    gap: 12px;
  }

  .atelier-product-page #sticky-product-title {
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .atelier-page #atelier-grid,
  .atelier-product-page #related-products {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .atelier-page #atelier-grid .product-card,
  .atelier-product-page #related-products .product-card-shell {
    border-radius: 20px;
  }

  .atelier-page #atelier-grid .product-card h3 {
    padding: 18px 18px 8px;
    font-size: 1rem;
  }

  .atelier-page #atelier-grid .product-card p {
    padding: 0 18px 18px;
  }

  .atelier-highlight {
    min-height: 56vh;
    padding: 58px 0;
  }

  .atelier-highlight-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .atelier-highlight-actions .btn {
    width: 100%;
    max-width: 260px;
  }
}

/* =========================
ATELIER CATEGORY FILTERS
========================= */

.atelier-page .atelier-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.atelier-page .atelier-filter-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.atelier-page .atelier-filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 197, 122, 0.24);
  color: #ffffff;
}

.atelier-page .atelier-filter-btn.active {
  background: linear-gradient(135deg, #e2c57c 0%, #cda34a 100%);
  color: #0b0d0c;
  border-color: rgba(226, 197, 124, 0.88);
}

/* =========================
ATELIER HIGHLIGHT - HOMEPAGE
========================= */

.atelier-highlight {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 88px 0;
  overflow: hidden;
  background-image: url('/assets/images/atelier-hero.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.atelier-highlight-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 6, 6, 0.90) 0%,
      rgba(6, 6, 6, 0.72) 34%,
      rgba(6, 6, 6, 0.38) 58%,
      rgba(6, 6, 6, 0.18) 100%
    ),
    radial-gradient(
      circle at 18% 50%,
      rgba(212, 175, 55, 0.12),
      transparent 42%
    );
  z-index: 1;
}

.atelier-highlight-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.atelier-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.atelier-highlight h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f7f1dc;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.atelier-highlight p {
  max-width: 500px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.78;
}

.atelier-highlight-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.atelier-highlight .btn-primary {
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.22);
}

.atelier-highlight .btn-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.atelier-highlight .btn-outline:hover {
  border-color: rgba(212, 175, 55, 0.35);
  color: #fff;
}

@media (max-width: 900px) {
  .atelier-highlight {
    min-height: 62vh;
    padding: 72px 0;
    background-position: center center;
  }

  .atelier-highlight-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(6, 6, 6, 0.70) 0%,
        rgba(6, 6, 6, 0.74) 45%,
        rgba(6, 6, 6, 0.84) 100%
      ),
      radial-gradient(
        circle at 50% 22%,
        rgba(212, 175, 55, 0.10),
        transparent 36%
      );
  }

  .atelier-highlight-content,
  .atelier-highlight h2,
  .atelier-highlight p {
    max-width: 100%;
  }
}