:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --burgundy: #4a0f1a;
  --crimson: #7a1124;
  --crimson-light: #9a1830;
  --leather: #c4a484;
  --white: #f2f2f2;
  --muted: rgba(242, 242, 242, 0.68);
  --faint: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.035);
  --max: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(122, 17, 36, 0.35), transparent 34%),
    radial-gradient(circle at bottom left, rgba(74, 15, 26, 0.45), transparent 32%),
    var(--black);
  color: var(--white);
  font-family: Inter, Manrope, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--leather);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: white;
  box-shadow: 0 18px 50px rgba(122, 17, 36, 0.25);
}

.btn-primary:hover {
  background: var(--crimson-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--leather);
  color: var(--leather);
  transform: translateY(-1px);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.desktop-nav a:hover {
  color: var(--leather);
}

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

.lang-btn,
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: 0.25s ease;
}

.lang-btn {
  padding: 10px 14px;
}

.lang-btn:hover,
.menu-btn:hover {
  border-color: var(--leather);
  color: var(--leather);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  justify-content: center;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--black);
  padding: 24px 20px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mobile-nav button {
  color: var(--leather);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.96), rgba(74, 15, 26, 0.72)),
    radial-gradient(circle at 75% 25%, rgba(196, 164, 132, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.94;
}

.hero p {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.55);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,10,10,0), rgba(10,10,10,0.88)),
    radial-gradient(circle at 50% 18%, rgba(196,164,132,0.22), transparent 20%),
    linear-gradient(145deg, #1a0d10, #050505 55%, #4a0f1a);
}

.frame-illustration {
  position: absolute;
  inset: 12%;
  border: 5px solid rgba(196, 164, 132, 0.42);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 80px rgba(122,17,36,0.45);
}

.frame-illustration::before,
.frame-illustration::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 38%;
  background: rgba(196, 164, 132, 0.72);
  transform: translateX(-50%);
}

.frame-illustration::before {
  top: 0;
}

.frame-illustration::after {
  bottom: 12%;
  height: 18%;
}

.swing-arc {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 42%;
  height: 18%;
  border-bottom: 5px solid rgba(122,17,36,0.9);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro {
  text-align: center;
}

.intro h2,
.section-title {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.05;
}

.intro p {
  max-width: 790px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-head {
  max-width: 780px;
  margin-bottom: 55px;
}

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

.product-card,
.mini-card,
.step-card,
.faq-item,
.contact-wrap,
.feature-band {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  box-shadow: 0 22px 70px rgba(0,0,0,0.25);
}

.product-card {
  overflow: hidden;
  border-radius: 34px;
}

.product-visual {
  min-height: 370px;
  position: relative;
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: -5%;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.06), rgba(10,10,10,0.94)),
    radial-gradient(circle at 50% 24%, rgba(196,164,132,0.2), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, #151515, #050505 55%, var(--burgundy));
  transition: transform 0.65s ease;
}

.product-card:hover .product-visual::before {
  transform: scale(1.04);
}

.product-visual.crimson::before {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.04), rgba(74,15,26,0.92)),
    radial-gradient(circle at 50% 24%, rgba(122,17,36,0.38), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, #111, #22050a 55%, #7a1124);
}

.product-frame {
  position: absolute;
  inset: 18% 20%;
  border: 4px solid rgba(196,164,132,0.46);
  border-radius: 12px;
  box-shadow: 0 0 70px rgba(122,17,36,0.35);
}

.product-frame.four::before,
.product-frame.four::after,
.product-frame.two::before,
.product-frame.two::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 45%;
  background: rgba(196,164,132,0.8);
}

.product-frame.two::before,
.product-frame.two::after {
  left: 48%;
}

.product-frame.four::before {
  left: 25%;
}

.product-frame.four::after {
  right: 25%;
}

.product-body {
  padding: 34px;
}

.product-body h3 {
  font-size: 42px;
  line-height: 1;
}

.product-body .tagline {
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 18px;
}

.product-body .description {
  margin-top: 20px;
  color: rgba(255,255,255,0.62);
}

.product-cta {
  margin-top: 28px;
}

.spec-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: rgba(0,0,0,0.28);
}

