/* ============================================
   BE TRENDY — Website Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --green: #4A7C6F;
    --green-dark: #3D6A5E;
    --green-darker: #2F5349;
    --cream: #F7F4EF;
    --espresso: #1A1612;
    --gold: #C4A574;
    --gold-light: #d4bb8e;
    --white: #ffffff;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--espresso);
    background-color: var(--green);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    padding: 10px 16px;
    background: var(--gold);
    color: var(--espresso);
    border-radius: 6px;
    font-weight: 600;
    z-index: 1000;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Gold Divider --- */
.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 24px 0;
}

.gold-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
}

.btn-gold {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 165, 116, 0.4);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    padding: 10px 28px;
    font-size: 0.85rem;
    margin-top: 16px;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(74, 124, 111, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 165, 116, 0.15);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(61, 106, 94, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--cream);
    text-decoration: none;
    transition: opacity var(--transition);
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.nav-menu li a.nav-cta {
    background: var(--gold);
    color: var(--espresso);
    font-weight: 600;
}

.nav-menu li a.nav-cta:hover {
    background: var(--gold-light);
    color: var(--espresso);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 88px 24px 0;
    background: var(--green-darker);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    flex: 1;
    padding: 40px 0;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

.hero-image {
    flex: 1.3;
    max-width: 620px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    width: 180px;
    height: auto;
    margin: 0 0 32px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(247, 244, 239, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero .gold-divider {
    margin: 0 0 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(247, 244, 239, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cream);
}

/* USP Bar */
.usp-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(196, 165, 116, 0.2);
    margin-top: auto;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
}

.usp-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   PAGE HEADER (for subpages)
   ============================================ */
.page-header {
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--cream);
    padding: 140px 0 80px;
    text-align: center;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--cream);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.page-title-logo {
    width: clamp(100px, 7vw, 130px);
    height: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.page-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 24px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section-green {
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--cream);
}

.section-cream {
    background: var(--cream);
    color: var(--espresso);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 12px;
}

.section-title.light {
    color: var(--cream);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 8px;
    opacity: 0.85;
}

.section-intro.light {
    color: rgba(247, 244, 239, 0.8);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--green-dark);
}

.service-info p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   FEATURE BLOCKS (alternating image/text)
   ============================================ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 64px 0;
}

.feature-block.reverse .feature-content {
    order: -1;
}

.feature-images {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-images img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-images:hover img {
    transform: scale(1.03);
}

.feature-content h2,
.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.section-cream .feature-content h2,
.section-cream .feature-content h3 {
    color: var(--green-dark);
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: 0.9;
}

.feature-content ul {
    margin: 12px 0;
    padding-left: 0;
    list-style: none;
}

.feature-content ul li {
    padding-left: 4px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- Feature Tags --- */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    white-space: nowrap;
}

.section-cream .tag {
    border-color: var(--green);
    color: var(--green-dark);
}

/* --- Pricing Block --- */
.pricing-block {
    background: rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    padding: 48px;
    margin-top: 64px;
    text-align: center;
    border: 1px solid rgba(196, 165, 116, 0.2);
}

.pricing-block h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.pricing-block p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.85;
}

.pricing-block ul {
    display: inline-block;
    text-align: left;
}

.pricing-block ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.pricing-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   CATERING SECTION
   ============================================ */
.catering-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Location Cards */
.location-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-top: 3px solid var(--gold);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    color: var(--green);
    margin-bottom: 20px;
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.location-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

/* Collaboration Block */
.collab-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.collab-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--gold);
}

.collab-item h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.collab-item p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}

/* Why Cocktail Block */
.why-cocktail {
    margin-top: 64px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.why-cocktail h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 28px;
}

.why-cocktail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.why-cocktail-list li {
    font-size: 1.05rem;
    color: #444;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid rgba(196, 165, 116, 0.15);
    line-height: 1.6;
    position: relative;
}

.why-cocktail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.why-cocktail-list li:last-child {
    border-bottom: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 48px 0;
}

.gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(247, 244, 239, 0.8);
}

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

.event-feature {
    background: rgba(0, 0, 0, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(196, 165, 116, 0.15);
    transition: all var(--transition);
}

.event-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 165, 116, 0.3);
}

.event-image {
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-feature:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 24px;
}

.event-content h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.event-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(247, 244, 239, 0.8);
}

