/*
Theme Name:   Becky's Voices Child
Theme URI:    https://beckysvoices.com
Description:  Child theme for Astra - Becky's Voices character voice acting site
Author:       Becky's Voices
Author URI:   https://beckysvoices.com
Template:     astra
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  beckys-voices-child
*/

/* =============================================
   GOOGLE FONTS IMPORT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,800;1,9..144,300;1,9..144,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Syne:wght@700;800&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --color-deep-teal:     #1a4a4a;
  --color-teal:          #2a7a6a;
  --color-teal-light:    #3da882;
  --color-amber:         #e8a020;
  --color-amber-warm:    #f5c842;
  --color-chartreuse:    #b8d400;
  --color-cream:         #faf6ef;
  --color-cream-dark:    #f0ebe0;
  --color-ink:           #1c1c1c;
  --color-ink-light:     #4a4a4a;
  --color-muted:         #8a8a7a;
  --color-white:         #ffffff;
  --color-accent-pop:    #e84060;

  --font-display:        'Syne', sans-serif;
  --font-heading:        'Fraunces', serif;
  --font-body:           'DM Sans', sans-serif;

  --radius-sm:           6px;
  --radius-md:           14px;
  --radius-lg:           28px;
  --radius-pill:         999px;

  --shadow-soft:         0 4px 24px rgba(26,74,74,0.10);
  --shadow-card:         0 8px 40px rgba(26,74,74,0.13);
  --shadow-hover:        0 16px 56px rgba(26,74,74,0.20);

  --transition-smooth:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce:   all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-deep-teal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.display-font {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  font-family: var(--font-body);
  color: var(--color-ink-light);
  max-width: 68ch;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-teal-light);
}

strong {
  font-weight: 500;
  color: var(--color-ink);
}

/* =============================================
   ASTRA OVERRIDES - HEADER
   ============================================= */
.site-header,
.ast-desktop-header {
  background-color: var(--color-cream) !important;
  border-bottom: 2px solid var(--color-cream-dark) !important;
  box-shadow: none !important;
}

.site-title a,
.ast-site-title a {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
  color: var(--color-deep-teal) !important;
  letter-spacing: -0.02em;
}

.site-title a:hover {
  color: var(--color-teal) !important;
}

/* Nav links */
.main-header-menu .menu-item a,
.ast-nav-menu .menu-link {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  color: var(--color-ink-light) !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.main-header-menu .menu-item a:hover,
.ast-nav-menu .menu-link:hover {
  color: var(--color-teal) !important;
}

/* Nav CTA button — no Astra Pro needed.
   Keep "Hire Me" as the LAST item in Appearance → Menus
   and this CSS will always find it. */
.main-header-menu .menu-item:last-child > a,
.ast-nav-menu > li:last-child > a {
  background: var(--color-teal) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.5rem 1.4rem !important;
  transition: var(--transition-bounce) !important;
}

.main-header-menu .menu-item:last-child > a:hover,
.ast-nav-menu > li:last-child > a:hover {
  background: var(--color-deep-teal) !important;
  transform: translateY(-1px) !important;
  color: var(--color-white) !important;
}

/* =============================================
   ASTRA OVERRIDES - FOOTER
   ============================================= */
.site-footer,
.ast-small-footer {
  background-color: var(--color-deep-teal) !important;
  color: rgba(255,255,255,0.7) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 2rem 0 !important;
}

.site-footer a {
  color: var(--color-amber) !important;
}

.site-footer a:hover {
  color: var(--color-amber-warm) !important;
}

/* =============================================
   BUTTONS - GLOBAL
   ============================================= */
.btn,
.wp-block-button__link,
.ast-button,
button[type="submit"] {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.8rem 2rem !important;
  transition: var(--transition-bounce) !important;
  cursor: pointer !important;
  border: none !important;
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--color-teal) !important;
  color: var(--color-white) !important;
}

.btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--color-deep-teal) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-hover) !important;
}

.btn-outline {
  background: transparent !important;
  color: var(--color-teal) !important;
  border: 2px solid var(--color-teal) !important;
}

.btn-outline:hover {
  background: var(--color-teal) !important;
  color: var(--color-white) !important;
  transform: translateY(-2px) !important;
}

.btn-amber {
  background: var(--color-amber) !important;
  color: var(--color-ink) !important;
}

.btn-amber:hover {
  background: var(--color-amber-warm) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 40px rgba(232,160,32,0.35) !important;
}

