/* ============================================================
 * contact-page section
 * Rendered from resources/views/components/sections/contact-page.blade.php
 * ============================================================ */

/* ======================================================
       CONTACT PAGE — indigo + brass, matches events page
       ====================================================== */
    .cp {
      color: #F5EEDD;
    }

    /* ─── Hero (dark indigo, brass accents) ─── */
    .cp__hero {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(80% 60% at 15% 30%, rgba(63, 38, 163, 0.35) 0%, rgba(63, 38, 163, 0) 60%),
        linear-gradient(135deg, #14093F 0%, #1B0F5E 45%, #241773 100%);
    }
    .cp__hero-bg { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
    .cp__hero-bg-img {
      display: block; width: 100%; height: 100%;
      object-fit: cover; object-position: 60% 45%;
      filter: brightness(0.9) contrast(1.05) saturate(1.1);
      opacity: 0.55;
      mix-blend-mode: screen;
    }
    .cp__hero-scrim {
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(20,9,63,0.92) 0%, rgba(20,9,63,0.78) 35%, rgba(20,9,63,0.35) 65%, rgba(20,9,63,0) 90%),
        linear-gradient(180deg, rgba(20,9,63,0.35) 0%, rgba(20,9,63,0) 25%, rgba(20,9,63,0) 70%, rgba(20,9,63,0.55) 100%);
      z-index: 2;
    }
    .cp__hero-inner {
      position: relative; z-index: 3;
      max-width: 82rem; margin-inline: auto;
      padding-inline: clamp(1.25rem, 5vw, 4rem);
      padding-block: clamp(4rem, 8vw, 6rem);
    }

    /* Kicker / diamond bullet */
    .cp__kicker {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--font-body-stack);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #E9C58A;
      margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
    }
    .cp__diamond {
      width: 8px; height: 8px;
      background: #E9C58A;
      transform: rotate(45deg);
      display: inline-block;
      box-shadow: 0 0 10px rgba(233,197,138,0.55);
    }
    .cp__kicker-sep { opacity: 0.55; padding-inline: 0.2rem; }

    /* Headline */
    .cp__h1 {
      font-family: var(--font-display-stack);
      font-weight: 400;
      font-size: clamp(2.75rem, 6.5vw, 5.5rem);
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: #F5EEDD;
      margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
      max-width: 22ch;
    }
    .cp__h1-lead {
      display: block;
      font-size: 0.5em;
      line-height: 1.1;
      color: rgba(245,238,221,0.72);
      font-weight: 400;
      margin-bottom: 0.35rem;
    }
    .cp__h1-alt {
      display: block;
      background: linear-gradient(90deg, #E9C58A 0%, #F5EEDD 65%, #E9C58A 100%);
      -webkit-background-clip: text; background-clip: text;
      color: transparent;
      font-style: italic;
    }
    .cp__lead {
      font-family: var(--font-body-stack);
      font-size: clamp(1rem, 1.15vw, 1.15rem);
      line-height: 1.65;
      color: rgba(245,238,221,0.82);
      max-width: 48ch;
      margin: 0;
    }

    /* Hero actions */
    .cp__hero-actions {
      margin-top: clamp(2rem, 3.5vw, 2.5rem);
      display: flex; flex-wrap: wrap; align-items: center;
      gap: 1rem 1.75rem;
    }
    .cp__hero-cta {
      display: inline-flex; align-items: center; gap: 0.65rem;
      padding: 0.95rem 1.6rem;
      background: linear-gradient(180deg, #E9C58A 0%, #B68A45 100%);
      color: #14093F;
      font-family: var(--font-body-stack);
      font-size: 0.86rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 12px 28px -12px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.45);
      transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
    }
    .cp__hero-cta:hover, .cp__hero-cta:focus-visible {
      transform: translateY(-1px); filter: brightness(1.06); outline: none;
      box-shadow: 0 16px 32px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.55);
    }
    .cp__hero-arrow { transition: transform 220ms ease; }
    .cp__hero-cta:hover .cp__hero-arrow { transform: translateX(4px); }

    /* Secondary hero button — outlined brass pill (matches primary shape but
       ghosted so it complements the filled CTA next to it). */
    .cp__hero-link {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.9rem 1.5rem;
      background: transparent;
      color: #F5EEDD;
      font-family: var(--font-body-stack);
      font-size: 0.86rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid rgba(233, 197, 138, 0.55);
      border-radius: 999px;
      backdrop-filter: blur(2px);
      transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
    }
    .cp__hero-link:hover, .cp__hero-link:focus-visible {
      background: rgba(233, 197, 138, 0.14);
      color: #E9C58A;
      border-color: #E9C58A;
      transform: translateY(-1px);
      box-shadow: 0 12px 26px -14px rgba(0,0,0,0.5);
      outline: none;
    }
    .cp__hero-link-icon { width: 16px; height: 16px; color: #E9C58A; flex-shrink: 0; }
    .cp__hero-link:hover .cp__hero-link-icon,
    .cp__hero-link:focus-visible .cp__hero-link-icon { color: #E9C58A; }

    /* ─── Body: details + form ─── */
    .cp__body {
      background: linear-gradient(180deg, #FBF5E8 0%, #F5EDDA 100%);
      color: #14093F;
      border-top: 1px solid rgba(182, 138, 69, 0.25);
    }
    .cp__body-inner {
      max-width: 82rem; margin-inline: auto;
      padding-inline: clamp(1.25rem, 5vw, 4rem);
      padding-block: clamp(3.5rem, 6vw, 5.5rem);
    }
    .cp__split {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(2.5rem, 5vw, 4rem);
      align-items: start;
    }
    @media (min-width: 60rem) {
      .cp__split { grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr); }
    }

    /* Detail card */
    .cp__details {
      background: #FFFDF5;
      border: 1px solid rgba(182, 138, 69, 0.28);
      padding: clamp(1.5rem, 2.5vw, 2.25rem);
      display: flex; flex-direction: column;
      gap: clamp(1.5rem, 2vw, 2rem);
      position: relative;
      box-shadow: 0 24px 48px -28px rgba(27,15,94,0.25);
    }
    .cp__details::before, .cp__details::after {
      content: ''; position: absolute; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(182,138,69,0.55) 20%, rgba(182,138,69,0.55) 80%, transparent);
      pointer-events: none;
    }
    .cp__details::before { top: 6px; opacity: 0.5; }
    .cp__details::after { bottom: 6px; opacity: 0.5; }

    .cp__block { min-width: 0; }
    .cp__block-head {
      display: flex; align-items: center; gap: 0.6rem;
      margin-bottom: 0.7rem;
    }
    .cp__block-icon {
      display: inline-flex; width: 26px; height: 26px;
      align-items: center; justify-content: center;
      color: #B68A45; flex-shrink: 0;
    }
    .cp__block-icon svg { width: 100%; height: 100%; }
    .cp__block-label {
      font-family: var(--font-body-stack);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #B68A45;
      margin: 0;
    }
    .cp__block-body { padding-left: calc(26px + 0.6rem); }
    .cp__line {
      font-family: var(--font-body-stack);
      font-size: 0.95rem; line-height: 1.6;
      color: #1B0F5E;
      margin: 0;
    }
    .cp__line + .cp__line { margin-top: 0.15rem; }
    .cp__link {
      font-family: var(--font-body-stack);
      font-size: 0.95rem;
      color: #3F26A3;
      text-decoration: underline;
      text-decoration-color: rgba(63, 38, 163, 0.35);
      text-underline-offset: 0.35em;
      transition: color 180ms ease, text-decoration-color 180ms ease;
    }
    .cp__link:hover, .cp__link:focus-visible {
      color: #1B0F5E; text-decoration-color: #1B0F5E; outline: none;
    }

    .cp__block-btn {
      display: inline-flex; align-items: center; gap: 0.45rem;
      margin-top: 0.85rem;
      padding: 0.55rem 0.95rem;
      background: linear-gradient(180deg, #1B0F5E 0%, #14093F 100%);
      color: #F5EEDD;
      font-family: var(--font-body-stack);
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 6px 16px -8px rgba(27,15,94,0.4);
      transition: filter 180ms ease, transform 180ms ease;
    }
    .cp__block-btn:hover, .cp__block-btn:focus-visible {
      filter: brightness(1.15); transform: translateY(-1px); outline: none;
    }
    .cp__block-btn-icon { width: 14px; height: 14px; color: #E9C58A; }

    /* ─── Socials — real brand icons + brand-colour hover ─── */
    .cp__socials {
      list-style: none; margin: 0; padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(3rem, 1fr));
      gap: 0.55rem;
      padding-left: calc(26px + 0.6rem);
    }
    .cp__social {
      display: inline-flex; align-items: center; justify-content: center;
      width: 100%; aspect-ratio: 1 / 1;
      background: rgba(27, 15, 94, 0.04);
      border: 1px solid rgba(27, 15, 94, 0.12);
      color: #1B0F5E;
      text-decoration: none;
      border-radius: 12px;
      transition: transform 200ms ease, color 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    }
    .cp__social:hover, .cp__social:focus-visible {
      transform: translateY(-2px); outline: none;
      box-shadow: 0 10px 22px -12px rgba(0,0,0,0.35);
    }
    .cp__social-icon { display: inline-flex; width: 22px; height: 22px; }
    .cp__social-icon svg { width: 100%; height: 100%; }
    .cp__social-label {
      position: absolute !important;
      width: 1px; height: 1px; overflow: hidden;
      clip: rect(0 0 0 0); white-space: nowrap;
    }
    /* Brand tinted hover states */
    .cp__social[data-brand="instagram"]:hover { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%); color: #fff; border-color: transparent; }
    .cp__social[data-brand="facebook"]:hover  { background: #1877F2; color: #fff; border-color: transparent; }
    .cp__social[data-brand="youtube"]:hover   { background: #FF0000; color: #fff; border-color: transparent; }
    .cp__social[data-brand="tiktok"]:hover    { background: #000; color: #fff; border-color: transparent; }
    .cp__social[data-brand="twitter"]:hover,
    .cp__social[data-brand="x"]:hover         { background: #000; color: #fff; border-color: transparent; }
    .cp__social[data-brand="linkedin"]:hover  { background: #0A66C2; color: #fff; border-color: transparent; }
    .cp__social[data-brand="spotify"]:hover   { background: #1DB954; color: #fff; border-color: transparent; }
    .cp__social[data-brand="soundcloud"]:hover{ background: #FF5500; color: #fff; border-color: transparent; }
    .cp__social[data-brand="whatsapp"]:hover  { background: #25D366; color: #fff; border-color: transparent; }
    .cp__social[data-brand="threads"]:hover   { background: #000; color: #fff; border-color: transparent; }
    .cp__social[data-brand="vimeo"]:hover     { background: #1AB7EA; color: #fff; border-color: transparent; }

    /* ─── Form column ─── */
    .cp__form-col { min-width: 0; }
    .cp__form {
      display: flex; flex-direction: column; gap: 1.25rem;
      background: #FFFDF5;
      border: 1px solid rgba(182, 138, 69, 0.28);
      padding: clamp(1.75rem, 3.5vw, 2.75rem);
      box-shadow: 0 24px 48px -28px rgba(27,15,94,0.25);
    }
    .cp__form-head { margin-bottom: 0.75rem; }
    .cp__form-eyebrow {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--font-body-stack);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.24em; text-transform: uppercase;
      color: #B68A45;
      margin: 0 0 0.75rem;
    }
    .cp__form-h {
      font-family: var(--font-display-stack);
      font-weight: 400;
      font-size: clamp(1.75rem, 3vw, 2.4rem);
      line-height: 1.1;
      letter-spacing: -0.015em;
      color: #1B0F5E;
      margin: 0 0 0.55rem;
    }
    .cp__form-sub {
      font-family: var(--font-body-stack);
      font-size: 0.95rem; line-height: 1.5;
      color: rgba(27,15,94,0.7);
      margin: 0;
    }

    .cp__field { display: flex; flex-direction: column; gap: 0.4rem; }
    .cp__label {
      font-family: var(--font-body-stack);
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: rgba(27,15,94,0.7);
    }
    .cp__req { color: #B68A45; }
    .cp__input {
      font-family: var(--font-body-stack);
      font-size: 0.98rem;
      color: #1B0F5E;
      background: #FBF5E8;
      border: 1px solid rgba(27, 15, 94, 0.18);
      padding: 0.75rem 0.95rem;
      width: 100%;
      transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
      outline: none;
      appearance: none; -webkit-appearance: none;
      border-radius: 6px;
    }
    .cp__input:focus {
      border-color: #B68A45;
      background: #FFFDF5;
      box-shadow: 0 0 0 3px rgba(182,138,69,0.22);
    }
    .cp__input--error { border-color: #C0392B; }
    .cp__select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B68A45' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.9rem center;
      padding-right: 2.5rem;
    }
    .cp__textarea { resize: vertical; min-height: 9rem; }
    .cp__error {
      font-family: var(--font-body-stack);
      font-size: 0.82rem; color: #C0392B;
      margin: 0.15rem 0 0;
    }

    .cp__submit {
      align-self: flex-start;
      display: inline-flex; align-items: center; justify-content: center;
      gap: 0.55rem;
      font-family: var(--font-body-stack);
      font-size: 0.86rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: #14093F;
      background: linear-gradient(180deg, #E9C58A 0%, #B68A45 100%);
      border: none;
      padding: 0.95rem 1.75rem;
      cursor: pointer;
      border-radius: 999px;
      box-shadow: 0 12px 28px -12px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
      transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
      margin-top: 0.5rem;
    }
    .cp__submit:hover { transform: translateY(-1px); filter: brightness(1.06); }
    .cp__submit--busy { opacity: 0.65; cursor: not-allowed; }
    .cp__submit:focus-visible { outline: 2px solid #B68A45; outline-offset: 3px; }
    .cp__submit-label { display: inline-flex; align-items: center; gap: 0.5rem; }
    .cp__submit-arrow { transition: transform 220ms ease; }
    .cp__submit:hover .cp__submit-arrow { transform: translateX(3px); }

    /* Success state */
    .cp__success {
      padding: clamp(1.75rem, 3vw, 2.25rem);
      background: linear-gradient(180deg, #FFFDF5 0%, #FBF5E8 100%);
      border: 1px solid rgba(182,138,69,0.4);
      text-align: center;
      box-shadow: 0 24px 48px -28px rgba(27,15,94,0.25);
    }
    .cp__success-tick {
      display: inline-flex; align-items: center; justify-content: center;
      width: 46px; height: 46px; margin: 0 auto 1rem;
      background: linear-gradient(180deg, #E9C58A 0%, #B68A45 100%);
      color: #14093F;
      border-radius: 999px;
      box-shadow: 0 8px 20px -8px rgba(0,0,0,0.35);
    }
    .cp__success-tick svg { width: 22px; height: 22px; }
    .cp__success-title {
      font-family: var(--font-display-stack);
      font-weight: 400;
      font-size: clamp(1.4rem, 2.4vw, 1.8rem);
      color: #1B0F5E;
      margin: 0 0 0.5rem;
    }
    .cp__success-body {
      font-family: var(--font-body-stack);
      font-size: 0.98rem; line-height: 1.5;
      color: rgba(27,15,94,0.75);
      max-width: 36ch; margin: 0 auto 1.25rem;
    }
    .cp__success-dismiss {
      font-family: var(--font-body-stack);
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: #3F26A3;
      background: none; border: none; cursor: pointer;
      padding: 0.4rem 0.65rem;
      border-bottom: 1px solid rgba(63,38,163,0.35);
      transition: color 180ms ease, border-color 180ms ease;
    }
    .cp__success-dismiss:hover, .cp__success-dismiss:focus-visible {
      color: #14093F; border-color: #14093F; outline: none;
    }

    /* ─── Map ─── */
    .cp__map-wrap {
      position: relative;
      height: clamp(280px, 45vw, 460px);
      background: #14093F;
    }
    @media (min-width: 60rem) {
      .cp__map-wrap { height: clamp(360px, 30vw, 500px); }
    }
    .cp__map {
      width: 100%; height: 100%; display: block; border: 0;
      filter: contrast(1.02) saturate(1.05);
    }
    .cp__map-btn {
      position: absolute;
      bottom: 1.25rem; right: 1.25rem;
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.2rem;
      background: linear-gradient(180deg, #E9C58A 0%, #B68A45 100%);
      color: #14093F;
      font-family: var(--font-body-stack);
      font-size: 0.82rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 14px 30px -14px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
      transition: transform 200ms ease, filter 200ms ease;
    }
    .cp__map-btn:hover, .cp__map-btn:focus-visible {
      transform: translateY(-1px); filter: brightness(1.06); outline: none;
    }
    .cp__map-btn-icon { width: 15px; height: 15px; color: #14093F; }

    @media (prefers-reduced-motion: reduce) {
      .cp__hero-cta, .cp__hero-arrow, .cp__hero-link,
      .cp__social, .cp__submit, .cp__submit-arrow, .cp__map-btn,
      .cp__block-btn { transition: none; }
    }