.spec-title {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.spec-grid div,
.contact-line,
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.gold {
  color: var(--leather);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: end;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  border-radius: 20px;
  padding: 20px;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 55px;
}

.step-card {
  border-radius: 24px;
  padding: 24px;
}

.step-number {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--crimson);
  font-weight: 750;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  min-height: 580px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(74,15,26,0.2), rgba(10,10,10,0.74)),
    radial-gradient(circle at 50% 30%, rgba(196,164,132,0.18), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 20px),
    linear-gradient(145deg, #161616, #060606 58%, #4a0f1a);
}

.about-text p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.trust-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,0.035);
}

.feature-band {
  border-radius: 34px;
  padding: 46px;
  background: rgba(74,15,26,0.3);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.feature p {
  color: rgba(255,255,255,0.62);
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  margin-top: 14px;
  border-radius: 22px;
  padding: 22px 24px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 16px;
  color: rgba(255,255,255,0.62);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-plus {
  color: var(--leather);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  border-radius: 34px;
  padding: 28px;
}

.contact-panel {
  min-height: 610px;
  border-radius: 26px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.1), rgba(10,10,10,0.88)),
    radial-gradient(circle at 55% 22%, rgba(122,17,36,0.4), transparent 24%),
    linear-gradient(135deg, #151515, #050505 55%, #4a0f1a);
}

.contact-panel p {
  margin-top: 24px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.contact-details {
  margin-top: 38px;
}

.contact-line {
  margin-top: 16px;
  color: rgba(255,255,255,0.72);
}

.contact-line a {
  color: rgba(255,255,255,0.82);
  transition: color 0.2s ease;
}

.contact-line a:hover {
  color: var(--leather);
}

.contact-form {
  display: grid;
  gap: 18px;
  align-content: start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(0,0,0,0.35);
  color: white;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leather);
  background: rgba(0,0,0,0.48);
}

select option {
  background: #101010;
  color: white;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-note {
  color: rgba(255,255,255,0.42);
  font-size: 12px;
  line-height: 1.7;
}

.success-message {
  display: none;
  border: 1px solid rgba(196,164,132,0.35);
  border-radius: 18px;
  padding: 16px;
  background: rgba(196,164,132,0.08);
  color: var(--leather);
}

.success-message.show {
  display: block;
}

footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.footer-sub {
  margin-top: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,0.52);
  font-size: 14px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero-grid,
  .product-grid,
  .audience-grid,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-actions,
  .form-row {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .spec-grid,
  .process-grid,
  .audience-cards {
    grid-template-columns: 1fr;
  }

  .contact-wrap,
  .feature-band,
  .product-body {
    padding: 22px;
  }

  .contact-panel {
    min-height: 460px;
    padding: 26px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


/* Product detail pages */
.product-detail-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: end;
  padding: 130px 0 80px;
  overflow: hidden;
}
.product-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.94), rgba(10,10,10,0.45), rgba(74,15,26,0.55)), var(--product-hero-image), linear-gradient(135deg, #151515, #050505 55%, var(--burgundy));
  background-size: cover;
  background-position: center;
  opacity: 0.92;
}
.product-detail-hero .container { position: relative; z-index: 1; }
.back-link { display: inline-flex; margin-bottom: 22px; color: var(--leather); font-size: 14px; }
.product-detail-hero h1 { max-width: 920px; font-size: clamp(54px, 8vw, 116px); line-height: 0.94; }
.product-detail-hero .hero-meta { max-width: 760px; margin-top: 24px; color: rgba(255,255,255,0.76); font-size: clamp(18px, 2vw, 22px); }
.detail-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: start; }
.detail-copy p { margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.85; }
.detail-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 28px; padding: 28px; background: rgba(255,255,255,0.035); }
.detail-spec-list { display: grid; gap: 18px; }
.detail-spec-list div { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.detail-spec-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-spec-list strong { color: var(--leather); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.detail-spec-list span { color: rgba(255,255,255,0.75); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-item { min-height: 280px; border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; background: linear-gradient(180deg, rgba(10,10,10,0.08), rgba(10,10,10,0.7)), var(--image), linear-gradient(135deg, #151515, #050505 55%, var(--burgundy)); background-size: cover; background-position: center; box-shadow: 0 22px 70px rgba(0,0,0,0.25); }
.usage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.usage-card { min-height: 170px; border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 24px; background: rgba(255,255,255,0.035); }
.usage-card h3 { margin-bottom: 10px; font-size: 21px; }
.usage-card p { color: rgba(255,255,255,0.62); }
.product-request-band { border: 1px solid rgba(255,255,255,0.1); border-radius: 34px; padding: 46px; background: radial-gradient(circle at top right, rgba(122,17,36,0.38), transparent 34%), rgba(74,15,26,0.28); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.product-request-band p { margin-top: 14px; color: rgba(255,255,255,0.66); }
.product-request-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
.product-cta-duo { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 980px) { .detail-layout, .product-request-band { grid-template-columns: 1fr; } .gallery-grid, .usage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .product-request-actions { justify-content: flex-start; } }
@media (max-width: 620px) { .product-detail-hero { min-height: 76vh; padding: 120px 0 60px; } .detail-spec-list div, .gallery-grid, .usage-grid { grid-template-columns: 1fr; } .gallery-item { min-height: 240px; } .product-request-band { padding: 24px; } .product-cta-duo .btn { width: 100%; } }


/* Homepage hero logo */
.hero-logo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 42%, rgba(196,164,132,0.18), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(122,17,36,0.34), transparent 34%),
    linear-gradient(180deg, rgba(10,10,10,0.1), rgba(10,10,10,0.88)),
    linear-gradient(145deg, #1a0d10, #050505 55%, #4a0f1a);
}

.hero-logo-image {
  display: block;
  width: min(78%, 390px);
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,0.62));
}

@media (max-width: 620px) {
  .hero-logo-image {
    width: min(84%, 310px);
    max-height: 68%;
  }
}


/* Real metallic gold text visual test
   This is a separate test layer. Remove this block to return to the original styling. */
:root {
  --real-gold: #D4AF37;
  --gold-dark: #B8860B;
  --gold-mid: #C9A227;
  --gold-light: #F5D76E;
  --gold-soft-text: rgba(245, 215, 110, 0.82);
}

/* Metallic gold gradient for large premium text only */
.hero h1,
.section-title,
.intro h2,
.product-body h3,
.product-detail-hero h1,
.contact-panel h2,
.footer-logo,
.logo {
  background: linear-gradient(135deg, #F5D76E 0%, #D4AF37 32%, #C9A227 58%, #B8860B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #D4AF37;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 36px rgba(212, 175, 55, 0.08);
}

/* Keep important labels and highlights golden, but not metallic */
.eyebrow,
.gold,
.back-link,
.faq-plus,
.desktop-nav a:hover,
.contact-line a:hover,
.btn-secondary:hover {
  color: #D4AF37;
}

/* Keep body text readable and elegant, not fully gold */
body {
  color: #F2F2F2;
}

.hero p,
.intro p,
.about-text p,
.product-body .tagline,
.product-body .description,
.detail-copy p,
.product-detail-hero .hero-meta,
.contact-panel p {
  color: rgba(245, 238, 220, 0.82);
}

/* Secondary text remains muted to avoid an overdone gold effect */
.desktop-nav,
.footer-links,
.hero-tags,
.mini-card,
.step-card p,
.feature p,
.faq-answer,
.form-note,
.contact-line,
.spec-grid,
.detail-spec-list span {
  color: rgba(242, 242, 242, 0.64);
}

/* Subtle premium gold borders on cards */
.product-card,
.mini-card,
.step-card,
.faq-item,
.contact-wrap,
.feature-band,
.hero-card,
.detail-card,
.usage-card,
.product-request-band {
  border-color: rgba(212, 175, 55, 0.16);
}

/* Gold shimmer line on hero card for the metallic test */
.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(245, 215, 110, 0.18), transparent 28%, rgba(184, 134, 11, 0.1));
  opacity: 0.75;
}

/* Keep red/burgundy buttons intact, only warm text */
.btn-primary {
  color: #fff8e6;
}

.btn-secondary {
  color: #f5e8c8;
  border-color: rgba(212, 175, 55, 0.24);
}

.btn-secondary:hover {
  border-color: #D4AF37;
}

/* Form fields remain dark with slightly warmer input text */
input,
select,
textarea {
  color: #fff5dc;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 215, 110, 0.42);
}

/* Make product visual frames subtly more gold in this test */
.frame-illustration,
.product-frame {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 82px rgba(212, 175, 55, 0.14), 0 0 70px rgba(122,17,36,0.26);
}


/* Fix for clipped descenders in metallic gold hero heading */
.hero h1 {
  line-height: 1.08;
  padding-bottom: 0.16em;
  overflow: visible;
}

.hero .serif {
  overflow: visible;
}

@media (max-width: 620px) {
  .hero h1 {
    line-height: 1.1;
    padding-bottom: 0.18em;
  }
}


/* Global fix for clipped descenders in large metallic serif headings
   Fixes letters like g, y, j, p and q being cut off in headings. */
.hero h1,
.section-title,
.intro h2,
.product-body h3,
.product-detail-hero h1,
.contact-panel h2,
.about-text h2,
.faq-wrap h2,
.detail-copy h2,
.product-request-band h2 {
  line-height: 1.12;
  padding-bottom: 0.18em;
  overflow: visible;
}

.serif {
  overflow: visible;
}

/* Slightly tighter but still safe for medium product titles */
.product-body h3,
.footer-logo,
.logo {
  line-height: 1.12;
  padding-bottom: 0.08em;
}

/* Prevent parent sections from visually clipping large gradient text */
.intro,
.section-head,
.about-text,
.faq-wrap,
.detail-copy,
.contact-panel,
.product-request-band {
  overflow: visible;
}

@media (max-width: 620px) {
  .hero h1,
  .section-title,
  .intro h2,
  .product-detail-hero h1,
  .contact-panel h2,
  .about-text h2,
  .faq-wrap h2,
  .detail-copy h2,
  .product-request-band h2 {
    line-height: 1.14;
    padding-bottom: 0.22em;
  }
}


/* Header logo mark next to KYNX text */
.logo-with-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.28em;
}

.header-logo-mark {
  width: auto;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.logo-with-mark span {
  line-height: 1;
}

@media (max-width: 620px) {
  .logo-with-mark {
    gap: 9px;
  }

  .header-logo-mark {
    height: 30px;
  }
}


/* Premium rental date choice */
.date-choice-section {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.22);
}

.date-choice-title {
  margin: 0;
  color: #D4AF37;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.date-choice-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), rgba(0,0,0,0.28));
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.date-choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.32);
}

