/* =========================
   BASE
   ========================= */

:root {
    --bg-main: #05060a;
    --bg-alt: #0e1017;
    --bg-light: #141726;
    --accent: #f5c451;
    --accent-soft: rgba(245, 196, 81, 0.18);
    --text-main: #f5f5f7;
    --text-muted: #b3b7c7;
    --border-soft: rgba(255, 255, 255, 0.12);
    --radius-lg: 14px;
    --radius-md: 10px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151a2d 0, #05060a 55%, #000 100%);
    color: var(--text-main);
}

body {
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   HERO
   ========================= */

.hero {
    padding: 3.5rem 1.5rem 4.5rem;
    text-align: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    height: 160px;          /* big logo as you wanted */
    margin-bottom: 1.4rem;
}

.hero-title {
    font-size: clamp(2.1rem, 3vw + 1rem, 2.8rem);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.hero-subtitle {
    margin: 0 0 2rem;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

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

/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease-out;
}

.btn-primary {
    background: var(--accent);
    color: #111;
    box-shadow: 0 12px 30px rgba(245, 196, 81, 0.45);
}

.btn-primary:hover {
    background: #ffd772;
    box-shadow: 0 16px 40px rgba(245, 196, 81, 0.6);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    margin-top: 0.6rem;
}

/* =========================
   SECTIONS
   ========================= */

.section {
    padding: 3.5rem 1.5rem;
}

.section-dark {
    background: radial-gradient(circle at top, #171b2a 0, #05060a 55%, #000 100%);
}

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

.section-inner h2 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.95rem;
    margin-top: 0;
    margin-bottom: 1.8rem;
}

.section-lead {
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-muted);
}

.section-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* =========================
   CARDS (WHY + SERVICES)
   ========================= */

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.cards-vertical {
    flex-direction: column;
}

.card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    flex: 1;
    min-width: 0;
}

.cards > .card {
    min-width: 240px;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--accent);
}

.card p {
    margin: 0.2rem 0 0;
    color: var(--text-muted);
}

.card ul {
    margin: 0.5rem 0 0.3rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.card-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* =========================
   STEPS (HOW IT WORKS)
   ========================= */

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.step {
    flex: 1;
    min-width: 220px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.step h3 {
    margin: 0 0 0.4rem;
}

.step p {
    margin: 0;
    color: var(--text-muted);
}

/* =========================
   CONTACT FORM
   ========================= */

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}
.field-error {
  color: #ffb3b3;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}


.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.form-row label {
    flex: 1;
    min-width: 200px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    margin-top: 0.3rem;
    padding: 0.55rem 0.7rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #0a0c13;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(245, 196, 81, 0.6);
    background: #05060a;
}

textarea {
    resize: vertical;
}

/* =========================
   GALLERY GRID
   ========================= */

.gallery-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(245, 196, 81, 0.35);
    background: #05060a;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.25s ease-out, filter 0.25s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.04);
}

/* =========================
   LIGHTBOX OVERLAY
   ========================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.lightbox.is-visible {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    padding: 1.8rem 1.5rem 2.2rem;
    background: #05060a;
    border-top: 1px solid var(--border-soft);
    margin-top: 1rem;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.footer-inner a {
    color: var(--accent);
}
/* =========================
   REVIEWS
   ========================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.review-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem 1.4rem;
}

.review-text {
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.review-meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}
/* =========================
   PRICING
   ========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem 1.4rem;
}

.pricing-card-highlight {
    border-color: var(--accent);
    box-shadow: 0 22px 50px rgba(245, 196, 81, 0.45);
}

.pricing-card h3 {
    margin: 0 0 0.4rem;
    color: var(--accent);
}

.pricing-range {
    margin: 0 0 0.7rem;
    font-weight: 600;
}

.pricing-card ul {
    margin: 0.4rem 0 0.4rem;
    padding-left: 1.1rem;
    color: var(--text-muted);
}

.pricing-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .hero {
        padding-top: 2.5rem;
    }

    .hero-logo {
        height: 130px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .section {
        padding: 2.5rem 1.3rem;
    }

    .contact-form {
        padding: 1.3rem 1.2rem;
    }

    .cards {
        flex-direction: column;
    }

    .steps {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        letter-spacing: 0.12em;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* ===== FAQ ===== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(10, 12, 20, 0.95);
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-item h3 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
    color: var(--accent);
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
/* ===== WHAT YOU GET ===== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
    margin-top: 1.6rem;
}

.benefit {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 196, 81, 0.1);
    border: 1px solid rgba(245, 196, 81, 0.5);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
}

.benefit h3 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
    color: var(--accent);
}

.benefit p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
/* === Bartender highlight section === */

.bartender-highlight {
  text-align: center;
  margin-top: 2rem;
}

.bartender-photo {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  display: block;
  margin: 0 auto 1rem;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.bartender-tagline {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f5c15c; /* gold-ish, matches your brand */
}