/* =============================================
   HOMEPAGE - HERO SECTION
   ============================================= */
.hero-section {
  background: var(--color-deep-teal);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* Organic blob background shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(61,168,130,0.25) 0%, transparent 70%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(184,212,0,0.15) 0%, transparent 70%);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(2%, -3%) scale(1.04); }
  66%       { transform: translate(-2%, 2%) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-chartreuse);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-headline .wiggle {
  color: var(--color-amber);
  display: inline-block;
  animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%            { transform: rotate(-3deg); }
  94%            { transform: rotate(3deg); }
  96%            { transform: rotate(-2deg); }
  98%            { transform: rotate(1deg); }
}

.hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Plant mascot floating element */
.hero-plant {
  position: absolute;
  right: 5%;
  bottom: 8%;
  z-index: 3;
  animation: plantBounce 3s ease-in-out infinite;
  font-size: 5rem;
  user-select: none;
  cursor: default;
}

.hero-plant:hover::after {
  content: 'you want it? you want it?';
  position: absolute;
  right: 110%;
  bottom: 50%;
  background: var(--color-amber);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  animation: popIn 0.2s var(--transition-bounce);
}

@keyframes plantBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* =============================================
   HOMEPAGE - REEL SECTION
   ============================================= */
.reel-section {
  background: var(--color-cream);
  padding: 5rem 0;
  text-align: center;
}

.reel-section .section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.reel-player-wrap {
  max-width: 720px;
  margin: 2rem auto 0;
  background: var(--color-deep-teal);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.reel-player-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 21px
  );
}

.reel-player-wrap audio,
.reel-player-wrap iframe {
  width: 100%;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}

/* =============================================
   HOMEPAGE - INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--color-amber);
  padding: 1.2rem 0;
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  gap: 4rem;
  animation: scrollStrip 20s linear infinite;
  white-space: nowrap;
}

.intro-strip span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.intro-strip span.dot {
  color: var(--color-deep-teal);
}

@keyframes scrollStrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   HOMEPAGE - ABOUT TEASER
   ============================================= */
.about-teaser {
  padding: 6rem 0;
  background: var(--color-cream);
}

.about-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser-image {
  position: relative;
}

.about-teaser-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

/* Decorative frame offset */
.about-teaser-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 3px solid var(--color-chartreuse);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
  transform: rotate(-2deg);
}

.about-teaser-image::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 3px solid var(--color-amber);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
  transform: rotate(2deg);
}

.about-teaser-text h2 {
  margin-bottom: 1rem;
}

.about-teaser-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* =============================================
   HOMEPAGE - WHAT I DO (SERVICES OVERVIEW)
   ============================================= */
.services-overview {
  background: var(--color-deep-teal);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(61,168,130,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.services-overview .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.services-overview h2 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.services-overview .section-sub {
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--color-chartreuse);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card .service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: none;
}

/* =============================================
   VOICE LIBRARY PAGE
   (replaces Demos + Characters — one unified page)
   ============================================= */
.demos-hero {
  background: var(--color-deep-teal);
  padding: 5rem 0 3rem;
  text-align: center;
}

.demos-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.demos-hero p {
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-family: var(--font-heading);
  margin: 0 auto;
  font-size: 1.1rem;
}

.demo-main-section {
  padding: 5rem 0;
  background: var(--color-cream);
}

.demo-main-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.demo-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-cream-dark);
  transition: var(--transition-smooth);
}

.demo-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.demo-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.demo-card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream-dark);
  border-radius: var(--radius-md);
}

.demo-card h3 {
  margin-bottom: 0.3rem;
  color: var(--color-deep-teal);
}

.demo-card .demo-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  font-weight: 500;
}

.demo-card audio {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
}

/* Wild in the field section */
.wild-section {
  background: var(--color-cream-dark);
  padding: 5rem 0;
}

.wild-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wild-section h2 {
  margin-bottom: 0.5rem;
}

.wild-section .section-sub {
  color: var(--color-muted);
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 2.5rem;
}

.wild-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-left: 5px solid var(--color-chartreuse);
  transition: var(--transition-smooth);
}

.wild-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.wild-card audio {
  width: 100%;
  margin-top: 0.75rem;
}

.wild-card-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.wild-card-text p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

/* =============================================
   VOICE LIBRARY — CATEGORY CARDS
   ============================================= */
