/*
Theme Name: Grace Refined
Theme URI: https://savedbygrace.llc
Author: Saved By Grace Cleaning LLC
Author URI: https://savedbygrace.llc
Description: A minimal, refined theme for Saved By Grace Cleaning LLC. Violet, black, and white with subtle sparkle. Classy, professional, trustworthy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grace-refined
Tags: cleaning, business, one-page, custom-logo, custom-menu, gallery

Give Yourself Some Grace.
*/

/* ========================================
   Design Tokens
   ======================================== */
:root {
  --gr-violet: #4A1A6B;
  --gr-violet-mid: #7B4FA2;
  --gr-violet-light: #B794D6;
  --gr-violet-pale: #F3EBF9;
  --gr-violet-wash: #FAF7FC;
  --gr-black: #111111;
  --gr-dark: #333333;
  --gr-gray: #777777;
  --gr-light: #EEEEEE;
  --gr-white: #FFFFFF;

  --gr-font-script: 'Great Vibes', cursive;
  --gr-font-heading: 'Playfair Display', Georgia, serif;
  --gr-font-body: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --gr-font-accent: 'Dancing Script', cursive;

  --gr-max-width: 1100px;
  --gr-radius: 6px;
  --gr-radius-lg: 12px;
  --gr-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  --gr-shadow-lift: 0 8px 24px rgba(0, 0, 0, 0.1);
  --gr-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--gr-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gr-dark);
  background: var(--gr-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gr-violet);
  text-decoration: none;
  transition: color 0.25s var(--gr-ease);
}

a:hover {
  color: var(--gr-violet-mid);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gr-font-heading);
  color: var(--gr-black);
  line-height: 1.25;
  margin-bottom: 0.5em;
  font-weight: 600;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }

ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

/* ========================================
   Layout
   ======================================== */
.gr-container {
  max-width: var(--gr-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gr-section {
  padding: 96px 0;
}

.gr-section--warm {
  background: var(--gr-violet-wash);
}

.gr-text-center {
  text-align: center;
}

.gr-script {
  font-family: var(--gr-font-script);
  font-weight: 400;
}

.gr-accent {
  font-family: var(--gr-font-accent);
  color: var(--gr-violet);
  font-size: 1.25rem;
  display: block;
}

.gr-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.gr-section-header h2 {
  margin-bottom: 6px;
}

.gr-section-header p {
  font-size: 1.05rem;
  color: var(--gr-gray);
  max-width: 520px;
  margin: 0 auto;
}

.gr-section-header .gr-accent {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.gr-divider {
  width: 48px;
  height: 2px;
  background: var(--gr-violet-light);
  margin: 14px auto 20px;
  border-radius: 1px;
}

.gr-divider--left {
  margin-left: 0;
}

/* ========================================
   Buttons
   ======================================== */
.gr-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--gr-radius);
  font-family: var(--gr-font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--gr-ease);
  text-align: center;
}

.gr-btn:hover {
  transform: translateY(-1px);
}

.gr-btn:active {
  transform: translateY(0);
}

.gr-btn--primary {
  background: var(--gr-violet);
  color: var(--gr-white);
  border-color: var(--gr-violet);
}

.gr-btn--primary:hover {
  background: var(--gr-violet-mid);
  border-color: var(--gr-violet-mid);
  color: var(--gr-white);
  box-shadow: 0 4px 16px rgba(74, 26, 107, 0.25);
}

.gr-btn--outline {
  background: transparent;
  color: var(--gr-violet);
  border-color: var(--gr-violet);
}

.gr-btn--outline:hover {
  background: var(--gr-violet);
  color: var(--gr-white);
}

.gr-btn--white {
  background: var(--gr-white);
  color: var(--gr-violet);
  border-color: var(--gr-white);
}

.gr-btn--white:hover {
  background: transparent;
  color: var(--gr-white);
  border-color: var(--gr-white);
}

.gr-btn--outline-white {
  background: transparent;
  color: var(--gr-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.gr-btn--outline-white:hover {
  background: var(--gr-white);
  color: var(--gr-violet);
  border-color: var(--gr-white);
}

/* ========================================
   Header
   ======================================== */
.gr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s var(--gr-ease),
              box-shadow 0.3s var(--gr-ease);
}

.gr-header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.gr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--gr-max-width);
  margin: 0 auto;
  padding: 14px 24px;
  transition: padding 0.3s var(--gr-ease);
}

