/* =========================================================================
   PoshWave Pages — design system
   Every color below is extracted from BlackLogo.svg (or is a tint/shade of
   a logo color). The logo is the black-ink wordmark with a gold-gradient
   mark, so the site theme is light ivory + gold + black ink.
   ---------------------------------------------------------------------- */

:root {
  /* --- Raw logo colors (gradient stops + wordmark ink) --- */
  --pw-color-1:  #feeb75; /* pale gold highlight   */
  --pw-color-2:  #fbe472; /* light gold            */
  --pw-color-3:  #f5d661; /* soft gold             */
  --pw-color-4:  #f0d360; /* muted gold            */
  --pw-color-5:  #efc354; /* honey gold            */
  --pw-color-6:  #ebc04c; /* amber gold            */
  --pw-color-7:  #e9b548; /* warm gold             */
  --pw-color-8:  #e7b844; /* golden yellow         */
  --pw-color-9:  #dfae3a; /* deep amber            */
  --pw-color-10: #f3ba35; /* bright gold           */
  --pw-color-11: #d09628; /* rich gold             */
  --pw-color-12: #cd9824; /* antique gold          */
  --pw-color-13: #865915; /* bronze shadow         */
  --pw-color-14: #020202; /* wordmark ink (black)  */

  /* --- Semantic aliases (derived only from the colors above) --- */
  --pw-bg:          #fffdf4;                 /* ivory — near-white tint of --pw-color-1 */
  --pw-surface:     #fdf7e0;                 /* pale gold tint of --pw-color-2          */
  --pw-surface-2:   #faeec2;                 /* deeper champagne tint of --pw-color-3   */
  --pw-primary:     var(--pw-color-14);      /* dominant text color                     */
  --pw-accent:      var(--pw-color-12);      /* highlight / contrast color              */
  --pw-accent-deep: var(--pw-color-13);      /* bronze — accent readable on light bg    */
  --pw-ink-soft:    rgba(2, 2, 2, 0.72);     /* softened --pw-color-14                  */
  --pw-ink-faint:   rgba(2, 2, 2, 0.55);     /* faint --pw-color-14                     */
  --pw-line:        rgba(205, 152, 36, 0.35);/* translucent --pw-color-12               */
  --pw-glow:        rgba(243, 186, 53, 0.20);/* translucent --pw-color-10               */
  --pw-gold-grad:   linear-gradient(135deg, var(--pw-color-2) 0%, var(--pw-color-10) 48%, var(--pw-color-12) 100%);

  --pw-font-head: 'Cinzel', serif;
  --pw-font-body: 'Manrope', sans-serif;
}

/* =========================================================================
   Page shell — neutralise theme chrome on plugin pages
   ---------------------------------------------------------------------- */

body.pw-page {
  background: var(--pw-bg);
  font-family: var(--pw-font-body);
}

body.pw-page .entry-title,
body.pw-page .page-title,
body.pw-page h1.entry-title {
  display: none;
}

body.pw-page .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.pw-page .entry-content > * {
  max-width: none;
}

.pw-root {
  font-family: var(--pw-font-body);
  color: var(--pw-primary);
  overflow-x: hidden;
}

.pw-root * {
  box-sizing: border-box;
}

.pw-root img {
  max-width: 100%;
  height: auto;
}

.pw-root a {
  color: var(--pw-accent-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}

.pw-root a:hover {
  color: var(--pw-color-11);
}

.pw-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pw-wrap-narrow {
  max-width: 900px;
}

/* =========================================================================
   Typography
   ---------------------------------------------------------------------- */

.pw-h1,
.pw-h2,
.pw-h3,
.pw-cta-title {
  font-family: var(--pw-font-head);
  color: var(--pw-primary);
  line-height: 1.18;
  margin: 0 0 18px;
  font-weight: 700;
}

.pw-h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
}

.pw-h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.pw-h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  margin-bottom: 12px;
}

.pw-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--pw-ink-soft);
  margin: 0 0 16px;
}

