/* ===================================================================
   players.css — shared stylesheet for playerssportscenter.com
   Extracted from the inline <style> blocks on 2026-08-18.
   Page-specific rules stay in each page's own <style> block,
   which loads after this file and therefore wins on ties.
   =================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sand: #f4e9d6;
    --terracotta: #d97757;
    --coral: #e89478;
    --teal-deep: #1a4d4a;
    --teal: #2a6b67;
    --sky: #a8d5d1;
    --mint: #8fc9bf;
    --cream: #faf6ed;
    --ink: #1c2a2e;
  }

html, body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: clip;
  }

/* Rentals & Events Callout */
  .callout {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    padding: 5rem 2rem;
    overflow: hidden;
  }

.callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 50%, rgba(143, 201, 191, 0.22) 0%, transparent 45%),
      radial-gradient(circle at 85% 50%, rgba(42, 107, 103, 0.3) 0%, transparent 45%);
    pointer-events: none;
  }

.callout::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
  }

.callout-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

.callout-eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--mint);
    margin-bottom: 0.5rem;
  }

.callout-title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    color: var(--cream);
  }

.callout-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--mint);
    font-variation-settings: "opsz" 144;
  }

.callout-title .period {
    color: var(--mint);
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144;
  }

.callout-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 38rem;
    margin: 0 auto 2rem;
    opacity: 0.8;
  }

.callout-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }

.tag {
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(250, 246, 237, 0.25);
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.25s ease;
    background: rgba(250, 246, 237, 0.04);
    color: var(--cream);
    text-decoration: none;
    display: inline-block;
  }

.tag:hover {
    background: rgba(250, 246, 237, 0.12);
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-1px);
  }

.callout-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

.callout-btn {
    display: inline-block;
    background: var(--coral);
    color: var(--ink);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
  }

.callout-btn--primary {
    padding: 1.4rem 3rem;
    font-size: 1.1rem;
    background: var(--mint);
    box-shadow: 0 6px 32px rgba(143, 201, 191, 0.3);
  }

.callout-btn--primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(143, 201, 191, 0.4);
  }

.callout-btn--secondary {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    background: transparent;
    color: var(--mint);
    border: 1.5px solid var(--mint);
  }

.callout-btn--secondary:hover {
    background: var(--mint);
    color: var(--ink);
    transform: translateY(-1px);
  }

/* Social link in callout */
  .callout-social {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

.social-label {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--mint);
  }

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(250, 246, 237, 0.2);
    background: rgba(250, 246, 237, 0.04);
    transition: all 0.2s ease;
  }

.social-link:hover {
    background: rgba(250, 246, 237, 0.12);
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-1px);
  }

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

/* Top banner tying both to Players Sport & Social Group */
  .top-banner {
    position: relative;
    z-index: 5;
    background: var(--ink);
    color: var(--cream);
    padding: 0.85rem 1.5rem;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

.top-banner .star {
    color: #e63946;
    font-size: 1rem;
    line-height: 1;
  }

.top-banner strong {
    font-weight: 700;
    letter-spacing: 0.15em;
  }

/* Nav bar — secondary header below the black banner */
  /* Two-column layout for panel — content (with CTA) on left, form on right */
  .panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
    width: 100%;
  }

.panel > .panel-grid { max-width: 1100px; }

.panel-grid > .content { margin: 0; }

@media (min-width: 900px) {
    .panel-grid {
      grid-template-columns: 1.05fr 0.95fr;
      gap: 3.5rem;
    }
  }

/* Sticky site header (top banner + nav) */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--cream);
    box-shadow: 0 1px 0 rgba(28, 42, 46, 0.06);
  }

.nav-bar {
    position: relative;
    z-index: 5;
    background: var(--cream);
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
  }

.nav-logo img {
    display: block;
    height: 121px;
    width: auto;
    /* Tighten built-in whitespace around the transparent PNG */
    margin: -29px -15px -29px -13px;
  }

.nav-link {
    color: #e63946;
    border: 1.5px solid #e63946;
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

.nav-link:hover,
  .nav-link--active {
    background: #e63946;
    color: var(--cream);
    transform: translateY(-1px);
  }

.stage {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
  }

.panel {
    position: relative;
    padding: 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    overflow: hidden;
  }

.panel > * {
    width: 100%;
    max-width: 640px;
    position: relative;
    z-index: 2;
  }

/* Sports Center side — extra specificity so it overrides .panel in media query too */
  .cream-zone .panel--sports { background: transparent; color: var(--ink); padding-top: 1.5rem; }

/* Cream zone — wraps nav-bar + sports panel with shared decorations */
  .cream-zone {
    position: relative;
    background: var(--cream);
  }

.cream-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 80%, rgba(217, 119, 87, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(42, 107, 103, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }

.cream-zone::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.16 0 0 0 0 0.18 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
  }

.cream-zone > * {
    position: relative;
    z-index: 1;
  }

/* Beach side */
  .panel--beach {
    background: linear-gradient(160deg, #e89148 0%, #d66a3a 45%, #b8482a 100%);
    color: var(--cream);
  }

.panel--beach::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 75% 15%, rgba(255, 240, 200, 0.5) 0%, transparent 35%),
      radial-gradient(ellipse at 50% 110%, rgba(168, 213, 209, 0.4) 0%, transparent 60%);
    pointer-events: none;
  }