.gr-header--scrolled .gr-header__inner {
  padding-top: 8px;
  padding-bottom: 8px;
}

.gr-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.gr-header__logo:hover {
  color: var(--gr-violet);
}

.gr-header__logo-text {
  font-family: var(--gr-font-script) !important;
  font-size: 1.8rem;
  color: var(--gr-violet) !important;
  transition: font-size 0.3s var(--gr-ease);
  -webkit-text-fill-color: var(--gr-violet);
}

.gr-header--scrolled .gr-header__logo-text {
  font-size: 1.5rem;
}

.gr-header__logo img,
.gr-header__logo .custom-logo {
  height: 52px;
  width: auto;
  transition: height 0.3s var(--gr-ease);
}

.gr-header--scrolled .gr-header__logo img,
.gr-header--scrolled .gr-header__logo .custom-logo {
  height: 40px;
}

.gr-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gr-header__nav a:not(.gr-btn) {
  font-family: var(--gr-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gr-dark);
  padding: 8px 12px;
  transition: color 0.25s var(--gr-ease);
  position: relative;
}

.gr-header__nav a:not(.gr-btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gr-violet);
  transform: scaleX(0);
  transition: transform 0.25s var(--gr-ease);
}

.gr-header__nav a:not(.gr-btn):hover,
.gr-header__nav a:not(.gr-btn).current-menu-item {
  color: var(--gr-violet);
}

.gr-header__nav a:not(.gr-btn):hover::after,
.gr-header__nav a:not(.gr-btn).current-menu-item::after {
  transform: scaleX(1);
}

.gr-header__cta {
  margin-left: 12px;
  padding: 8px 20px;
  font-size: 0.75rem;
}

.gr-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.gr-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gr-black);
  position: absolute;
  left: 5px;
  transition: all 0.3s var(--gr-ease);
}

.gr-mobile-toggle span:nth-child(1) { top: 8px; }
.gr-mobile-toggle span:nth-child(2) { top: 15px; }
.gr-mobile-toggle span:nth-child(3) { top: 22px; }

.gr-mobile-toggle.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.gr-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.gr-mobile-toggle.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

/* ========================================
   Hero
   ======================================== */
.gr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--gr-white);
}

.gr-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--gr-violet-pale), transparent);
  pointer-events: none;
}

/* Bubbles */
.gr-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gr-hero__bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 26, 107, 0.08);
  background: rgba(183, 148, 214, 0.06);
  animation: gr-float 10s ease-in-out infinite;
}

.gr-hero__bubble:nth-child(1) { width: 60px; height: 60px; left: 8%;  top: 18%; animation-delay: 0s;   animation-duration: 12s; }
.gr-hero__bubble:nth-child(2) { width: 30px; height: 30px; left: 82%; top: 25%; animation-delay: 2s;   animation-duration: 9s; }
.gr-hero__bubble:nth-child(3) { width: 45px; height: 45px; left: 20%; top: 72%; animation-delay: 4s;   animation-duration: 11s; }
.gr-hero__bubble:nth-child(4) { width: 20px; height: 20px; left: 75%; top: 65%; animation-delay: 1.5s; animation-duration: 8s; }
.gr-hero__bubble:nth-child(5) { width: 50px; height: 50px; left: 50%; top: 12%; animation-delay: 3s;   animation-duration: 13s; }
.gr-hero__bubble:nth-child(6) { width: 25px; height: 25px; left: 92%; top: 80%; animation-delay: 5s;   animation-duration: 10s; }

@keyframes gr-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-12px) translateX(6px); }
  50% { transform: translateY(-20px) translateX(-4px); }
  75% { transform: translateY(-8px) translateX(8px); }
}

/* Sparkles */
.gr-hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gr-sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: gr-twinkle 3s ease-in-out infinite;
}

.gr-sparkle::before,
.gr-sparkle::after {
  content: "";
  position: absolute;
  background: var(--gr-violet-mid);
  border-radius: 2px;
}

