﻿:root {
  --black: #080808;
  --soft-black: #111111;
  --gold: #C9A24D;
  --metallic-gold: #D1AB5C;
  --deep-gold: #A67C2D;
  --white: #FFFFFF;
  --beige: #F5EFE5;
  --warm-beige: #E8DDCC;
  --ink: #1d1b18;
  --muted: #69645c;
  --line: rgba(201, 162, 77, 0.28);
  --shadow: 0 22px 70px rgba(8, 8, 8, 0.18);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(201, 162, 77, 0.35);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 7px 18px;
  background: var(--black);
  color: var(--warm-beige);
  font-size: 0.82rem;
}

.top-strip a { color: var(--gold); }

.nav-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.brand-link img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 11px;
  color: var(--warm-beige);
  font-size: 0.92rem;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(201, 162, 77, 0.14);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 3px 0;
}

.nav-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 26px rgba(166, 124, 45, 0.22);
}

.btn:hover {
  background: var(--metallic-gold);
  border-color: var(--metallic-gold);
}

.btn-outline {
  background: transparent;
  color: var(--deep-gold);
  box-shadow: none;
}

.btn-outline:hover {
  color: var(--black);
}

.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-small {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 0.9rem;
}

.hero,
.page-hero {
  position: relative;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.home-hero {
  min-height: clamp(620px, 82svh, 860px);
  display: flex;
  align-items: center;
  background: var(--black);
  isolation: isolate;
}

.home-hero::before {
  content: none;
}

.hero-slider,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--black);
  background-position: center;
  transform: scale(1.05);
  animation: cinematicHero 63s infinite ease-in-out;
  will-change: opacity, transform;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.76) 36%, rgba(8, 8, 8, 0.3) 67%, rgba(8, 8, 8, 0.56) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.55), rgba(8, 8, 8, 0.08) 48%, rgba(8, 8, 8, 0.62));
}

.hero-shade::after {
  content: "";
  position: absolute;
  left: max(18px, calc((100vw - 1180px) / 2));
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.7), transparent);
}

@keyframes cinematicHero {
  0% {
    opacity: 1;
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.14) translate3d(-1.2%, -0.8%, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.14) translate3d(-1.2%, -0.8%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.cinematic-content {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.home-hero h1 {
  max-width: 740px;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
}

.hero-tagline {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--white);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  font-weight: 600;
}

.hero-service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--beige);
  font-size: 0.98rem;
  font-weight: 650;
}

.hero-service-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-service-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(201, 162, 77, 0.6);
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.compact-hero .eyebrow {
  color: var(--metallic-gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 3.05rem);
}

h3 {
  font-size: 1.32rem;
}

.hero-content p:not(.eyebrow):not(.hero-tagline),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.1rem;
  color: var(--beige);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero .hero-actions .btn {
  min-height: 54px;
  padding: 15px 24px;
}

.compact-hero {
  padding: 72px 18px 66px;
  text-align: center;
}

.compact-hero h1,
.compact-hero p {
  margin-left: auto;
  margin-right: auto;
}

.trust-bar {
  width: min(1180px, calc(100% - 36px));
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-bar div {
  padding: 22px;
  border-right: 1px solid rgba(201, 162, 77, 0.22);
}

.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.trust-bar span { color: var(--muted); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.beige-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  background: var(--beige);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(300px, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 32px;
}

.section-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(8, 8, 8, 0.08);
}

.product-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--warm-beige);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 18px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

.product-body .eyebrow { color: var(--deep-gold); }

.price-panel {
  border-top: 1px solid rgba(201, 162, 77, 0.28);
  padding-top: 12px;
}

.price-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.price-old {
  margin: 0 0 5px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-main {
  margin: 0;
  color: var(--deep-gold);
  font-size: 1.44rem;
  font-weight: 850;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  min-height: 520px;
  background: var(--soft-black);
  color: var(--white);
}

.split-band.light {
  background: var(--beige);
  color: var(--ink);
}

.split-media {
  min-height: 420px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  padding: clamp(36px, 6vw, 74px);
}

.split-copy p {
  color: inherit;
  max-width: 650px;
}

.split-band:not(.light) .split-copy p {
  color: var(--beige);
}

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

.link-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(166, 124, 45, 0.28);
  border-radius: var(--radius);
  font-weight: 750;
}

.product-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 60px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumb-row img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.product-summary {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 8, 8, 0.08);
}

