/* ══════════════════════════════════════════
    FOOTER CONTACT FORM
══════════════════════════════════════════ */
.footer-contact-form {
    margin: 2.5rem auto 1.5rem auto;
    max-width: 420px;
    background: #faf8f4;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(44, 40, 32, 0.04);
    padding: 2rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-form-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-form input,
.footer-contact-form select,
.footer-contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--stone);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    color: var(--charcoal);
    background: white;
    transition: border 0.2s;
}

.footer-contact-form input:focus,
.footer-contact-form select:focus,
.footer-contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.footer-contact-form select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg fill="%23c9a96e" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 1rem center/1.2em auto, white;
}

.footer-contact-form textarea {
    min-height: 80px;
    resize: vertical;
}

.footer-contact-form button[type="submit"] {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    padding: 0.85rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.footer-contact-form button[type="submit"]:hover {
    background: var(--gold-light);
}

/* ══════════════════════════════════════════
    RESET & ROOT
══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e4cfaa;
    --gold-pale: rgba(201, 169, 110, 0.12);
    --ivory: #faf8f4;
    --linen: #f3ede4;
    --stone: #e5ddd4;
    --dark: #1a1614;
    --charcoal: #2c2820;
    --mid: #7a6e68;
    --rose: #c4907a;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

/* ══════════════════════════════════════════
    NAV
══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    min-height: 60px;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--charcoal);
}

.nav-cta {
    background: var(--charcoal);
    color: white;
    padding: 0.55rem 1.4rem;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s;
    font-family: 'Raleway', sans-serif;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ══════════════════════════════════════════
    HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6.5rem 1.25rem 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 22, 20, 0.3) 0%, rgba(26, 22, 20, 0.65) 100%);
}

.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: rgba(201, 169, 110, 0.4);
}

.c-tl {
    top: 80px;
    left: 5vw;
    border-top: 1px solid;
    border-left: 1px solid;
}

.c-tr {
    top: 80px;
    right: 5vw;
    border-top: 1px solid;
    border-right: 1px solid;
}

.c-bl {
    bottom: 40px;
    left: 5vw;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.c-br {
    bottom: 40px;
    right: 5vw;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    animation: heroIn 1.4s ease;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
    }
}

.hero-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.hero-logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    letter-spacing: 0.12em;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-logo-text em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold-light);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hd-line {
    width: 80px;
    height: 1px;
    background: rgba(201, 169, 110, 0.5);
}

.hd-gem {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.85rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    transition: all 0.25s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    padding: 0.85rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    transition: all 0.25s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════
    SECTION COMMONS
══════════════════════════════════════════ */
.section {
    padding: 6rem 5vw;
}

.section-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.section-center {
    text-align: center;
}

.sep {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 5vw;
}

.sep::before,
.sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--stone));
}

.sep::before {
    background: linear-gradient(to left, transparent, var(--stone));
}

.sep span {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.6;
}

.s-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.s-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 1.4rem;
    line-height: 1.2;
}

.s-body {
    font-size: 0.82rem;
    line-height: 2.2;
    color: var(--mid);
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
    INTRO BAND
══════════════════════════════════════════ */
.intro-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.intro-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: saturate(0.85);
    display: block;
}

/* ══════════════════════════════════════════
    BENEFICIOS
══════════════════════════════════════════ */
.benefits-section {
    background: var(--linen);
    padding: 6rem 5vw;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--stone);
    border: 1px solid var(--stone);
    margin-top: 3.5rem;
}

.benefit-card {
    background: var(--linen);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: background 0.3s;
    position: relative;
}

.benefit-card:hover {
    background: white;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    opacity: 0.6;
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.7rem;
}

.benefit-desc {
    font-size: 0.75rem;
    line-height: 1.9;
    color: var(--mid);
    font-weight: 300;
}

/* ══════════════════════════════════════════
    ESTILOS / PLANTILLAS
══════════════════════════════════════════ */
.templates-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

.tpl-card {
    text-decoration: none;
    display: block;
    border: 1px solid var(--stone);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.tpl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.tpl-thumb {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.tpl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.85);
    transition: filter 0.4s, transform 0.5s;
    display: block;
}

.tpl-card:hover .tpl-thumb img {
    filter: saturate(1) brightness(0.95);
    transform: scale(1.05);
}

