@charset "UTF-8";
/* ============================================================
   PRODUCTS & SERVICES — CLEAN MERGED VERSION
   ============================================================ */

@import url("global-tokens.css");

/* ------------------------------
   RESET & GLOBAL
------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.5;
  background: var(--reiki);
  color: var(--ink);
}

/* ------------------------------
   LINKS
------------------------------ */
a {
  color: var(--turquoise);
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--sienna);
}

/* ------------------------------
   HEADER (Shared)
------------------------------ */
header.primary-header {
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.primary-header-top {
  width: 100%;
  padding: .6rem 1.5rem;
  border-bottom: 1px solid rgba(255, 249, 208, 0.25);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   HERO SECTIONS
   (Subhome Header Image + Gradient Hero)
============================================================ */

/* ---------- SUBHOME IMAGE HERO ---------- */
.subhome-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

.subhome-hero .header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subhome-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5%;
  color: #fff;
}

.subhome-overlay h1 {
  font-size: 45px;
  font-weight: 700;
}

.subhome-overlay .subtext {
  font-size: 21px;
  max-width: 900px;
  line-height: 1.4;
}

/* ---------- GOLD GRADIENT HERO BLOCK ---------- */
.gradient-hero {
  background: linear-gradient(
    135deg,
    #C9AF6C 0%,
    #E5DBD2 50%,
    #C9AF6C 100%
  );
  padding: 80px 50px;
  width: 100%;
}

.gradient-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.primary-section-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.primary-section-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ink);
}

.primary-section-intro {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

/* ============================================================
   MAIN CONTENT BLOCKS
============================================================ */

/* ---------- Intro Section ---------- */
.subhome-main .intro,
.intro {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 0;
  background: var(--reiki);
  color: var(--ink);
}

.subhome-main .intro h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.subhome-main .intro p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 29px;
}

/* ---------- Service Grid ---------- */
.service-grid {
  width: 80%;
  max-width: 1200px;
  margin: 48px auto 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  background: var(--reiki);
  color: var(--ink);
  padding: 30px;
}

.service-grid h3 {
  font-size: 29px;
  margin-bottom: 13px;
  color: var(--ink);
}

.service-grid p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============================================================
   BULLETS
============================================================ */
.ps-bullet {
  display: flex;
  margin-bottom: 12px;
}

.ps-bullet .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23C9AF6C" viewBox="0 0 20 20"><path d="M7.629 15.314L2.314 10l1.372-1.372 3.943 3.943 8.743-8.743L17.744 5l-10.115 10.314z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  padding: 0.7rem 1.4rem;
  font-weight: 900;
  border-radius: 999px;
  transition: all .2s ease;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--charcoal);
}

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

/* ============================================================
   COLLAGE (If used)
============================================================ */
.creator-showcase-collage {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.collage-item {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--reiki);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FOOTER
============================================================ */
footer.primary-footer {
  background: var(--burgundy);
  padding: 3rem 1.5rem;
  color: var(--reiki);
}

.primary-footer-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.primary-footer-col strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 900px) {
  .primary-footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .primary-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp .6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove unused middle navigation */
.middle-nav,
.middle-nav-inner,
.middle-submenu,
.middle-nav-group {
  display: none !important;
}