.date-choice-card.active {
  border-color: rgba(212, 175, 55, 0.74);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 18px 48px rgba(122, 17, 36, 0.22),
    inset 0 0 38px rgba(212, 175, 55, 0.045);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(122,17,36,0.16), rgba(0,0,0,0.32));
}

.date-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.date-choice-card-title {
  color: #fff8e6;
  font-weight: 800;
  font-size: 16px;
}

.date-choice-card-text {
  color: rgba(242, 242, 242, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.date-fields {
  display: grid;
  gap: 14px;
}

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

.date-field-label {
  display: grid;
  gap: 9px;
  color: rgba(245, 215, 110, 0.82);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.date-field-label input[type="date"] {
  color-scheme: dark;
}

.form-error {
  min-height: 20px;
  color: #F5D76E;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 620px) {
  .date-choice-grid,
  .date-range-fields {
    grid-template-columns: 1fr;
  }

  .date-choice-section {
    padding: 16px;
  }
}


/* Direct website form submission */
.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.success-message.success {
  border-color: rgba(196, 164, 132, 0.42);
  background: rgba(196, 164, 132, 0.09);
  color: #D8C3A5;
}

.success-message.error {
  border-color: rgba(154, 24, 48, 0.56);
  background: rgba(122, 17, 36, 0.18);
  color: #F5D76E;
}

button[disabled],
button.is-loading {
  cursor: not-allowed;
  opacity: 0.72;
}


/* Mobile hero logo/layout fix
   Prevents the hero logo from becoming too large or overlapping the hero text on mobile. */
@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 58px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 34px;
    align-items: stretch;
  }

  .hero-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 26px;
  }

  .hero-visual,
  .hero-logo-visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 220px;
    border-radius: 20px;
    padding: 22px;
  }

  .hero-logo-image {
    width: min(70%, 220px);
    max-width: 220px;
    max-height: 150px;
    margin: 0 auto;
    object-fit: contain;
  }

  .hero-tags {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 78px);
    line-height: 1.08;
    padding-bottom: 0.16em;
  }

  .hero p {
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.65;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 28px;
  }
}

