/*
Theme Name: Tarocchi
Theme URI: https://example.com/tarocchi
Author: CyberMoon
Author URI: https://example.com
Description: Tarocchi — Thème WordPress élégant pour site de voyance, tarot et astrologie. Design clair crème + violet profond, cartes de tarot animées, compatible Elementor, boutons WhatsApp configurables.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tarocchi
Tags: elementor, mystique, voyance, tarot, astrologie, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, responsive
*/

/* ==========================================================================
   Variables CSS - Palette Tarocchi (Cream + Deep Purple)
   ========================================================================== */
:root {
  --tc-bg-primary: #f7f2ea;
  --tc-bg-secondary: #efe7d8;
  --tc-bg-soft: #faf5ec;
  --tc-purple: #4a1a5c;
  --tc-purple-dark: #2e0f3a;
  --tc-purple-light: #6e2f87;
  --tc-purple-soft: #f0e6f3;
  --tc-gold: #c9a44a;
  --tc-gold-light: #e2c878;
  --tc-gold-dark: #9c7e2f;
  --tc-text-primary: #2e0f3a;
  --tc-text-secondary: #6d5d6f;
  --tc-text-muted: #8a7c8c;
  --tc-accent: #25d366;
  --tc-shadow-soft: 0 8px 30px rgba(74, 26, 92, 0.12);
  --tc-shadow-card: 0 20px 50px rgba(74, 26, 92, 0.18);
  --tc-shadow-gold: 0 0 30px rgba(201, 164, 74, 0.25);
  --tc-font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --tc-font-body: 'Inter', 'Poppins', sans-serif;
  --tc-font-ui: 'Inter', 'Poppins', sans-serif;
  --tc-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --tc-radius: 12px;
  --tc-radius-pill: 999px;
}

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

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

body {
  background: var(--tc-bg-primary);
  color: var(--tc-text-primary);
  font-family: var(--tc-font-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Subtle zodiac watermark in background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 88% 35%, rgba(201, 164, 74, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 12% 70%, rgba(74, 26, 92, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tc-font-display);
  color: var(--tc-text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
  font-family: var(--tc-font-body);
  font-size: 1.05rem;
  color: var(--tc-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--tc-purple);
  text-decoration: none;
  transition: var(--tc-transition);
}

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

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

/* ==========================================================================
   Layout
   ========================================================================== */
.tc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 1;
}

.tc-section {
  padding: 6rem 0;
  position: relative;
}

.tc-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.tc-section-title h2 {
  max-width: 720px;
  margin: 0 auto 1rem;
}

.tc-section-title p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.tc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tc-font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tc-purple);
  background: var(--tc-purple-soft);
  padding: 0.5rem 1rem;
  border-radius: var(--tc-radius-pill);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.tc-eyebrow::before { content: '✦'; color: var(--tc-gold); }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.tc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 26, 92, 0.06);
  transition: var(--tc-transition);
}

.tc-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(247, 242, 234, 0.96);
  box-shadow: 0 4px 20px rgba(74, 26, 92, 0.06);
}

.tc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tc-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--tc-font-display);
  font-size: 1.35rem;
  color: var(--tc-purple);
  font-weight: 500;
  letter-spacing: 0;
}

.tc-logo img { max-height: 44px; width: auto; }

.tc-logo-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-gold);
  font-size: 1.2rem;
}

.tc-logo-icon svg { width: 100%; height: 100%; }

.tc-logo-text { line-height: 1; }
.tc-logo-text small {
  display: block;
  font-family: var(--tc-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--tc-text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

.tc-menu {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.tc-menu a {
  color: var(--tc-text-primary);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  padding: 0.5rem 0;
}

.tc-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--tc-gold);
  transition: var(--tc-transition);
}

.tc-menu a:hover::after,
.tc-menu .is-active::after,
.tc-menu .current-menu-item > a::after { width: 24px; }

.tc-menu a:hover { color: var(--tc-purple); }

.tc-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--tc-purple);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Buttons (Pill style)
   ========================================================================== */
.tc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--tc-font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: var(--tc-radius-pill);
  cursor: pointer;
  transition: var(--tc-transition);
  position: relative;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.tc-btn-primary {
  background: var(--tc-purple);
  color: #fff;
}