.library-philosophy {
  background: var(--color-cream-dark);
  padding: 4rem 0;
}

.library-philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.library-philosophy h2 {
  margin-bottom: 1rem;
}

.library-categories {
  padding: 5rem 0;
  background: var(--color-cream);
}

.library-categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
}

.energy-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-cream-dark);
  transition: var(--transition-smooth);
}

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

.energy-card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-cream-dark);
}

.energy-card h3 {
  font-size: 1.5rem;
  color: var(--color-deep-teal);
  margin-bottom: 0.5rem;
}

.energy-card .flavor-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: none;
  line-height: 1.5;
}

.energy-clips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.energy-clip {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.energy-clip .clip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.energy-clip audio {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* =============================================
   CHARACTERS PAGE
   ============================================= */
.characters-hero {
  background: var(--color-deep-teal);
  padding: 5rem 0 3rem;
  text-align: center;
}

.characters-hero h1 {
  color: var(--color-white);
}

.characters-hero p {
  color: rgba(255,255,255,0.65);
  font-style: italic;
  font-family: var(--font-heading);
  margin: 0.75rem auto 0;
}

.characters-grid-section {
  padding: 5rem 0;
  background: var(--color-cream);
}

.characters-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.character-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-cream-dark);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.character-card::after {
  content: attr(data-emoji);
  position: absolute;
  bottom: -10px;
  right: -5px;
  font-size: 6rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.character-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.character-card:hover::after {
  opacity: 0.12;
  transform: scale(1.1);
}

.character-tag {
  display: inline-block;
  background: var(--color-chartreuse);
  color: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.character-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-deep-teal);
}

.character-card .character-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.character-card .character-bio {
  font-size: 0.95rem;
  color: var(--color-ink-light);
  margin-bottom: 1.5rem;
}

.character-card audio {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: var(--color-deep-teal);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(184,212,0,0.12) 0%, transparent 65%);
  border-radius: 40% 60% 50% 50%;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero-text h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.about-hero-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.about-hero-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
  transform: rotate(2deg);
  transition: var(--transition-smooth);
}

.about-hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.about-body p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-fun-fact {
  background: var(--color-amber);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-ink);
  position: relative;
}

.about-fun-fact::before {
  content: '"';
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  color: rgba(0,0,0,0.15);
  font-family: var(--font-heading);
}

/* =============================================
   HIRE ME / CONTACT PAGE
   ============================================= */
.hire-hero {
  background: var(--color-deep-teal);
  padding: 5rem 0 3rem;
  text-align: center;
}

.hire-hero h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.hire-hero p {
  color: rgba(255,255,255,0.65);
  font-style: italic;
  font-family: var(--font-heading);
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-detail {
  padding: 5rem 0;
  background: var(--color-cream);
}

.services-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
}

.service-detail-card:last-child {
  border-bottom: none;
}

.service-detail-label {
  position: sticky;
  top: 2rem;
}

.service-detail-label h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-detail-label .service-type-tag {
  display: inline-block;
  background: var(--color-deep-teal);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
}

.service-detail-content p {
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-detail-content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--color-ink-light);
  font-size: 0.97rem;
}

.service-detail-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 600;
}

/* Contact form styling */
.contact-section {
  background: var(--color-cream-dark);
  padding: 5rem 0;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 0.5rem;
}

.contact-inner .contact-sub {
  color: var(--color-muted);
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 3rem;
}

/* WPForms / CF7 overrides */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  font-family: var(--font-body) !important;
  border: 2px solid var(--color-cream-dark) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.9rem 1.2rem !important;
  font-size: 1rem !important;
  background: var(--color-white) !important;
  transition: var(--transition-smooth) !important;
  width: 100% !important;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: var(--color-teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(42,122,106,0.15) !important;
}

.wpcf7-submit,
.wpforms-submit {
  background: var(--color-teal) !important;
  color: var(--color-white) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.9rem 2.5rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: var(--transition-bounce) !important;
}

.wpcf7-submit:hover,
.wpforms-submit:hover {
  background: var(--color-deep-teal) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-hover) !important;
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-white  { color: var(--color-white) !important; }

.divider-plant {
  text-align: center;
  font-size: 2rem;
  padding: 1rem 0;
  opacity: 0.6;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-teaser-inner,
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-teaser-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-plant {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .characters-grid-inner {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .demo-card-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}
