:root {
    --ink: #1c1917;
    --ink-soft: #4a433c;
    --muted: #8a8178;
    --gold: #b8956a;
    --gold-soft: #d4b896;
    --paper: #f6f1ea;
    --paper-2: #efe6db;
    --white: #fffcf8;
    --line: #eadfd3;
    --danger: #9b3d2c;
    --ok: #2f6b4f;
    --shadow: 0 20px 50px rgba(28, 25, 23, .08);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: Outfit, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.55;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 7vw;
    position: relative;
    z-index: 5;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}
.brand-mark {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(184,149,106,.18);
}
.nav nav { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--ink-soft); }
.nav nav a.is-active { color: var(--ink); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ink);
    color: var(--paper);
    border: 0;
    border-radius: 999px;
    padding: 14px 26px;
    font: 500 14px/1 var(--sans);
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); background: #2a2522; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--white); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a88355; }

.hero {
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    padding: 0 7vw 80px;
}
.kicker {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.hero h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(42px, 6.4vw, 88px);
    line-height: .95;
    margin: 0 0 22px;
    letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: #6d5a45; }
.hero .lede {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 440px;
    margin: 0 0 32px;
    font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--muted); margin-top: 18px; }

.hero-visual {
    position: relative;
}
.hero-photo {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    min-height: 280px;
    width: 100%;
    background: var(--paper-2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.hero-photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(72vh, 580px);
    object-fit: contain;
    display: block;
}
.hero-photo--empty {
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
    letter-spacing: .06em;
    min-height: 380px;
}
.hero-photo--empty small { display: block; margin-top: 8px; font-size: 12px; letter-spacing: 0; }

.section-intro {
    max-width: 560px;
    color: var(--ink-soft);
    font-weight: 300;
    margin: -18px 0 32px;
}
.section-alt { background: #f1ebe3; }
.about-copy {
    max-width: 680px;
    font-size: 17px;
    font-weight: 300;
    color: var(--ink-soft);
    margin-bottom: 28px;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.steps-4 { grid-template-columns: repeat(2, 1fr); }
.faq { max-width: 760px; }
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
}
.faq-item summary {
    cursor: pointer;
    font-size: 18px;
    padding: 16px 0;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:after {
    content: "+";
    float: right;
    color: var(--gold);
}
.faq-item[open] summary:after { content: "–"; }
.faq-item p {
    margin: 0 0 16px;
    color: var(--ink-soft);
    font-weight: 300;
}
.cta-band { text-align: center; }
.cta-band .section-intro { margin-left: auto; margin-right: auto; }
.about-with-photo h2 { margin-top: 0; }
.photo-contain {
    margin: 0;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}
.photo-contain img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
}
.band-photo {
    max-width: 880px;
    margin: 0 auto 8px;
}
.gender-note {
    background: #f3ebe1;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0 0 22px;
}
.gender-picks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
}
.gender-picks label {
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}
.gender-picks input { margin-right: 6px; }
.gender-picks label.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pay-methods { display: grid; gap: 8px; margin-bottom: 18px; }
.pay-methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    background: var(--paper);
}
.pay-methods label.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.havale-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.6;
}
.havale-box strong { display: inline-block; min-width: 72px; }
#paytr-frame-wrap iframe { width: 100%; min-height: 420px; border: 0; border-radius: 16px; }

.section { padding: 80px 7vw; }
.section h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    margin: 0 0 36px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px 24px;
    min-height: 180px;
}
.step span {
    display: block;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; font-size: 20px; font-weight: 500; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; font-weight: 300; }

.site-foot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 7vw 40px;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid var(--line);
}
.foot-disclaimer {
    margin: 0;
    max-width: 720px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.foot-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}
.foot-links a:hover { color: var(--ink); }
.foot-copy { margin: 0; font-size: 12px; }