/* ============================================
   GALLERY WITH FILTERS
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 24px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border: 2px solid #ccc;
    border-radius: 50px;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-filter:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.gallery-filter.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-grid img.hidden {
    display: none;
}

/* ============================================
   SECTION CTA BUTTONS
   ============================================ */
.section-cta-wrapper {
    text-align: center;
    margin-top: 48px;
}

.pricing-block .feature-tags {
    justify-content: center;
}

.pricing-block .section-cta {
    margin-top: 32px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-wrapper {
    max-width: 720px;
    margin: 48px auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.required {
    color: var(--gold);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.95rem;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--espresso);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.15);
}

.form-input::placeholder {
    color: #aaa;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Service Selection Radio Cards */
.service-select {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.service-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-option {
    cursor: pointer;
}

.service-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    background: var(--white);
}

.service-option-box:hover {
    border-color: var(--green);
}

.service-option input:checked + .service-option-box {
    border-color: var(--green);
    background: rgba(74, 124, 111, 0.08);
    box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.12);
}

.service-option-icon {
    color: var(--green);
}

.service-option input:checked + .service-option-box .service-option-icon {
    color: var(--green-dark);
}

.service-option-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--espresso);
}

.service-option-desc {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.3px;
}

.form-submit {
    align-self: center;
    min-width: 260px;
    margin-top: 8px;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 60px 24px;
}

.success-icon {
    color: var(--green);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
}

.form-success-alt {
    font-size: 0.9rem;
    color: #888;
}

.form-success-alt a {
    color: var(--green);
    text-decoration: underline;
}

/* Radio focus visibility */
.service-option input:focus-visible + .service-option-box {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================
   FOOTER SOCIAL LINKS
   ============================================ */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(247, 244, 239, 0.3);
    color: var(--cream);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--espresso);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: white;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    background: var(--green-darker);
    padding: 80px 0 0;
    color: var(--cream);
}

.map-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(247, 244, 239, 0.7);
    margin-bottom: 40px;
}

.map-wrapper {
    width: 100%;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    filter: grayscale(30%) contrast(1.05);
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0 0;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-darker);
    color: var(--cream);
    padding: 80px 0 32px;
}

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

.footer-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact ul li svg {
    flex-shrink: 0;
    color: var(--gold);
}

.footer-contact ul li a {
    opacity: 0.8;
    transition: all var(--transition);
}

.footer-contact ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.5;
}

.footer .gold-divider {
    width: 100%;
    opacity: 0.3;
}

