/*
Theme Name: Inner Power & Balance
Theme URI: https://innerpowerandbalance.com
Author: Marcel
Author URI: https://innerpowerandbalance.com
Description: A one-page healing and movement website for Inner Power & Balance.
Version: 1.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: inner-power-balance
*/

/* ============================================================
   RESET & ROOT
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --white:      #ffffff;
  --off-white:  #FAF8F4;
  --light-gray: #F0EBE3;
  --border:     #B8CFA8;
  --gold:       #F07818;
  --gold-light: #FFB030;
  --gold-muted: #E06010;
  --text-dark:  #1E3818;
  --text-mid:   #3A5C2A;
  --text-muted: #5A7848;
  --charcoal:   #142010;
  --nav-h:      72px;
}

body {
  background-color: var(--white);
  color: var(--text-dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 0.65rem;
  letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 12px;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; color: var(--text-dark); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem,   4vw,   3.4rem);  font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);   font-weight: 600; }
p  { font-size: 1.0625rem; line-height: 1.9; color: var(--text-mid); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 38px; border-radius: 2px; cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  border: 1.5px solid transparent;
}
.btn-primary   { background: var(--gold);  color: var(--white);  border-color: var(--gold); }
.btn-primary:hover  { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 6px 20px rgba(240,120,24,0.32); }
.btn-secondary { background: transparent; color: var(--gold-muted); border-color: var(--gold-muted); }
.btn-secondary:hover { background: var(--gold); color: var(--white); border-color: var(--gold); box-shadow: 0 6px 20px rgba(240,120,24,0.24); }

/* ============================================================
   LAYOUT
============================================================ */
.section      { padding: 104px 24px; }
.container    { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 680px;  margin: 0 auto; }
.brush-divider { display: flex; justify-content: center; margin: 20px auto 36px; }
.brush-divider svg { width: 130px; height: 18px; opacity: 0.45; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   STICKY NAV
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; padding: 0 32px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav-inner {
  width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 0.67rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-mid); opacity: 0.8;
  transition: color 0.25s, opacity 0.25s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-logo img { height: 50px; width: auto; transition: opacity 0.3s; }
.nav-logo:hover img { opacity: 0.75; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text-dark); border-radius: 1px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-drawer {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98); padding: 20px 32px 28px;
  z-index: 999; border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; }
.nav-drawer ul li a {
  display: block; font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-mid); padding: 14px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.nav-drawer ul li a:hover { color: var(--gold); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + 70px) 24px 90px;
  background: linear-gradient(170deg, #D4EBC0 0%, #C4E2A8 55%, #B0D890 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpolygon points='0,600 320,180 480,320 640,120 800,280 960,80 1120,240 1280,140 1440,220 1440,600' fill='%23C9963C' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-size: cover; background-position: bottom; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-logo { width: 152px; margin: 0 auto 32px; }
.hero-rule { width: 56px; height: 1px; background: var(--gold); margin: 0 auto 32px; opacity: 0.55; }
.hero h1 { color: var(--text-dark); margin-bottom: 22px; letter-spacing: -0.01em; }
.hero-tagline {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 0.68rem; letter-spacing: 5.5px; text-transform: uppercase;
  color: var(--gold-muted); margin-bottom: 30px;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--text-mid); margin-bottom: 48px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-arrow {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.3; animation: bounce 2.2s ease-in-out infinite;
}
.scroll-arrow span {
  display: block; width: 10px; height: 10px;
  border-right: 1.5px solid var(--gold-muted); border-bottom: 1.5px solid var(--gold-muted); transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--white); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 68px; align-items: start; }
.about-text .subhead {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; color: var(--gold); margin-bottom: 28px;
}
.about-text p { color: var(--text-mid); margin-bottom: 20px; }
.about-text p strong { color: var(--gold-muted); font-weight: 600; }
.about-photo { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }

.about-benefits { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.benefit-item:last-child { border-bottom: none; }
.benefit-item:hover { background: var(--off-white); }
.benefit-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--light-gray); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 18px; height: 18px; }
.benefit-title {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.72rem;
  color: var(--text-dark); letter-spacing: 0.3px; margin-bottom: 2px;
}
.benefit-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.photo-frame { border: 1px solid var(--border); aspect-ratio: 3/4; overflow: hidden; background: var(--light-gray); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: var(--text-muted);
}
.photo-placeholder svg { opacity: 0.25; }
.photo-placeholder p  { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.4; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.cred-badge {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  background: var(--off-white); border-left: 3px solid var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.cred-badge:hover { background: var(--light-gray); border-color: var(--gold-light); }
.cred-icon {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem; background: var(--white);
}
.cred-title { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.cred-sub   { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.92rem; color: var(--text-mid); }

/* ============================================================
   PRACTICES
============================================================ */
.practices {
  background: var(--off-white); position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { color: var(--text-dark); }
.section-header p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.2rem; color: var(--text-muted); margin-top: 10px;
}
.cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 840px; margin: 0 auto; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 38px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(30,56,24,0.11); }
.card-icon { margin-bottom: 24px; }
.card-icon svg { width: 48px; height: 48px; }
.card h3 { margin-bottom: 14px; color: var(--text-dark); }
.card p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.88; }
.card-link {
  display: inline-block; margin-top: 24px; font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); transition: color 0.2s, letter-spacing 0.25s;
}
.card-link:hover { color: var(--gold-light); letter-spacing: 3px; }

/* ============================================================
   SCHEDULE
============================================================ */
.schedule { background: var(--white); border-top: 1px solid var(--border); }
.schedule-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.schedule-card {
  background: var(--off-white); color: var(--text-dark);
  border: 1px solid var(--border); border-left: 4px solid var(--gold); padding: 30px 34px;
}
.time-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.63rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 18px;
}
.schedule-card h3 { color: var(--text-dark); font-size: 1.45rem; margin-bottom: 12px; }
.schedule-card p  { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; }
.schedule-cta { text-align: center; margin-top: 52px; }
.schedule-location {
  font-family: 'Raleway', sans-serif; font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 26px;
}
.schedule-location strong { color: var(--gold-muted); font-weight: 700; }

/* ============================================================
   WORKSHOPS
============================================================ */
.workshops { background: var(--white); border-top: 1px solid var(--border); }
.workshop-cards { margin-top: 52px; }
.workshop-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); max-width: 800px; margin: 0 auto;
  transition: box-shadow 0.3s;
}
.workshop-card:hover { box-shadow: 0 14px 36px rgba(30,56,24,0.11); }
.workshop-card-inner { padding: 44px 52px; }
.workshop-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.62rem;
  letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 16px; margin-bottom: 22px;
}
.workshop-card h3 { color: var(--text-dark); font-size: 2.2rem; margin-bottom: 8px; }
.workshop-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6;
}
.workshop-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); margin-bottom: 28px;
}
.workshop-meta-item { padding: 16px 20px; border-right: 1px solid var(--border); }
.workshop-meta-item:last-child { border-right: none; }
.meta-label {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.58rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-muted);
  display: block; margin-bottom: 6px;
}
.meta-value {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark); display: block; line-height: 1.4;
}
.workshop-card-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter { background: var(--off-white); color: var(--text-dark); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter .eyebrow { color: var(--gold-muted); }
.newsletter h2 { color: var(--text-dark); margin-bottom: 18px; }
.newsletter > .container-sm > p { color: var(--text-mid); margin-bottom: 44px; font-size: 1.06rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  width: 100%; padding: 15px 22px; font-family: 'Raleway', sans-serif; font-size: 0.95rem;
  background: #F0F7EA; border: 1px solid #B8CFA8; border-radius: 2px;
  color: var(--text-dark); outline: none; transition: border-color 0.25s, box-shadow 0.25s;
}
.newsletter-form input::placeholder { color: #7A9868; font-style: italic; }
.newsletter-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,120,24,0.12); }
.newsletter-form button {
  width: 100%; padding: 16px; font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 0.74rem; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--white); border: none; border-radius: 0;
  cursor: pointer; transition: background 0.3s, box-shadow 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(240,120,24,0.32); }
.form-note { font-size: 0.78rem; font-style: italic; color: var(--text-muted); margin-top: 6px; }
.form-success {
  display: none; padding: 24px; border: 1px solid var(--gold);
  background: rgba(240,120,24,0.08); font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic; color: var(--text-dark); text-align: center;
}

