 :root {
    --navy: #0E1F3D;
    --navy-deep: #081530;
    --navy-soft: #1A2C52;
    --gold: #D4AF5C;
    --gold-bright: #E8C16A;
    --gold-deep: #A8853D;
    --gold-pale: #F4E4B8;
    --green: #1F8A4C;
    --cream: #FAF6EC;
    --paper: #FFFCF5;
    --ink: #0E1F3D;
    --muted: #6B7B95;
    --line: rgba(212, 175, 92, 0.25);
    --line-strong: rgba(212, 175, 92, 0.5);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
  }

  /* === GRAIN TEXTURE OVERLAY === */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.04;
    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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* === TOP BAR === */
  .topbar {
    background: var(--navy-deep);
    color: var(--gold-pale);
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid var(--gold-deep);
  }

  .topbar strong {
    color: var(--gold-bright);
    font-weight: 600;
  }

  /* === HEADER === */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 252, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

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

  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .brand-logo {
    width: 38px;
    height: 50px;
    background: #fff url("/_asset/2027/pet_pet_2027_xs.png") no-repeat;
	background-size: 38px 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(14, 31, 61, 0.15);
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .brand-text .top {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
  }

  .brand-text .bot {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--navy);
    font-weight: 600;
    font-style: italic;
  }

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

  .nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }

  .nav a:hover {
    color: var(--gold-deep);
  }

  .nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav a:hover::after {
    transform: scaleX(1);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--navy);
    color: var(--gold-bright);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--navy);
    transition: all 0.3s;
    cursor: pointer;
  }

  .btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(212, 175, 92, 0.3);
  }

  .btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
  }

  .btn-outline:hover {
    background: var(--navy);
    color: var(--gold-bright);
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--navy-deep);
    border-color: var(--gold);
  }

  .btn-gold:hover {
    background: var(--navy-deep);
    color: var(--gold-bright);
    border-color: var(--navy-deep);
  }

  /* === HERO === */
  .hero {
    background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

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

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 32px;
  }

  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.98;
    color: var(--navy);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
  }

  .hero-title .accent {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 400;
  }

  .hero-title .underline {
    position: relative;
    display: inline-block;
  }

  .hero-title .underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: 0.4;
    z-index: -1;
  }

  .hero-lede {
    font-size: 18px;
    color: var(--navy-soft);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 540px;
  }

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

  .hero-meta {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }

  .hero-meta-item .label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }

  .hero-meta-item .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy);
    font-weight: 600;
  }

  /* Logo display */
  .hero-logo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-logo-wrap::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(212, 175, 92, 0.18) 0%, transparent 60%);
    z-index: 0;
  }

  .hero-logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(14, 31, 61, 0.25));
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* Decorative stars around logo */
  .hero-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-stars span {
    position: absolute;
    color: var(--gold);
    font-size: 18px;
    opacity: 0.6;
    animation: twinkle 4s ease-in-out infinite;
  }

  .hero-stars span:nth-child(1) { top: 8%; left: 10%; animation-delay: 0s; }
  .hero-stars span:nth-child(2) { top: 20%; right: 5%; animation-delay: 1s; font-size: 12px; }
  .hero-stars span:nth-child(3) { bottom: 15%; left: 8%; animation-delay: 2s; font-size: 14px; }
  .hero-stars span:nth-child(4) { bottom: 25%; right: 10%; animation-delay: 0.5s; }

  @keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.1); }
  }

  /* === MARQUEE / SCROLLING TRUST === */
  .trust-bar {
    background: var(--navy-deep);
    color: var(--gold-pale);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
  }

  .trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    text-align: center;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .trust-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-bright);
    font-weight: 600;
  }

  .trust-sep {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
  }

  /* === SECTIONS === */
  section {
    padding: 120px 0;
    position: relative;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 24px;
  }

  .section-eyebrow::before,
  .section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .section-eyebrow.left::before {
    display: none;
  }

  .section-eyebrow.left {
    padding-right: 0;
  }

  .section-eyebrow.left::after {
    display: none;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.05;
    color: var(--navy);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .section-title .it {
    font-style: italic;
    color: var(--gold-deep);
  }

  .section-lede {
    font-size: 18px;
    color: var(--navy-soft);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 64px;
  }

  /* === CONSTAT SECTION === */
  .constat {
    background: var(--paper);
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stat-card {
    padding: 56px 32px;
    text-align: left;
    border-right: 1px solid var(--line);
    position: relative;
    transition: background 0.3s;
  }

  .stat-card:last-child {
    border-right: none;
  }

  .stat-card:hover {
    background: rgba(212, 175, 92, 0.04);
  }

  .stat-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 88px;
    line-height: 1;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .stat-card .desc {
    font-size: 14px;
    color: var(--navy-soft);
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .stat-card .src {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-style: italic;
  }

  /* === PROPOSITION SECTION === */
  .proposition {
    background: var(--navy-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .proposition::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 92, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .proposition .section-eyebrow {
    color: var(--gold-bright);
  }

  .proposition .section-eyebrow::before,
  .proposition .section-eyebrow::after {
    background: var(--gold);
  }

  .proposition .section-title {
    color: var(--cream);
  }

  .proposition .section-title .it {
    color: var(--gold-bright);
  }

  .proposition .section-lede {
    color: rgba(250, 246, 236, 0.75);
  }

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

  .pillar {
    padding: 40px 28px;
    border: 1px solid rgba(212, 175, 92, 0.2);
    background: rgba(212, 175, 92, 0.03);
    transition: all 0.3s;
    position: relative;
  }

  .pillar:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 92, 0.08);
    transform: translateY(-4px);
  }

  .pillar .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1;
    color: var(--gold-bright);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .pillar .label {
    font-size: 14px;
    color: rgba(250, 246, 236, 0.85);
    line-height: 1.5;
  }

  .pillar .small {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 600;
    margin-bottom: 20px;
  }

  /* === METHOD SECTION === */
  .method {
    background: var(--cream);
  }

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

  .method-content {
    position: sticky;
    top: 120px;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .step {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    transition: padding 0.3s;
  }

  .step:hover {
    padding-left: 12px;
  }

  .step:last-child {
    border-bottom: 1px solid var(--line);
  }

  .step .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    line-height: 1;
    color: var(--gold-deep);
    font-weight: 500;
    font-style: italic;
  }

  .step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .step p {
    color: var(--navy-soft);
    font-size: 15px;
    line-height: 1.6;
  }

  /* === GRILLE NOTATION === */
  .grille {
    background: var(--paper);
  }

  .grille-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    background: white;
    border: 1px solid var(--line);
  }

  .grille-table thead {
    background: var(--navy);
    color: var(--gold-bright);
  }

  .grille-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .grille-table th:nth-child(2) {
    text-align: center;
    width: 120px;
  }

  .grille-table th:last-child {
    text-align: left;
    width: 280px;
  }

  .grille-table td {
    padding: 18px 24px;
    border-top: 1px solid var(--line);
    font-size: 15px;
    color: var(--navy);
  }

  .grille-table td:nth-child(2) {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold-deep);
    font-weight: 600;
  }

  .grille-table td:last-child {
    color: var(--muted);
    font-style: italic;
    font-size: 14px;
  }

  .grille-table tbody tr:hover {
    background: var(--cream);
  }

  .grille-note {
    margin-top: 32px;
    padding: 24px 32px;
    background: rgba(31, 138, 76, 0.06);
    border-left: 3px solid var(--green);
    color: var(--navy-soft);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
  }

  /* === BENEFITS === */
  .benefits {
    background: var(--navy);
    color: var(--cream);
  }

  .benefits .section-title {
    color: var(--cream);
  }

  .benefits .section-title .it {
    color: var(--gold-bright);
  }

  .benefits .section-lede {
    color: rgba(250, 246, 236, 0.75);
  }

  .benefits .section-eyebrow {
    color: var(--gold-bright);
  }

  .benefits .section-eyebrow::before,
  .benefits .section-eyebrow::after {
    background: var(--gold);
  }

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

  .benefit-card {
    padding: 48px 36px;
    border: 1px solid rgba(212, 175, 92, 0.2);
    background: rgba(212, 175, 92, 0.03);
    position: relative;
    transition: all 0.4s;
  }

  .benefit-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 92, 0.08);
  }

  .benefit-card .ribbon {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold-bright);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }

  .benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.15;
  }

  .benefit-card ul {
    list-style: none;
    padding: 0;
  }

  .benefit-card li {
    padding: 14px 0 14px 28px;
    border-top: 1px solid rgba(212, 175, 92, 0.15);
    font-size: 14px;
    color: rgba(250, 246, 236, 0.8);
    position: relative;
    line-height: 1.5;
  }

  .benefit-card li:last-child {
    border-bottom: 1px solid rgba(212, 175, 92, 0.15);
  }

  .benefit-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--gold);
    font-size: 14px;
  }

  /* === CALENDAR & PRICING === */
  .pricing {
    background: var(--cream);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .price-card {
    background: white;
    padding: 48px 40px;
    border: 1px solid var(--line);
    position: relative;
    transition: all 0.3s;
  }

  .price-card.featured {
    background: var(--navy-deep);
    color: var(--cream);
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(14, 31, 61, 0.2);
  }

  .price-card .badge {
    position: absolute;
    top: -14px;
    left: 40px;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .price-label {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .price-card.featured .price-label {
    color: var(--gold-bright);
  }

  .price-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    line-height: 1;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .price-card.featured .price-headline {
    color: var(--gold-bright);
  }

  .price-deadline {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 32px;
  }

  .price-card.featured .price-deadline {
    color: rgba(250, 246, 236, 0.6);
  }

  .price-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--line);
  }

  .price-card.featured .price-list {
    border-top-color: rgba(212, 175, 92, 0.25);
  }

  .price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--navy);
  }

  .price-card.featured .price-list li {
    color: rgba(250, 246, 236, 0.85);
    border-bottom-color: rgba(212, 175, 92, 0.15);
  }

  .price-list li .amt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
  }

  .price-card.featured .price-list li .amt {
    color: var(--gold-bright);
  }

  .price-note {
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--paper);
    border: 1px solid var(--line);
    text-align: center;
    font-size: 14px;
    color: var(--navy-soft);
  }

  .price-note strong {
    color: var(--gold-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
  }

  /* === FAQ === */
  .faq {
    background: var(--paper);
  }

  .faq-list {
    max-width: 880px;
    margin: 0 auto;
  }

  .faq-item {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    cursor: pointer;
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--navy);
    font-weight: 600;
    transition: color 0.2s;
  }

  .faq-item:hover .faq-q {
    color: var(--gold-deep);
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--gold-deep);
    font-size: 18px;
  }

  .faq-item.open .faq-toggle {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--navy-soft);
    line-height: 1.7;
  }

  .faq-item.open .faq-a {
    max-height: 240px;
    padding-top: 16px;
  }

  /* === CTA === */
  .cta-section {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--cream);
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }

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

  .cta-stars {
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 16px;
    margin-bottom: 24px;
    opacity: 0.7;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .cta-title .it {
    font-style: italic;
    color: var(--gold-bright);
  }

  .cta-lede {
    font-size: 19px;
    color: rgba(250, 246, 236, 0.75);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }

  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .cta-section .btn {
    padding: 18px 36px;
    font-size: 13px;
  }

  .cta-section .btn-gold {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--navy-deep);
    border: none;
    font-weight: 700;
  }

  .cta-section .btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(212, 175, 92, 0.5);
  }

  .cta-section .btn-ghost:hover {
    background: rgba(212, 175, 92, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
  }

  .cta-contact {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(250, 246, 236, 0.6);
  }

  .cta-contact a {
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .cta-contact a:hover {
    border-bottom-color: var(--gold-bright);
  }

  /* === FOOTER === */
  .footer {
    background: var(--navy-deep);
    color: rgba(250, 246, 236, 0.6);
    padding: 64px 0 32px;
    border-top: 1px solid var(--gold-deep);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer h5 {
    color: var(--gold-bright);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--cream);
    line-height: 1.5;
    max-width: 380px;
    margin-top: 12px;
  }

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

  .footer li {
    padding: 6px 0;
    font-size: 14px;
  }

  .footer a {
    color: rgba(250, 246, 236, 0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer a:hover {
    color: var(--gold-bright);
  }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 92, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(250, 246, 236, 0.4);
  }

  /* === RESPONSIVE === */
  @media (max-width: 980px) {
    .container { padding: 0 24px; }
    .nav { display: none; }
    .hero { padding: 56px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-logo { max-width: 280px; }
    section { padding: 80px 0; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-card { border-right: none; border-bottom: 1px solid var(--line); }
    .stat-card:last-child { border-bottom: none; }
    .pillars { grid-template-columns: 1fr 1fr; gap: 16px; }
    .method-grid { grid-template-columns: 1fr; gap: 48px; }
    .method-content { position: relative; top: 0; }
    .benefits-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .grille-table { font-size: 13px; }
    .grille-table th, .grille-table td { padding: 14px 16px; }
  }

  @media (max-width: 580px) {
    .pillars { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-meta { gap: 32px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .grille-table thead { display: none; }
    .grille-table tr { display: block; padding: 16px; border-bottom: 1px solid var(--line); }
    .grille-table td { display: block; padding: 4px 0; border: none; text-align: left !important; }
    .grille-table td:nth-child(2) { font-size: 18px; }
  }