/* Footer Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.hours-list dt {
    font-size: 0.88rem;
    opacity: 0.7;
}

.hours-list dd {
    font-size: 0.88rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   MOBILE FIXED CTA BAR
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--green-darker);
    border-top: 1px solid rgba(196, 165, 116, 0.2);
    padding: 10px 16px;
    gap: 10px;
    align-items: center;
}

.mobile-cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: var(--cream);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(247, 244, 239, 0.3);
    border-radius: 8px;
    white-space: nowrap;
}

.mobile-cta-phone svg {
    color: var(--gold);
}

.mobile-cta-form {
    flex: 1;
    display: block;
    text-align: center;
    padding: 12px 16px;
    background: var(--gold);
    color: var(--espresso);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    /* Tablet Hero - stack layout */
    .hero-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        order: -1;
        max-width: 450px;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-block.reverse .feature-content {
        order: unset;
    }

    .feature-images img {
        height: 300px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .usp-bar {
        flex-wrap: wrap;
        gap: 16px 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(61, 106, 94, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
        border-bottom: 1px solid rgba(196, 165, 116, 0.2);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 72px 0;
    }

    /* --- MOBILE HERO --- */
    .hero {
        padding: 90px 20px 0;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
        padding: 30px 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero .gold-divider {
        margin: 0 auto 32px;
    }

    .hero-image {
        max-width: 100%;
        order: -1;
    }

    .hero-image img {
        border-radius: 8px;
    }

    .hero-logo {
        width: 260px;
        margin: 0 auto 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .usp-bar {
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
        align-items: flex-start;
        width: 100%;
        margin-left: 0;
    }

    /* Mobile CTA bar */
    .mobile-cta-bar {
        display: flex;
    }

    /* Add bottom padding to body for CTA bar */
    body {
        padding-bottom: 68px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-filter {
        padding: 6px 16px;
        font-size: 0.82rem;
        border-color: rgba(196, 165, 116, 0.3);
        color: rgba(247, 244, 239, 0.7);
    }

    .gallery-filter:hover {
        border-color: var(--gold);
        color: var(--cream);
    }

    .gallery-filter.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--espresso);
    }

    /* --- MOBILE: all sections green, no cream/white --- */
    .section-cream {
        background: linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
        color: var(--cream);
    }

    .section-cream .section-title {
        color: var(--cream);
    }

    .section-cream .section-intro {
        color: rgba(247, 244, 239, 0.8);
    }

    .section-cream .catering-intro {
        color: rgba(247, 244, 239, 0.8);
    }

    .section-cream .feature-content h2,
    .section-cream .feature-content h3 {
        color: var(--gold);
    }

    .section-cream .feature-content p,
    .section-cream .feature-content ul li {
        color: rgba(247, 244, 239, 0.9);
    }

    .section-cream .tag {
        border-color: var(--gold);
        color: var(--gold);
    }

    .service-card {
        background: rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(196, 165, 116, 0.15);
        box-shadow: none;
    }

    .service-info h3 {
        color: var(--gold);
    }

    .service-info p {
        color: rgba(247, 244, 239, 0.75);
    }

    .location-card {
        background: rgba(0, 0, 0, 0.15);
        border-top-color: var(--gold);
        box-shadow: none;
    }

    .location-card h3 {
        color: var(--gold);
    }

    .location-card p {
        color: rgba(247, 244, 239, 0.8);
    }

    .location-icon {
        color: var(--gold);
    }

    .collab-item {
        background: rgba(0, 0, 0, 0.15);
        border-left-color: var(--gold);
        box-shadow: none;
    }

    .collab-item h3 {
        color: var(--gold);
    }

    .collab-item p {
        color: rgba(247, 244, 239, 0.8);
    }

    .why-cocktail {
        background: rgba(0, 0, 0, 0.15);
        border-top-color: var(--gold);
        box-shadow: none;
    }

    .why-cocktail h2 {
        color: var(--gold);
    }

    .why-cocktail-list li {
        color: rgba(247, 244, 239, 0.9);
        border-bottom-color: rgba(196, 165, 116, 0.15);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-options {
        grid-template-columns: 1fr;
    }

    .collab-block {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
    }

    .footer-contact ul {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* --- MOBILE: Page Header --- */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-title {
        flex-direction: column;
        gap: 12px;
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .page-title-logo {
        width: 80px;
    }

    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    /* --- MOBILE: Reduce section spacing --- */
    .section {
        padding: 48px 0;
    }

    .catering-intro {
        margin-bottom: 32px;
    }

    .feature-block {
        margin: 36px 0;
    }

    .location-options {
        margin-bottom: 36px;
    }

    .collab-block {
        margin-top: 36px;
    }

    .pricing-block {
        padding: 32px 24px;
        margin-top: 36px;
    }

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

    /* Mobile form */
    .service-select {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-input {
        border-color: rgba(196, 165, 116, 0.4);
        background: rgba(0, 0, 0, 0.1);
        color: var(--cream);
    }

    .form-input::placeholder {
        color: rgba(247, 244, 239, 0.4);
    }

    .form-input:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
    }

    .service-option-box {
        border-color: rgba(196, 165, 116, 0.3);
        background: rgba(0, 0, 0, 0.1);
    }

    .service-option-box:hover {
        border-color: var(--gold);
    }

    .service-option input:checked + .service-option-box {
        border-color: var(--gold);
        background: rgba(196, 165, 116, 0.12);
        box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.1);
    }

    .service-option-icon {
        color: var(--gold);
    }

    .service-option-title {
        color: var(--cream);
    }

    .service-option-desc {
        color: rgba(247, 244, 239, 0.5);
    }

    .form-success h3 {
        color: var(--gold);
    }

    .form-success p {
        color: rgba(247, 244, 239, 0.8);
    }

    .success-icon {
        color: var(--gold);
    }

    .form-success-alt {
        color: rgba(247, 244, 239, 0.6);
    }

    .form-success-alt a {
        color: var(--gold);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        height: 64px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        top: 64px;
    }

    .page-header {
        padding: 84px 0 32px;
    }

    .page-title-logo {
        width: 70px;
    }

    .section {
        padding: 36px 0;
    }

    .feature-block {
        margin: 28px 0;
    }

    .hero-logo {
        width: 200px;
    }

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

    .gallery-grid img {
        height: 220px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-content h2,
    .feature-content h3 {
        font-size: 1.4rem;
    }

    .feature-images img {
        height: 240px;
    }

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

    .gallery img {
        height: 220px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}