@media (max-width: 390px) {
  .hero-card {
    max-width: 320px;
  }

  .hero-visual,
  .hero-logo-visual {
    max-height: 190px;
    padding: 18px;
  }

  .hero-logo-image {
    width: min(68%, 190px);
    max-height: 130px;
  }

  .hero h1 {
    font-size: clamp(48px, 17vw, 68px);
  }

  .hero p {
    font-size: 18px;
  }
}


/* Hero visibility safety fix
   Ensures the homepage hero content is visible even if JavaScript or IntersectionObserver fails. */
.hero .reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .hero .reveal {
  opacity: 1;
  transform: none;
}


/* Styled fallback page for non-JavaScript form submissions */
.fallback-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(122, 17, 36, 0.35), transparent 34%),
    radial-gradient(circle at bottom left, rgba(74, 15, 26, 0.45), transparent 32%),
    var(--black);
}

.fallback-card {
  width: min(720px, 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 34px;
  padding: clamp(28px, 6vw, 58px);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.fallback-card p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: rgba(242, 242, 242, 0.78);
  font-size: 18px;
  line-height: 1.8;
}


/* Real product photos in homepage product cards */
.product-photo-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  background: #090909;
}

.product-photo-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.82)),
    radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.28));
  transition: opacity 0.45s ease;
}

