/*
Theme Name: Power Room Eire
Theme URI: https://powerroomeire.com
Author: Power Room Eire
Author URI: https://powerroomeire.com
Description: Custom one-page theme for Power Room Eire — Strategic Partnerships & Execution Advisory. Editable Hero, Services, About, Testimonials, Book a Call URL, Press sections (home banner + dedicated Press page with combined hero/logo-wall, press articles, and speaking & appearances), LinkedIn/Twitter share previews — all via Advanced Custom Fields.
Version: 1.3.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: powerroom-eire
Tags: one-page, custom, business, professional
*/

  :root {
    --forest: #0f2a1f;
    --forest-deep: #0a1f17;
    --forest-mid: #143426;
    --forest-soft: #1c3d2e;
    --gold: #c9a961;
    --gold-bright: #d9bc77;
    --gold-soft: #b89a55;
    --gold-faint: rgba(201, 169, 97, 0.18);
    --cream: #f4ede0;
    --cream-soft: #e8dfcc;
    --cream-muted: rgba(244, 237, 224, 0.72);
    --line: rgba(201, 169, 97, 0.28);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--forest);
    color: var(--cream);
    font-weight: 300;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background-image:
      radial-gradient(ellipse at top, rgba(28, 61, 46, 0.6) 0%, transparent 60%),
      radial-gradient(ellipse at bottom right, rgba(201, 169, 97, 0.04) 0%, transparent 50%);
  }

  ::selection { background: var(--gold); color: var(--forest-deep); }

  /* Subtle paper texture */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.4;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.66  0 0 0 0 0.38  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    z-index: 1;
  }

  .serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

  /* ========== NAV ========== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    background: rgba(15, 42, 31, 0.7);
    border-bottom: 1px solid transparent;
  }

  .nav.scrolled {
    padding: 14px 60px;
    background: rgba(10, 31, 23, 0.92);
    border-bottom: 1px solid var(--line);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--cream);
  }

  .nav-logo svg { width: 30px; height: 38px; }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 0.18em;
    color: var(--cream);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
  }

  .nav-links a {
    color: var(--cream-muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-links a:not(.cta-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }

  .nav-links a:not(.cta-btn):hover::after { width: 100%; }

  /* CTA buttons */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    background: transparent;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    position: relative;
    overflow: hidden;
  }

  .cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: -1;
  }

  .cta-btn:hover {
    color: var(--forest-deep) !important;
  }

  .cta-btn:hover::before {
    transform: translateX(0);
  }

  .cta-btn-large {
    padding: 18px 40px;
    font-size: 12px;
  }

  .cta-btn-filled {
    background: var(--gold);
    color: var(--forest-deep) !important;
  }

  .cta-btn-filled::before { background: var(--cream); }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 2;
  }

  /* decorative corner brackets */
  .hero-frame {
    position: absolute;
    inset: 110px 50px 50px 50px;
    pointer-events: none;
    z-index: 0;
  }

  .hero-frame::before,
  .hero-frame::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold-faint);
  }

  .hero-frame::before {
    top: 0; left: 0;
    border-right: 0; border-bottom: 0;
  }

  .hero-frame::after {
    bottom: 0; right: 0;
    border-left: 0; border-top: 0;
  }

  .hero-inner {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
  }

  .hero-logo {
    width: 86px;
    height: 110px;
    margin: 0 auto 28px;
    display: block;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 26px;
    font-weight: 400;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 18px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 0.32em;
    color: var(--gold-soft);
    text-transform: uppercase;
    margin-bottom: 40px;
  }

  .divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 36px auto 40px;
    max-width: 220px;
  }

  .divider-ornament .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .divider-ornament .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--cream-soft);
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto 50px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ========== SECTIONS ========== */
  section {
    position: relative;
    z-index: 2;
    padding: 120px 60px;
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 26px;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }

  /* ========== ABOUT ========== */
  .about {
    background: var(--forest-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .about-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--forest-mid);
    border: 1px solid var(--line);
    overflow: hidden;
  }

  .about-portrait::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid var(--gold-faint);
    pointer-events: none;
    z-index: 2;
  }

  .about-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 23, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .about-portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    filter: contrast(0.96) saturate(0.92);
    z-index: 0;
  }

  /* Fallback (shows if image fails to load) */
  .about-portrait-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 60%),
      linear-gradient(135deg, var(--forest-mid) 0%, var(--forest-deep) 100%);
    z-index: 0;
  }

  .about-portrait-fallback svg {
    width: 130px;
    height: 165px;
    opacity: 0.35;
  }

  .about-portrait-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--cream);
    letter-spacing: 0.05em;
    z-index: 3;
    text-shadow: 0 2px 12px rgba(10, 31, 23, 0.8);
  }

  .about-content p {
    color: var(--cream-soft);
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.85;
    font-weight: 300;
  }

  .about-content p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.55;
    color: var(--cream);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
  }

  .about-signature {
    margin-top: 36px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  /* ========== SERVICES ========== */
  .services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
  }

  .services-intro .section-label {
    justify-content: center;
  }

  .services-intro .section-label::before { display: none; }

  .services-intro p {
    color: var(--cream-muted);
    font-size: 17px;
    margin-top: 8px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    padding: 56px 44px;
    border-right: 1px solid var(--line);
    position: relative;
    transition: background 0.4s ease;
  }

  .service-card:last-child { border-right: 0; }

  .service-card:hover {
    background: var(--forest-mid);
  }

  .service-number {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  .service-card ul {
    list-style: none;
  }

  .service-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    color: var(--cream-soft);
    font-size: 15px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .service-card li::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .service-card li:last-child { border-bottom: 0; }

  /* ========== EXPERIENCE ========== */
  .experience {
    background: var(--forest-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .experience-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .experience-header .section-label {
    justify-content: center;
  }

  .experience-header .section-label::before { display: none; }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stat {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid var(--line);
  }

  .stat:last-child { border-right: 0; }

  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--cream-muted);
    text-transform: uppercase;
    font-weight: 400;
  }

  .achievements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
  }

  .achievement {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }

  .achievement:nth-last-child(-n+2) { border-bottom: 0; }

  .achievement-mark {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    margin-top: 8px;
    flex-shrink: 0;
  }

  .achievement-text {
    color: var(--cream-soft);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
  }

  .achievement-text strong {
    color: var(--gold);
    font-weight: 500;
  }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    background: var(--forest-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 130px 60px;
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .testimonials-header .section-label {
    justify-content: center;
  }

  .testimonials-header .section-label::before { display: none; }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1180px;
    margin: 0 auto;
  }

  /* Featured testimonial spans two columns on the first row */
  .testimonial.featured {
    grid-column: 1 / -1;
  }

  .testimonial {
    position: relative;
    background: var(--forest-mid);
    border: 1px solid var(--line);
    padding: 48px 44px 40px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, transform 0.4s ease;
  }

  .testimonial:hover {
    border-color: var(--gold-faint);
    transform: translateY(-3px);
  }

  /* Decorative open quote mark per card */
  .testimonial::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    color: var(--gold);
    opacity: 0.22;
    line-height: 1;
    pointer-events: none;
  }

  /* Subtle corner brackets for boutique feel */
  .testimonial::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 22px;
    height: 22px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    opacity: 0.5;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.65;
    color: var(--cream);
    margin-bottom: 32px;
    font-weight: 300;
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .testimonial.featured .testimonial-quote {
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .testimonial.featured {
    padding: 64px 60px 56px;
    text-align: center;
  }

  .testimonial.featured::before {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    font-size: 120px;
  }

  .testimonial-divider {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 20px;
  }

  .testimonial.featured .testimonial-divider {
    margin: 0 auto 20px;
  }

  .testimonial-author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--cream);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    font-weight: 500;
  }

  .testimonial-role {
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.6;
  }

  /* ========== ENGAGEMENT ========== */
  .engagement-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .engagement-header .section-label {
    justify-content: center;
  }

  .engagement-header .section-label::before { display: none; }

  .engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }

  .engagement-card {
    border: 1px solid var(--line);
    padding: 40px 28px;
    text-align: center;
    background: var(--forest-mid);
    transition: all 0.4s ease;
    position: relative;
  }

  .engagement-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
  }

  .engagement-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 0.1em;
  }

  .engagement-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
  }

  .engagement-card p {
    font-size: 13px;
    color: var(--cream-muted);
    line-height: 1.6;
    font-weight: 300;
  }

  .engagement-quote {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 28px);
    color: var(--cream);
    max-width: 780px;
    margin: 60px auto 0;
    line-height: 1.5;
    font-weight: 300;
    padding: 40px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
  }

  .engagement-quote::before,
  .engagement-quote::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--gold);
  }

  .engagement-quote::before { top: -5px; }
  .engagement-quote::after { bottom: -5px; }

  /* ========== BOOK CTA ========== */
  .book-cta {
    background:
      radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 70%),
      var(--forest-deep);
    text-align: center;
    padding: 140px 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
  }

  .book-cta::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
  }

  .book-cta-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .book-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.15;
    margin: 24px 0;
    letter-spacing: 0.01em;
  }

  .book-cta h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }

  .book-cta p {
    color: var(--cream-muted);
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .book-cta-meta {
    margin-top: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--gold-soft);
    letter-spacing: 0.06em;
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 80px 60px 40px;
    background: var(--forest-deep);
    position: relative;
    z-index: 2;
  }

  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand-logo {
    width: 56px;
    height: 72px;
    margin-bottom: 22px;
  }

  .footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--cream);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
  }

  .footer-brand p {
    color: var(--cream-muted);
    font-size: 14px;
    max-width: 320px;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
  }

  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
  }

  .footer-col a,
  .footer-col p {
    display: block;
    color: var(--cream-soft);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-weight: 300;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(244, 237, 224, 0.45);
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1180px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .service-card:nth-child(2n) { border-right: 0; }
    .service-card:nth-last-child(-n+2) { border-bottom: 0; }
  }

  @media (max-width: 980px) {
    .nav { padding: 16px 24px; }
    .nav.scrolled { padding: 12px 24px; }
    .nav-links { gap: 22px; }
    .nav-links a:not(.cta-btn) { display: none; }
    section { padding: 80px 24px; }
    .hero { padding: 120px 24px 60px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
    .service-card:last-child { border-bottom: 0; }
    .service-card:nth-child(2n) { border-right: 0; }
    .service-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-card:last-child { border-bottom: 0; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .achievements { grid-template-columns: 1fr; gap: 0; }
    .achievement:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .achievement:last-child { border-bottom: 0; }
    .engagement-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .book-cta { padding: 90px 24px; }
    .testimonials { padding: 90px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial { padding: 40px 28px 32px; }
    .testimonial.featured { padding: 48px 32px 40px; }
    .testimonial.featured .testimonial-quote { font-size: 19px; }
    footer { padding: 60px 24px 30px; }
  }

  @media (max-width: 560px) {
    .engagement-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .cta-btn { width: 100%; max-width: 280px; justify-content: center; }
  }

  /* ========== ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s ease, transform 1s ease;
  }

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

/* ========================================================== */
/* v1.2 — Press sections + Press page styles                  */
/* ========================================================== */

/* --- Home: Press logo strip (between hero and services) --- */
.press-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  background: var(--forest-deep);
  position: relative;
  z-index: 2;
}
.press-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.press-strip-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}
.press-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
  row-gap: 26px;
}
.press-strip-logos a,
.press-strip-logos .press-logo-img {
  display: inline-flex;
  align-items: center;
}
.press-strip-logos img {
  max-height: 32px;
  max-width: 160px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.press-strip-logos a:hover img {
  filter: brightness(0) invert(1) opacity(1);
}
@media (max-width: 560px) {
  .press-strip-logos { gap: 28px; row-gap: 18px; }
  .press-strip-logos img { max-height: 26px; max-width: 120px; }
}

/* --- Home: Press callout (between Experience and About) --- */
.press-callout {
  padding: 110px 24px;
  background: var(--forest-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.press-callout-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.press-callout .section-label {
  justify-content: center;
  margin-bottom: 32px;
}
.press-callout-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
  color: var(--cream);
  margin: 0 0 22px;
}
.press-callout-quote::before { content: "\201C"; margin-right: 4px; color: var(--gold); }
.press-callout-quote::after  { content: "\201D"; margin-left: 4px;  color: var(--gold); }
.press-callout-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
}
.press-callout .cta-btn {
  display: inline-block;
}

/* --- Press page: combined hero (label + title + intro + logo wall) --- */
.press-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: var(--forest-deep);
  border-bottom: 1px solid var(--line);
}
.press-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.press-hero-text {
  margin-bottom: 50px;
}
.press-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.12;
  color: var(--cream);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.press-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.press-hero-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-muted);
  max-width: 560px;
  margin: 0 auto;
}
.press-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  row-gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.press-hero-logos a,
.press-hero-logos > span {
  display: inline-flex;
  align-items: center;
}
.press-hero-logos img {
  max-height: 36px;
  max-width: 150px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter 0.3s ease;
}
.press-hero-logos a:hover img {
  filter: brightness(0) invert(1) opacity(1);
}
@media (max-width: 560px) {
  .press-hero { padding: 110px 20px 60px; }
  .press-hero-logos { gap: 24px; row-gap: 18px; }
  .press-hero-logos img { max-height: 28px; max-width: 110px; }
}

