/* ========================================
   LAC SUB SOARE — sitev2
   Tokens aliniate cu site-ul live (lacsubsoare.ro)
   Cinzel (titluri), DM Sans (text), verde #13453C + portocaliu #E17E00
======================================== */

:root {
    --primary: #13453C;
    --primary-hover: #248674;
    --secondary: #E17E00;
    --secondary-hover: #c46e00;
    --accent: #D9E4DE;
    --accent-2: #8BBAC4;
    --warm: #FFAA3D;
    --white: #FFFFFF;
    --text: #000000;
    --text-muted: #6b6b6b;
    --border-soft: rgba(19, 69, 60, 0.12);
    --shadow: 0 4px 24px rgba(19, 69, 60, 0.08);
    --shadow-hover: 0 10px 32px rgba(19, 69, 60, 0.16);
    --header-h: 84px;
    --header-h-scrolled: 64px;
    --container-max: 1366px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--primary-hover); }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY (Cinzel like live site)
======================================== */

h1, h2, h3, h4, .display {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.25rem; letter-spacing: 1px; }
h4 { font-size: 1rem; letter-spacing: 1px; }

.eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary);
    display: inline-block;
    margin-bottom: 14px;
}

p { font-size: 1rem; }

/* ========================================
   BUTOANE (drepte, ca pe site-ul live)
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    padding: 0 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: var(--white); }

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover { background: var(--secondary-hover); border-color: var(--secondary-hover); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary); }

.btn-large { height: 50px; padding: 0 36px; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* ========================================
   ICONS (SVG inline)
======================================== */

.icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.icon-lg { width: 44px; height: 44px; }
.icon-xl { width: 56px; height: 56px; }
.icon-sm { width: 18px; height: 18px; }

/* ========================================
   SECTION HEADER
======================================== */

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

.section-divider {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--secondary);
    margin: 18px auto 22px;
}

.section-cta { text-align: center; margin-top: 48px; }

/* ========================================
   HEADER STICKY
======================================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.site-logo img {
    height: 32px;
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .site-logo img { height: 26px; }
}

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

.site-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 6px 0;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--primary);
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--secondary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
}

@media (max-width: 1024px) {
    .site-nav { gap: 20px; }
    .site-nav a { font-size: 0.8rem; letter-spacing: 1px; }
}

@media (max-width: 960px) {
    .site-nav, .header-phone { display: none; }
    .nav-toggle { display: block; }
    .site-nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 22px;
        gap: 18px;
        border-bottom: 1px solid var(--border-soft);
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
}

/* ========================================
   FACILITĂȚI (reusable pe toate paginile)
======================================== */

.facilities {
    padding: 90px 0;
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-soft);
    border-left: 1px solid var(--border-soft);
}

.facility-card {
    padding: 38px 26px;
    text-align: center;
    border-right: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--white);
    transition: background 0.25s ease, transform 0.25s ease;
}

.facility-card:hover {
    background: var(--accent);
}

.facility-card .icon {
    color: var(--primary);
    margin-bottom: 18px;
}

.facility-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.facility-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin: 0;
}

@media (max-width: 768px) {
    .facilities { padding: 60px 0; }
    .facilities-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .facilities-grid { grid-template-columns: 1fr; }
}

/* ========================================
   NEWSLETTER (înlocuiește secțiunea oferte)
======================================== */

.newsletter-section {
    padding: 90px 0;
    background: var(--accent);
    text-align: center;
}

.newsletter-section .container { max-width: 720px; }

.newsletter-icon {
    color: var(--secondary);
    margin-bottom: 18px;
}

.newsletter-section h2 { margin-bottom: 16px; }

.newsletter-section .lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 720px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    border: 1px solid var(--primary);
    border-right: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
    position: relative;
    z-index: 2;
}

.newsletter-form button {
    height: 50px;
    padding: 0 28px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: background 0.25s ease;
    white-space: nowrap;
}

.newsletter-form input { height: 50px; padding: 0 20px; }

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

.newsletter-section .privacy-note {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 6px;
}

@media (max-width: 720px) {
    .newsletter-form { flex-direction: column; box-shadow: none; }
    .newsletter-form input { border-right: 1px solid var(--primary); border-bottom: 0; }
    .newsletter-form input:last-of-type { border-bottom: 0; }
    .newsletter-form button { padding: 16px; }
}

/* ========================================
   SISTEM FIDELIZARE
======================================== */

.loyalty-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-soft);
}

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

.loyalty-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--accent);
}

.loyalty-card .icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.loyalty-card h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.loyalty-card p { color: var(--text-muted); font-size: 0.94rem; }

@media (max-width: 768px) {
    .loyalty-grid { grid-template-columns: 1fr; }
}

/* ========================================
   TRUST BAR + FOOTER
======================================== */

