/* ==========================================
   RESULTING — Premium Dark Landing
   ========================================== */

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

:root {
    --gold: #E8A87A;
    --gold-light: #F0BC95;
    --gold-dim: rgba(232, 168, 122, 0.1);
    --gold-border: rgba(232, 168, 122, 0.2);
    --bg: #162E28;
    --bg-2: #122620;
    --bg-3: #1A3530;
    --text: #EDE8DE;
    --text-dim: #7FA096;
    --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text);
    margin-bottom: 52px;
    padding-bottom: 22px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 44px; height: 1px;
    background: var(--gold);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 16px 34px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.28s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: #122620;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold-border);
}
.btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-2px);
}

/* ==========================================
   3D FLOATING DECORATIONS — CSS SHAPES
   ========================================== */

/* Generic float keyframes */
@keyframes float-diamond {
    0%   { transform: translateY(0px)   rotate(45deg) scale(1); }
    100% { transform: translateY(-30px) rotate(54deg) scale(1.06); }
}
@keyframes float-diamond-r {
    0%   { transform: translateY(-14px) rotate(45deg); }
    100% { transform: translateY(14px)  rotate(38deg); }
}
@keyframes float-circle {
    0%   { transform: translateY(0px)   scale(1); }
    100% { transform: translateY(-22px) scale(1.08); }
}
@keyframes float-line {
    0%   { transform: translateY(0px) rotate(0deg)   scaleX(1); }
    100% { transform: translateY(-18px) rotate(6deg) scaleX(1.12); }
}
@keyframes float-tri {
    0%   { transform: translateY(0px)   rotate(0deg); }
    100% { transform: translateY(-26px) rotate(12deg); }
}

/* Shared shape base */
.hero::after,
.pain::before, .pain::after,
.results::after,
.scarcity::before, .scarcity::after,
.final-cta::before, .final-cta::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(232, 168, 122, 0.11);
}

/* ─── Hero top-right diamond ─── */
.hero::after {
    width: 110px; height: 110px;
    top: 12%; right: 8%;
    animation: float-diamond 10s ease-in-out infinite alternate;
    border-color: rgba(232, 168, 122, 0.08);
}

/* ─── Pain section ─── */
.pain { position: relative; overflow: hidden; }
.pain::before {
    width: 80px; height: 80px;
    top: 8%; right: 4%;
    animation: float-diamond 9s ease-in-out 1s infinite alternate;
}
.pain::after {
    width: 40px; height: 40px;
    bottom: 12%; left: 7%;
    border-radius: 50%;
    border-color: rgba(232, 168, 122, 0.09);
    animation: float-circle 11s ease-in-out infinite alternate;
}

/* ─── Results section ─── */
.results { position: relative; overflow: hidden; }
.results::after {
    width: 66px; height: 66px;
    top: -33px; right: 12%;
    animation: float-diamond-r 8s ease-in-out infinite alternate;
    border-color: rgba(232, 168, 122, 0.07);
}

/* ─── Scarcity section ─── */
.scarcity { position: relative; overflow: hidden; }
.scarcity::before {
    width: 54px; height: 54px;
    top: 18%; left: 5%;
    animation: float-diamond 8s ease-in-out 2s infinite alternate;
}
.scarcity::after {
    width: 30px; height: 1px;
    bottom: 22%; right: 6%;
    border: none;
    border-top: 1px solid rgba(232, 168, 122, 0.14);
    animation: float-line 7s ease-in-out infinite alternate;
}

/* ─── Final CTA section ─── */
.final-cta { position: relative; overflow: hidden; }
.final-cta::before {
    width: 100px; height: 100px;
    top: 10%; right: 5%;
    animation: float-diamond 12s ease-in-out 0.5s infinite alternate;
    border-color: rgba(232, 168, 122, 0.07);
}
.final-cta::after {
    width: 48px; height: 48px;
    bottom: 15%; left: 6%;
    border-radius: 50%;
    border-color: rgba(232, 168, 122, 0.08);
    animation: float-circle 9s ease-in-out 1.5s infinite alternate;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 100px;
    position: relative;
    border-bottom: 1px solid var(--gold-border);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content,
.hero-logo {
    position: relative;
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-content { max-width: 820px; }

.hero-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 18px;
    border: 1px solid var(--gold-border);
    margin-bottom: 36px;
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 66px);
    line-height: 1.08;
    margin-bottom: 28px;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 28px;
}

.hero-accent {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 21px;
    color: var(--gold);
    margin-bottom: 52px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   QUALIFICATION
   ========================================== */
.qualification {
    padding: 100px 0;
    background: var(--bg-2);
}

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

.qual-divider {
    background: var(--gold-border);
    align-self: stretch;
}

.qual-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.qual-no .qual-list li {
    padding-left: 26px;
    position: relative;
    color: var(--text-dim);
    font-size: 15px;
}
.qual-no .qual-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.qual-yes-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
}

.qual-yes .qual-list li {
    padding-left: 26px;
    position: relative;
    font-size: 15px;
    color: var(--text);
}
.qual-yes .qual-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 14px;
    top: 3px;
}