.pw-lead {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.75;
  color: var(--pw-ink-soft);
  max-width: 780px;
  margin: 0 auto 8px;
}

/* =========================================================================
   Chips & buttons
   ---------------------------------------------------------------------- */

.pw-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pw-gold-grad);
  color: var(--pw-color-14);
  font-family: var(--pw-font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px var(--pw-glow);
}

.pw-date-chip {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pw-accent-deep);
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 999px;
  padding: 8px 20px;
}

.pw-btn {
  display: inline-block;
  font-family: var(--pw-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pw-btn:hover {
  transform: translateY(-2px);
}

.pw-btn-dark {
  background: var(--pw-color-14);
  color: var(--pw-color-1);
}

.pw-btn-dark:hover {
  color: var(--pw-color-1);
  box-shadow: 0 12px 28px rgba(2, 2, 2, 0.28);
}

.pw-btn-ghost {
  background: transparent;
  color: var(--pw-color-14);
  border-color: var(--pw-color-14);
}

.pw-btn-ghost:hover {
  background: var(--pw-color-14);
  color: var(--pw-color-1);
}

/* =========================================================================
   Hero
   ---------------------------------------------------------------------- */

.pw-hero {
  position: relative;
  text-align: center;
  padding: 110px 0 90px;
  background:
    radial-gradient(720px 340px at 18% 0%, var(--pw-glow), transparent 65%),
    radial-gradient(720px 340px at 85% 100%, rgba(251, 228, 114, 0.28), transparent 60%),
    linear-gradient(180deg, var(--pw-surface) 0%, var(--pw-bg) 100%);
  border-bottom: 1px solid var(--pw-line);
  overflow: hidden;
}

.pw-hero-sm {
  padding: 90px 0 70px;
}

.pw-hero::before,
.pw-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.pw-hero::before {
  width: 340px;
  height: 340px;
  top: -160px;
  right: -110px;
  background: radial-gradient(circle, rgba(243, 186, 53, 0.28), transparent 70%);
}

.pw-hero::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(205, 152, 36, 0.22), transparent 70%);
}

.pw-hero-inner {
  position: relative;
  z-index: 1;
}

/* =========================================================================
   Sections
   ---------------------------------------------------------------------- */

.pw-section {
  padding: 84px 0;
}

.pw-section-alt {
  background: var(--pw-surface);
  border-top: 1px solid var(--pw-line);
  border-bottom: 1px solid var(--pw-line);
}

.pw-sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.pw-sec-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pw-ink-soft);
  margin: 0;
}

/* =========================================================================
   Grids & cards
   ---------------------------------------------------------------------- */

.pw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.pw-card {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 18px;
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pw-card:hover {
  transform: translateY(-6px);
  border-color: var(--pw-color-10);
  box-shadow: 0 18px 44px var(--pw-glow);
}

.pw-card .pw-text:last-child {
  margin-bottom: 0;
}

.pw-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--pw-gold-grad);
  color: var(--pw-color-14);
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px var(--pw-glow);
}

/* Numbered cards (Services) */

.pw-card-num {
  position: relative;
  padding-top: 30px;
}

.pw-num {
  display: block;
  font-family: var(--pw-font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--pw-color-10), var(--pw-color-13));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--pw-color-11);
}

/* Tick lists */

.pw-ticks {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.pw-ticks li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--pw-ink-soft);
}

.pw-ticks li::before {
  content: '\2726'; /* four-pointed star */
  position: absolute;
  left: 2px;
  top: 7px;
  color: var(--pw-accent);
  font-size: 0.9rem;
}

/* =========================================================================
   Split layout (About / Contact)
   ---------------------------------------------------------------------- */

.pw-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.pw-mission {
  margin-top: 28px;
  padding: 26px 28px;
  border-left: 4px solid var(--pw-accent);
  background: var(--pw-surface);
  border-radius: 0 16px 16px 0;
}

.pw-mission .pw-text {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.pw-promise {
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 20px;
  padding: 34px 30px;
  position: sticky;
  top: 100px;
}

.pw-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pw-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--pw-line);
}

.pw-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pw-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--pw-accent);
}