.trust-bar {
    background: var(--primary);
    color: var(--white);
    padding: 22px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-bar-item .icon { color: var(--warm); width: 22px; height: 22px; }

.site-footer {
    background: #0d332c;
    color: rgba(255, 255, 255, 0.78);
    padding: 70px 0 22px;
}

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

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.legal-badge {
    display: inline-block;
    transition: opacity 0.2s ease;
    background: transparent;
    padding: 0;
}

.legal-badge:hover { opacity: 0.85; }

.legal-badge img {
    max-width: 190px;
    height: auto;
    display: block;
}

.payment-block {
    margin-top: 6px;
}

.payment-cards {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.payment-cards span {
    background: var(--white);
    color: var(--primary);
    font-size: 0.68rem;
    padding: 6px 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.payment-image {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p, .footer-col li {
    font-size: 0.92rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255, 255, 255, 0.7); }
.footer-col a:hover { color: var(--warm); }

.footer-brand .site-logo { display: inline-block; margin-bottom: 18px; }
.footer-brand .site-logo img { height: 38px; filter: brightness(0) invert(1); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-contact-item .icon { color: var(--warm); width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    color: var(--white);
}

.footer-social a:hover { background: var(--secondary); }
.footer-social .icon { width: 18px; height: 18px; color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================
   FLOATING WHATSAPP
======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.2s ease;
    color: var(--white);
}

.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }
.whatsapp-float .icon { width: 32px; height: 32px; fill: var(--white); }

/* ========================================
   POPUP (newsletter variant)
======================================== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 51, 44, 0.78);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.open { display: flex; }

.popup {
    background: var(--white);
    max-width: 480px;
    width: 100%;
    padding: 44px 36px;
    position: relative;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    animation: slideUp 0.35s ease;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
}

.popup-close .icon { width: 20px; height: 20px; }
.popup-close:hover { color: var(--primary); }

.popup .popup-icon {
    color: var(--secondary);
    margin-bottom: 14px;
}

.popup h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.popup p { color: var(--text-muted); margin-bottom: 24px; }

.popup form { display: flex; flex-direction: column; gap: 12px; }

.popup input[type="email"],
.popup input[type="text"] {
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    font-family: inherit;
    font-size: 1rem;
}

.popup input:focus { outline: none; border-color: var(--primary); }

.popup small {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 6px;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ========================================
   PAGE HERO (compact, pt. pagini secundare)
======================================== */

.page-hero {
    background: var(--accent);
    padding: 70px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ========================================
   PAGE CONTENT (text larg pt. pagini legale)
======================================== */

.page-content {
    padding: 70px 0 90px;
}

.page-content .container { max-width: 860px; }

.page-content h2 {
    font-size: 1.6rem;
    margin: 36px 0 14px;
}

.page-content h3 {
    font-size: 1.1rem;
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-content p,
.page-content li {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 18px;
}

.page-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   CONTACT PAGE
======================================== */

.contact-section { padding: 70px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: stretch;
}

.contact-grid .contact-form {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 44px 40px;
}

.contact-grid .contact-form input,
.contact-grid .contact-form textarea {
    padding: 14px 16px;
    font-size: 1rem;
}

.contact-grid .contact-form textarea { min-height: 130px; }

.contact-grid .contact-form .form-row { margin-bottom: 18px; }

.contact-info h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-info-item .icon {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-info-item .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-info-item .value {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-item a:hover { color: var(--secondary); }

.contact-map { margin-top: 60px; }
.contact-map iframe { width: 100%; height: 380px; border: 0; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ========================================
   PESCUIT — Specii grid
======================================== */

.species-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.species-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    padding: 24px 20px;
    text-align: center;
}

.species-card .icon {
    color: var(--secondary);
    margin-bottom: 10px;
}

.species-card h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

@media (max-width: 768px) { .species-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .species-grid { grid-template-columns: 1fr; } }

.pescuit-quote {
    text-align: center;
    padding: 70px 0;
    background: var(--accent);
}

.pescuit-quote .quote {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ========================================
   GALERIE
======================================== */

.gallery-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 50px;
}

.gallery-tab {
    background: transparent;
    border: 1px solid var(--border-soft);
    color: var(--primary);
    padding: 12px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-tab:hover { border-color: var(--primary); }

.gallery-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-section-page { padding: 70px 0 90px; }

.gallery-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-photos figure {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--accent);
    cursor: pointer;
}

.gallery-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-photos figure:hover img { transform: scale(1.05); }

@media (max-width: 768px) { .gallery-photos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-photos { grid-template-columns: 1fr; } }

/* ========================================
   CASA SINGLE PAGE
======================================== */

.casa-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-position: center;
    background-size: cover;
}

.casa-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 51, 44, 0.7), rgba(13, 51, 44, 0.4));
}

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

.casa-hero-content { max-width: 720px; padding: 80px 0; }

.casa-hero h1 { color: var(--white); margin-bottom: 18px; }

.casa-hero .tagline {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--warm);
    max-width: 620px;
}

.casa-intro { padding: 80px 0; text-align: center; }
.casa-intro .container { max-width: 820px; }
.casa-intro p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }

.rooms-section { padding: 80px 0; background: var(--accent); }

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

.room-card {
    background: var(--white);
    padding: 28px 26px;
    border-left: 3px solid var(--secondary);
}

.room-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.room-card ul {
    list-style: none;
    margin: 0;
}

.room-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.room-card ul li .icon {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    flex-shrink: 0;
}

@media (max-width: 768px) { .rooms-grid { grid-template-columns: 1fr; } }

.amenities-section { padding: 80px 0; }

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

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

.amenity .icon { width: 18px; height: 18px; color: var(--secondary); }

@media (max-width: 880px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: 1fr; } }

.pricing-section { padding: 80px 0; background: var(--primary); color: var(--white); }
.pricing-section h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
.pricing-section .lead { text-align: center; color: rgba(255,255,255,0.85); margin-bottom: 40px; }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255,255,255,0.06);
    padding: 28px;
    border-top: 3px solid var(--warm);
}

.price-card h4 {
    color: var(--warm);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
}

.price-card .amount {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--white);
    margin: 4px 0 6px;
}

.price-card .note { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

.price-card ul { list-style: none; margin-top: 12px; }
.price-card ul li {
    padding: 4px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ========================================
   UTILITIES
======================================== */

.text-center { text-align: center; }
.svg-defs { display: none; }