.tpl-num {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
}

.tpl-body {
    padding: 1rem 1.2rem 1.3rem;
}

.tpl-tag {
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.tpl-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.tpl-desc {
    font-size: 0.62rem;
    color: var(--mid);
    line-height: 1.5;
}

.tpl-palette {
    display: flex;
    gap: 3px;
    margin-top: 0.8rem;
}

.tpl-palette span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.card-pkg {
    font-family: 'Cinzel', serif;
    font-size: 0.48rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.pkg-elegante {
    background: #f0ece4;
    color: #6b5e42;
    border: 1px solid #d9cdb8;
}

.pkg-premium {
    background: var(--dark);
    color: var(--gold);
    border: 1px solid var(--dark);
}

.pkg-luxury {
    background: linear-gradient(135deg, #c9a96e, #e8c97a);
    color: var(--dark);
    border: none;
}

/* ══════════════════════════════════════════
    PROCESO
══════════════════════════════════════════ */
.process-section {
    background: var(--dark);
    padding: 6rem 5vw;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3.5rem;
}

.process-step {
    background: var(--dark);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.step-num {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: rgba(201, 169, 110, 0.2);
    line-height: 1;
    display: block;
    margin-bottom: 1.2rem;
}

.step-icon {
    font-size: 1.4rem;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.process-step:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(201, 169, 110, 0.3);
    z-index: 1;
}

/* ══════════════════════════════════════════
    PRECIOS
══════════════════════════════════════════ */
.pricing-section {
    background: var(--ivory);
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.price-card {
    background: white;
    border: 1px solid var(--stone);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.price-card.featured .price-tag {
    color: var(--gold-light);
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.4);
}

.price-card.featured .price-list li {
    color: rgba(255, 255, 255, 0.65);
}

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

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 0.52rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
    white-space: nowrap;
}

.price-eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.price-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.price-card.featured .price-name {
    color: white;
}

.price-tag {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 3rem;
    color: var(--dark);
    line-height: 1;
}

.price-from {
    font-size: 0.6rem;
    vertical-align: super;
}

.price-desc {
    font-size: 0.68rem;
    color: var(--mid);
    margin: 0.5rem 0 1.8rem;
    letter-spacing: 0.06em;
}

.price-divider {
    height: 1px;
    background: var(--stone);
    margin-bottom: 1.8rem;
}

.price-card.featured .price-divider {
    background: rgba(255, 255, 255, 0.1);
}

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

.price-list li {
    font-size: 0.73rem;
    color: var(--mid);
    padding: 0.45rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    line-height: 1.5;
}

.price-card.featured .price-list li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.price-list li::before {
    content: '✦';
    font-size: 0.5rem;
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.price-note-luxury {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.03));
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pnp-title {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pnp-text {
    font-size: 0.7rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

.price-btn {
    display: block;
    padding: 0.8rem;
    background: var(--charcoal);
    color: white;
    text-decoration: none;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    border-radius: 2px;
    transition: background 0.25s;
}

.price-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.price-card.featured .price-btn {
    background: var(--gold);
    color: var(--dark);
}

.price-card.featured .price-btn:hover {
    background: var(--gold-light);
}

/* ══════════════════════════════════════════
    RSVP COMPARE TABLE
══════════════════════════════════════════ */
.rsvp-compare-wrap {
    margin-top: 3rem;
    padding: 0 1rem;
}

.rsvp-compare-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.rsvp-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rsvp-compare-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-size: 0.76rem;
    color: var(--mid);
}

.rsvp-compare-table thead tr {
    background: var(--dark);
    color: white;
}

.rsvp-compare-table thead th {
    padding: 1rem 1.2rem;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rsvp-compare-table thead th span {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    opacity: 0.55;
    text-transform: none;
    margin-top: 0.15rem;
}

.rsvp-compare-table thead th.rsvp-col-luxury {
    color: var(--gold);
}

.rsvp-compare-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.2s;
}

.rsvp-compare-table tbody tr:hover {
    background: #faf9f7;
}

.rsvp-compare-table tbody td {
    padding: 1rem 1.2rem;
    vertical-align: top;
    line-height: 1.6;
}

.rsvp-compare-table tbody td.rsvp-feature {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--dark);
    white-space: nowrap;
    font-weight: 400;
}

.rsvp-compare-table tbody td.rsvp-col-luxury {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.07), rgba(201, 169, 110, 0.02));
    border-left: 2px solid rgba(201, 169, 110, 0.4);
    color: var(--charcoal);
}

.rsvp-compare-table tbody td.rsvp-col-luxury strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.2rem;
}

/* ══════════════════════════════════════════
    ADD-ONS
══════════════════════════════════════════ */
.addons-section {
    background: var(--linen);
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.addons-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.addons-table thead tr {
    background: var(--dark);
    color: white;
}

.addons-table th {
    padding: 1.1rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-align: left;
}

.addons-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.2s;
}

.addons-table tbody tr:hover {
    background: white;
}

.addons-table td {
    padding: 1.1rem 1.5rem;
    font-size: 0.78rem;
    color: var(--charcoal);
    vertical-align: middle;
}

.addons-table td:last-child {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.addon-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    display: inline-block;
    margin-right: 0.6rem;
    opacity: 0.5;
}

.addon-wa-desc {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.76rem;
    color: var(--mid);
    line-height: 1.7;
}

.addon-wa-table-wrap {
    display: inline-block;
    border: 1px solid var(--stone);
    border-radius: 4px;
    overflow: hidden;
    min-width: 220px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.addon-wa-table {
    border-collapse: collapse;
    width: 100%;
    font-size: 0.73rem;
    min-width: 220px;
}

.addon-wa-table thead tr {
    background: var(--charcoal);
}

.addon-wa-table thead th {
    padding: 0.55rem 1.2rem;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: left;
}

.addon-wa-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.15s;
}

.addon-wa-table tbody tr:last-child {
    border-bottom: none;
}

.addon-wa-table tbody tr:hover {
    background: rgba(201, 169, 110, 0.07);
}

.addon-wa-table tbody td {
    padding: 0.6rem 1.2rem;
    color: var(--charcoal);
    font-size: 0.73rem;
    background: white;
}

.addon-wa-table tbody td:last-child {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.06em;
    font-size: 0.73rem !important;
}

.addon-wa-price {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    color: var(--gold) !important;
    letter-spacing: 0.08em;
    vertical-align: middle;
    text-align: center;
    font-size: 0.72rem !important;
    line-height: 1.6;
}

.addon-wa-price strong {
    display: block;
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--gold);
}

