 /* =========================================================
           GLOBAL
        ========================================================= */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        width: 100%;
        min-height: 100vh;
        font-family: 'Montserrat', sans-serif;
        background: #0d0d0d;
        color: #ffffff;
        overflow-x: hidden;
      }

      /* =========================================================
           HEADER
        ========================================================= */
  /*    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 20;
        padding: 25px 20px;
        text-align: center;
        background:
          linear-gradient(to bottom,
            rgba(13, 13, 13, 0.85),
            transparent);
      }

      .brand-logo {
        display: inline-block;
        font-family: 'Cinzel', serif;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        letter-spacing: 4px;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
      }

      .brand-logo span {
        display: block;
        margin-top: 2px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.75rem;
        letter-spacing: 3px;
        color: #d4af37;
        font-weight: 600;
      }
*/


      /* Top Branding Bar Overlay */

a.brand-text {
    text-decoration: none;
}
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(15px, 3vh, 30px) clamp(20px, 4vw, 50px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.top-bar {
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.brand-text,
a.catering-badge-btn {
    position: relative;
    z-index: 10000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}
.brand-text,
.logo-container {
    pointer-events: auto;
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.1rem, 2vw, 2.4rem);
    letter-spacing: 3px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    transform: translateY(0px);
    will-change: transform, opacity;
}

.brand-text span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #d4af37;
    margin-top: 4px;
    font-weight: bold;
    text-align: center;
}

.logo-container {
    display: none;
}