.product-photo-link.crimson::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(74, 15, 26, 0.82)),
    radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.3));
}

.product-photo-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.product-card:hover .product-photo-image {
  transform: scale(1.045);
  filter: brightness(0.88) contrast(1.06);
}

.product-card:hover .product-photo-link::before {
  opacity: 0.78;
}

/* Disable the old abstract placeholder layer for real photo cards */
.product-photo-link.product-visual::after {
  content: "View product";
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.42);
  color: #F5D76E;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

@media (max-width: 620px) {
  .product-photo-link.product-visual::after {
    right: 16px;
    bottom: 16px;
    font-size: 10px;
    padding: 8px 11px;
  }
}


/* Product page button directly below homepage product photos */
.product-page-button-row {
  display: flex;
  justify-content: center;
  padding: 20px 24px 0;
  background: rgba(255, 255, 255, 0.018);
}

.product-page-button-row .btn {
  width: min(100%, 280px);
}

.product-body {
  padding-top: 26px;
}

@media (max-width: 620px) {
  .product-page-button-row {
    padding: 18px 18px 0;
  }

  .product-page-button-row .btn {
    width: 100%;
  }

  .product-body {
    padding-top: 22px;
  }
}


/* Product page section order update: specs first, gallery second, description third */
.product-specs-first {
  max-width: 980px;
}

.product-specs-first .detail-card {
  width: 100%;
}

.product-description-after-gallery {
  max-width: 900px;
}

.product-description-after-gallery .detail-copy {
  max-width: 100%;
}

.product-description-after-gallery .section-title {
  max-width: 820px;
}

@media (max-width: 620px) {
  .product-specs-first,
  .product-description-after-gallery {
    width: min(100% - 28px, var(--max));
  }
}


/* Premium integrated hero logo treatment
   Keeps the KYNX logo in the hero card, but makes it feel like a subtle luxury emblem instead of a pasted square image. */
.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border-radius: 26px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.08), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(122, 17, 36, 0.18), transparent 30%);
  opacity: 0.75;
}

.hero-logo-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(44px, 6vw, 86px);
  background:
    radial-gradient(circle at 50% 46%, rgba(212, 175, 55, 0.11), transparent 22%),
    radial-gradient(circle at 50% 72%, rgba(122, 17, 36, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.92)),
    linear-gradient(145deg, #180b0e, #050505 56%, #3b0b15);
}

.hero-logo-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: 0;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.07), transparent 38%);
  box-shadow:
    inset 0 0 44px rgba(0, 0, 0, 0.52),
    0 24px 90px rgba(0, 0, 0, 0.42);
}

.hero-logo-visual::after {
  content: "KYNX";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  color: rgba(212, 175, 55, 0.08);
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  line-height: 1;
  pointer-events: none;
}

.hero-logo-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(46%, 245px);
  max-height: 46%;
  object-fit: contain;
  opacity: 0.78;
  mix-blend-mode: screen;
  filter:
    sepia(0.55)
    saturate(1.12)
    brightness(0.92)
    contrast(1.04)
    drop-shadow(0 20px 48px rgba(212, 175, 55, 0.13))
    drop-shadow(0 32px 80px rgba(0, 0, 0, 0.56));
  transition: transform 0.65s ease, opacity 0.65s ease, filter 0.65s ease;
}