/* --- Press page: article list --- */
.press-articles {
  padding: 90px 24px 60px;
  background: var(--forest);
}
.press-articles-inner {
  max-width: 880px;
  margin: 0 auto;
}
.press-articles-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
}
.press-article {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.press-article:first-of-type { border-top: 1px solid var(--line); }
.press-article-outlet {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-article-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--cream);
}
.press-article-headline a {
  color: var(--cream);
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 1px), var(--gold-faint) 1px);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease, color 0.3s ease;
}
.press-article-headline a:hover {
  color: var(--gold-bright);
  background-size: 100% 100%;
}
.press-article-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cream-muted);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .press-article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
  .press-article-headline { font-size: 19px; }
}

/* ========================================================== */
/* v1.3 — Speaking & Appearances + footer credit              */
/* ========================================================== */

.press-speaking {
  padding: 60px 24px 140px;
  background: var(--forest);
}
.press-speaking-inner {
  max-width: 880px;
  margin: 0 auto;
}
.press-speaking-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
}
.speaking-item {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.speaking-item:first-of-type { border-top: 1px solid var(--line); }
.speaking-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
.speaking-event {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.speaking-role {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border: 1px solid rgba(201, 169, 97, 0.4);
  padding: 3px 10px;
}
.speaking-topic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 6px;
}
.speaking-topic a {
  color: var(--cream);
  text-decoration: none;
  background-image: linear-gradient(transparent calc(100% - 1px), var(--gold-faint) 1px);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease, color 0.3s ease;
}
.speaking-topic a:hover {
  color: var(--gold-bright);
  background-size: 100% 100%;
}
.speaking-location {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--cream-muted);
}
.speaking-item-date {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--cream-muted);
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .speaking-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 0;
  }
  .speaking-item-date { text-align: left; padding-top: 0; }
  .speaking-topic { font-size: 19px; }
}

/* --- Footer Glisk Studio credit --- */
.footer-credit {
  text-align: center;
  padding: 6px 40px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 11px;
  color: rgba(244, 237, 224, 0.4);
}
.footer-credit a {
  color: rgba(244, 237, 224, 0.65);
  text-decoration: underline;
  text-decoration-color: rgba(244, 237, 224, 0.3);
  text-underline-offset: 2px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.footer-credit a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}