/* ══════════════════════════════════════════
    TABLA COMPARATIVA DE PLANES
══════════════════════════════════════════ */
.compare-plans-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.cp-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    -webkit-overflow-scrolling: touch;
}

.cp-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.cp-table thead tr {
    border-bottom: 2px solid var(--stone);
}

.cp-feature-col {
    width: 42%;
}

.cp-table thead th {
    padding: 0 0.8rem 1.5rem;
    text-align: center;
    vertical-align: bottom;
}

.cp-plan-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 1rem;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.cp-head-elegante {
    background: #f0ebe0;
    border: 1px solid #d9cdb8;
    border-bottom: none;
}

.cp-head-premium {
    background: var(--dark);
    border: 1px solid var(--dark);
    border-bottom: none;
}

.cp-head-luxury {
    background: linear-gradient(135deg, #c9a96e 0%, #e8c97a 100%);
    border: none;
    border-bottom: none;
}

.cp-plan-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.45rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--dark);
    color: var(--gold);
    padding: 0.2rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.15rem;
}

.cp-plan-name {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cp-head-elegante .cp-plan-name {
    color: #5a4e38;
}

.cp-head-premium .cp-plan-name {
    color: var(--gold-light);
}

.cp-head-luxury .cp-plan-name {
    color: var(--dark);
}

.cp-plan-price {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1;
}

.cp-head-elegante .cp-plan-price {
    color: var(--charcoal);
}

.cp-head-premium .cp-plan-price {
    color: white;
}

.cp-head-luxury .cp-plan-price {
    color: var(--dark);
}

.cp-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.15s;
}

.cp-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.6);
}

.cp-table tbody td {
    padding: 0.85rem 0.8rem;
    font-size: 0.75rem;
    color: var(--mid);
    text-align: center;
    vertical-align: middle;
}

.cp-feature {
    text-align: left !important;
    color: var(--charcoal) !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.02em;
    padding-left: 0 !important;
}