/* ============================================================
   SOCIAL
============================================================ */
.social-section { background: var(--light-gray); border-top: 1px solid var(--border); }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.social-card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 44px 34px; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.social-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(30,56,24,0.10); }
.social-icon { margin: 0 auto 22px; }
.social-icon svg { width: 52px; height: 52px; }
.social-handle {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.social-card p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 30px; line-height: 1.78; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--charcoal); border-top: 3px solid var(--gold); padding: 68px 24px 0; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; padding-bottom: 52px;
}
.footer-brand .footer-logo {
  height: 72px; width: 72px; margin-bottom: 18px;
  object-fit: contain;
}
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.08rem; color: rgba(255,255,255,0.6); margin-bottom: 26px; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s;
}
.footer-socials a:hover { border-color: var(--gold); background: rgba(240,120,24,0.15); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 10px 28px; list-style: none; margin-bottom: 28px; }
.footer-nav-links a {
  font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 0.67rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-contact a { color: var(--gold-light); transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 0.8; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 30px; text-align: center;
}
.footer-bottom p { font-size: 0.7rem; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); text-transform: uppercase; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-photo    { position: static; order: -1; max-width: 320px; margin: 0 auto; }
  .cards-grid     { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .schedule-cards { grid-template-columns: 1fr; }
  .social-grid    { grid-template-columns: 1fr; max-width: 460px; margin: 40px auto 0; }
  .footer-grid    { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .section     { padding: 76px 20px; }
  .credentials { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas      { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 270px; text-align: center; }
}


/* =============================================
   MAILPOET FORM OVERRIDES — Newsletter Section
   ============================================= */

/* Section padding */
#newsletter {
  padding: 100px 0 120px;
}

/* Form container */
#newsletter .mailpoet_form {
  width: 100%;
  max-width: 560px;
  margin: 40px auto 0;
  font-family: 'Raleway', sans-serif;
}

/* Each field wrapper — 20px gap between elements */
#newsletter .mailpoet_form .mailpoet_paragraph {
  margin-bottom: 20px !important;
  padding: 0 !important;
}

#newsletter .mailpoet_form .mailpoet_paragraph.last {
  margin-bottom: 0 !important;
}

/* Input fields */
#newsletter .mailpoet_form input.mailpoet_text {
  width: 100% !important;
  padding: 16px 22px !important;
  background: #F0F7EA !important;
  border: 1px solid #B8CFA8 !important;
  border-radius: 2px !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  color: #1E3818 !important;
  box-sizing: border-box !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
  -webkit-appearance: none;
  appearance: none;
}

#newsletter .mailpoet_form input.mailpoet_text::placeholder {
  color: #7A9868 !important;
  font-style: italic !important;
  letter-spacing: 0.03em !important;
}

#newsletter .mailpoet_form input.mailpoet_text:focus {
  outline: none !important;
  border-color: #E06010 !important;
  background: #F8FCF5 !important;
  box-shadow: none !important;
}

/* Submit button */
#newsletter .mailpoet_form input.mailpoet_submit {
  width: 100% !important;
  padding: 20px 40px !important;
  background: #E06010 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease !important;
  box-shadow: 0 4px 16px rgba(240,120,24,0.32) !important;
  -webkit-appearance: none;
  appearance: none;
}

#newsletter .mailpoet_form input.mailpoet_submit:hover {
  background: #F07818 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(240,120,24,0.42) !important;
}

#newsletter .mailpoet_form input.mailpoet_submit:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(240,120,24,0.2) !important;
}

/* Messages */
#newsletter .mailpoet_validate_success {
  color: #3A5C2A;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.03em;
}

#newsletter .mailpoet_validate_error {
  color: #c0392b;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  margin-top: 6px;
  letter-spacing: 0.02em;
}


/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--charcoal); overflow: hidden; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header .eyebrow { color: var(--gold-light); }
.testimonials .brush-divider svg path { stroke: var(--gold); }
.testimonial-slider-wrap { position: relative; max-width: 820px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-slide { min-width: 100%; padding: 0 8px; box-sizing: border-box; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
  padding: 52px 56px 44px;
  text-align: center;
  border-radius: 2px;
}
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 0.6;
  color: var(--gold); opacity: 0.45;
  margin-bottom: 28px; display: block;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic; font-weight: 400; line-height: 1.78;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px; border: none; padding: 0;
}
.testimonial-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-light);
}
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none;
  cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.3); }
.testimonial-arrows { display: flex; justify-content: center; gap: 14px; margin-top: 24px; }
.testimonial-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.6);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.testimonial-arrow:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(240,120,24,0.1);
}
@media (max-width: 600px) {
  .testimonial-card { padding: 38px 28px 34px; }
}