/* ─────────────────────────────────────────
   CSS Custom Properties — Lightened Palette
───────────────────────────────────────── */
:root {
  /* Lightened Soft Premium Pinks (Adjusted down ~12% for airier brand perception) */
  --pink-50:  #fffbfb;  
  --pink-100: #fdf2f4;  
  --pink-200: #fae1e5;  
  --pink-300: #f6c0cc;  
  --pink-400: #f09cb0;  
  --pink-500: #e36b88;  /* Primary Branding Accent Color */
  --rose-dark: #b84660; 

  /* Contrast Accent Golds */
  --gold-300: #f5d78e;
  --gold-400: #e8c060;
  --gold-500: #c9973a;

  /* Neutrals & Slates */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;

  /* Typography Sizing Engine Constants */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;

  /* Global Radius & Elevation Configurations */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(227, 107, 136, 0.06);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.08);
}

/* ── Base Structural Rules ── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
}

body { 
  font-family: var(--font-sans); 
  color: var(--slate-700); 
  background: var(--white); 
  line-height: 1.65;
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden;
}

.container { 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

.section { 
  padding: 100px 0; 
}

.section-light { background: var(--slate-50); }
.section-pink  { background: var(--pink-50); }

/* Typography Architecture */
.section-header { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto 64px auto; 
}

.section-title { 
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--slate-900);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-title.left { text-align: left; }

.section-subtitle { 
  font-size: 1.125rem;
  color: var(--slate-600);
}

/* ── Global Interactive Components (Buttons) ── */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink-500);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(227, 107, 136, 0.25);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 107, 136, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--slate-800);
  border: 2px solid var(--slate-200);
}

.btn-outline:hover {
  border-color: var(--pink-500);
  color: var(--pink-500);
  transform: translateY(-2px);
}

.btn-lg { font-size: 1.05rem; padding: 16px 40px; }
.btn-sm { font-size: 0.85rem; padding: 8px 20px; border-radius: var(--radius-sm); }

/* ── Header Navigation Layout ── */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pink-100);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate-900);
}

.logo-crown {
  font-size: 1.75rem;
  color: var(--gold-500);
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--pink-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a:not(.btn-primary) {
  text-decoration: none;
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:not(.btn-primary):hover {
  color: var(--pink-500);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.75rem;
  background: none;
  border: none;
  color: var(--slate-900);
  cursor: pointer;
}

/* Off-Canvas Mobile Drawer Overlay Architecture */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.is-active {
  transform: translateX(-320px);
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: var(--slate-600);
  cursor: pointer;
  margin-bottom: 40px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-links a:not(.btn-primary) {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--slate-900);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Hero Section Setup ── */
.hero {
  position: relative;
  padding: 140px 0 120px 0;
  background: linear-gradient(145deg, var(--white) 50%, var(--pink-50) 100%);
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: var(--pink-100);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-highlight {
  color: var(--pink-500);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--slate-600);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-800);
}

/* ── Frameworkless Fluid Card Grid Setup ── */
.why-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-card, .service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon, .service-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.why-card h3, .service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--slate-900);
  margin-bottom: 14px;
  font-weight: 700;
}

.why-card p, .service-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

.service-card.featured {
  border-top: 4px solid var(--pink-400);
}

.service-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--pink-500);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ── MacBook Air Optimized Pricing Table Layout ── */
.pricing-table-container {
  width: 100%;
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-100);
  margin-bottom: 64px;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px; /* Locks execution structure safely horizontally */
}

/* Desktop proportional scaling controls */
.pricing-table th:nth-child(1) { width: 22%; }
.pricing-table th:nth-child(2) { width: 44%; }
.pricing-table th:nth-child(3) { width: 19%; }
.pricing-table th:nth-child(4) { width: 15%; }

.pricing-table th {
  background: var(--pink-100);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 24px;
  border-bottom: 1px solid var(--pink-200);
}

.pricing-table td {
  padding: 28px 24px;
  border-bottom: 1px solid var(--slate-100);
  vertical-align: middle;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr.featured-row {
  background: linear-gradient(90deg, var(--pink-50) 0%, var(--white) 100%);
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  display: block;
}

.plan-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.plan-price {
  font-size: 1.05rem;
  color: var(--slate-800);
}

.plan-price strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--slate-900);
  font-weight: 700;
}

.table-badge {
  display: inline-block;
  background: var(--gold-400);
  color: var(--slate-900);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* Optional Add-Ons System */
.addons {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}

.addons-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--slate-900);
  text-align: center;
  margin-bottom: 32px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-100);
}

.addon-icon { font-size: 1.5rem; }
.addon-name { font-weight: 600; font-size: 0.95rem; color: var(--slate-800); flex-grow: 1;}
.addon-price { font-weight: 700; color: var(--pink-500); font-size: 1rem; }

/* ── About Section Formatting ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  background: var(--pink-100);
  height: 450px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-emblem {
  font-size: 8rem;
  color: var(--pink-300);
}

.section-eyebrow {
  display: block;
  color: var(--pink-500);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.about-content p {
  color: var(--slate-600);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-quote {
  border-left: 3px solid var(--pink-300);
  padding-left: 16px;
  font-style: italic;
  color: var(--slate-800) !important;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about-badges .badge {
  background: var(--slate-100);
  color: var(--slate-800);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
}

/* ── Form Formatting & Clean Realignment ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--pink-100);
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--slate-600);
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.contact-details a {
  color: var(--pink-500);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-icon { font-size: 1.25rem; }

/* Native Forms System Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate-800);
}

.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
  color: var(--slate-900);
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--pink-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(227, 107, 136, 0.12);
}

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.form-error {
  color: var(--rose-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* AJAX Success Element State Formatting */
.form-success {
  text-align: center;
  padding: 48px 24px;
  animation: fadeIn 0.4s ease forwards;
}

.form-success-icon {
  font-size: 3.5rem;
  color: #10b981;
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--slate-900);
  margin-bottom: 12px;
}

/* ── Consolidated Footer Styling ── */
.site-footer {
  background: var(--slate-900);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: var(--pink-300);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer-copy {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ── Animation Ecosystem ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Dynamic Media Viewport Customizations ── */
@media (max-width: 992px) {
  .hero-title { font-size: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 300px; }
  .contact-wrapper { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .site-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .pricing-table th, .pricing-table td { padding: 16px 12px; }
}