/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.6
	Stable tag: 3.4.6
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
    /* ════════════════════════════════════════════════════════════════
       WEDDING TIMES — SINGLE POST STYLES
       Paste everything inside this <style> tag into:
       Elementor → Site Settings → Custom CSS
       OR Appearance → Customize → Additional CSS
    ════════════════════════════════════════════════════════════════ */

    /* ─── DESIGN TOKENS (matches main site) ─── */
    :root {
      --rose:        #B76E79;
      --rose-light:  #C8858F;
      --rose-dark:   #9A5963;
      --beige:       #F9F6F4;
      --beige-dark:  #EDE8E3;
      --gold:        #D4AF37;
      --gold-light:  #E8CC6A;
      --charcoal:    #1E1E1E;
      --charcoal-mid:#2D2D2D;
      --white:       #FFFFFF;
      --text-muted:  #6B6B6B;
      --text-body:   #3A3A3A;
      --border:      rgba(183,110,121,0.14);
      --shadow-sm:   0 4px 20px rgba(30,30,30,0.07);
      --shadow-md:   0 12px 40px rgba(30,30,30,0.12);
      --shadow-lg:   0 30px 80px rgba(30,30,30,0.16);
      --radius:      12px;
    }

    /* ─── GLOBAL RESETS FOR POST SCOPE ─── */
    .wt-single-post *,
    .wt-single-post *::before,
    .wt-single-post *::after {
      box-sizing: border-box;
    }

    /* ─── NOISE TEXTURE (matches main site body::before) ─── */
    .wt-single-post {
      font-family: 'Poppins', sans-serif;
      background: var(--beige);
      color: var(--text-body);
      position: relative;
    }

    /* ════════════════════════════════════════════
       1. HERO — POST HEADER
    ════════════════════════════════════════════ */

    .wt-post-hero {
      position: relative;
      min-height: 75vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: var(--charcoal);
    }

    /* Featured image as full bleed background */
    .wt-post-hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(0.55) saturate(0.9);
      transition: transform 8s ease;
    }

    .wt-post-hero:hover .wt-post-hero-img {
      transform: scale(1.04);
    }

    /* Multi-layer overlay — dramatic dark gradient at bottom */
    .wt-post-hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          to bottom,
          rgba(10,8,15,0.15) 0%,
          rgba(10,8,15,0.25) 30%,
          rgba(10,8,15,0.72) 65%,
          rgba(10,8,15,0.93) 100%
        );
      pointer-events: none;
    }

    /* Decorative rose gradient bloom */
    .wt-post-hero-bloom {
      position: absolute;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(183,110,121,0.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .wt-post-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 80px 0px 70px;
    }

    /* Category pill */
    .wt-post-category {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--rose);
      color: var(--white);
      padding: 6px 18px;
      border-radius: 50px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      margin-bottom: 24px;
      transition: background 0.3s;
    }

    .wt-post-category:hover { background: var(--rose-dark); }
    .wt-post-category::before { content: '✦'; font-size: 7px; opacity: 0.8; }

    /* Post title */
    .wt-post-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 700;
      line-height: 1.12;
      color: var(--white);
      margin: 0 0 24px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }

    .wt-post-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    /* Meta row */
    .wt-post-meta-row {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .wt-meta-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.5px;
    }

    .wt-meta-item strong {
      color: rgba(255,255,255,0.9);
      font-weight: 500;
    }

    .wt-meta-dot {
      width: 3px;
      height: 3px;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
    }

    .wt-meta-icon { font-size: 13px; opacity: 0.7; }

    /* ════════════════════════════════════════════
       2. BREADCRUMB
    ════════════════════════════════════════════ */

    .wt-breadcrumb-wrap {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }

    .wt-breadcrumb {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: var(--text-muted);
      flex-wrap: wrap;
    }

    .wt-breadcrumb a {
      color: var(--rose);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .wt-breadcrumb a:hover { color: var(--rose-dark); }

    .wt-breadcrumb-sep {
      color: var(--border);
      font-size: 10px;
    }

    .wt-breadcrumb-current {
      color: var(--text-muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 300px;
    }

    /* ════════════════════════════════════════════
       3. MAIN CONTENT LAYOUT
    ════════════════════════════════════════════ */

    .wt-post-layout {
      max-width: 1180px;
      margin: 0 auto;
      padding: 60px 0px 80px;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 70px;
      align-items: start;
    }

    /* ─── ARTICLE COLUMN ─── */
    .wt-post-article { min-width: 0; }

    /* Pull quote / intro lead */
    .wt-post-lead {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--text-body);
      border-left: 3px solid var(--rose);
      padding: 4px 0 4px 24px;
      margin-bottom: 40px;
      font-style: italic;
    }

    /* ─── ARTICLE BODY CONTENT ─── */
    /* All WordPress content auto-populates here */
    .wt-post-content {
      font-size: 16px;
      line-height: 1.95;
      color: var(--text-body);
      font-weight: 300;
    }

    .wt-post-content p {
      margin-bottom: 28px;
    }

    .wt-post-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.2;
      margin: 54px 0 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .wt-post-content h2::before {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 60px;
      height: 2px;
      background: linear-gradient(to right, var(--rose), var(--gold));
    }

    .wt-post-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.3;
      margin: 40px 0 16px;
    }

    .wt-post-content h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--rose);
      margin: 32px 0 12px;
    }

    .wt-post-content a {
      color: var(--rose);
      text-decoration: none;
      border-bottom: 1px solid rgba(183,110,121,0.3);
      transition: border-color 0.2s, color 0.2s;
    }

    .wt-post-content a:hover {
      color: var(--rose-dark);
      border-color: var(--rose-dark);
    }

    /* Images inside content */
    .wt-post-content img {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
      margin: 32px 0;
      box-shadow: var(--shadow-md);
    }

    .wt-post-content figure {
      margin: 36px 0;
    }

    .wt-post-content figcaption {
      font-size: 12px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 10px;
      font-style: italic;
      letter-spacing: 0.5px;
    }

    /* Blockquote */
    .wt-post-content blockquote {
      position: relative;
      background: linear-gradient(135deg, rgba(183,110,121,0.06), rgba(212,175,55,0.04));
      border: none;
      border-radius: var(--radius);
      padding: 32px 36px 32px 60px;
      margin: 40px 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-style: italic;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.6;
    }

    .wt-post-content blockquote::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 80px;
      color: var(--rose);
      opacity: 0.25;
      position: absolute;
      top: 8px;
      left: 16px;
      line-height: 1;
    }

    .wt-post-content blockquote cite {
      display: block;
      font-size: 12px;
      font-style: normal;
      font-family: 'Poppins', sans-serif;
      color: var(--text-muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 14px;
      font-weight: 500;
    }

    /* Lists */
    .wt-post-content ul,
    .wt-post-content ol {
      margin: 0 0 28px 0;
      padding-left: 0;
      list-style: none;
    }

    .wt-post-content ul li,
    .wt-post-content ol li {
      padding: 6px 0 6px 28px;
      position: relative;
      font-size: 15px;
      line-height: 1.75;
    }

    .wt-post-content ul li::before {
      content: '✦';
      position: absolute;
      left: 0;
      color: var(--rose);
      font-size: 9px;
      top: 10px;
    }

    .wt-post-content ol {
      counter-reset: wt-ol;
    }

    .wt-post-content ol li::before {
      counter-increment: wt-ol;
      content: counter(wt-ol);
      position: absolute;
      left: 0;
      width: 20px;
      height: 20px;
      background: var(--rose);
      color: white;
      font-size: 10px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      top: 8px;
    }

    /* Table */
    .wt-post-content table {
      width: 100%;
      border-collapse: collapse;
      margin: 32px 0;
      font-size: 14px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .wt-post-content th {
      background: var(--charcoal);
      color: var(--white);
      padding: 14px 18px;
      text-align: left;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .wt-post-content td {
      padding: 13px 18px;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }

    .wt-post-content tr:last-child td { border-bottom: none; }
    .wt-post-content tr:nth-child(even) td { background: rgba(183,110,121,0.035); }

    /* Code */
    .wt-post-content code {
      background: var(--beige-dark);
      padding: 2px 7px;
      border-radius: 4px;
      font-size: 13px;
      font-family: 'Courier New', monospace;
      color: var(--rose-dark);
    }

    .wt-post-content pre {
      background: var(--charcoal);
      color: rgba(255,255,255,0.85);
      padding: 24px;
      border-radius: var(--radius);
      overflow-x: auto;
      margin: 32px 0;
      font-size: 13px;
      line-height: 1.7;
    }

    /* ─── ARTICLE DIVIDER ─── */
    .wt-article-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin: 48px 0;
    }

    .wt-article-divider::before,
    .wt-article-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(183,110,121,0.25));
    }

    .wt-article-divider::after {
      background: linear-gradient(to left, transparent, rgba(183,110,121,0.25));
    }

    .wt-article-divider-icon { color: var(--gold); font-size: 16px; }

    /* ─── TAGS ─── */
    .wt-post-tags {
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .wt-tags-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .wt-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .wt-tag {
      display: inline-block;
      padding: 6px 16px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 50px;
      font-size: 11px;
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: all 0.25s;
    }

    .wt-tag:hover {
      background: var(--rose);
      border-color: var(--rose);
      color: var(--white);
      transform: translateY(-1px);
    }

    /* ─── SHARE BAR ─── */
    .wt-share-bar {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 40px;
      padding: 22px 28px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .wt-share-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
      margin-right: 4px;
    }

    .wt-share-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 9px 18px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-decoration: none;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all 0.25s;
      font-family: 'Poppins', sans-serif;
    }

    .wt-share-btn.wt-share-wb   { background: #25D366; color: white; }
    .wt-share-btn.wt-share-fb   { background: #1877F2; color: white; }
    .wt-share-btn.wt-share-tw   { background: #000; color: white; }
    .wt-share-btn.wt-share-pin  { background: #E60023; color: white; }
    .wt-share-btn.wt-share-copy { background: transparent; color: var(--charcoal); border-color: var(--border); }

    .wt-share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
    .wt-share-btn.wt-share-copy:hover { border-color: var(--rose); color: var(--rose); }

    .wt-share-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ════════════════════════════════════════════
       4. AUTHOR CARD
    ════════════════════════════════════════════ */

    .wt-author-card {
      margin-top: 56px;
      background: linear-gradient(135deg, var(--white) 0%, rgba(249,246,244,0.8) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 28px;
      align-items: start;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    /* Decorative rose accent line */
    .wt-author-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--rose), var(--gold), var(--rose));
    }

    /* Decorative background bloom */
    .wt-author-card::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(183,110,121,0.06), transparent);
      pointer-events: none;
    }

    .wt-author-avatar-wrap {
      position: relative;
      flex-shrink: 0;
    }

    .wt-author-avatar {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      border: 3px solid var(--white);
      box-shadow: 0 4px 20px rgba(183,110,121,0.25);
    }

    /* Gold ring accent around avatar */
    .wt-author-avatar-wrap::before {
      content: '';
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 1.5px solid rgba(212,175,55,0.4);
    }

    .wt-author-badge {
      position: absolute;
      bottom: 2px;
      right: 2px;
      width: 24px;
      height: 24px;
      background: var(--rose);
      border-radius: 50%;
      border: 2px solid var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .wt-author-info {}

    .wt-author-by {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 4px;
    }

    .wt-author-name {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 6px;
    }

    .wt-author-role {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .wt-author-bio {
      font-size: 14px;
      color: var(--text-body);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .wt-author-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .wt-author-social {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--beige-dark);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.25s;
    }

    .wt-author-social:hover {
      background: var(--rose);
      border-color: var(--rose);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(183,110,121,0.3);
    }

    .wt-author-posts-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--rose);
      text-decoration: none;
      padding: 7px 16px;
      border: 1.5px solid rgba(183,110,121,0.3);
      border-radius: 50px;
      transition: all 0.25s;
      margin-left: 6px;
    }

    .wt-author-posts-link:hover {
      background: var(--rose);
      color: var(--white);
      border-color: var(--rose);
    }

    /* ════════════════════════════════════════════
       5. POST NAVIGATION (Prev / Next)
    ════════════════════════════════════════════ */

    .wt-post-nav {
      margin-top: 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .wt-nav-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .wt-nav-item::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, var(--rose), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .wt-nav-item:hover {
      border-color: rgba(183,110,121,0.3);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .wt-nav-item:hover::before { transform: scaleX(1); }

    .wt-nav-item.wt-nav-next { text-align: right; }
    .wt-nav-item.wt-nav-next::before { transform-origin: right; }

    .wt-nav-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--rose);
    }

    .wt-nav-title {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.3;
    }

    .wt-nav-cat {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    /* ════════════════════════════════════════════
       6. COMMENTS SECTION
    ════════════════════════════════════════════ */

    .wt-comments-section {
      margin-top: 64px;
    }

    .wt-comments-heading {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .wt-comments-heading::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* Comment form styling */
    .wt-comments-section .comment-form label,
    .wt-comment-form label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 6px;
      display: block;
    }

    .wt-comments-section .comment-form input[type="text"],
    .wt-comments-section .comment-form input[type="email"],
    .wt-comments-section .comment-form input[type="url"],
    .wt-comments-section .comment-form textarea,
    .wt-comment-form input,
    .wt-comment-form textarea {
      width: 100%;
      padding: 13px 16px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: var(--charcoal);
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      margin-bottom: 16px;
    }

    .wt-comments-section .comment-form input:focus,
    .wt-comments-section .comment-form textarea:focus,
    .wt-comment-form input:focus,
    .wt-comment-form textarea:focus {
      border-color: var(--rose);
      box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
    }

    .wt-comments-section .comment-form textarea,
    .wt-comment-form textarea {
      min-height: 140px;
      resize: vertical;
    }

    .wt-comments-section .comment-form input[type="submit"],
    .wt-comment-form button[type="submit"],
    .wt-submit-btn {
      background: linear-gradient(135deg, var(--rose), var(--rose-dark));
      color: var(--white);
      border: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-family: 'Poppins', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 8px 25px rgba(183,110,121,0.3);
    }

    .wt-comments-section .comment-form input[type="submit"]:hover,
    .wt-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(183,110,121,0.4);
    }

    /* Existing comments */
    .comment-list { list-style: none; padding: 0; margin: 0 0 40px; }

    .comment {
      display: flex;
      gap: 16px;
      padding: 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      margin-bottom: 16px;
      transition: box-shadow 0.3s;
    }

    .comment:hover { box-shadow: var(--shadow-sm); }

    .comment .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 2px solid var(--border);
    }

    .comment-meta { margin-bottom: 10px; }

    .comment-author-name {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--charcoal);
    }

    .comment-date {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .comment-content { font-size: 14px; line-height: 1.75; color: var(--text-body); }

    .reply a {
      font-size: 11px;
      color: var(--rose);
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-top: 10px;
      display: inline-block;
    }

    /* ════════════════════════════════════════════
       7. SIDEBAR
    ════════════════════════════════════════════ */

    .wt-sidebar {
      position: sticky;
      top: 100px;
    }

    /* Sidebar widget base */
    .wt-widget {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-bottom: 24px;
      position: relative;
      overflow: hidden;
    }

    .wt-widget::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--rose), var(--gold));
    }

    .wt-widget-title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    /* Table of Contents widget */
    .wt-toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: toc;
    }

    .wt-toc-item {
      counter-increment: toc;
      padding: 7px 0;
      border-bottom: 1px solid rgba(183,110,121,0.07);
    }

    .wt-toc-item:last-child { border-bottom: none; }

    .wt-toc-item a {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: var(--text-body);
      text-decoration: none;
      transition: color 0.2s;
      line-height: 1.5;
    }

    .wt-toc-item a::before {
      content: counter(toc, decimal-leading-zero);
      font-size: 10px;
      font-weight: 700;
      color: var(--rose);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .wt-toc-item a:hover { color: var(--rose); }

    /* Author mini-widget */
    .wt-sidebar-author {
      text-align: center;
    }

    .wt-sidebar-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 12px;
      display: block;
      border: 2px solid var(--border);
      box-shadow: 0 4px 16px rgba(183,110,121,0.2);
    }

    .wt-sidebar-author-name {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .wt-sidebar-author-role {
      font-size: 10px;
      color: var(--rose);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .wt-sidebar-author-bio {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .wt-sidebar-author-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--rose);
      text-decoration: none;
      padding: 8px 18px;
      border: 1.5px solid rgba(183,110,121,0.3);
      border-radius: 50px;
      transition: all 0.25s;
    }

    .wt-sidebar-author-btn:hover {
      background: var(--rose);
      color: var(--white);
      border-color: var(--rose);
    }

    /* Related posts in sidebar */
    .wt-sidebar-post {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      transition: transform 0.2s;
    }

    .wt-sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
    .wt-sidebar-post:first-child { padding-top: 0; }
    .wt-sidebar-post:hover { transform: translateX(4px); }

    .wt-sidebar-post-thumb {
      width: 64px;
      height: 64px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--beige-dark);
    }

    .wt-sidebar-post-title {
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.35;
      margin-bottom: 4px;
    }

    .wt-sidebar-post-date {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: 0.5px;
    }

    /* Newsletter widget */
    .wt-sidebar-newsletter { background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid)); border-color: transparent; }
    .wt-sidebar-newsletter::before { background: linear-gradient(to right, var(--rose), var(--gold)); }

    .wt-sidebar-newsletter .wt-widget-title { color: var(--white); border-color: rgba(255,255,255,0.1); }

    .wt-sidebar-newsletter p {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .wt-nl-input {
      width: 100%;
      padding: 12px 16px;
      background: rgba(255,255,255,0.07);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      color: var(--white);
      outline: none;
      margin-bottom: 10px;
      transition: border-color 0.25s;
    }

    .wt-nl-input::placeholder { color: rgba(255,255,255,0.3); }
    .wt-nl-input:focus { border-color: var(--rose); }

    .wt-nl-btn {
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, var(--rose), var(--rose-dark));
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
    }

    .wt-nl-btn:hover {
      box-shadow: 0 8px 24px rgba(183,110,121,0.4);
      transform: translateY(-1px);
    }

    /* Categories widget */
    .wt-cat-list { list-style: none; padding: 0; margin: 0; }

    .wt-cat-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
    }

    .wt-cat-item:last-child { border-bottom: none; }

    .wt-cat-link {
      font-size: 13px;
      color: var(--text-body);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }

    .wt-cat-link::before {
      content: '✦';
      font-size: 7px;
      color: var(--rose);
    }

    .wt-cat-link:hover { color: var(--rose); }

    .wt-cat-count {
      font-size: 10px;
      font-weight: 600;
      color: var(--white);
      background: var(--rose);
      padding: 2px 8px;
      border-radius: 10px;
    }

    /* ════════════════════════════════════════════
       8. RELATED POSTS SECTION (full width below layout)
    ════════════════════════════════════════════ */

    .wt-related-section {
      background: var(--beige);
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }

    .wt-related-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .wt-section-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--rose);
      margin-bottom: 16px;
    }

    .wt-section-badge::before,
    .wt-section-badge::after {
      content: '';
      width: 30px;
      height: 1px;
      background: rgba(183,110,121,0.4);
    }

    .wt-related-title {
      font-family: 'Playfair Display', serif;
      font-size: 38px;
      font-weight: 700;
      text-align: center;
      color: var(--charcoal);
      margin-bottom: 48px;
    }

    .wt-related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .wt-related-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      text-decoration: none;
      display: block;
      transition: all 0.4s ease;
      position: relative;
    }

    .wt-related-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(183,110,121,0.25);
    }

    .wt-related-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
      background: var(--beige-dark);
    }

    .wt-related-card:hover .wt-related-card-img { transform: scale(1.04); }

    .wt-related-card-img-wrap {
      overflow: hidden;
      height: 220px;
      position: relative;
    }

    .wt-related-card-cat {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--rose);
      color: var(--white);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
    }

    .wt-related-card-body {
      padding: 24px;
    }

    .wt-related-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .wt-related-card-excerpt {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
      font-weight: 300;
    }

    .wt-related-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
    }

    .wt-related-read-more {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--rose);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.5px;
    }

    /* ════════════════════════════════════════════
       9. PROGRESS BAR (reading progress)
    ════════════════════════════════════════════ */

    .wt-reading-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 9999;
      background: rgba(183,110,121,0.15);
    }

    .wt-reading-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(to right, var(--rose), var(--gold));
      transition: width 0.1s linear;
    }

    /* ════════════════════════════════════════════
       10. FLOATING BACK TO TOP
    ════════════════════════════════════════════ */

    .wt-back-top {
      position: fixed;
      bottom: 40px;
      right: 40px;
      z-index: 999;
      width: 46px;
      height: 46px;
      background: var(--charcoal);
      color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s;
      box-shadow: var(--shadow-md);
    }

    .wt-back-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .wt-back-top:hover {
      background: var(--rose);
      transform: translateY(-3px);
    }

    /* ════════════════════════════════════════════
       11. RESPONSIVE
    ════════════════════════════════════════════ */

    @media (max-width: 1024px) {
      .wt-post-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 48px 30px 60px;
      }

      .wt-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

      .wt-sidebar > *:last-child { grid-column: 1 / -1; }

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

    @media (max-width: 768px) {
      .wt-post-hero { min-height: 60vh; }
      .wt-post-hero-content { padding: 60px 24px 50px; }
      .wt-post-title { font-size: 30px; }
      .wt-post-meta-row { gap: 14px; }
      .wt-post-layout { padding: 36px 30px 48px; }
      .wt-author-card { grid-template-columns: 1fr; text-align: center; }
      .wt-author-links { justify-content: center; }
      .wt-post-nav { grid-template-columns: 1fr; }
      .wt-sidebar { grid-template-columns: 1fr; }
      .wt-related-grid { grid-template-columns: 1fr; }
      .wt-related-inner { padding: 0 20px; }
      .wt-share-bar { flex-wrap: wrap; }
      .wt-breadcrumb { padding: 0 20px; }
      .wt-back-top { bottom: 20px; right: 20px; }
    }

    /* ════════════════════════════════════════════
       ELEMENTOR WIDGET SPECIFIC OVERRIDES
       (ensures Elementor widgets match our design)
    ════════════════════════════════════════════ */

    /* Post title widget */
    .elementor-widget-post-title .elementor-heading-title {
      font-family: 'Playfair Display', serif !important;
      color: var(--white) !important;
      font-size: clamp(32px, 5vw, 58px) !important;
      line-height: 1.12 !important;
      font-weight: 700 !important;
    }

    /* Post content widget */
    .elementor-widget-theme-post-content .elementor-widget-container {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 1.95;
      color: var(--text-body);
      font-weight: 300;
    }

    /* Featured image widget */
    .elementor-widget-theme-post-featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Author box widget */
    .elementor-widget-author-box .elementor-author-box {
      background: transparent;
      border: none;
      padding: 0;
    }


  :root {
    --rose: #B76E79;
    --rose-light: #C8858F;
    --rose-dark: #9A5963;
    --beige: #F9F6F4;
    --beige-dark: #EDE8E3;
    --gold: #D4AF37;
    --gold-light: #E8CC6A;
    --charcoal: #1E1E1E;
    --charcoal-mid: #2D2D2D;
    --white: #FFFFFF;
    --text-muted: #6B6B6B;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--beige);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--beige); }
  ::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ─── STICKY HEADER ─── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
  }

  header.scrolled {
    background: rgba(249,246,244,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(183,110,121,0.15);
    padding: 14px 60px;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 1px;
  }

  .logo span { color: var(--rose); }

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

  nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
  }

  nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.3s;
  }

  nav a:hover { color: var(--rose); }
  nav a:hover::after { width: 100%; }

  .header-cta {
    background: var(--rose);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
  }

  .header-cta::after { display: none !important; }
  .header-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); box-shadow: 0 8px 25px rgba(183,110,121,0.35) !important; }

  /* ─── FLOATING BUTTON ─── */
  .floating-btn {
    position: fixed;
    bottom: 40px; right: 40px;
    z-index: 999;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(183,110,121,0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatPulse 3s ease-in-out infinite;
  }

  .floating-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 50px rgba(183,110,121,0.5); }

  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(183,110,121,0.4); }
    50% { box-shadow: 0 10px 60px rgba(183,110,121,0.6); }
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--beige) 0%, #EFE8E1 40%, #E8DDD5 100%);
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(183,110,121,0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 40%),
      radial-gradient(circle at 60% 80%, rgba(183,110,121,0.05) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }

  .hero-text { position: relative; z-index: 2; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(183,110,121,0.1);
    border: 1px solid rgba(183,110,121,0.25);
    color: var(--rose);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-badge::before { content: '✦'; font-size: 8px; }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5.5vw, 70px);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.15s both;
  }

  h1 em {
    font-style: italic;
    color: var(--rose);
    display: block;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 44px;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.45s both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(183,110,121,0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(183,110,121,0.45); }

  .btn-secondary {
    background: transparent;
    color: var(--charcoal);
    padding: 16px 36px;
    border-radius: 50px;
    border: 1.5px solid rgba(30,30,30,0.2);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-secondary:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

  /* ─── POSTER MOCKUP ─── */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .poster-float {
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(30,30,30,0.2));
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(-1deg); }
  }

  .poster-main {
    width: 300px;
    height: 420px;
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.3);
  }

  .poster-photo {
    width: 100%;
    height: 62%;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #c9a96e 0%, #a67c52 30%, #8B6350 60%, #5D3A2A 100%);
    position: relative;
  }

  .poster-photo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 62%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,10,30,0.7));
  }

  .poster-couple-silhouette {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 180px;
  }

  .poster-bottom {
    padding: 16px;
    text-align: center;
    background: linear-gradient(180deg, #0f1a35 0%, #0a0f20 100%);
    height: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .poster-mag-name {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .poster-headline {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    font-style: italic;
  }

  .poster-date {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .poster-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.6;
  }

  .poster-loc { color: rgba(255,255,255,0.6); font-size: 7px; letter-spacing: 2px; text-transform: uppercase; }

  .poster-badge-gold {
    position: absolute;
    top: 12px; right: 12px;
    width: 52px; height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }

  .poster-badge-gold span:first-child { font-size: 9px; font-weight: 700; color: #000; line-height: 1; }
  .poster-badge-gold span:last-child { font-size: 6px; font-weight: 600; color: #000; letter-spacing: 1px; text-transform: uppercase; }

  .poster-tag-left {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold);
    font-size: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 8px;
  }

  /* Decorative elements around poster */
  .hero-deco {
    position: absolute;
    pointer-events: none;
  }

  .hero-deco-1 {
    top: -20px; right: -30px;
    width: 100px; height: 100px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
  }

  .hero-deco-2 {
    bottom: 20px; left: -40px;
    width: 70px; height: 70px;
    border: 1px solid rgba(183,110,121,0.25);
    border-radius: 50%;
    animation: rotateSlow 15s linear infinite reverse;
  }

  @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  .hero-deco-flowers {
    position: absolute;
    font-size: 60px;
    opacity: 0.07;
    pointer-events: none;
  }

  /* ─── SCROLL INDICATOR ─── */

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;

  width: fit-content;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;

  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;

  animation: fadeUp 1s ease 1s both;

  pointer-events: none;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* animation */

@keyframes scrollLine {

  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }

}

/* MOBILE ADJUSTMENT */

@media (max-width:768px){

.scroll-hint{
bottom:25px;
font-size:9px;
}

.scroll-line{
height:40px;
}

}

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--charcoal);
    padding: 32px 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
  }

  .trust-item:hover { transform: translateY(-3px); }

  .trust-icon {
    width: 44px; height: 44px;
    background: rgba(183,110,121,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s;
  }

  .trust-item:hover .trust-icon { background: rgba(183,110,121,0.3); }

  .trust-text strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
  }

  .trust-text span {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 0; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
  }

  .section-label::before, .section-label::after {
    content: '';
    flex: none;
    width: 30px;
    height: 1px;
    background: var(--rose);
    opacity: 0.5;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
  }

  .text-center { text-align: center; }
  .text-center .section-label { justify-content: center; }
  .text-center .section-sub { margin: 0 auto; }

  /* ─── DIVIDER ─── */
  .elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 60px;
  }

  .elegant-divider::before, .elegant-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(183,110,121,0.3));
  }

  .elegant-divider::after {
    background: linear-gradient(to left, transparent, rgba(183,110,121,0.3));
  }

  .divider-icon { color: var(--gold); font-size: 16px; }

  /* ─── HOW IT WORKS ─── */
  .how-section { background: var(--white); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(16.67% + 30px);
    right: calc(16.67% + 30px);
    height: 1px;
    background: linear-gradient(to right, rgba(183,110,121,0.3), rgba(212,175,55,0.5), rgba(183,110,121,0.3));
  }

  .step {
    text-align: center;
    padding: 40px 28px;
    background: var(--beige);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183,110,121,0.04), rgba(212,175,55,0.04));
    opacity: 0;
    transition: opacity 0.4s;
  }

  .step:hover { transform: translateY(-8px); border-color: rgba(183,110,121,0.2); box-shadow: 0 20px 50px rgba(183,110,121,0.12); }
  .step:hover::before { opacity: 1; }

  .step-number {
    position: absolute;
    top: 20px; right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(183,110,121,0.08);
    line-height: 1;
    transition: color 0.3s;
  }

  .step:hover .step-number { color: rgba(183,110,121,0.14); }

  .step-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(183,110,121,0.12), rgba(212,175,55,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(183,110,121,0.15);
  }

  .step:hover .step-icon { transform: scale(1.08); box-shadow: 0 10px 30px rgba(183,110,121,0.2); }

  .step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--charcoal);
  }

  .step p { font-size: 13px; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

  /* ─── CREATE PREVIEW ─── */
  .create-section { background: var(--beige); position: relative; overflow: hidden; }

  .create-bg {
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(183,110,121,0.04), rgba(212,175,55,0.06));
    pointer-events: none;
  }

  .create-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .create-poster-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }

  .tilt-poster {
    transition: transform 0.15s ease;
    filter: drop-shadow(0 25px 50px rgba(30,30,30,0.22));
    cursor: pointer;
  }

  .create-poster {
    width: 280px;
    height: 392px;
    background: linear-gradient(160deg, #2C1654 0%, #1a0e36 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.25);
  }

  .create-poster-photo {
    width: 100%;
    height: 60%;
    background: linear-gradient(160deg, #8B6E5A 0%, #6B4C3B 40%, #4A2E20 100%);
    position: relative;
  }

  .create-poster-photo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(30,10,50,0.8));
  }

  .create-poster-content {
    padding: 18px;
    text-align: center;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .cp-mag { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 8px; letter-spacing: 4px; text-transform: uppercase; }
  .cp-names { font-family: 'Playfair Display', serif; color: var(--white); font-size: 22px; font-weight: 700; font-style: italic; line-height: 1.1; }
  .cp-rule { width: 50px; height: 1px; background: var(--gold); opacity: 0.7; }
  .cp-date { color: rgba(255,255,255,0.6); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; }

  .cp-watermark {
    position: absolute;
    top: 10px; left: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .create-text h2 { font-family: 'Playfair Display', serif; font-size: 44px; line-height: 1.15; color: var(--charcoal); margin-bottom: 24px; }
  .create-text h2 em { font-style: italic; color: var(--rose); }
  .create-text p { font-size: 15px; color: var(--text-muted); line-height: 1.9; font-weight: 300; margin-bottom: 32px; max-width: 400px; }

  .create-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

  .create-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 400;
  }

  .cf-dot {
    width: 8px; height: 8px;
    background: var(--rose);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── GALLERY ─── */
  .gallery-section { background: var(--white); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--beige-dark);
  }

  .gallery-poster {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }

  .gallery-poster-bg {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .gallery-item:hover .gallery-poster { transform: scale(1.05); }

  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,5,20,0.85) 0%, rgba(10,5,20,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }

  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-overlay h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 18px; font-style: italic; margin-bottom: 4px; }
  .gallery-overlay p { color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

  .gallery-colors { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }

  /* Fake magazine covers in different color themes */
  .mag-dark { background: linear-gradient(160deg, #1a1a2e 0%, #0a0a1a 100%); }
  .mag-blush { background: linear-gradient(160deg, #4a2035 0%, #2d1020 100%); }
  .mag-forest { background: linear-gradient(160deg, #0d2818 0%, #061509 100%); }
  .mag-navy { background: linear-gradient(160deg, #0f1f3d 0%, #060f1e 100%); }
  .mag-terracotta { background: linear-gradient(160deg, #3d1a0f 0%, #1e0a05 100%); }
  .mag-gold { background: linear-gradient(160deg, #2a1f05 0%, #120e02 100%); }

  .mag-photo-area {
    width: 100%;
    height: 60%;
    position: relative;
    overflow: hidden;
  }

  .mag-photo-inner {
    width: 100%;
    height: 100%;
    opacity: 0.7;
  }

  .mag-photo-inner.p1 { background: linear-gradient(135deg, #c9a96e, #8B5E3C, #5D2E1A); }
  .mag-photo-inner.p2 { background: linear-gradient(135deg, #d4a0a0, #8B3A5A, #4A1525); }
  .mag-photo-inner.p3 { background: linear-gradient(135deg, #a8c4a0, #4A7A50, #1A3A20); }
  .mag-photo-inner.p4 { background: linear-gradient(135deg, #a0b8d4, #3A5A8B, #0F2040); }
  .mag-photo-inner.p5 { background: linear-gradient(135deg, #d4b0a0, #8B4A3A, #3A1A10); }
  .mag-photo-inner.p6 { background: linear-gradient(135deg, #d4c878, #8B7A20, #3A3005); }

  .mag-content-area {
    padding: 14px;
    text-align: center;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mag-title-sm { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 7px; letter-spacing: 3px; text-transform: uppercase; }
  .mag-names-sm { font-family: 'Playfair Display', serif; color: var(--white); font-size: 16px; font-weight: 700; font-style: italic; line-height: 1.1; }
  .mag-rule-sm { width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }
  .mag-info-sm { color: rgba(255,255,255,0.5); font-size: 6px; letter-spacing: 1.5px; text-transform: uppercase; }
  .mag-badge-sm {
    position: absolute;
    top: 8px; right: 8px;
    width: 36px; height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 5px; font-weight: 700; color: #000;
    text-align: center;
    line-height: 1.2;
  }

  /* ─── TESTIMONIALS ─── */
  
  .testimonials-section { background: var(--charcoal); position: relative; overflow: hidden; }

  .testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(183,110,121,0.1), transparent);
    pointer-events: none;
  }

  .testimonials-section .section-title { color: var(--white); }

  .testimonials-section .section-label { color: var(--gold); }
  .testimonials-section .section-label::before,
  .testimonials-section .section-label::after { background: var(--gold); }

  .carousel-wrap { margin-top: 60px; overflow: hidden; position: relative; }

  .carousel-track {
    display: flex;
    gap: 28px;
    animation: scrollCarousel 30s linear infinite;
    width: max-content;
  }

  .carousel-wrap:hover .carousel-track { animation-play-state: paused; }

  @keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .testimonial-card {
    flex-shrink: 0;
    width: 360px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    transition: background 0.3s;
    backdrop-filter: blur(8px);
  }

  .testimonial-card:hover { background: rgba(255,255,255,0.08); }

  .stars { color: var(--gold); font-size: 16px; margin-bottom: 18px; letter-spacing: 2px; }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    background: rgba(183,110,121,0.2);
    border: 2px solid rgba(183,110,121,0.3);
    flex-shrink: 0;
  }

  .author-name { color: var(--white); font-size: 14px; font-weight: 600; }
  .author-loc { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.5px; }

  /* ─── WHY CHOOSE ─── */
  .why-section { background: var(--beige); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
  }

  .feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, var(--rose), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
  }

  .feature-card:hover { transform: translateY(-6px); border-color: rgba(183,110,121,0.15); box-shadow: 0 20px 45px rgba(183,110,121,0.1); }
  .feature-card:hover::after { transform: scaleX(1); }

  .feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(183,110,121,0.1), rgba(212,175,55,0.08));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    border: 1px solid rgba(183,110,121,0.12);
  }

  .feature-card:hover .feature-icon { transform: scale(1.08) rotate(3deg); }

  .feature-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 10px; color: var(--charcoal); }
  .feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

  /* ─── BLOG ─── */
  .blog-section { background: var(--white); }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
  }

  .blog-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--beige);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(183,110,121,0.08);
  }

  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(183,110,121,0.12); }

  .blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .blog-img-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
  }

  .blog-card:hover .blog-img-inner { transform: scale(1.05); }

  .bi1 { background: linear-gradient(135deg, #D4A0A0 0%, #B76E79 40%, #7A3545 100%); }
  .bi2 { background: linear-gradient(135deg, #D4C090 0%, #B8924A 40%, #7A5828 100%); }
  .bi3 { background: linear-gradient(135deg, #A0C4D4 0%, #4E8EA6 40%, #1A4D63 100%); }

  .blog-img-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    opacity: 0.3;
  }

  .blog-content { padding: 28px; }
  .blog-tag { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
  .blog-content h3 { font-family: 'Playfair Display', serif; font-size: 20px; line-height: 1.3; margin-bottom: 12px; color: var(--charcoal); }
  .blog-content p { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-weight: 300; }

  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--rose);
    text-decoration: none;
    transition: gap 0.3s;
  }

  .read-more:hover { gap: 12px; }

  /* ─── INSTAGRAM ─── */
  .insta-section { background: var(--beige); }

  .insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 50px;
  }

  .insta-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .insta-inner {
    width: 100%; height: 100%;
    transition: transform 0.5s ease;
  }

  .insta-item:hover .insta-inner { transform: scale(1.08); }

  .insta-inner.i1 { background: linear-gradient(135deg, #D4A0A0, #B76E79); }
  .insta-inner.i2 { background: linear-gradient(135deg, #D4C090, #C9A050); }
  .insta-inner.i3 { background: linear-gradient(135deg, #A8C4D4, #6A9AB4); }
  .insta-inner.i4 { background: linear-gradient(135deg, #C4D4A0, #8AA450); }
  .insta-inner.i5 { background: linear-gradient(135deg, #D4A4C4, #A464A4); }
  .insta-inner.i6 { background: linear-gradient(135deg, #D4B490, #B47A50); }

  .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(183,110,121,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 28px;
  }

  .insta-item:hover .insta-overlay { opacity: 1; }

  .insta-handle {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: var(--text-muted);
  }

  .insta-handle a {
    color: var(--rose);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
  }

  .insta-handle a:hover { gap: 12px; }

  /* ─── COUNTERS ─── */
  .counter-section { background: var(--white); padding: 70px 0; }

  .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
  }

  .counter-item {}

  .counter-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 8px;
  }

  .counter-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: linear-gradient(145deg, #0F0A1E 0%, #1A0E30 40%, #0A0510 100%);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(183,110,121,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .final-cta-inner { position: relative; z-index: 2; padding: 0 60px; }

  .final-cta .section-label { color: var(--gold); justify-content: center; }
  .final-cta .section-label::before,
  .final-cta .section-label::after { background: var(--gold); }

  .final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 68px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .final-cta h2 em { color: var(--rose); font-style: italic; display: block; }

  .final-cta p { font-size: 16px; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 48px; }

  .final-cta .btn-primary {
    font-size: 14px;
    padding: 20px 50px;
    box-shadow: 0 12px 50px rgba(183,110,121,0.5);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal-mid);
    color: rgba(255,255,255,0.7);
    padding: 70px 60px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand .logo { font-size: 20px; display: block; margin-bottom: 16px; }
  .footer-brand p { font-size: 13px; line-height: 1.8; font-weight: 300; margin-bottom: 24px; max-width: 260px; }

  .newsletter-form { display: flex; gap: 0; margin-bottom: 8px; }

  .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    outline: none;
    transition: border-color 0.3s;
  }

  .newsletter-form input:focus { border-color: var(--rose); }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

  .newsletter-form button {
    background: var(--rose);
    border: none;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
  }

  .newsletter-form button:hover { background: var(--rose-dark); }

  .footer-col h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover { color: var(--rose); }

  .social-icons { display: flex; gap: 12px; margin-top: 24px; }

  .social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
  }

  .social-icon:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-2px); }

  .footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  /* ─── BEFORE/AFTER SLIDER ─── */
  .ba-section { background: var(--white); }

  .ba-container {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    cursor: col-resize;
    user-select: none;
  }

  .ba-before, .ba-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .ba-before {
    background: #F5F0EB;
    display: flex; align-items: center; justify-content: center;
  }

  .ba-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.02s;
    background: linear-gradient(160deg, #1a1a2e 0%, #0a0a1a 100%);
    display: flex; align-items: center; justify-content: center;
  }

  .ba-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: none;
  }

  .ba-before .ba-label { left: 20px; }
  .ba-after .ba-label { right: 20px; }

  .ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    z-index: 10;
    cursor: col-resize;
    transform: translateX(-50%);
  }

  .ba-handle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
  }

  .ba-handle-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: var(--charcoal);
    font-size: 16px;
    pointer-events: none;
    white-space: nowrap;
  }

  .ba-before-content {
    width: 340px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .ba-before-content .icon { font-size: 48px; margin-bottom: 16px; }
  .ba-before-content h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
  .ba-before-content p { font-size: 13px; color: var(--text-muted); }

  .ba-after-mock {
    width: 240px;
    height: 336px;
    background: linear-gradient(160deg, #1a1a2e 0%, #0a0a1a 100%);
    border-radius: 4px;
    border: 1px solid rgba(212,175,55,0.2);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  }

  .ba-mock-photo {
    width: 100%; height: 60%;
    background: linear-gradient(135deg, #c9a96e, #8B5E3C, #5D2E1A);
    opacity: 0.7;
  }

  .ba-mock-bottom {
    height: 40%; padding: 14px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  }

  .ba-mock-bottom .t1 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 7px; letter-spacing: 3px; text-transform: uppercase; }
  .ba-mock-bottom .t2 { font-family: 'Playfair Display', serif; color: white; font-size: 18px; font-weight: 700; font-style: italic; }
  .ba-mock-bottom .t3 { width: 40px; height: 1px; background: var(--gold); opacity: 0.7; }
  .ba-mock-bottom .t4 { color: rgba(255,255,255,0.5); font-size: 7px; letter-spacing: 2px; text-transform: uppercase; }

  .ba-wrap-height { height: 380px; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up.delay-1 { transition-delay: 0.1s; }
  .fade-up.delay-2 { transition-delay: 0.2s; }
  .fade-up.delay-3 { transition-delay: 0.3s; }
  .fade-up.delay-4 { transition-delay: 0.4s; }
  .fade-up.delay-5 { transition-delay: 0.5s; }
  .fade-up.delay-6 { transition-delay: 0.6s; }

  /* ─── SECTION SEPARATOR ─── */
  .sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(183,110,121,0.2), rgba(212,175,55,0.3), rgba(183,110,121,0.2), transparent);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    header { padding: 18px 30px; }
    header.scrolled { padding: 14px 30px; }
    .hero-container { padding: 120px 30px 80px; gap: 50px; }
    .section-inner { padding: 0 30px; }
    .trust-bar { padding: 32px 30px; gap: 40px; }
    footer { padding: 60px 30px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-grid { grid-template-columns: repeat(2, 2fr); }
  }

  @media (max-width: 768px) {
    nav { display: none; }
    .hero-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-sub { margin: 0 auto 44px; }
    .hero-buttons { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .create-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .floating-btn { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 11px; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
  }



/* ─── STICKY HEADER ─── */

#mainHeader{
position:fixed;
top:0;
left:0;
right:0;
z-index:1000;
padding:18px 30px;
display:flex;
align-items:center;
justify-content:space-between;
transition:all 0.4s ease;
}

/* Scroll effect */

#mainHeader.scrolled{
background:rgba(249,246,244,0.92);
backdrop-filter:blur(20px);
border-bottom:1px solid rgba(183,110,121,0.15);
padding:5px 30px;
}

/* ─── LOGO ─── */

.logo{
font-family:'Playfair Display', serif;
font-size:22px;
font-weight:700;
color:var(--charcoal);
text-decoration:none;
letter-spacing:1px;
}

.logo span{
color:var(--rose);
}

/* ─── HEADER CTA BUTTON ─── */

.elementor-nav-menu .header-cta{
background:var(--rose);
color:var(--white) !important;
padding:10px 24px;
border-radius:50px;
font-size:12px !important;
letter-spacing:1px;
text-transform:uppercase;
transition:all 0.3s ease !important;
}

.elementor-nav-menu .header-cta::after{
display:none !important;
}

.elementor-nav-menu .header-cta:hover{
background:var(--rose-dark) !important;
transform:translateY(-1px);
box-shadow:0 8px 25px rgba(183,110,121,0.35) !important;
}

/* Remove underline animation from menu */

.elementor-nav-menu a::after{
display:none !important;
}

.elementor-nav-menu a:hover::after{
display:none !important;
}

/* keep only color change */

.elementor-nav-menu a{
text-decoration:none;
}

.elementor-nav-menu a:hover{
color:var(--rose);
}



.elementor-menu-toggle.elementor-active + .elementor-nav-menu--dropdown{
display:block;
}

.elementor-nav-menu--dropdown a{
display:block;
padding:12px 0;
font-size:14px;
}

/* FIX MOBILE MENU WHEN PAGE IS SCROLLED */
@media (max-width:1025px){

#mainHeader.scrolled{
background:#F9F6F4 !important;
backdrop-filter:none !important;
}

.elementor-nav-menu--dropdown{
background:#F9F6F4 !important;
}

}

@media (max-width:1025px){

.elementor-nav-menu--dropdown{
position:fixed !important;
top:0;
left:0;
width:100vw;
height:100vh;

background:rgba(249,246,244,0.92) !important;
backdrop-filter:blur(20px);

display:flex !important;
align-items:center;
justify-content:center;

z-index:9999;
padding:0 !important;
}

/* menu links */

.elementor-nav-menu--dropdown .elementor-item{
font-family:'Playfair Display', serif;
font-size:30px !important;
font-weight:500;
color:#1E1E1E !important;
transition:all .25s ease;
}

/* hover */

.elementor-nav-menu--dropdown .elementor-item:hover{
color:#B76E79 !important;
}

}

@media (max-width:1025px){

/* center dropdown menu */
.elementor-nav-menu--dropdown .elementor-nav-menu{
display:flex !important;
flex-direction:column !important;
align-items:center !important;
gap:16px !important;
}

/* pill style links */
.elementor-nav-menu--dropdown .elementor-nav-menu li a{

display:block !important;
width:220px !important;
text-align:center !important;

padding:14px 24px !important;

background:rgba(183,110,121,0.10) !important;
border:1px solid rgba(183,110,121,0.25) !important;

border-radius:50px !important;

font-family:'Playfair Display', serif !important;
font-size:18px !important;
font-weight:500 !important;

color:#1E1E1E !important;

transition:all .25s ease;
}

/* hover */
.elementor-nav-menu--dropdown .elementor-nav-menu li a:hover{

background:#B76E79 !important;
color:#ffffff !important;
border-color:#B76E79 !important;

transform:translateY(-2px);
box-shadow:0 8px 20px rgba(183,110,121,0.35);
}

/* active page */
.elementor-nav-menu--dropdown .elementor-item-active{

background:#B76E79 !important;
color:#ffffff !important;
}

}