.tc-btn-primary:hover {
  background: var(--tc-purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(74, 26, 92, 0.25);
}

.tc-btn-outline {
  background: transparent;
  color: var(--tc-purple);
  border-color: var(--tc-purple);
}

.tc-btn-outline:hover {
  background: var(--tc-purple);
  color: #fff;
  transform: translateY(-2px);
}

.tc-btn-light {
  background: #fff;
  color: var(--tc-purple);
  border-color: rgba(74, 26, 92, 0.15);
}

.tc-btn-light:hover {
  background: var(--tc-purple);
  color: #fff;
  border-color: var(--tc-purple);
}

.tc-btn-whatsapp {
  background: var(--tc-accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.tc-btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.4);
}

.tc-btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

.tc-btn-gold {
  background: linear-gradient(135deg, var(--tc-gold), var(--tc-gold-light));
  color: var(--tc-purple-dark);
  box-shadow: var(--tc-shadow-gold);
}

.tc-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 164, 74, 0.4);
  color: var(--tc-purple-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.tc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* Decorative zodiac wheel watermark behind hero */
.tc-hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  background-image: radial-gradient(circle, transparent 38%, rgba(74, 26, 92, 0.06) 38.5%, rgba(74, 26, 92, 0.06) 39%, transparent 39.5%),
                    radial-gradient(circle, transparent 30%, rgba(74, 26, 92, 0.04) 30.5%, rgba(74, 26, 92, 0.04) 31%, transparent 31.5%),
                    radial-gradient(circle, transparent 45%, rgba(74, 26, 92, 0.04) 45.5%, rgba(74, 26, 92, 0.04) 46%, transparent 46.5%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.tc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tc-hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.tc-hero-content h1 span {
  font-style: italic;
  color: var(--tc-purple);
}

.tc-hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  color: var(--tc-text-secondary);
}

.tc-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tc-hero-visual {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-hero-visual canvas {
  width: 100% !important;
  height: 100% !important;
}

/* ==========================================================================
   Cards & Services
   ========================================================================== */
.tc-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tc-card {
  background: #fff;
  border: 1px solid rgba(74, 26, 92, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--tc-transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(74, 26, 92, 0.04);
}

.tc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tc-shadow-card);
  border-color: rgba(201, 164, 74, 0.3);
}

.tc-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--tc-bg-secondary);
}

.tc-card-body {
  padding: 1.75rem;
  text-align: center;
}

.tc-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--tc-purple);
}

.tc-card-body p {
  font-size: 0.98rem;
  margin-bottom: 0;
  color: var(--tc-text-secondary);
}

/* ==========================================================================
   Price Section
   ========================================================================== */
.tc-price {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  background: var(--tc-purple);
  color: #fff;
  overflow: hidden;
}

.tc-price::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 164, 74, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 164, 74, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.tc-price h2,
.tc-price .tc-section-title h2 { color: #fff; }
.tc-price .tc-section-title p { color: rgba(255, 255, 255, 0.75); }
.tc-price .tc-eyebrow { background: rgba(201, 164, 74, 0.2); color: var(--tc-gold-light); }

.tc-price-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  color: var(--tc-text-primary);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.tc-price-card::before {
  content: '✦';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--tc-gold), var(--tc-gold-light));
  color: var(--tc-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(201, 164, 74, 0.4);
}

.tc-price-card h3 {
  color: var(--tc-purple);
  margin-top: 1rem;
}

.tc-price-amount {
  font-family: var(--tc-font-display);
  font-size: 5rem;
  color: var(--tc-purple);
  font-weight: 500;
  line-height: 1;
  margin: 1rem 0;
}

.tc-price-amount sup { font-size: 1.8rem; vertical-align: super; color: var(--tc-gold); }

.tc-price-duration {
  font-size: 1.1rem;
  color: var(--tc-text-secondary);
  margin-bottom: 2rem;
}

.tc-price-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.tc-price-features li {
  padding: 0.55rem 0;
  color: var(--tc-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
}

.tc-price-features li::before {
  content: '✦';
  color: var(--tc-gold);
  font-size: 0.9rem;
}

/* ==========================================================================
   Articles
   ========================================================================== */
.tc-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tc-article {
  background: #fff;
  border: 1px solid rgba(74, 26, 92, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--tc-transition);
  box-shadow: 0 2px 12px rgba(74, 26, 92, 0.04);
}

.tc-article:hover {
  border-color: rgba(201, 164, 74, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--tc-shadow-card);
}

.tc-article-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.tc-article-body { padding: 1.75rem; }
.tc-article-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--tc-purple); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tc-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tc-testimonial {
  background: #fff;
  border: 1px solid rgba(74, 26, 92, 0.08);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(74, 26, 92, 0.04);
}

.tc-testimonial::before {
  content: '"';
  font-family: var(--tc-font-display);
  font-size: 5rem;
  color: var(--tc-gold);
  opacity: 0.4;
  position: absolute;
  top: -8px;
  left: 18px;
  line-height: 1;
}

.tc-testimonial-stars { color: var(--tc-gold); margin-bottom: 1rem; font-size: 1rem; letter-spacing: 0.2em; }
.tc-testimonial-text { font-style: italic; margin-bottom: 1.5rem; color: var(--tc-text-primary); font-family: var(--tc-font-display); font-size: 1.05rem; font-weight: 400; }
.tc-testimonial-author { font-family: var(--tc-font-ui); color: var(--tc-purple); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.05em; }
.tc-testimonial-role { font-size: 0.82rem; color: var(--tc-text-muted); font-weight: 400; margin-top: 2px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.tc-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tc-contact-info,
.tc-form-wrap {
  background: #fff;
  border: 1px solid rgba(74, 26, 92, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(74, 26, 92, 0.04);
}

.tc-contact-info h3 { margin-bottom: 1.5rem; color: var(--tc-purple); }

.tc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tc-contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--tc-purple-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-purple);
}