.gr-sparkle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.gr-sparkle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.gr-sparkle:nth-child(1) { left: 15%; top: 25%; animation-delay: 0s; width: 12px; height: 12px; }
.gr-sparkle:nth-child(2) { left: 80%; top: 18%; animation-delay: 0.8s; width: 8px; height: 8px; }
.gr-sparkle:nth-child(3) { left: 30%; top: 65%; animation-delay: 1.6s; width: 10px; height: 10px; }
.gr-sparkle:nth-child(4) { left: 70%; top: 45%; animation-delay: 2.4s; width: 14px; height: 14px; }
.gr-sparkle:nth-child(5) { left: 10%; top: 55%; animation-delay: 0.4s; width: 7px; height: 7px; }
.gr-sparkle:nth-child(6) { left: 88%; top: 60%; animation-delay: 1.2s; width: 9px; height: 9px; }
.gr-sparkle:nth-child(7) { left: 50%; top: 15%; animation-delay: 2s; width: 11px; height: 11px; }
.gr-sparkle:nth-child(8) { left: 42%; top: 78%; animation-delay: 2.8s; width: 6px; height: 6px; }

@keyframes gr-twinkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 0.7; transform: scale(1) rotate(45deg); }
}

.gr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 24px;
}

.gr-hero__logo {
  max-width: 260px;
  margin: 0 auto 32px;
}

.gr-hero__title {
  font-family: var(--gr-font-script);
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--gr-black);
  margin-bottom: 12px;
  line-height: 1.15;
}

.gr-hero__subtitle {
  font-family: var(--gr-font-accent);
  font-size: 1.35rem;
  color: var(--gr-violet);
  margin-bottom: 40px;
  letter-spacing: 0.3px;
}

.gr-hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.gr-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.gr-hero__scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--gr-violet-light);
  border-radius: 10px;
  position: relative;
}

.gr-hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gr-violet-light);
  border-radius: 2px;
  animation: gr-scroll-dot 2s ease-in-out infinite;
}

@keyframes gr-scroll-dot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 18px; }
}

/* ========================================
   Services
   ======================================== */
.gr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gr-service-card {
  background: var(--gr-white);
  border-radius: var(--gr-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--gr-shadow);
  transition: transform 0.3s var(--gr-ease),
              box-shadow 0.3s var(--gr-ease);
  position: relative;
}

.gr-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gr-shadow-lift);
}

.gr-service-card--featured {
  border: 1.5px solid var(--gr-violet-light);
}

.gr-service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gr-service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gr-violet);
}

.gr-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--gr-black);
}

.gr-service-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gr-violet);
  margin-bottom: 16px;
}

.gr-service-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 24px;
}

.gr-service-card li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.88rem;
  color: var(--gr-dark);
}

.gr-service-card li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gr-violet-light);
}

.gr-services-addons {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--gr-violet-wash);
  border-radius: var(--gr-radius-lg);
  font-size: 0.92rem;
  color: var(--gr-dark);
}

/* ========================================
   About
   ======================================== */
.gr-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.gr-about__image {
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  box-shadow: var(--gr-shadow-lift);
}

.gr-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gr-about__image-placeholder {
  background: var(--gr-violet-pale);
  padding: 80px 40px;
  text-align: center;
  border-radius: var(--gr-radius-lg);
  color: var(--gr-gray);
}

.gr-about__image-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gr-violet-light);
  margin: 0 auto 16px;
}

.gr-about__content .gr-accent {
  margin-bottom: 4px;
}

.gr-about__content h2 {
  margin-bottom: 4px;
}

.gr-about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
}

.gr-about__values li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gr-dark);
}

.gr-about__values li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gr-violet);
  flex-shrink: 0;
}

/* ========================================
   Gallery
   ======================================== */
.gr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gr-gallery-item {
  position: relative;
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  aspect-ratio: 4/3;
}

.gr-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--gr-ease);
}

.gr-gallery-item:hover img {
  transform: scale(1.04);
}

.gr-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 26, 107, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--gr-ease);
}

.gr-gallery-item:hover .gr-gallery-item__overlay {
  opacity: 1;
}

.gr-gallery-item__overlay span {
  color: var(--gr-white);
  font-family: var(--gr-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.gr-gallery-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--gr-gray);
}

.gr-gallery-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--gr-violet-light);
  margin: 0 auto 16px;
}

.gr-gallery-empty__hint {
  font-size: 0.85rem;
  color: var(--gr-violet-mid);
  margin-top: 4px;
}

/* ========================================
   Lightbox
   ======================================== */
.gr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17, 17, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: gr-fade-in 0.2s ease;
}

.gr-lightbox[hidden] {
  display: none;
}

@keyframes gr-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gr-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gr-white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.gr-lightbox__close:hover {
  opacity: 1;
}

.gr-lightbox__content {
  max-width: 900px;
  max-height: 85vh;
  text-align: center;
}

.gr-lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--gr-radius);
  object-fit: contain;
}

.gr-lightbox__caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ========================================
   Pricing
   ======================================== */