.product-summary h1 {
  color: var(--black);
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

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

.details-grid > div,
.service-grid article,
.contact-grid article,
.blog-card,
.cta-panel,
.landing-copy aside {
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(8, 8, 8, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid.small-gallery {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
}

.gallery-item span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: rgba(8, 8, 8, 0.78);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.8rem;
  line-height: 1.25;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-height: 86vh;
  max-width: min(980px, 92vw);
  border-radius: var(--radius);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.service-grid,
.contact-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card .text-link {
  color: var(--deep-gold);
  font-weight: 800;
}

.calc-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: start;
}

.calc-card,
.calc-notes {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.calc-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.calc-card select,
.calc-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
}

.input-row {
  margin-top: 16px;
}

.unit-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.unit-input input {
  border: 0;
  border-radius: 0;
}

.unit-input span {
  padding: 0 14px;
  color: var(--muted);
}

.is-hidden { display: none; }

.calc-output {
  margin: 22px 0;
  padding: 20px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}

.calc-output span,
.calc-output small {
  display: block;
  color: var(--warm-beige);
}

.calc-output strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: Georgia, "Times New Roman", serif;
}

.calc-whatsapp {
  width: 100%;
}

.landing-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.site-footer {
  background: var(--black);
  color: var(--beige);
  padding: 58px 18px 24px;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 0.9fr;
  gap: 32px;
}

.footer-logo {
  width: 70px;
  margin-bottom: 14px;
}

.site-footer h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  color: var(--white);
  margin: 8px 0;
}

.site-footer p {
  margin: 8px 0;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--warm-beige);
  border-top: 1px solid rgba(201, 162, 77, 0.24);
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    position: relative;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--soft-black);
    border: 1px solid rgba(201, 162, 77, 0.35);
    border-radius: var(--radius);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .product-grid,
  .product-grid.three,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-intro,
  .product-hero,
  .split-band,
  .calc-section,
  .landing-copy {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .details-grid,
  .service-grid,
  .contact-grid,
  .blog-grid,
  .footer-grid,
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .top-strip {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px 14px;
    padding: 6px 10px;
    text-align: center;
    font-size: 0.76rem;
  }

  .nav-shell {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
    min-height: 68px;
    gap: 10px;
  }

  .brand-link span {
    max-width: 120px;
    line-height: 1.1;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    left: 12px;
    right: 12px;
  }

  .home-hero {
    min-height: calc(100svh - 100px);
    align-items: flex-start;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 28px 0 34px;
  }

  .cinematic-content {
    align-items: flex-start;
  }

  .home-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero-tagline {
    margin-top: 10px;
    font-size: 1rem;
  }

  .hero-service-line {
    gap: 6px 14px;
    margin-top: 14px;
    font-size: 0.86rem;
  }

  .home-hero .hero-actions {
    margin-top: 18px;
  }

  .home-hero .hero-actions .btn {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.91), rgba(8, 8, 8, 0.64) 58%, rgba(8, 8, 8, 0.38)),
      linear-gradient(0deg, rgba(8, 8, 8, 0.66), rgba(8, 8, 8, 0.18) 44%, rgba(8, 8, 8, 0.72));
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .section,
  .product-hero {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .compact-hero {
    padding: 52px 14px;
  }

  .product-grid,
  .product-grid.three,
  .trust-bar,
  .details-grid,
  .service-grid,
  .contact-grid,
  .blog-grid,
  .footer-grid,
  .link-grid,
  .gallery-grid,
  .gallery-grid.small-gallery {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 162, 77, 0.22);
  }

  .card-actions {
    flex-direction: column;
    display: flex;
  }

  .card-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
  }

  .product-summary {
    padding: 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero .hero-actions .btn {
    width: 100%;
  }
}



/* Blog photo ads, product highlights, and assistant */
.blog-ad-grid {
  align-items: stretch;
}

.blog-photo-card {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(145deg, #111111, #080808);
  color: var(--white);
  border: 1px solid rgba(201, 162, 77, 0.34);
  box-shadow: 0 24px 60px rgba(8, 8, 8, 0.22);
}

.blog-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms ease, filter 900ms ease;
}

.blog-photo-card:hover .blog-card-media img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.04);
}

.blog-card-copy {
  padding: 22px;
}

.blog-photo-card h2 {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.blog-photo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.blog-photo-card .text-link,
.blog-photo-card .price-note {
  color: var(--metallic-gold);
}

.blog-ad-page {
  background: var(--black);
  color: var(--white);
}

.blog-ad-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: calc(100svh - 116px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(209, 171, 92, 0.22), transparent 32%),
    linear-gradient(120deg, #080808, #111111 56%, #080808);
}

.blog-ad-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
}

.blog-ad-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 42%, rgba(8, 8, 8, 0.42)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.48), transparent 44%, rgba(8, 8, 8, 0.22));
  pointer-events: none;
}

.blog-ad-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: articleKenBurns 18s ease-in-out infinite alternate;
}

@keyframes articleKenBurns {
  from { transform: scale(1.02) translate3d(-1%, 0, 0); }
  to { transform: scale(1.12) translate3d(2%, -1%, 0); }
}

.blog-ad-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(34px, 6vw, 78px);
  border-left: 1px solid rgba(201, 162, 77, 0.24);
}