.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    align-items: start;
}
.legal-nav { display: grid; gap: 6px; }
.legal-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--ink-soft);
}
.legal-nav a:hover, .legal-nav a.is-on { background: var(--white); color: var(--ink); }
.legal-body h2 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    margin: 22px 0 8px;
}
.legal-body p { color: var(--ink-soft); font-size: 15px; font-weight: 300; }
.legal-lead { font-size: 16px !important; color: var(--ink) !important; font-weight: 400 !important; }
.check-legal {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 18px 0 0;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.45;
}
.check-legal input { margin-top: 3px; flex-shrink: 0; }
.check-legal a { text-decoration: underline; text-underline-offset: 2px; }

.page {
    padding: 12px 7vw 80px;
    max-width: 1080px;
    margin: 0 auto;
}
.page h1 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 56px);
    margin: 10px 0 8px;
}
.sub { color: var(--muted); margin-bottom: 28px; }

.wizard-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}
.wizard-progress i {
    flex: 1;
    height: 3px;
    background: var(--line);
    border-radius: 99px;
}
.wizard-progress i.on { background: var(--gold); }

.panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.cal-head h2 { font-family: var(--serif); font-size: 28px; margin: 0; font-weight: 500; }
.icon-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--line); background: transparent; cursor: pointer;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}
.cal-grid small {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 0;
}
.day {
    aspect-ratio: 1;
    border: 0;
    background: transparent;
    border-radius: 14px;
    font: 500 14px var(--sans);
    color: var(--ink);
    cursor: pointer;
}
.day:hover:not(:disabled) { background: var(--paper-2); }
.day:disabled { color: #cbbfb3; cursor: default; }
.day.sel { background: var(--ink); color: var(--paper); }
.day.today { box-shadow: inset 0 0 0 1px var(--gold); }

.slots { margin-top: 26px; }
.slots h3 { font-size: 15px; font-weight: 500; margin: 0 0 12px; }
.slot-list { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 999px;
    padding: 10px 16px;
    font: 500 14px var(--sans);
    cursor: pointer;
}
.slot:hover { border-color: var(--gold); }
.slot.sel { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slot:disabled { opacity: .35; cursor: not-allowed; }
.empty-slots { color: var(--muted); font-size: 14px; }

.wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label.f { display: grid; gap: 6px; font-size: 13px; color: var(--ink-soft); }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=time], select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbf8f4;
    font: 400 15px var(--sans);
    color: var(--ink);
    outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: #fff; }
.help { font-size: 13px; color: var(--muted); }

.pay-card {
    background: linear-gradient(145deg, #2a2420, #1c1917);
    color: #f6f1ea;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 18px;
    min-height: 168px;
    position: relative;
    overflow: hidden;
}
.pay-card:before {
    content: "";
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(184,149,106,.25);
    right: -40px; top: -50px;
}
.pay-card .chip { width: 36px; height: 26px; border-radius: 6px; background: linear-gradient(#e8d39a,#b8956a); margin-bottom: 28px; }
.pay-card .num { letter-spacing: .18em; font-size: 18px; margin-bottom: 18px; }
.pay-summary { display: flex; justify-content: space-between; padding: 8px 0 18px; font-size: 15px; }
.badge-mock {
    display: inline-block;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-soft);
    padding: 4px 8px;
    border-radius: 99px;
    margin-bottom: 10px;
}

.success-box { text-align: center; padding: 20px 8px 8px; }
.success-box h2 { font-family: var(--serif); font-size: 36px; font-weight: 500; margin: 0 0 10px; }
.alert {
    background: #fde8e4;
    color: var(--danger);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    margin: 10px 0;
}
.ok-msg { color: var(--ok); font-size: 14px; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 24px; }
    .hero-visual { order: -1; }
    .hero-photo { min-height: 220px; }
    .steps, .split, .steps-4, .about-with-photo { grid-template-columns: 1fr; }
    .form-grid.two { grid-template-columns: 1fr; }
    .nav { padding: 18px 22px; }
    .page, .section { padding-left: 22px; padding-right: 22px; }
    .legal-layout { grid-template-columns: 1fr; }
}