.gr-pricing-sheets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.gr-pricing-sheet {
  border: none;
  padding: 0;
  background: var(--gr-white);
  border-radius: var(--gr-radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--gr-shadow);
  transition: transform 0.3s var(--gr-ease),
              box-shadow 0.3s var(--gr-ease);
  position: relative;
}

.gr-pricing-sheet:hover {
  transform: translateY(-3px);
  box-shadow: var(--gr-shadow-lift);
}

.gr-pricing-sheet img {
  width: 100%;
  display: block;
}

.gr-pricing-sheet__label {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--gr-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--gr-light);
}

/* How Pricing Works infographic */
.gr-how-pricing {
  text-align: center;
  margin-bottom: 48px;
}

.gr-how-pricing__title {
  font-size: 1.4rem;
  color: var(--gr-black);
  margin-bottom: 4px;
}

.gr-how-pricing__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 32px 0;
}

.gr-how-pricing__step {
  flex: 1;
  max-width: 200px;
  padding: 0 12px;
}

.gr-how-pricing__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  background: var(--gr-violet-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--gr-ease),
              background 0.3s var(--gr-ease);
}

.gr-how-pricing__step:hover .gr-how-pricing__icon {
  transform: scale(1.08);
  background: var(--gr-violet);
}

.gr-how-pricing__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gr-violet);
  transition: stroke 0.3s var(--gr-ease);
}

.gr-how-pricing__step:hover .gr-how-pricing__icon svg {
  stroke: var(--gr-white);
}

.gr-how-pricing__icon--accent {
  background: var(--gr-violet);
}

.gr-how-pricing__icon--accent svg {
  stroke: var(--gr-white);
}

.gr-how-pricing__step:hover .gr-how-pricing__icon--accent {
  background: var(--gr-violet-mid);
}

.gr-how-pricing__step h4 {
  font-size: 0.95rem;
  color: var(--gr-black);
  margin-bottom: 6px;
}

.gr-how-pricing__step p {
  font-size: 0.82rem;
  color: var(--gr-gray);
  line-height: 1.5;
  margin: 0;
}

.gr-how-pricing__arrow {
  display: flex;
  align-items: center;
  padding-top: 20px;
  flex-shrink: 0;
}

.gr-how-pricing__arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gr-violet-light);
}

.gr-how-pricing__desc {
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--gr-gray);
  line-height: 1.7;
}

.gr-pricing-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.gr-pricing-note {
  background: var(--gr-white);
  border-radius: var(--gr-radius);
  padding: 22px;
  box-shadow: var(--gr-shadow);
  transition: transform 0.3s var(--gr-ease),
              box-shadow 0.3s var(--gr-ease);
}

.gr-pricing-note:hover {
  transform: translateY(-2px);
  box-shadow: var(--gr-shadow-lift);
}

.gr-pricing-note h4 {
  color: var(--gr-violet);
  margin-bottom: 6px;
  font-size: 1rem;
}

.gr-pricing-note p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--gr-gray);
}

.gr-pricing-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gr-gray);
  margin-top: 32px;
  font-style: italic;
}

/* ========================================
   CTA
   ======================================== */
.gr-cta {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background: var(--gr-violet);
  color: var(--gr-white);
}

.gr-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(123, 79, 162, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 30%, rgba(183, 148, 214, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.gr-cta .gr-container {
  position: relative;
  z-index: 1;
}

.gr-cta h2 {
  color: var(--gr-white);
  margin-bottom: 8px;
}

.gr-cta__tagline {
  font-size: 1.8rem;
  color: var(--gr-violet-light);
  display: block;
  margin-bottom: 28px;
}

.gr-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Contact
   ======================================== */
.gr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.gr-contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gr-contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gr-violet-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s var(--gr-ease);
}

.gr-contact-item:hover .gr-contact-item__icon {
  background: var(--gr-violet);
}

.gr-contact-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gr-violet);
  transition: stroke 0.3s var(--gr-ease);
}

.gr-contact-item:hover .gr-contact-item__icon svg {
  stroke: var(--gr-white);
}

.gr-contact-item h4 {
  margin-bottom: 2px;
  font-size: 0.95rem;
  color: var(--gr-black);
}

.gr-contact-item p {
  margin: 0;
  color: var(--gr-gray);
  font-size: 0.92rem;
}

.gr-contact-item a {
  color: var(--gr-violet);
  font-weight: 500;
}