.sun {
    position: absolute;
    top: 8%;
    right: 10%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff4d6 0%, #ffd89a 60%, transparent 100%);
    filter: blur(2px);
    animation: sun-glow 6s ease-in-out infinite;
  }

@keyframes sun-glow {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
  }

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    opacity: 0.35;
    pointer-events: none;
  }

.waves svg { width: 100%; height: 100%; }

/* Header */
  .header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
  }

.header-row--logo {
    margin-bottom: 0.5rem;
  }

/* Hero photo — building exterior */
  .hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: var(--ink);
  }

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

/* Main headline */
  .headline {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--ink);
  }

.headline em {
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144;
  }

.mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    font-family: 'Oswald', 'Bebas Neue', 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: 1.9rem;
    letter-spacing: -0.05em;
    line-height: 1;
  }

/* Red star sits inside the counter (hole) of the P, like the Players logo */
  .mark::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 18px;
    width: 8px;
    height: 8px;
    background: #e63946;
    clip-path: polygon(
      50% 0%, 61% 35%, 98% 35%, 68% 57%,
      79% 91%, 50% 70%, 21% 91%, 32% 57%,
      2% 35%, 39% 35%
    );
  }

.panel--sports .mark {
    background: var(--cream);
    color: var(--ink);
    border: 1px solid rgba(28, 42, 46, 0.1);
  }

.panel--beach .mark {
    background: var(--cream);
    color: var(--ink);
  }

.brand-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
  }

.panel--sports .brand-tag { color: var(--teal-deep); }

.panel--beach .brand-tag { color: var(--cream); }

/* Content */
  .content { position: relative; z-index: 2; margin: 0 0 3rem; }

.eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    transform: rotate(-2deg);
  }

.panel--sports .eyebrow { color: var(--terracotta); }

.panel--beach .eyebrow { color: var(--cream); }

.title {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }

.panel--sports .title { color: var(--teal-deep); }

.title em {
    font-style: italic;
    font-weight: 400;
    font-variation-settings: "opsz" 144;
  }

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 28rem;
    opacity: 0.85;
    margin-bottom: 2rem;
  }

.panel--beach .description { opacity: 0.95; }

/* Features list */
  .features-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

.features-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 60px;
  }

.panel--sports .features-heading::after { background: rgba(28, 42, 46, 0.2); }

.panel--beach .features-heading::after { background: rgba(250, 246, 237, 0.35); }

.features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    max-width: 28rem;
  }

.features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
  }

.features li em {
    font-style: italic;
    opacity: 0.7;
    font-family: 'Fraunces', serif;
  }

.features .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
  }

.panel--sports .features .dot {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    margin-top: 0.2rem;
    color: #e63946;
    font-size: 0.9rem;
    line-height: 1;
  }

.panel--sports .features .dot::before {
    content: '★';
  }

.panel--beach .features .dot { background: var(--cream); }

.panel--sports .features li { color: var(--ink); }

.panel--beach .features li { color: var(--cream); }

.panel--sports strong, .panel--beach strong {
    font-weight: 700;
  }

.panel--sports strong { color: var(--ink); }

/* Launch badge */
  .launch {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
  }

.panel--sports .launch {
    background: rgba(42, 107, 103, 0.08);
    color: var(--ink);
    border: 1px solid rgba(42, 107, 103, 0.2);
  }

.panel--beach .launch {
    background: rgba(250, 246, 237, 0.2);
    color: var(--cream);
    border: 1px solid rgba(250, 246, 237, 0.35);
    backdrop-filter: blur(6px);
  }

.launch--top {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }

/* Row of chips (date + address) */
  .launch-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

.launch-row .launch--top {
    margin-bottom: 0;
  }

.launch-pin {
    font-size: 0.85rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }

.launch-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    line-height: 1;
    font-size: 0.95rem;
    animation: pulse 2s ease-in-out infinite;
  }

.launch-dot::before {
    content: '★';
    color: #e63946;
  }

.panel--sports .launch-dot,
  .panel--beach .launch-dot {
    color: #e63946;
  }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

/* Signup */
  .signup { width: 100%; position: relative; z-index: 2; }

/* League button above interest forms */
  .league-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-sizing: border-box;
  }

.league-btn--sports {
    background: var(--teal-deep);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(26, 77, 74, 0.25);
  }

.league-btn--sports:hover {
    background: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 77, 74, 0.35);
  }

.league-btn--beach {
    background: var(--ink);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

.league-btn--beach:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }

/* ===== Interest Form ===== */
  .interest-form {
    background: var(--cream);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
  }

.interest-form--sports {
    border: 1px solid rgba(26, 77, 74, 0.12);
  }

.interest-form--beach {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  }

.form-header {
    margin-bottom: 1.5rem;
  }

.form-eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--terracotta);
  }

.interest-form--beach .form-eyebrow {
    color: var(--terracotta);
  }

.form-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }

.interest-form--beach .form-title {
    color: var(--ink);
  }