.tc-form-wrap label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--tc-text-primary);
  font-size: 0.92rem;
  font-weight: 500;
}

.tc-form-wrap input,
.tc-form-wrap textarea,
.tc-form-wrap select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--tc-bg-soft);
  border: 1px solid rgba(74, 26, 92, 0.12);
  border-radius: 10px;
  color: var(--tc-text-primary);
  font-family: var(--tc-font-ui);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  transition: var(--tc-transition);
}

.tc-form-wrap input:focus,
.tc-form-wrap textarea:focus,
.tc-form-wrap select:focus {
  outline: none;
  border-color: var(--tc-purple);
  box-shadow: 0 0 0 3px rgba(74, 26, 92, 0.1);
}

.tc-form-wrap textarea { resize: vertical; min-height: 140px; }

.wpcf7-form input, .wpcf7-form textarea, .wpcf7-form select,
.wpforms-form input, .wpforms-form textarea, .wpforms-form select {
  background: var(--tc-bg-soft) !important;
  border: 1px solid rgba(74, 26, 92, 0.12) !important;
  color: var(--tc-text-primary) !important;
  border-radius: 10px !important;
}

.wpcf7-submit, .wpforms-submit {
  background: var(--tc-purple) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.85rem 2rem !important;
  font-weight: 500 !important;
  border-radius: var(--tc-radius-pill) !important;
  cursor: pointer;
  transition: var(--tc-transition);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.tc-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--tc-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--tc-transition);
  animation: tc-bounce 2.5s ease-in-out infinite;
}

.tc-whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.tc-whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

@keyframes tc-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tc-whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--tc-accent);
  animation: tc-ripple 2s ease-out infinite;
}

@keyframes tc-ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.tc-footer {
  background: var(--tc-purple);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem;
  position: relative;
}

.tc-footer .tc-logo { color: #fff; }
.tc-footer .tc-logo-icon { color: var(--tc-gold); }
.tc-footer .tc-logo-text small { color: rgba(255, 255, 255, 0.5); }

.tc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.tc-footer h4 {
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
  color: var(--tc-gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--tc-font-ui);
}

.tc-footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }

.tc-footer ul { list-style: none; }
.tc-footer ul li { margin-bottom: 0.6rem; }
.tc-footer ul a { color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; }
.tc-footer ul a:hover { color: var(--tc-gold-light); }

.tc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

/* ==========================================================================
   Social icons
   ========================================================================== */
.tc-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.25rem;
}

.tc-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--tc-transition);
}

.tc-social a:hover {
  background: var(--tc-gold);
  color: var(--tc-purple);
  transform: translateY(-3px);
}

.tc-header .tc-social a {
  background: transparent;
  border: 1px solid rgba(74, 26, 92, 0.15);
  color: var(--tc-purple);
}

.tc-header .tc-social a:hover {
  background: var(--tc-purple);
  color: #fff;
  border-color: var(--tc-purple);
}

/* ==========================================================================
   Animations & utility classes
   ========================================================================== */
.tc-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.tc-fade-in.is-visible { opacity: 1; transform: translateY(0); }

.tc-text-center { text-align: center; }
.tc-mt-3 { margin-top: 3rem; }
.tc-mb-3 { margin-bottom: 3rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .tc-hero-grid,
  .tc-contact-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tc-hero-visual {
    height: 480px;
    order: -1;
  }

  .tc-footer-grid { grid-template-columns: 1fr 1fr; }

  .tc-hero::before { width: 600px; height: 600px; right: -300px; opacity: 0.5; }
}

@media (max-width: 768px) {
  .tc-section { padding: 4rem 0; }
  .tc-menu-toggle { display: block; }

  .tc-header .tc-social { display: none; }

  .tc-menu {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(247, 242, 234, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: var(--tc-transition);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 26, 92, 0.08);
  }

  .tc-menu.is-open { transform: translateY(0); }

  .tc-hero { padding: 6rem 0 3rem; min-height: auto; }
  .tc-hero-visual { height: 360px; }

  .tc-footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .tc-price-amount { font-size: 3.5rem; }

  .tc-whatsapp-float {
    width: 56px; height: 56px;
    bottom: 16px; right: 16px;
  }
}

@media (max-width: 480px) {
  .tc-hero-buttons { flex-direction: column; width: 100%; }
  .tc-hero-buttons .tc-btn { width: 100%; justify-content: center; }
  .tc-hero-visual { height: 300px; }
  .tc-card-image { height: 180px; }
  .tc-section { padding: 3.5rem 0; }
}

/* ==========================================================================
   Elementor compatibility
   ========================================================================== */
.elementor-page .tc-section { padding: 0; }
.elementor-section { position: relative; z-index: 1; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--tc-font-display); }

/* ==========================================================================
   WordPress Core Classes
   ========================================================================== */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.wp-caption { max-width: 100%; }
.wp-caption-text { text-align: center; color: var(--tc-text-secondary); font-size: 0.9rem; padding: 0.5rem; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
