/* ============================================================
   landing.css — Page-specific styles for index.php (landing page)
   Ocean Club Global
   ============================================================ */

/* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.3) saturate(1.1) brightness(0.95) hue-rotate(-5deg);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10,7,3,0.78) 0%,
      rgba(10,7,3,0.35) 45%,
      rgba(10,7,3,0.08) 100%
    );
  }

  /* ── HERO LOGO ── */
  .hero-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .hero-logo-img {
    height: min(260px, 32vh);
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 4px 20px rgba(200,169,110,0.2));
    flex-shrink: 0;
  }

  .hero-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
    width: 100%;
    align-self: stretch;
  }

  .hero-logo-ocean {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.65rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    line-height: 1;
    display: block;
    background: linear-gradient(to top right, #EDBA47 0%, #F8F9D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-logo-rule {
    display: block !important;
    height: 1px;
    min-height: 1px;
    background: linear-gradient(to right, rgba(237,186,71,0.6), rgba(248,249,209,0.6));
    margin: 0.1rem 0;
    width: 63%;
    min-width: 38px;
    flex-shrink: 0;
  }

  .hero-logo-sub {
    font-family: 'Jost', sans-serif;
    font-size: 2.88rem;
    font-weight: 300;
    letter-spacing: 0.32em;
    line-height: 1;
    display: block;
    background: linear-gradient(to top right, #EDBA47 0%, #F8F9D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 18.9rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 1.2s ease-out 0.3s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--warm-white);
    margin-bottom: 1rem;
    display: block;
  }

  .hero-h1-line1 {
    font-size: clamp(2.55rem, 5.25vw, 4.75rem);
    white-space: nowrap;
    display: block !important;
    line-height: 1;
  }

  .hero-h1-line2 {
    display: block !important;
    padding-top: 10px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 1.17rem;
    font-weight: 200;
    letter-spacing: 0.06em;
    line-height: 1.85;
    color: rgba(250,247,240,0.65);
    max-width: 580px;
    margin: 0 auto 1.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }

  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
  }

  .scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(200,169,110,0.45);
    writing-mode: vertical-rl;
  }

  .scroll-line {
    width: 0.5px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(200,169,110,0.45), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* ── PHILOSOPHY ── */
  .philosophy {
    background: var(--warm-white);
    padding: 9rem 4rem;
  }

  .philosophy-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
  }

  .philosophy-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 2rem;
  }

  .philosophy-text h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .philosophy-text p {
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.3rem;
  }

  .philosophy-visual {
    position: relative;
  }

  .philosophy-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
  }

  .philosophy-img-accent {
    position: absolute;
    bottom: -2.5rem;
    left: -2.5rem;
    width: 52%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 5px solid var(--warm-white);
    box-shadow: 0 8px 40px rgba(184,146,42,0.12);
  }

  .philosophy-badge {
    position: absolute;
    top: 2rem;
    right: -2rem;
    background: var(--gold);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    width: 120px;
    box-shadow: 0 8px 30px rgba(184,146,42,0.25);
  }

  .philosophy-badge .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    display: block;
  }

  .philosophy-badge .small {
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.4rem;
    opacity: 0.85;
  }

  /* ── EVENTS ── */
  .events-section {
    background: var(--cream-mid);
    padding: 9rem 4rem;
  }

  .events-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .events-header .section-label {
    justify-content: center;
  }

  .events-header .section-label::before { display: none; }

  .events-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0;
  }

  .events-header h2 em { font-style: italic; color: var(--gold); }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .event-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }

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

  .event-card:hover img { transform: scale(1.06); }

  .event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,7,3,0.88) 0%, rgba(10,7,3,0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.8rem;
    transition: background 0.4s;
  }

  .event-card:hover .event-overlay {
    background: linear-gradient(to top, rgba(10,7,3,0.93) 0%, rgba(10,7,3,0.45) 60%, rgba(10,7,3,0.05) 100%);
  }

  .event-tag {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-bottom: 0.5rem;
  }

  .event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .event-desc {
    font-size: 1.0rem;
    font-weight: 200;
    line-height: 1.7;
    color: rgba(250,247,240,0.65);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
  }

  .event-card:hover .event-desc { max-height: 80px; opacity: 1; }

  /* ── FEATURES ── */
  .features {
    background: var(--warm-white);
    padding: 9rem 4rem;
  }

  .features-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .features-header {
    margin-bottom: 5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }

  .features-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.15;
  }

  .features-header h2 em { font-style: italic; color: var(--gold); }

  .features-header p {
    max-width: 380px;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 0.5px solid var(--border);
  }

  .feature-item {
    border-right: 0.5px solid var(--border);
    padding: 3rem 2.5rem 3rem 0;
  }

  .feature-item:last-child { border-right: none; padding-right: 0; }
  .feature-item:not(:first-child) { padding-left: 2.5rem; }

  .feature-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .feature-tag {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.17rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
  }

  .feature-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
  }

  /* ── FULL BLEED ── */
  .full-bleed {
    position: relative;
    height: 65vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .full-bleed img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .full-bleed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,7,3,0.52);
  }

  .full-bleed-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 4rem;
  }

  .full-bleed-content .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--warm-white);
    line-height: 1.35;
    max-width: 850px;
    margin: 0 auto 1.5rem;
  }

  .full-bleed-content .quote-attr {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-mid);
  }


  /* ── MEMBERSHIP IMAGE ── */
  .membership-text {
    display: flex;
    flex-direction: column;
  }

  .membership-img-wrap {
    flex: 1;
    margin-top: 2.5rem;
    min-height: 0;
    overflow: hidden;
  }

  .membership-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* ── MEMBERSHIP ── */
  .membership {
    background: var(--cream-mid);
    padding: 9rem 4rem;
  }

  .membership-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: stretch;
  }

  .membership-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .membership-text h2 em { font-style: italic; color: var(--gold); }

  .membership-text p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2.5rem;
  }

  .perks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .perks-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.07rem;
    font-weight: 300;
    color: var(--text-mid);
    padding-bottom: 0.9rem;
    border-bottom: 0.5px solid var(--border);
  }

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

  .perks-list li::before {
    content: '';
    width: 18px;
    height: 0.5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .membership-form {
    background: var(--warm-white);
    border: 0.5px solid var(--border-mid);
    padding: 3rem;
    box-shadow: 0 4px 40px rgba(184,146,42,0.06);
  }

  .membership-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .membership-form .form-sub {
    font-size: 1.0rem;
    font-weight: 300;
    color: var(--text-xlight);
    margin-bottom: 2.5rem;
    letter-spacing: 0.04em;
  }

  .form-field { margin-bottom: 1.4rem; }

  .form-field label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .form-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid var(--border-mid);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-size: 1.12rem;
    font-weight: 300;
    padding: 0.7rem 0;
    outline: none;
    transition: border-color 0.3s;
  }

  .form-field input::placeholder { color: var(--text-xlight); }
  .form-field input:focus { border-color: var(--gold); }

  .form-submit {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1.1rem;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s, transform 0.2s;
  }

  .form-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }

  .form-note {
    font-size: 0.65rem;
    color: var(--text-xlight);
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.04em;
  }

  /* ── LOCATION ── */
  .location-section {
    background: var(--warm-white);
    padding: 9rem 4rem;
  }

  .location-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: center;
  }

  .location-visual { position: relative; }

  .location-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .location-img-secondary {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 5px solid var(--warm-white);
    box-shadow: 0 8px 40px rgba(184,146,42,0.1);
  }

  .location-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .location-text h2 em { font-style: italic; color: var(--gold); }

  .location-text p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.2rem;
  }

  .location-pills {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 0.5px solid var(--border);
  }

  .location-pill-item .lp-label {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .location-pill-item .lp-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .location-divider {
    width: 0.5px;
    background: var(--border);
    align-self: stretch;
  }

  /* ── TESTIMONIALS ── */
  .social-proof {
    background: var(--cream-mid);
    padding: 9rem 4rem;
  }

  .testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .testimonials-header .section-label {
    justify-content: center;
  }

  .testimonials-header .section-label::before { display: none; }

  .testimonials-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--text-dark);
  }

  .testimonials-header h2 em { font-style: italic; color: var(--gold); }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .testimonial {
    background: var(--warm-white);
    border: 0.5px solid var(--border);
    padding: 2.5rem;
    position: relative;
  }

  .testimonial::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold-pale);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
  }

  .testimonial-author { display: flex; align-items: center; gap: 0.8rem; }

  .author-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .author-info .name {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .author-info .role {
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--text-xlight);
    letter-spacing: 0.05em;
  }

  /* ── FINAL CTA ── */
  .final-cta {
    position: relative;
    padding: 10rem 4rem;
    text-align: center;
    overflow: hidden;
  }

  .final-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
  }

  .final-cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--cream-mid);
    opacity: 0.75;
  }

  .final-cta-content { position: relative; z-index: 2; }

  .final-cta .section-label { justify-content: center; }
  .final-cta .section-label::before { display: none; }

  .final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .final-cta h2 em { font-style: italic; color: var(--gold); }

  .final-cta p {
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 460px;
    margin: 0 auto 3rem;
  }

  .final-cta-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }

  /* ── PREVIOUS EVENTS ── */
  .prev-events {
    background: var(--warm-white);
    padding: 9rem 4rem;
  }

  .prev-events-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .prev-events-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .prev-events-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .prev-events-header h2 em { font-style: italic; color: var(--gold); }

  .prev-events-header .section-label {
    justify-content: center;
  }
  .prev-events-header .section-label::before { display: none; }

  .prev-events-header p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
  }

  .prev-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  .prev-event-card {
    display: flex;
    flex-direction: column;
    border: 0.5px solid var(--border);
    background: var(--warm-white);
    transition: box-shadow 0.3s;
  }

  .prev-event-card:hover {
    box-shadow: 0 8px 40px rgba(184,146,42,0.1);
  }

  .prev-event-collage {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2px;
    background: var(--cream-dark);
  }

  .collage-main {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
  }

  .collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .prev-event-card:hover .collage-main img { transform: scale(1.05); }

  .collage-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,7,3,0.55) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 0.8rem;
  }

  .collage-tag {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(10,7,3,0.45);
    padding: 0.3rem 0.6rem;
    backdrop-filter: blur(4px);
  }

  .collage-side {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .collage-thumb {
    flex: 1;
    overflow: hidden;
  }

  .collage-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .prev-event-card:hover .collage-thumb img { transform: scale(1.05); }

  .prev-event-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .prev-event-date {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .prev-event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }

  .prev-event-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    flex: 1;
    margin-bottom: 1.2rem;
  }

  .prev-event-link {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 0.5px solid var(--border-mid);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.3s, border-color 0.3s;
  }

  .prev-event-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

  .prev-events-footer {
    text-align: center;
  }

  /* ============================================================
     RESPONSIVE — landing.css
     Breakpoints: tablet (1024px), mobile (768px), small (480px)
     ============================================================ */

  @media (max-width: 1024px) {
    /* Hero logo & typeset — 25% smaller */
    .hero-h1-line1 { font-size: clamp(2.1rem, 4.5vw, 3.9rem); display: block !important; }
    .hero-h1-line2 { display: block !important; padding-top: 10px; }
    .hero-logo-img { height: min(241px, 29.7vh); }
    .hero-logo-ocean { font-size: 4.33rem; }
    .hero-logo-sub { font-size: 2.69rem; }
    .hero-logo-rule { display: block !important; height: 1px; min-height: 1px; width: 63%; min-width: 38px; }

  .hero-content { padding: 0 4rem 11.3rem; }

    .philosophy-inner {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    .philosophy-visual { display: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }

    .membership-inner { grid-template-columns: 1fr; gap: 4rem; }
    .location-inner { grid-template-columns: 1fr; gap: 4rem; }
    .location-visual { display: none; }

    .testimonials { grid-template-columns: repeat(2, 1fr); }
    .testimonial:last-child { display: none; }

    .prev-events-grid { grid-template-columns: repeat(2, 1fr); }
    .prev-event-card:last-child { display: none; }

    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .event-card:last-child { display: none; }
  }

  @media (max-width: 768px) {
    .membership-img-wrap { display: none; }
    /* Hero */

  .hero-content { padding: 0 1.5rem 3.6rem; }
    .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .hero-sub { font-size: 1.07rem; }
    .hero-h1-line1 { font-size: clamp(1.82rem, 7.5vw, 2.57rem); display: block !important; }
    .hero-h1-line2 { display: block !important; padding-top: 10px; }
    .hero-logo-wrap { max-width: 90vw; overflow: hidden; }
    .hero-logo-img { height: min(250px, 35.75vh); }
    .hero-logo-ocean { font-size: clamp(3.44rem, 9.63vw, 4.48rem); }
    .hero-logo-sub { font-size: clamp(2.21rem, 5.5vw, 2.78rem); }
    .hero-logo-rule { display: block !important; height: 1px; min-height: 1px; width: 63%; min-width: 38px; }
    .scroll-hint { display: none; }

    /* Philosophy */
    .philosophy { padding: 5rem 1.5rem; }

    /* Events */
    .events-section { padding: 5rem 1.5rem; }
    .events-grid { grid-template-columns: 1fr; }
    .event-card { display: block; }

    /* Features */
    .features { padding: 5rem 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none; padding-left: 0; padding-right: 0; }
    .features-header { flex-direction: column; gap: 1.5rem; }

    /* Full bleed */
    .full-bleed-content .quote { font-size: clamp(1.4rem, 5vw, 2rem); }

    /* Membership */
    .membership { padding: 5rem 1.5rem; }
    .membership-form { padding: 2rem 1.5rem; }

    /* Location */
    .location-section { padding: 5rem 1.5rem; }

    /* Testimonials */
    .social-proof { padding: 5rem 1.5rem; }
    .testimonials { grid-template-columns: 1fr; }
    .testimonial:last-child { display: block; }

    /* Previous events */
    .prev-events { padding: 5rem 1.5rem; }
    .prev-events-grid { grid-template-columns: 1fr; }
    .prev-event-card:last-child { display: flex; }

    /* Final CTA */
    .final-cta { padding: 6rem 1.5rem; }
    .final-cta-actions { flex-direction: column; align-items: center; }

    /* Footer */
    footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem; }
    .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-h1-line1 { font-size: clamp(1.52rem, 7vw, 2.12rem); display: block !important; }
    .hero-h1-line2 { display: block !important; padding-top: 10px; }
    .hero-logo-wrap { max-width: 92vw; }
    .hero-logo-img { height: min(179px, 30.25vh); }
    .hero-logo-ocean { font-size: clamp(2.48rem, 8.25vw, 3.16rem); }
    .hero-logo-sub { font-size: clamp(1.54rem, 4.4vw, 1.98rem); }
    .hero-logo-rule { display: block !important; height: 1px; min-height: 1px; width: 63%; min-width: 38px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 1rem; }
    footer { grid-template-columns: 1fr; }
    .philosophy-text h2,
    .membership-text h2,
    .location-text h2 { font-size: 1.8rem; }
    .prev-events-grid { grid-template-columns: 1fr; }
  }

  /* ── FORM ENHANCEMENTS ── */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

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

  .req {
    color: var(--gold);
    font-size: 0.7rem;
  }

  .form-note-inline {
    font-size: 0.65rem;
    color: var(--text-xlight);
    margin-top: -0.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }

  .form-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 0.5px solid var(--border-mid);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.7rem 0;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.3s;
  }

  .form-field select:focus { border-color: var(--gold); }
  .form-field select option { background: var(--warm-white); color: var(--text-dark); }

  .form-field input.error,
  .form-field select.error {
    border-bottom-color: #e57373;
  }

  .form-field .field-error {
    font-size: 0.62rem;
    color: #e57373;
    margin-top: 0.3rem;
    display: block;
  }

  .form-message {
    padding: 1.2rem 1.5rem;
    font-size: 1.0rem;
    font-weight: 300;
    color: var(--text-xlight);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    border-radius: 0;
    text-align: center;
    animation: fadeUp 0.4s ease;
  }

  .form-message.success {
    background: rgba(184,146,42,0.08);
    border: 0.5px solid var(--border-mid);
  }

  .form-message.error {
    background: rgba(184,146,42,0.05);
    border: 0.5px solid var(--border);
  }

  @media (max-width: 768px) {
    .form-row,
    .form-row-3 {
      grid-template-columns: 1fr;
    }
  }

  /* ── FORM SENDING STATE ── */
  .form-sending {
    text-align: center;
    padding: 3rem 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold-mid);
    letter-spacing: 0.1em;
  }

  .sending-dots span {
    display: inline-block;
    opacity: 0;
    animation: dotFade 1.4s infinite;
  }

  .sending-dots span:nth-child(1) { animation-delay: 0s; }
  .sending-dots span:nth-child(2) { animation-delay: 0.28s; }
  .sending-dots span:nth-child(3) { animation-delay: 0.56s; }

  @keyframes dotFade {
    0%,  60%, 100% { opacity: 0; }
    30%            { opacity: 1; }
  }