/* ==========================================
   PAIN
   ========================================== */
.pain {
    padding: 100px 0;
    background: var(--bg);
}

.pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 64px;
    max-width: 660px;
}
.pain-list li {
    font-size: 18px;
    padding-left: 36px;
    position: relative;
}
.pain-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 13px;
    width: 18px; height: 1px;
    background: var(--gold);
}

.pain-closing {
    border-left: 2px solid var(--gold);
    padding: 28px 36px;
    background: var(--gold-dim);
}
.pain-result {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}
.pain-fix {
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 0.02em;
}

/* ==========================================
   RESULTS
   ========================================== */
.results {
    padding: 100px 0;
    background: var(--bg-3);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gold-border);
}

.result-card {
    background: var(--bg-3);
    padding: 44px 36px;
    transition: background 0.3s ease;
}
.result-card:hover { background: #1E3D36; }

.result-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.35;
    margin-bottom: 16px;
    line-height: 1;
}
.result-card p { font-size: 15px; line-height: 1.55; }

/* ==========================================
   FORMATS
   ========================================== */
.formats {
    padding: 100px 0;
    background: var(--bg);
}

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

.format-card {
    border: 1px solid var(--gold-border);
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    transition: border-color 0.3s ease;
}
.format-card:hover { border-color: rgba(232, 168, 122, 0.6); }

.format-card-featured {
    border-color: var(--gold);
    background: rgba(232, 168, 122, 0.04);
}

.format-badge {
    position: absolute;
    top: -1px; right: 28px;
    background: var(--gold);
    color: #122620;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
}

.format-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
}

.format-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.format-list li {
    font-size: 15px;
    color: var(--text-dim);
    padding-left: 22px;
    position: relative;
}
.format-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 12px; height: 1px;
    background: var(--gold);
}

.format-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--gold);
}

.formats-note {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--text-dim);
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

/* ==========================================
   PACKAGES
   ========================================== */
.packages {
    padding: 100px 0;
    background: var(--bg-2);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.package-card {
    border: 1px solid var(--gold-border);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: border-color 0.3s ease;
}
.package-card:hover { border-color: rgba(232, 168, 122, 0.5); }

.package-featured {
    border-color: var(--gold);
    background: #112822;
}

.package-tag {
    display: inline-block;
    background: var(--gold);
    color: #122620;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    align-self: flex-start;
}

.package-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}

.package-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
}
.package-desc small {
    display: block;
    margin-top: 5px;
    color: #555;
}

.package-duration {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
    border-top: 1px solid var(--gold-border);
    padding-top: 22px;
}
.package-list li {
    font-size: 14px;
    color: var(--text-dim);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.package-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    border-top: 1px solid var(--gold-border);
    padding-top: 22px;
}

.package-note {
    font-size: 13px;
    font-style: italic;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ==========================================
   WHY US
   ========================================== */
.why {
    padding: 100px 0;
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--gold-border);
}

.why-item {
    background: var(--bg);
    padding: 52px 44px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: background 0.3s ease;
}
.why-item:hover { background: #1A3530; }

.why-icon {
    color: var(--gold);
    font-size: 26px;
    line-height: 1.7;
    flex-shrink: 0;
}
.why-item p { font-size: 17px; line-height: 1.5; }

/* ==========================================
   SCARCITY
   ========================================== */
.scarcity {
    padding: 100px 0;
    background: var(--bg-3);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.scarcity-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.scarcity-title {
    font-size: clamp(28px, 4vw, 44px);
}
.scarcity-text {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
}
.scarcity-spots {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
}
.scarcity-spots span { color: var(--gold); }

/* ==========================================
   INDIVIDUAL SERVICES
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2px;
    background: var(--gold-border);
    margin-bottom: 44px;
}

.service-item {
    background: var(--bg);
    padding: 36px 30px;
    font-size: 15px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: default;
}
.service-item:hover {
    background: var(--gold-dim);
    color: var(--gold);
}

.services-cta { }

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    padding: 130px 0;
    background: var(--bg-2);
    text-align: center;
}

.final-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.final-title {
    font-size: clamp(28px, 4.5vw, 56px);
    max-width: 740px;
    margin-bottom: 24px;
    line-height: 1.15;
}
.final-sub {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 52px;
}
.final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 44px 0;
    background: var(--bg);
    border-top: 1px solid var(--gold-border);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--gold);
}
.footer-contact {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-contact:hover { color: var(--gold); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 720px) {
    .qual-grid { grid-template-columns: 1fr; gap: 44px; }
    .qual-divider { display: none; }
    .formats-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .hero-logo { font-size: 14px; letter-spacing: 0.24em; }
    .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
}

@media (max-width: 500px) {
    .hero { padding: 110px 0 70px; }
    .btn { padding: 14px 26px; font-size: 12px; }
    .hero-buttons,
    .final-buttons { flex-direction: column; align-items: flex-start; }
    .final-buttons { align-items: center; }
    .format-card { padding: 40px 28px; }
    .package-card { padding: 36px 26px; }
}