.hero-card:hover .hero-logo-image {
  transform: scale(1.025);
  opacity: 0.88;
  filter:
    sepia(0.55)
    saturate(1.2)
    brightness(1)
    contrast(1.05)
    drop-shadow(0 22px 54px rgba(212, 175, 55, 0.18))
    drop-shadow(0 36px 88px rgba(0, 0, 0, 0.62));
}

.hero-tags {
  position: relative;
  z-index: 2;
}

@media (max-width: 620px) {
  .hero-card::after {
    inset: 12px;
    border-radius: 22px;
  }

  .hero-logo-visual {
    padding: 28px;
  }

  .hero-logo-visual::before {
    inset: 10%;
    border-radius: 18px;
  }

  .hero-logo-visual::after {
    bottom: 11%;
    font-size: 44px;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .hero-logo-image {
    width: min(44%, 155px);
    max-width: 155px;
    max-height: 115px;
    opacity: 0.78;
  }
}

@media (max-width: 390px) {
  .hero-logo-image {
    width: min(42%, 130px);
    max-height: 96px;
  }

  .hero-logo-visual::after {
    font-size: 36px;
  }
}


/* Refined hero-card logo treatment: dark luxury seal
   This overrides the previous watermark/inner-frame logo styling.
   Goal: keep the logo, but make it feel like a calm premium emblem instead of a pasted square image. */
.hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(122, 17, 36, 0.24), transparent 36%),
    radial-gradient(circle at 50% 72%, rgba(212, 175, 55, 0.055), transparent 28%),
    linear-gradient(145deg, rgba(52, 20, 23, 0.95), rgba(8, 7, 7, 0.96) 58%, rgba(50, 11, 18, 0.9));
}

/* Remove previous large watermark / busy frame effects */
.hero-card::after,
.hero-logo-visual::before,
.hero-logo-visual::after {
  content: none !important;
  display: none !important;
}

.hero-logo-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(390px, 31vw, 540px);
  padding: clamp(58px, 7vw, 100px);
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 19%),
    radial-gradient(circle at 50% 50%, rgba(122, 17, 36, 0.28), transparent 38%),
    linear-gradient(180deg, rgba(12, 9, 10, 0.14), rgba(5, 5, 5, 0.86)),
    linear-gradient(145deg, #12090b, #050505 58%, #2b0710);
  border-radius: 24px;
}

/* Soft outer ambience: calm, not busy */
.hero-logo-visual .hero-logo-image {
  position: relative;
}

/* The logo becomes a small centered emblem/seal */
.hero-logo-image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(34%, 168px);
  max-width: 168px;
  max-height: 168px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 22px;
  border-radius: 999px;
  opacity: 0.82;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.12), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.46));
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 0 0 10px rgba(212, 175, 55, 0.025),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 26px 80px rgba(0, 0, 0, 0.52),
    0 18px 68px rgba(212, 175, 55, 0.11);
  mix-blend-mode: normal;
  filter:
    sepia(0.32)
    saturate(1.05)
    brightness(0.94)
    contrast(1.02)
    drop-shadow(0 10px 28px rgba(212, 175, 55, 0.12));
  transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.55s ease, filter 0.55s ease;
}

.hero-card:hover .hero-logo-image {
  transform: translateY(-2px) scale(1.018);
  opacity: 0.9;
  box-shadow:
    0 0 0 10px rgba(212, 175, 55, 0.035),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    0 30px 88px rgba(0, 0, 0, 0.58),
    0 20px 76px rgba(212, 175, 55, 0.15);
  filter:
    sepia(0.3)
    saturate(1.12)
    brightness(1)
    contrast(1.04)
    drop-shadow(0 12px 32px rgba(212, 175, 55, 0.15));
}

/* Keep Luxury / Discreet / Artistic clean and anchored */
.hero-tags {
  position: relative;
  z-index: 3;
  color: rgba(245, 232, 200, 0.72);
}

@media (max-width: 620px) {
  .hero-logo-visual {
    min-height: 190px;
    max-height: 220px;
    padding: 34px;
    border-radius: 20px;
  }

  .hero-logo-image {
    width: 118px;
    max-width: 118px;
    max-height: 118px;
    padding: 16px;
    opacity: 0.84;
  }
}

@media (max-width: 390px) {
  .hero-logo-visual {
    min-height: 170px;
    max-height: 190px;
    padding: 28px;
  }

  .hero-logo-image {
    width: 104px;
    max-width: 104px;
    max-height: 104px;
    padding: 14px;
  }
}