.pw-list li strong {
  display: block;
  font-size: 1rem;
  color: var(--pw-primary);
  margin-bottom: 3px;
}

.pw-list li span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pw-ink-faint);
}

/* =========================================================================
   Stats strip
   ---------------------------------------------------------------------- */

.pw-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

.pw-stat {
  padding: 30px 20px;
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pw-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px var(--pw-glow);
}

.pw-stat i {
  font-size: 1.6rem;
  color: var(--pw-accent);
  margin-bottom: 14px;
  display: block;
}

.pw-stat strong {
  display: block;
  font-family: var(--pw-font-head);
  font-size: 1.05rem;
  color: var(--pw-primary);
  margin-bottom: 6px;
}

.pw-stat span {
  font-size: 0.9rem;
  color: var(--pw-ink-faint);
}

/* =========================================================================
   Process steps
   ---------------------------------------------------------------------- */

.pw-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.pw-step {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 18px;
  padding: 34px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pw-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px var(--pw-glow);
}

.pw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pw-gold-grad);
  color: var(--pw-color-14);
  font-family: var(--pw-font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px var(--pw-glow);
}

/* =========================================================================
   CTA panel
   ---------------------------------------------------------------------- */

.pw-cta-sec {
  padding-top: 30px;
}

.pw-cta {
  position: relative;
  text-align: center;
  background:
    radial-gradient(500px 220px at 12% 0%, rgba(254, 235, 117, 0.55), transparent 65%),
    radial-gradient(500px 220px at 88% 100%, rgba(134, 89, 21, 0.28), transparent 65%),
    var(--pw-gold-grad);
  border-radius: 26px;
  padding: 64px 40px;
  overflow: hidden;
  box-shadow: 0 24px 60px var(--pw-glow);
}

.pw-cta-title {
  color: var(--pw-color-14);
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
}

.pw-cta-text {
  color: rgba(2, 2, 2, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 30px;
}

.pw-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* =========================================================================
   Policy pages
   ---------------------------------------------------------------------- */

.pw-policy .pw-pcard {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 18px;
  padding: 36px 38px;
  margin-bottom: 26px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pw-policy .pw-pcard:hover {
  border-color: var(--pw-color-10);
  box-shadow: 0 12px 32px var(--pw-glow);
}

.pw-pcard h2 {
  font-family: var(--pw-font-head);
  font-size: 1.3rem;
  color: var(--pw-primary);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pw-line);
}

.pw-pcard h3 {
  font-family: var(--pw-font-head);
  font-size: 1.02rem;
  color: var(--pw-accent-deep);
  margin: 22px 0 10px;
}

.pw-pcard p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--pw-ink-soft);
  margin: 0 0 14px;
}

.pw-pcard p:last-child {
  margin-bottom: 0;
}

.pw-pcard ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.pw-pcard ul:last-child {
  margin-bottom: 0;
}

.pw-pcard ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pw-ink-soft);
}

.pw-pcard ul li::before {
  content: '\2726';
  position: absolute;
  left: 2px;
  top: 8px;
  color: var(--pw-accent);
  font-size: 0.8rem;
}

.pw-pcard a {
  font-weight: 600;
  border-bottom: 1px solid var(--pw-line);
}

.pw-pcard-contact {
  background: var(--pw-surface);
}

.pw-contact-block {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 14px;
  padding: 22px 26px;
  line-height: 2 !important;
}

.pw-contact-block i {
  color: var(--pw-accent);
  width: 20px;
}

/* =========================================================================
   Contact page
   ---------------------------------------------------------------------- */

.pw-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.pw-contact-info {
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 22px;
  padding: 38px 34px;
}

.pw-contact-logo {
  width: 180px;
  height: auto;
  margin-bottom: 26px;
}

.pw-ci-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--pw-line);
}

.pw-ci-row:last-of-type {
  border-bottom: 0;
}

.pw-ci-ico {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pw-gold-grad);
  color: var(--pw-color-14);
  font-size: 1.05rem;
  box-shadow: 0 6px 16px var(--pw-glow);
}

