/**
 * Marketing homepage — editorial opening (emerald field, portrait column, stacked headline, rails, scroll cue).
 * Fonts: Playfair Display + DM Sans (enqueue), optional self-host Adirek for footer (see functions.php).
 */

.pg-site-front {
  margin: 0;
  min-height: 100vh;
  --pg-editorial-vermilion: #e83515;
  --pg-editorial-emerald: #082216;
  --pg-editorial-emerald-mid: #0d3020;
  --pg-editorial-cream: #f4f1ea;
  --pg-editorial-gold: #c5a059;
  --pg-editorial-font-display: "Playfair Display", Georgia, serif;
  --pg-editorial-font-sans: "DM Sans", system-ui, sans-serif;
  --pg-nav-offset: 4.25rem;
  font-family: var(--pg-editorial-font-sans);
  background-color: var(--pg-editorial-emerald);
  color: var(--pg-editorial-cream);
  -webkit-font-smoothing: antialiased;
}

body.admin-bar.pg-site-front {
  --pg-nav-offset: calc(32px + 4.25rem);
}

@media screen and (max-width: 782px) {
  body.admin-bar.pg-site-front {
    --pg-nav-offset: calc(46px + 4.25rem);
  }
}

.pg-site-front-root {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* --- Editorial hero (opening view) --- */
.pg-site-front-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.pg-site-front-editorial-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--pg-editorial-emerald);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.pg-site-front-portrait {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45vw;
  max-width: 520px;
  height: 70vh;
  max-height: 720px;
  overflow: hidden;
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.pg-site-front-portrait-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}

.pg-site-front-portrait-img--video-fallback {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .pg-site-front-portrait-video {
    display: none !important;
  }

  .pg-site-front-portrait-img--video-fallback {
    display: block !important;
  }

  .pg-site-front-portrait-img {
    animation: none !important;
  }
}

.pg-site-front-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(1.15);
  transform: scale(1.05);
  animation: pg-site-front-slow-pan 22s infinite alternate ease-in-out;
}

@keyframes pg-site-front-slow-pan {
  0% {
    transform: scale(1.05) translateY(0);
  }

  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

.pg-site-front-editorial-headline {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  pointer-events: none;
  padding: 0 12px;
  box-sizing: border-box;
}

.pg-site-front-editorial-line {
  display: block;
  font-family: var(--pg-editorial-font-display);
  font-weight: 500;
  font-size: clamp(3.25rem, 14vw, 9.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-top: -0.28em;
}

.pg-site-front-editorial-line--1 {
  margin-top: 0;
  margin-left: -8vw;
  color: var(--pg-editorial-vermilion);
  mix-blend-mode: screen;
}

.pg-site-front-editorial-line--2 {
  margin-left: 8vw;
  color: var(--pg-editorial-cream);
  mix-blend-mode: normal;
}

.pg-site-front-editorial-headline--single .pg-site-front-editorial-line--1 {
  margin-left: 0;
  mix-blend-mode: normal;
  color: var(--pg-editorial-vermilion);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.pg-site-front-meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pg-editorial-gold);
  margin: 0;
}

.pg-site-front-rail {
  position: absolute;
  bottom: 2.5rem;
  z-index: 4;
  max-height: 40vh;
  overflow: hidden;
}

.pg-site-front-rail--left {
  left: clamp(12px, 2.5vw, 2.5rem);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pg-site-front-rail--right {
  right: clamp(12px, 2.5vw, 2.5rem);
  writing-mode: vertical-rl;
  transform: none;
}

.pg-site-front-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

.pg-site-front-scroll-link {
  text-decoration: none;
  color: var(--pg-editorial-gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.2em;
  transition: color 0.2s ease;
}

.pg-site-front-scroll-link:hover,
.pg-site-front-scroll-link:focus-visible {
  color: var(--pg-editorial-cream);
  outline: none;
}

.pg-site-front-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--pg-editorial-gold);
  opacity: 0.85;
}

.pg-site-front-editorial-note {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(2.5rem + 5.5rem);
  z-index: 4;
  margin: 0;
  max-width: min(28rem, 90vw);
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 234, 0.82);
  pointer-events: none;
}

/* Nav — rail gold on emerald (readable without blend) */
.pg-site-front--editorial .sw-site-nav-brand,
.pg-site-front--editorial .sw-site-nav-link,
.pg-site-front--editorial .sw-site-nav-link--parent {
  font-family: var(--pg-editorial-font-display);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--pg-editorial-gold);
}

.pg-site-front--editorial .sw-site-nav-link:hover,
.pg-site-front--editorial .sw-site-nav-link--parent:hover,
.pg-site-front--editorial .sw-site-nav-brand:hover {
  color: var(--pg-editorial-cream);
}

.pg-site-front--editorial .sw-site-nav-sublink {
  font-family: var(--pg-editorial-font-sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  color: rgba(197, 160, 89, 0.9);
}

.pg-site-front--editorial .sw-site-nav-sublink:hover {
  color: var(--pg-editorial-cream);
}

@media (max-width: 1024px) {
  .pg-site-front-portrait {
    width: 58vw;
    height: 58vh;
  }
}

@media (max-width: 768px) {
  .pg-site-front-editorial-line {
    font-size: clamp(2.5rem, 17vw, 4rem);
    margin-left: 0 !important;
  }

  .pg-site-front-portrait {
    width: 80vw;
    height: 55vh;
  }

  .pg-site-front-rail {
    display: none;
  }

  .pg-site-front-editorial-note {
    bottom: calc(2.5rem + 4.5rem);
    font-size: 0.75rem;
  }
}

/* Footer — email capture (full width) */
.pg-site-front-footer {
  position: relative;
  z-index: 4;
  padding: 2.5rem 0 3rem;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0a1a12 0%, var(--pg-editorial-emerald) 50%, #06140e 100%);
  border-top: 1px solid rgba(232, 53, 21, 0.25);
}

.pg-site-front-footer-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.pg-site-front-footer .sw-newsletter--card {
  margin: 0;
  max-width: none;
  width: 100%;
  background: rgba(244, 241, 234, 0.06);
  border: none;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
  border-radius: 0;
  padding: 1.75rem clamp(16px, 4vw, 48px) 2rem;
  color: var(--pg-editorial-cream);
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-inner {
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-heading {
  font-family: var(--pg-editorial-font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--pg-editorial-cream);
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-eyebrow {
  color: var(--pg-editorial-gold);
  letter-spacing: 0.16em;
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-subheading {
  color: rgba(244, 241, 234, 0.85);
  line-height: 1.5;
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-label {
  color: rgba(244, 241, 234, 0.7);
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-input {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(244, 241, 234, 0.2);
  color: var(--pg-editorial-cream);
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-submit {
  background: var(--pg-editorial-vermilion);
  color: var(--pg-editorial-cream);
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-submit:hover,
.pg-site-front-footer .sw-newsletter--card .sw-newsletter-submit:focus-visible {
  background: #ff4a2a;
  color: #fff;
}

.pg-site-front-footer .sw-newsletter--card .sw-newsletter-disclaimer {
  color: rgba(244, 241, 234, 0.62);
}