.gr-contact-form .wpcf7-form label,
.gr-contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--gr-black);
}

.gr-contact-form input[type="text"],
.gr-contact-form input[type="email"],
.gr-contact-form input[type="tel"],
.gr-contact-form select,
.gr-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gr-light);
  border-radius: var(--gr-radius);
  font-family: var(--gr-font-body);
  font-size: 0.92rem;
  margin-bottom: 14px;
  transition: border-color 0.25s var(--gr-ease),
              box-shadow 0.25s var(--gr-ease);
  background: var(--gr-white);
}

.gr-contact-form input:focus,
.gr-contact-form select:focus,
.gr-contact-form textarea:focus {
  outline: none;
  border-color: var(--gr-violet);
  box-shadow: 0 0 0 3px rgba(74, 26, 107, 0.08);
}

.gr-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.gr-contact-fallback {
  background: var(--gr-violet-wash);
  border-radius: var(--gr-radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.gr-contact-fallback h3 {
  margin-bottom: 8px;
}

.gr-contact-fallback__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}

.gr-contact-fallback__note {
  font-size: 0.82rem;
  color: var(--gr-gray);
  margin: 0;
}

/* ========================================
   Footer
   ======================================== */
.gr-footer {
  background: var(--gr-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 24px;
  border-top: 2px solid var(--gr-violet);
}

.gr-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.gr-footer__name {
  font-family: var(--gr-font-script);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gr-white);
  margin-bottom: 12px;
}

.gr-footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 280px;
}

.gr-footer h4 {
  color: var(--gr-white);
  font-family: var(--gr-font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.gr-footer ul {
  list-style: none;
  padding: 0;
}

.gr-footer li {
  margin-bottom: 6px;
}

.gr-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.25s var(--gr-ease);
}

.gr-footer a:hover {
  color: var(--gr-violet-light);
}

.gr-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.gr-footer__bottom .gr-script {
  color: var(--gr-violet-light);
  font-size: 1rem;
}

.gr-footer__credit {
  font-size: 0.72rem;
  letter-spacing: 0.3px;
  opacity: 0.4;
  margin: 0;
}

.gr-footer__credit a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.gr-footer__credit a:hover {
  color: var(--gr-violet-light);
  opacity: 1;
}

/* ========================================
   Scroll Reveal
   ======================================== */
.gr-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gr-revealed {
  opacity: 1;
  transform: translateY(0);
}

.gr-reveal-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gr-reveal-card.gr-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Pages (non-front-page)
   ======================================== */
.gr-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.gr-page .entry-content {
  max-width: 720px;
  margin: 0 auto;
}

.wp-block-image img {
  border-radius: var(--gr-radius);
}

/* Admin bar offset */
body.admin-bar .gr-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .gr-header {
    top: 46px;
  }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .gr-reveal, .gr-reveal-card {
    opacity: 1;
    transform: none;
  }

  .gr-hero__bubbles,
  .gr-hero__sparkles,
  .gr-hero__scroll {
    display: none;
  }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .gr-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gr-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --gr-max-width: 100%;
  }

  .gr-header__nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    gap: 2px;
  }

  .gr-header__nav.is-open {
    display: flex;
  }

  .gr-header__nav a {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .gr-header__nav a::after {
    display: none;
  }

  .gr-header__cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  .gr-mobile-toggle {
    display: block;
  }

  .gr-section {
    padding: 56px 0;
  }

  .gr-hero {
    min-height: 85vh;
    padding-top: 80px;
  }

  .gr-hero__title {
    font-size: 2.8rem;
  }

  .gr-hero__logo {
    max-width: 200px;
  }

  .gr-hero__scroll {
    display: none;
  }

  .gr-hero__bubble:nth-child(n+5) {
    display: none;
  }

  .gr-sparkle:nth-child(n+5) {
    display: none;
  }

  .gr-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gr-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gr-about__image {
    order: -1;
    max-height: 360px;
  }

  .gr-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gr-how-pricing__steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .gr-how-pricing__step {
    max-width: 280px;
  }

  .gr-how-pricing__arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .gr-contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gr-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gr-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .gr-hero__title {
    font-size: 2.2rem;
  }

  .gr-hero__subtitle {
    font-size: 1.1rem;
  }

  .gr-hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .gr-btn {
    width: 100%;
    max-width: 260px;
  }

  .gr-about__values {
    grid-template-columns: 1fr;
  }

  .gr-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gr-cta__tagline {
    font-size: 1.4rem;
  }
}