.pw-ci-row strong {
  display: block;
  font-family: var(--pw-font-head);
  font-size: 0.98rem;
  color: var(--pw-primary);
  margin-bottom: 4px;
}

.pw-ci-row p {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pw-ink-soft);
}

.pw-ci-link {
  font-weight: 600;
  font-size: 0.93rem;
}

.pw-ci-link i {
  font-size: 0.75rem;
  margin-left: 4px;
}

.pw-ci-social {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--pw-line);
}

.pw-ci-social strong {
  display: block;
  font-family: var(--pw-font-head);
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--pw-primary);
}

.pw-ci-social-row {
  display: flex;
  gap: 12px;
}

.pw-ci-social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--pw-accent);
  color: var(--pw-accent-deep);
  font-size: 1rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.pw-ci-social-row a:hover {
  background: var(--pw-gold-grad);
  color: var(--pw-color-14);
  transform: translateY(-3px);
}

/* Contact form panel + Contact Form 7 styling */

.pw-contact-form {
  background: var(--pw-bg);
  border: 1px solid var(--pw-line);
  border-radius: 22px;
  padding: 38px 34px;
}

.pw-contact-form .wpcf7 {
  margin-top: 10px;
}

.pw-contact-form .wpcf7 label {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pw-primary);
  margin-bottom: 16px;
}

.pw-contact-form .wpcf7 input[type='text'],
.pw-contact-form .wpcf7 input[type='email'],
.pw-contact-form .wpcf7 input[type='tel'],
.pw-contact-form .wpcf7 input[type='url'],
.pw-contact-form .wpcf7 input[type='number'],
.pw-contact-form .wpcf7 select,
.pw-contact-form .wpcf7 textarea {
  width: 100%;
  background: var(--pw-surface);
  border: 1px solid var(--pw-line);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 8px;
  font-family: var(--pw-font-body);
  font-size: 0.98rem;
  color: var(--pw-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pw-contact-form .wpcf7 input:focus,
.pw-contact-form .wpcf7 select:focus,
.pw-contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--pw-color-10);
  box-shadow: 0 0 0 4px var(--pw-glow);
}

.pw-contact-form .wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.pw-contact-form .wpcf7 input[type='submit'] {
  display: inline-block;
  width: auto;
  background: var(--pw-color-14);
  color: var(--pw-color-1);
  font-family: var(--pw-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  padding: 15px 38px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pw-contact-form .wpcf7 input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 2, 2, 0.28);
}

.pw-contact-form .wpcf7 .wpcf7-not-valid-tip {
  color: var(--pw-accent-deep);
  font-size: 0.82rem;
  margin-top: 5px;
}

.pw-contact-form .wpcf7 .wpcf7-response-output {
  border: 1px solid var(--pw-accent) !important;
  border-radius: 12px;
  padding: 14px 18px !important;
  margin: 18px 0 0 !important;
  color: var(--pw-primary);
  background: var(--pw-surface);
}

/* =========================================================================
   Responsive
   ---------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .pw-section {
    padding: 68px 0;
  }

  .pw-hero {
    padding: 92px 0 74px;
  }
}

@media (max-width: 900px) {
  .pw-split,
  .pw-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pw-promise {
    position: static;
  }
}

@media (max-width: 768px) {
  .pw-section {
    padding: 56px 0;
  }

  .pw-hero {
    padding: 78px 0 60px;
  }

  .pw-cta {
    padding: 50px 26px;
  }

  .pw-policy .pw-pcard {
    padding: 28px 24px;
  }
}

@media (max-width: 540px) {
  .pw-wrap {
    padding: 0 18px;
  }

  .pw-section {
    padding: 46px 0;
  }

  .pw-hero {
    padding: 66px 0 52px;
  }

  .pw-chip {
    font-size: 0.68rem;
    padding: 7px 14px;
  }

  .pw-btn {
    width: 100%;
    text-align: center;
  }

  .pw-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .pw-contact-info,
  .pw-contact-form {
    padding: 28px 22px;
  }
}