.form-sub {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--ink);
    opacity: 0.7;
  }

.form-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(28, 42, 46, 0.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }

.form-input:focus {
    border-color: var(--teal-deep);
    box-shadow: 0 0 0 3px rgba(26, 77, 74, 0.1);
  }

.interest-form--beach .form-input:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.15);
  }

.form-input::placeholder {
    color: rgba(28, 42, 46, 0.4);
  }

.form-checks {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(28, 42, 46, 0.08);
  }

.form-checks-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    opacity: 0.6;
    margin-bottom: 0.65rem;
  }

.check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
  }

.check input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--teal-deep);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
  }

.interest-form--beach .check input[type="checkbox"] {
    accent-color: var(--terracotta);
  }

.check:hover { opacity: 0.85; }

.form-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
  }

.interest-form--sports .form-submit {
    background: var(--teal-deep);
    color: var(--cream);
  }

.interest-form--sports .form-submit:hover {
    background: var(--terracotta);
    transform: translateY(-1px);
  }

.interest-form--beach .form-submit {
    background: var(--terracotta);
    color: var(--cream);
  }

.interest-form--beach .form-submit:hover {
    background: var(--ink);
    transform: translateY(-1px);
  }

.form-msg {
    margin-top: 0.75rem;
    min-height: 1.2rem;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--ink);
    text-align: center;
  }

.interest-form--beach .form-msg {
    color: var(--terracotta);
  }

/* Divider */
  .divider {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(28, 42, 46, 0.2) 15%,
      rgba(28, 42, 46, 0.2) 85%,
      transparent 100%);
    transform: translateY(-0.5px);
    z-index: 3;
  }

.divider-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(28, 42, 46, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--teal-deep);
    z-index: 4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

/* Decorative shapes */
  .ball { position: absolute; border-radius: 50%; opacity: 0.06; pointer-events: none; }

.ball-1 { width: 320px; height: 320px; background: var(--terracotta); bottom: -100px; left: -100px; }

.ball-2 { width: 180px; height: 180px; background: var(--teal); top: 20%; right: -50px; opacity: 0.05; }

.palm {
    position: absolute;
    bottom: -20px;
    left: -30px;
    font-family: 'Fraunces', serif;
    font-size: 14rem;
    line-height: 1;
    opacity: 0.12;
    color: var(--cream);
    pointer-events: none;
    transform: rotate(-8deg);
    font-style: italic;
  }

/* Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
  }

.fade-in:nth-child(1) { animation-delay: 0.1s; }

.fade-in:nth-child(2) { animation-delay: 0.2s; }

.fade-in:nth-child(3) { animation-delay: 0.3s; }

.fade-in:nth-child(4) { animation-delay: 0.4s; }

.fade-in:nth-child(5) { animation-delay: 0.5s; }

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

/* ===== Site footer (link-list) — appended ===== */
  /* ===== Site footer (link-list) ===== */
  .site-footer {
    position: relative;
    background: var(--ink);
    color: var(--cream);
    padding: 3.5rem 2rem 2.5rem;
    overflow: hidden;
  }

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 15% 0%, rgba(143, 201, 191, 0.16) 0%, transparent 45%),
      radial-gradient(circle at 85% 100%, rgba(42, 107, 103, 0.22) 0%, transparent 45%);
    pointer-events: none;
  }

.footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
  }

/* Slim branded band (tagline + Instagram) */
  .footer-band {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(250, 246, 237, 0.12);
  }

.footer-tagline {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
  }

.footer-tagline em,
  .footer-tagline .period {
    font-style: italic;
    font-weight: 400;
    color: var(--mint);
    font-variation-settings: "opsz" 144;
  }

.footer-poweredby {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
  }

.footer-poweredby-label {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--mint);
    white-space: nowrap;
  }

.footer-poweredby img {
    height: 46px;
    width: auto;
    display: block;
  }

.footer-poweredby-link {
    display: inline-flex;
    line-height: 0;
    transition: opacity 0.2s ease;
  }

.footer-poweredby-link:hover { opacity: 0.8; }

/* Link columns — grouped together, not spread edge to edge */
  .footer-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 2.25rem 5.5rem;
    padding: 2.5rem 0;
  }

.footer-col { min-width: 128px; }

/* Social links (Follow column) */
  .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.42rem 0;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.3;
    opacity: 0.82;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }

.footer-social-link:hover {
    color: var(--mint);
    opacity: 1;
    transform: translateX(3px);
  }

.footer-social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.9rem;
  }

.footer-col ul { list-style: none; margin: 0; padding: 0; }

.footer-link {
    display: inline-block;
    padding: 0.42rem 0;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.3;
    opacity: 0.82;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }

.footer-link:hover {
    color: var(--mint);
    opacity: 1;
    transform: translateX(3px);
  }

/* Bottom legal line */
  .footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(250, 246, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    opacity: 0.55;
  }

/* Mobile: add this inside your existing @media (max-width: 900px) block */
  @media (max-width: 900px) {
    .site-footer { padding: 2.5rem 1.5rem 2rem; }
    .footer-band { justify-content: flex-start; }
  }