.blog-ad-copy h1 {
  color: var(--white);
  max-width: 820px;
}

.blog-ad-copy .lead,
.blog-ad-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.price-note {
  font-weight: 800;
  color: var(--deep-gold);
}

.blog-ad-copy .price-note,
.article-sales-block .price-note {
  color: var(--metallic-gold);
}

.article-sales-block,
.keyword-section,
.product-feature-showcase {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.96)),
    var(--black);
  color: var(--white);
  border-top: 1px solid rgba(201, 162, 77, 0.22);
  border-bottom: 1px solid rgba(201, 162, 77, 0.18);
}

.article-sales-block .section-intro h2,
.keyword-section h2,
.product-feature-showcase .section-intro h2 {
  color: var(--white);
}

.article-sales-block .section-intro p,
.keyword-section p,
.product-feature-showcase .section-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.premium-feature-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(201, 162, 77, 0.32);
  background: linear-gradient(150deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.premium-feature-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 162, 77, 0.58);
  color: var(--metallic-gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.premium-feature-grid h3 {
  color: var(--white);
  margin: 0 0 8px;
  font-size: 1rem;
}

.premium-feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.feature-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-chips span {
  padding: 10px 14px;
  border: 1px solid rgba(201, 162, 77, 0.38);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.ai-assistant-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, var(--metallic-gold), var(--gold));
  box-shadow: 0 16px 44px rgba(8, 8, 8, 0.28);
  font-weight: 900;
  cursor: pointer;
}

.ai-assistant-trigger span:first-child {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: var(--metallic-gold);
}

.ai-assistant-panel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 61;
  width: min(390px, calc(100vw - 28px));
  max-height: min(690px, calc(100svh - 112px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 77, 0.42);
  border-radius: var(--radius);
  background: #0b0b0b;
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.ai-assistant-panel.is-open {
  display: flex;
}

.ai-assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(201, 162, 77, 0.24);
  background: linear-gradient(135deg, #111111, #080808);
}

.ai-assistant-head strong {
  display: block;
  color: var(--white);
}

.ai-assistant-head small {
  color: rgba(255, 255, 255, 0.66);
}

.ai-assistant-close {
  border: 1px solid rgba(201, 162, 77, 0.34);
  background: transparent;
  color: var(--white);
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.ai-assistant-body {
  padding: 18px;
  overflow: auto;
}

.ai-bubble {
  margin: 0 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
}

.ai-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ai-chip-row button,
.ai-card a {
  border: 1px solid rgba(201, 162, 77, 0.38);
  background: rgba(201, 162, 77, 0.11);
  color: var(--white);
  padding: 9px 11px;
  font-weight: 800;
  cursor: pointer;
}

.ai-card {
  padding: 14px;
  margin-top: 10px;
  border: 1px solid rgba(201, 162, 77, 0.26);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
}

.ai-card h3 {
  margin: 0 0 8px;
  color: var(--metallic-gold);
  font-size: 1rem;
}

.ai-card p {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.74);
  font-size: 0.92rem;
}

.ai-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-card-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

@media (max-width: 1040px) {
  .blog-ad-hero {
    grid-template-columns: 1fr;
  }

  .blog-ad-media {
    min-height: 58svh;
  }

  .blog-ad-copy {
    border-left: 0;
    border-top: 1px solid rgba(201, 162, 77, 0.24);
  }

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

@media (max-width: 700px) {
  .blog-card-media {
    aspect-ratio: 16 / 12;
  }

  .blog-ad-media {
    min-height: 48svh;
  }

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

  .ai-assistant-trigger {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }

  .ai-assistant-panel {
    right: 14px;
    bottom: 76px;
  }
}


/* Reviews and trust space */
.reviews-hero {
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.94), rgba(17, 17, 17, 0.88)),
    url("../hero/cinematic-upload-01.webp") center / cover;
  color: var(--white);
}

.reviews-hero h1,
.reviews-hero p {
  color: var(--white);
}

.review-preview-section,
.review-section {
  background: var(--white);
}

.review-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-trust-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(201, 162, 77, 0.26);
  background: linear-gradient(145deg, #ffffff, #f8f2e9);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(8, 8, 8, 0.08);
}

.review-trust-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.02rem;
}

.review-trust-grid span {
  color: var(--muted);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.review-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(201, 162, 77, 0.34);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 8, 8, 0.16);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 12px 13px;
}

.review-form textarea {
  resize: vertical;
}

.review-live-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.review-live-card {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.08);
}

.review-live-card strong {
  display: block;
  color: var(--black);
}

.review-live-card span {
  display: block;
  color: var(--deep-gold);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .review-trust-grid,
  .review-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .review-trust-grid,
  .review-layout {
    grid-template-columns: 1fr;
  }
}