.cp-group-row td {
    background: var(--stone);
    font-family: 'Cinzel', serif;
    font-size: 0.52rem !important;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--mid) !important;
    text-align: left !important;
    padding: 0.6rem 0.8rem !important;
    border-bottom: none;
}

.cp-col-luxury {
    background: linear-gradient(180deg,
            rgba(201, 169, 110, 0.08) 0%,
            rgba(201, 169, 110, 0.04) 100%);
    border-left: 2px solid rgba(201, 169, 110, 0.35);
    border-right: 2px solid rgba(201, 169, 110, 0.35);
}

.cp-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 600;
}

.cp-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.04);
    color: #bbb;
    border-radius: 50%;
    font-size: 0.65rem;
}

.cp-val {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    background: rgba(44, 40, 32, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.cp-cta-row td {
    padding: 1.5rem 0.8rem !important;
    border-bottom: none;
}

.cp-btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    white-space: nowrap;
}

.cp-btn-elegante {
    background: #f0ebe0;
    color: #5a4e38;
    border: 1px solid #d9cdb8;
}

.cp-btn-elegante:hover {
    background: var(--stone);
}

.cp-btn-premium {
    background: var(--dark);
    color: var(--gold-light);
    border: 1px solid var(--dark);
}

.cp-btn-premium:hover {
    background: var(--charcoal);
}

.cp-btn-luxury {
    background: linear-gradient(135deg, #c9a96e, #e8c97a);
    color: var(--dark);
    border: none;
}

.cp-btn-luxury:hover {
    background: linear-gradient(135deg, #b8945a, #d4b560);
    color: var(--dark);
}

/* ══════════════════════════════════════════
    PRECIOS POR PLANTILLA
══════════════════════════════════════════ */
.tpl-pricing-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.tpl-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.tpl-pricing-table thead tr {
    background: var(--charcoal);
    color: white;
}

.tpl-pricing-table th {
    padding: 1rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-align: left;
}

.tpl-pricing-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.2s;
}

.tpl-pricing-table tbody tr:hover {
    background: var(--linen);
}

.tpl-pricing-table td {
    padding: 0.9rem 1.5rem;
    font-size: 0.76rem;
    color: var(--charcoal);
}

.tpl-pricing-table td:first-child {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 300;
}

.tpl-pricing-table td:last-child {
    font-size: 0.9rem;
    color: var(--dark);
}

.pkg-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pkg-elegante {
    background: #f0ece4;
    color: #6b5e42;
    border: 1px solid #d9cdb8;
}

.pkg-premium {
    background: var(--dark);
    color: var(--gold);
    border: 1px solid var(--dark);
}

.pkg-luxury {
    background: linear-gradient(135deg, #c9a96e, #e8c97a);
    color: var(--dark);
    border: none;
}

/* ══════════════════════════════════════════
    COMPARATIVA
══════════════════════════════════════════ */
.compare-section {
    background: var(--dark);
    padding: 6rem 5vw;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 3.5rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.compare-col {
    padding: 3rem 2.5rem;
}

.compare-col.digital {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.compare-col.paper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-header {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-col.digital .compare-header {
    color: var(--gold);
    border-bottom-color: rgba(201, 169, 110, 0.2);
}

.compare-col.paper .compare-header {
    color: rgba(255, 255, 255, 0.466);
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.76rem;
    line-height: 1.7;
}

.compare-col.digital .compare-item {
    color: rgba(255, 255, 255, 0.75);
}

.compare-col.paper .compare-item {
    color: rgba(255, 255, 255, 0.466);
}

.check {
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

.compare-col.digital .check {
    color: var(--gold);
}

.compare-col.paper .check {
    color: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════════════════
    FAQ
══════════════════════════════════════════ */
.faq-section {
    background: var(--ivory);
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--stone);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    gap: 1rem;
    -webkit-tap-highlight-color: transparent;
}

.faq-q span {
    flex: 1;
}

.faq-icon {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 2;
    font-weight: 300;
}

.faq-a.open {
    max-height: 4000px;
    padding-bottom: 1.2rem;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* ══════════════════════════════════════════
    CONTACTO / CTA FINAL
══════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 8rem 5vw;
    text-align: center;
    overflow: hidden;
}

.cta-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.5);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 22, 20, 0.5);
}

.cta-inner {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-body {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-wa {
    padding: 0.9rem 2.2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    transition: background 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-wa:hover {
    background: #1ebe5d;
}

.btn-email {
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    transition: all 0.25s;
}

.btn-email:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════
    GARANTÍAS
══════════════════════════════════════════ */
.guarantees-section {
    background: var(--linen);
    padding: 4rem 5vw;
    border-top: 1px solid var(--stone);
}

.guarantees-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.guarantee-item {
    text-align: center;
}

.g-icon {
    font-size: 1.4rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.g-text {
    font-size: 0.68rem;
    color: var(--mid);
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.25);
    padding: 3rem 5vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-brand span {
    color: var(--gold);
    opacity: 0.6;
}

.footer-copy {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
}

.footer-link {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(201, 169, 110, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 3.5rem auto 0;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-step::after {
        display: none;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-photo {
        aspect-ratio: 16/9;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.52rem;
    }
}

@media (max-width: 768px) {
    .tpl-pricing-table thead {
        display: none;
    }

    .tpl-pricing-table,
    .tpl-pricing-table tbody,
    .tpl-pricing-table tr,
    .tpl-pricing-table td {
        display: block;
        width: 100%;
    }

    .tpl-pricing-table tbody tr {
        background: white;
        border: 1px solid var(--stone);
        margin-bottom: 1rem;
        padding: 0.6rem 0;
    }

    .tpl-pricing-table tbody tr:hover {
        background: white;
    }

    .tpl-pricing-table td {
        position: relative;
        padding: 0.7rem 1rem 0.7rem 7.5rem;
        border: none;
        font-size: 0.74rem;
        min-height: 2.6rem;
    }

    .tpl-pricing-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        top: 0.75rem;
        width: 5.8rem;
        font-family: 'Cinzel', serif;
        font-size: 0.5rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--mid);
    }

    .tpl-pricing-table td:first-child {
        font-size: 0.78rem;
    }

    .tpl-pricing-table td:last-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 680px) {

    .rsvp-compare-table thead th,
    .rsvp-compare-table tbody td {
        padding: 0.75rem 0.8rem;
    }

    .rsvp-compare-table tbody td.rsvp-feature {
        white-space: normal;
    }

    .rsvp-compare-wrap {
        padding: 0;
    }

    .rsvp-compare-table-wrap {
        margin: 0 -5vw;
        padding: 0 5vw;
    }
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 130px;
    }

    nav {
        flex-wrap: wrap;
        height: auto;
        padding: 0.6rem 4vw;
        gap: 0.45rem;
        justify-content: center;
    }

    .nav-logo {
        width: 100%;
        justify-content: center;
        font-size: 0.58rem;
        letter-spacing: 0.16em;
    }

    .nav-logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-links {
        gap: 1rem;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.5rem;
    }

    .hero {
        min-height: auto;
        padding: 8.5rem 1.2rem 4rem;
    }

    .corner {
        display: none;
    }

    .hero-divider {
        gap: 0.8rem;
    }

    .hd-line {
        width: 42px;
    }

    .templates-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cp-table-wrap {
        margin: 2rem -5vw 0;
        padding: 0 5vw;
    }

    .cp-table {
        min-width: 540px;
    }

    .cp-feature-col {
        width: 36%;
    }

    .cp-plan-head {
        padding: 0.9rem 0.5rem;
    }

    .cp-plan-price {
        font-size: 1.4rem;
    }

    .addons-table thead {
        display: none;
    }

    .addons-table,
    .addons-table tbody,
    .addons-table tr,
    .addons-table td {
        display: block;
        width: 100%;
    }

    .addons-table tr {
        background: transparent;
        border: 1px solid var(--stone);
        margin-bottom: 1rem;
        padding: 0.75rem 0;
    }

    .addons-table td {
        position: relative;
        padding: 0.7rem 1rem 0.7rem 8rem;
        border: none;
    }

    .addons-table td::before {
        content: attr(data-label);
        position: absolute;
        top: 0.72rem;
        left: 1rem;
        width: 6.2rem;
        font-family: 'Cinzel', serif;
        font-size: 0.48rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--mid);
    }

    .addon-wa-price {
        text-align: left;
    }

    .addon-wa-table-wrap {
        width: 100%;
        margin-top: 0.7rem;
    }

    .hero-cta-row,
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline,
    .btn-wa,
    .btn-email {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .faq-q {
        font-size: 0.74rem;
        align-items: flex-start;
    }

    .faq-icon {
        font-size: 1.1rem;
        margin-top: 0.1rem;
    }

    .faq-a {
        font-size: 0.74rem;
        line-height: 1.85;
    }

    .guarantees-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .addons-table thead {
        display: none;
    }

    .addons-table,
    .addons-table>tbody,
    .addons-table>tbody>tr,
    .addons-table>tbody>tr>td {
        display: block;
        width: 100%;
    }

    .addons-table>tbody>tr {
        background: transparent;
        border: 1px solid var(--stone);
        margin-bottom: 1rem;
        padding: 0.75rem 0;
    }

    .addons-table>tbody>tr>td {
        position: relative;
        padding: 0.7rem 1rem 0.7rem 8rem;
        border: none;
    }

    .addons-table>tbody>tr>td::before {
        content: attr(data-label);
        position: absolute;
        top: 0.72rem;
        left: 1rem;
        width: 6.2rem;
        font-family: 'Cinzel', serif;
        font-size: 0.48rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--mid);
    }

    .addon-wa-price {
        text-align: left;
    }

    .addon-wa-table-wrap {
        width: 100%;
        margin-top: 0.7rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .addon-wa-table {
        width: 100%;
        min-width: 0;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .addon-wa-table thead {
        display: table-header-group;
    }

    .addon-wa-table tbody,
    .addon-wa-table tr {
        display: table-row-group;
    }

    .addon-wa-table tr {
        display: table-row;
    }

    .addon-wa-table th,
    .addon-wa-table td {
        display: table-cell;
        width: auto;
        padding: 0.7rem 0.9rem;
        border: none;
        position: static;
    }

    .addon-wa-table td::before,
    .addon-wa-table th::before {
        content: none !important;
    }
}

/* ══════════════════════════════════════════
    CTA CONTACT FORM
══════════════════════════════════════════ */
.cta-form {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.cta-form-field {
    width: 100%;
}

/* Inputs & textarea */
.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none; 
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-form input:focus,
.cta-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.cta-form input.field-error,
.cta-form textarea.field-error,
.cta-form select.field-error {
    border-color: #e07070;
}

.cta-form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.7;
}

/* Select wrapper */
.cta-select-wrap {
    position: relative;
    width: 100%;
}

.cta-select-wrap select {
    width: 100%;
    padding: 0.9rem 2.4rem 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s, background 0.2s;
}

.cta-select-wrap select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Placeholder option */
.cta-select-wrap select option[value=""] {
    color: rgba(255, 255, 255, 0.3);
}

/* Option items in the dropdown */
.cta-select-wrap select option {
    background: var(--dark);
    color: white;
    font-family: 'Raleway', sans-serif;
}

/* Custom arrow */
.cta-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: rgba(201, 169, 110, 0.7);
    pointer-events: none;
    transition: color 0.2s;
}

.cta-select-wrap:focus-within .cta-select-arrow {
    color: var(--gold);
}

/* Submit button */
.cta-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 3px;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, opacity 0.2s;
    position: relative;
    overflow: hidden;
    margin-top: 0.25rem;
}

.cta-submit:hover:not(:disabled) {
    background: var(--gold-light);
}

.cta-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.cta-submit-loading {
    display: none;
}

.cta-submit.is-loading .cta-submit-text {
    display: none;
}

.cta-submit.is-loading .cta-submit-loading {
    display: inline;
}

/* Note below button */
.cta-form-note {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 0.25rem;
}

/* Success message */
.cta-form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.4rem 1rem;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 3px;
    background: rgba(201, 169, 110, 0.08);
    text-align: center;
}

.cta-form-success.visible {
    display: flex;
}

.cta-success-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.cta-form-success p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    line-height: 1.6;
}

/* Error message */
.cta-form-error {
    display: none;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(224, 112, 112, 0.4);
    border-radius: 3px;
    background: rgba(224, 112, 112, 0.07);
    text-align: center;
}

.cta-form-error.visible {
    display: block;
}

.cta-form-error p {
    font-size: 0.75rem;
    color: rgba(255, 200, 200, 0.8);
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 600px) {
    .cta-form-row {
        grid-template-columns: 1fr;
    }

    .cta-form {
        max-width: 100%;
    }
}