/* Hero card refinement — option 2: sensory background image + subtle logo seal
   Goal: make the desktop card richer and more premium while keeping the KYNX logo. */
.hero-card {
  background:
    linear-gradient(145deg, rgba(42, 18, 20, 0.82), rgba(8, 8, 8, 0.88) 56%, rgba(64, 9, 18, 0.78));
  box-shadow: 0 42px 140px rgba(0, 0, 0, 0.58);
}

.hero-logo-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(212, 175, 55, 0.08), transparent 20%),
    radial-gradient(circle at 50% 68%, rgba(122, 17, 36, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.78)),
    linear-gradient(145deg, #12090b, #040404 58%, #2b0710);
}

.hero-bg-image,
.hero-bg-fallback,
.hero-visual-shade {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(0.92) brightness(0.56) contrast(1.05);
}

.hero-bg-fallback {
  background:
    radial-gradient(circle at 50% 22%, rgba(196, 164, 132, 0.16), transparent 16%),
    radial-gradient(circle at 52% 32%, rgba(122, 17, 36, 0.18), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(22, 18, 14, 0.52), transparent 32%),
    linear-gradient(140deg, #171112 0%, #050505 56%, #300912 100%);
}

.hero-visual-shade {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.08) 0%, rgba(6, 6, 6, 0.42) 54%, rgba(6, 6, 6, 0.82) 100%),
    radial-gradient(circle at 48% 26%, rgba(212, 175, 55, 0.11), transparent 16%),
    radial-gradient(circle at 50% 58%, rgba(122, 17, 36, 0.26), transparent 28%);
  z-index: 1;
}

.hero-logo-seal {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(112px, 13vw, 168px);
  height: clamp(112px, 13vw, 168px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.03) 42%, transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.56));
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow:
    0 0 0 14px rgba(212, 175, 55, 0.02),
    0 28px 90px rgba(0, 0, 0, 0.52),
    0 14px 50px rgba(212, 175, 55, 0.11);
  backdrop-filter: blur(3px);
}

.hero-logo-image {
  display: block;
  width: 62%;
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
  opacity: 0.92;
  filter:
    sepia(0.2)
    saturate(1.05)
    brightness(0.98)
    drop-shadow(0 10px 26px rgba(0,0,0,0.44))
    drop-shadow(0 6px 18px rgba(212,175,55,0.11));
}

.hero-tags {
  position: relative;
  z-index: 3;
}

.hero-card:hover .hero-bg-image {
  transform: scale(1.06);
  transition: transform 0.8s ease;
}

.hero-card:hover .hero-logo-seal {
  transform: translate(-50%, -50%) scale(1.02);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow:
    0 0 0 14px rgba(212, 175, 55, 0.03),
    0 32px 96px rgba(0, 0, 0, 0.58),
    0 16px 56px rgba(212, 175, 55, 0.14);
}

@media (min-width: 1100px) {
  .hero-logo-visual {
    min-height: 540px;
  }

  .hero-logo-seal {
    top: 55%;
  }
}

@media (max-width: 900px) {
  .hero-logo-seal {
    top: 52%;
    width: 126px;
    height: 126px;
  }
}

@media (max-width: 620px) {
  .hero-logo-visual {
    min-height: 240px;
  }

  .hero-bg-image {
    transform: scale(1.01);
  }

  .hero-logo-seal {
    top: 50%;
    width: 96px;
    height: 96px;
    box-shadow:
      0 0 0 10px rgba(212, 175, 55, 0.02),
      0 18px 44px rgba(0, 0, 0, 0.44),
      0 10px 28px rgba(212, 175, 55, 0.1);
  }

  .hero-logo-image {
    width: 60%;
    max-width: 62px;
    max-height: 62px;
  }
}

@media (max-width: 390px) {
  .hero-logo-visual {
    min-height: 210px;
  }

  .hero-logo-seal {
    width: 84px;
    height: 84px;
  }
}


/* Fix: make hero-sensory image visible above the fallback layer */
.hero-bg-fallback {
  z-index: 0;
}

.hero-bg-image {
  z-index: 1;
}

.hero-visual-shade {
  z-index: 2;
}

.hero-logo-seal {
  z-index: 3;
}

.hero-tags {
  z-index: 4;
}