.logo-container img {
    height: clamp(45px, 6vh, 85px);
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    opacity: 0;
    transform: translateY(-20px);
    will-change: transform, opacity;
}






      /* =========================================================
           HERO / SLIDER
        ========================================================= */
      .hero-section {
        position: relative;
        width: 100%;
        height: 60vh;
        min-height: 400px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-slider {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
      }

      .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transform: scale(1.08);
        transition:
          opacity 1.5s ease-in-out,
          transform 6s ease-out;
        will-change: transform, opacity;
      }

      .slide.active {
        opacity: 1;
        transform: scale(1);
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        z-index: 2;
      }

      .hero-content {
        position: relative;
        z-index: 5;
        text-align: center;
        padding: 0 20px;
        margin-top: 40px;
      }

      .hero-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 12px;
      }

      .hero-subtitle {
        font-size: clamp(0.85rem, 1.5vw, 1.1rem);
        color: #d4af37;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
      }

      /* =========================================================
           FORM SECTION
        ========================================================= */
      .form-section {
        width: 100%;
        background: #0d0d0d;
        padding: 60px 20px 80px;
        position: relative;
        z-index: 10;
      }

      .form-container {
        width: 100%;
        max-width: 850px;
        margin: 0 auto;
      }

      .form-card {
        position: relative;
        background: #141414;
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 12px;
        padding: clamp(25px, 5vw, 45px);
        box-shadow:
          0 15px 35px rgba(0, 0, 0, 0.7);
      }

      /* =========================================================
           FORM HEADER
        ========================================================= */
      .form-header {
        text-align: center;
        margin-bottom: 30px;
      }

      .form-header h2 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        color: #ffffff;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
      }

      .form-header p {
        font-size: 0.85rem;
        color: #d4af37;
        letter-spacing: 1px;
        line-height: 1.5;
      }

      /* =========================================================
           FORM SECTION TITLES
        ========================================================= */
      .form-block-title {
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-bottom:
          1px solid rgba(212, 175, 55, 0.3);
        padding-bottom: 6px;
        margin: 25px 0 15px;
      }

      /* =========================================================
           FORM LAYOUT
        ========================================================= */
      .catering-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .field-row {
        display: grid;
        grid-template-columns:
          repeat(2, minmax(0, 1fr));
        gap: 15px;
      }

      .field-group {
        display: flex;
        flex-direction: column;
        min-width: 0;
      }

      .field-group label {
        font-size: 0.7rem;
        color: #cccccc;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 6px;
        font-weight: 600;
      }

      .required {
        color: #d4af37;
      }

      /* =========================================================
           STANDARD INPUTS
        ========================================================= */
      .field-group input,
      .field-group select,
      .field-group textarea {
        width: 100%;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.05);
        border:
          1px solid rgba(255, 255, 255, 0.20);
        border-radius: 6px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        transition:
          border-color 0.25s ease,
          background 0.25s ease;
      }

      .field-group input::placeholder,
      .field-group textarea::placeholder {
        color: #777777;
      }

      .field-group input:focus,
      .field-group select:focus,
      .field-group textarea:focus {
        outline: none;
        border-color: #d4af37;
        background:
          rgba(255, 255, 255, 0.07);
      }

      .field-group textarea {
        resize: vertical;
        min-height: 90px;
      }

      .field-group select option {
        background: #141414;
        color: #ffffff;
      }

      /* =========================================================
           CUSTOM DATE PICKER
        ========================================================= */
      .date-field {
        position: relative;
        z-index: 40;
      }

      .custom-date-wrapper {
        position: relative;
        width: 100%;
      }

      .custom-date-input {
        width: 100%;
        height: 50px;
        padding: 0 15px;
        background: rgba(255, 255, 255, 0.05);
        border:
          1px solid rgba(255, 255, 255, 0.20);
        border-radius: 6px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        text-align: left;
        transition: all 0.25s ease;
      }

      .custom-date-input:hover,
      .custom-date-input.open {
        border-color: #d4af37;
        background:
          rgba(255, 255, 255, 0.07);
      }

      .date-icon {
        color: #d4af37;
        font-size: 17px;
      }

      /* =========================================================
           CALENDAR PANEL
        ========================================================= */
      .calendar-picker {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        max-width: 340px;
        background: #151515;
        border:
          1px solid rgba(212, 175, 55, 0.55);
        border-radius: 9px;
        padding: 14px;
        box-shadow:
          0 18px 45px rgba(0, 0, 0, 0.75);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        transition:
          opacity 0.2s ease,
          transform 0.2s ease,
          visibility 0.2s ease;
        z-index: 9999;
      }

      .calendar-picker.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .calendar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
      }

      .calendar-month {
        font-family: 'Cinzel', serif;
        font-size: 0.78rem;
        color: #d4af37;
        letter-spacing: 1px;
      }

      .calendar-nav {
        display: flex;
        gap: 5px;
      }

      .calendar-nav button {
        width: 28px;
        height: 28px;
        border:
          1px solid rgba(212, 175, 55, 0.3);
        background:
          rgba(255, 255, 255, 0.04);
        color: #ffffff;
        border-radius: 4px;
        cursor: pointer;
      }

      .calendar-nav button:hover {
        border-color: #d4af37;
        color: #d4af37;
      }

      .calendar-weekdays,
      .calendar-days {
        display: grid;
        grid-template-columns:
          repeat(7, 1fr);
        gap: 4px;
      }

      .calendar-weekdays {
        margin-bottom: 5px;
      }

      .calendar-weekdays span {
        text-align: center;
        font-size: 0.58rem;
        color: #777777;
        text-transform: uppercase;
      }

      .calendar-day {
        aspect-ratio: 1;
        border: 0;
        background:
          rgba(255, 255, 255, 0.035);
        color: #ffffff;
        border-radius: 4px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.68rem;
        cursor: pointer;
      }

      .calendar-day:hover {
        background:
          rgba(212, 175, 55, 0.15);
        color: #ffffff;
      }

      .calendar-day.today {
        border:
          1px solid rgba(212, 175, 55, 0.55);
      }

      .calendar-day.selected {
        background: #d4af37;
        color: #111111;
        font-weight: 600;
      }

      .calendar-day.disabled {
        color: #444444;
        cursor: default;
        background: transparent;
      }

      /* =========================================================
           CUSTOM TIME PICKER
        ========================================================= */
      .time-field {
        position: relative;
        z-index: 35;
      }

      .custom-time-wrapper {
        position: relative;
        width: 100%;
      }

      .custom-time-input {
        width: 100%;
        height: 50px;
        padding: 0 15px;
        background: rgba(255, 255, 255, 0.05);
        border:
          1px solid rgba(255, 255, 255, 0.20);
        border-radius: 6px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.88rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        text-align: left;
        transition: all 0.25s ease;
      }

      .custom-time-input:hover,
      .custom-time-input.open {
        border-color: #d4af37;
        background:
          rgba(255, 255, 255, 0.07);
      }

      .time-icon {
        color: #d4af37;
        font-size: 19px;
        line-height: 1;
      }

      /* =========================================================
           TIME PICKER PANEL
        ========================================================= */
      .time-picker {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        max-width: 375px;
        background: #151515;
        border:
          1px solid rgba(212, 175, 55, 0.55);
        border-radius: 9px;
        padding: 13px;
        box-shadow:
          0 18px 45px rgba(0, 0, 0, 0.75);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        transition:
          opacity 0.2s ease,
          transform 0.2s ease,
          visibility 0.2s ease;
        z-index: 9999;
      }

      .time-picker.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .time-picker-header {
        text-align: center;
        font-family: 'Cinzel', serif;
        font-size: 0.68rem;
        color: #d4af37;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
      }

      /* =========================================================
           AM / PM
        ========================================================= */
      .ampm-switch {
        display: grid;
        grid-template-columns:
          1fr 1fr;
        gap: 7px;
        margin-bottom: 10px;
      }

      .ampm-btn {
        height: 34px;
        border:
          1px solid rgba(212, 175, 55, 0.30);
        border-radius: 5px;
        background:
          rgba(255, 255, 255, 0.035);
        color: #bbbbbb;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.2s ease;
      }

      .ampm-btn:hover {
        border-color: #d4af37;
        color: #ffffff;
      }

      .ampm-btn.active {
        background: #d4af37;
        border-color: #d4af37;
        color: #111111;
        font-weight: 700;
      }

      /* =========================================================
           TIME GRID
        ========================================================= */
      .time-options {
        display: grid;
        grid-template-columns:
          repeat(3, 1fr);
        gap: 6px;
        max-height: 245px;
        overflow-y: auto;
        padding-right: 3px;
      }

      .time-options::-webkit-scrollbar {
        width: 4px;
      }

      .time-options::-webkit-scrollbar-track {
        background:
          rgba(255, 255, 255, 0.04);
        border-radius: 10px;
      }

      .time-options::-webkit-scrollbar-thumb {
        background: #d4af37;
        border-radius: 10px;
      }

      .time-option {
        height: 34px;
        border:
          1px solid rgba(255, 255, 255, 0.13);
        background:
          rgba(255, 255, 255, 0.035);
        border-radius: 4px;
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.68rem;
        cursor: pointer;
        transition:
          background 0.2s ease,
          border-color 0.2s ease,
          color 0.2s ease;
      }

      .time-option:hover {
        border-color: #d4af37;
        background:
          rgba(212, 175, 55, 0.12);
      }

      .time-option.selected {
        background: #d4af37;
        border-color: #d4af37;
        color: #111111;
        font-weight: 600;
      }

      /* =========================================================
           CATERING CHOICES
        ========================================================= */
      .options-group {
        display: grid;
        grid-template-columns:
          repeat(3, 1fr);
        gap: 12px;
        margin-top: 5px;
      }

      .option-label {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        font-size: 0.82rem;
        color: #ffffff;
        cursor: pointer;
        padding: 10px;
        background:
          rgba(255, 255, 255, 0.03);
        border:
          1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        transition:
          border-color 0.3s ease,
          background 0.3s ease;
      }

      .option-label:hover {
        border-color:
          rgba(212, 175, 55, 0.6);
        background:
          rgba(212, 175, 55, 0.08);
      }

      .option-label input[type="radio"],
      .option-label input[type="checkbox"] {
        accent-color: #d4af37;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        cursor: pointer;
      }

      /* =========================================================
           REVIEW
        ========================================================= */
      .review-note {
        text-align: center;
        font-size: 0.75rem;
        color: #aaaaaa;
        margin-top: 25px;
        letter-spacing: 0.5px;
      }

      /* =========================================================
           SUBMIT
        ========================================================= */
      .submit-btn {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 15px auto 0;
        padding: 14px;
        background: #d4af37;
        color: #0d0d0d;
        border: none;
        border-radius: 6px;
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .submit-btn:hover {
        background: #ffffff;
        box-shadow:
          0 4px 20px rgba(212, 175, 55, 0.4);
      }

      /* =========================================================
           FOOTER
        ========================================================= */
      .site-footer {
        width: 100%;
        padding: 20px;
        text-align: center;
        font-size: 0.68rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color:
          rgba(255, 255, 255, 0.6);
        background: #121212;
        border-top:
          1px solid rgba(255, 255, 255, 0.1);
      }

      /* =========================================================
           RESPONSIVE
        ========================================================= */
      @media (max-width: 700px) {
        .field-row {
          grid-template-columns: 1fr;
        }

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

        .calendar-picker,
        .time-picker {
          max-width: 100%;
        }
      }

      @media (max-width: 480px) {
        .form-section {
          padding:
            40px 12px 60px;
        }

        .form-card {
          padding: 22px 17px;
        }

        .hero-section {
          min-height: 360px;
        }

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

        .hero-subtitle {
          font-size: 0.72rem;
          letter-spacing: 1.2px;
        }
      }
