/* ============================================================
   AnuVinci LLC — pages.css
   Page-specific styles: Home, About, Products, Contact,
   Privacy, Legal
   ============================================================ */


/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero {
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-xl) * 1.2) 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Subtle geometric background texture */
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,117,182,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,117,182,0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 72%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 72%);
}

/* Gold accent line bottom */
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary), var(--color-accent));
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-content h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

@media (max-width: 767px) {
  .hero-content p { margin-left: auto; margin-right: auto; }
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-actions { justify-content: flex-start; }
}

/* Hero visual — decorative stat/trust block */
.hero-visual {
  display: none;
}

@media (min-width: 768px) {
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(8px);
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.hero-card-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.hero-card-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}


/* ============================================================
   HOME — WHAT WE BUILD
   ============================================================ */
.what-we-build-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .what-we-build-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   HOME — FEATURED PRODUCT STRIP
   ============================================================ */
.product-strip {
  background: var(--color-primary);
  padding: var(--space-xl) 0;
}

.product-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .product-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.product-strip-text h2 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.product-strip-text .badge {
  margin-bottom: var(--space-sm);
}

.product-strip-text p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
}

.product-strip-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.product-strip-visual .product-name-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.04em;
}

.product-strip-visual .product-tagline-display {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.product-feature-item::before {
  content: '✦';
  color: var(--color-accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}


/* ============================================================
   HOME — ABOUT SNIPPET
   ============================================================ */
.about-snippet {
  background: var(--color-light);
}

.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .about-snippet-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.about-snippet-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.stat-block {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================================
   HOME — CONTACT CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--color-primary);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-strip p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.cta-strip-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  background: var(--color-primary);
  padding: var(--space-xl) 0;
  text-align: center;
}

.about-mission blockquote {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
  font-style: italic;
  position: relative;
}

.about-mission blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-accent);
  line-height: 0;
  position: absolute;
  top: 0.5rem;
  left: -1rem;
  font-style: normal;
}

@media (max-width: 767px) {
  .about-mission blockquote::before { display: none; }
}

.about-mission blockquote cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--space-md);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-story-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.about-story-content h2 {
  margin-bottom: var(--space-sm);
}

.about-story-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-sidebar-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(31,78,121,0.08);
}

.about-sidebar-card h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
}

.about-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(31,78,121,0.08);
}

.about-detail-row:last-child {
  border-bottom: none;
}

.about-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}

.about-detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Brand Name Etymology */
.etymology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .etymology-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.etymology-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(31,78,121,0.1);
  box-shadow: var(--shadow-sm);
}

.etymology-card .ety-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.etymology-card .ety-parts {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.ety-part {
  font-size: 0.8rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: #7a5e14;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 700;
}

.ety-meaning {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 2px solid rgba(31,78,121,0.12);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card--muted {
  border-color: rgba(102,102,102,0.12);
  opacity: 0.65;
  pointer-events: none;
}

.product-card--muted::before {
  background: var(--color-gray);
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.product-card-name {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.product-card-tagline {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.product-card-description {
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.product-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.feature-pill {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--color-light);
  color: var(--color-primary);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(31,78,121,0.12);
}

/* Future products teaser */
.future-teaser {
  background: var(--color-primary);
  padding: var(--space-xl) 0;
  text-align: center;
}

.future-teaser h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.future-teaser p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 2fr 3fr;
  }
}

.contact-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.contact-sidebar h2 {
  margin-bottom: var(--space-sm);
}

.contact-sidebar p {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(31,78,121,0.1);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}
