<style>
    :root {
      --cream:       #FDFAF5;
      --orange-pale: #FFF0E6;
      --orange-soft: #FFDFC4;
      --orange:      #F07040;
      --orange-deep: #D95520;
      --blue-pale:   #EDF4FF;
      --blue-soft:   #C8DFFF;
      --blue:        #4A90D9;
      --blue-deep:   #2B6CB0;
      --sand:        #F5ECD8;
      --text:        #1A1A1A;
      --text-mid:    #4A4A4A;
      --text-light:  #888;
      --border:      #E8E0D0;
      --white:       #FFFFFF;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(253,250,245,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo img {
      height: 34px;
      width: 34px;
      object-fit: contain;
      border-radius: 8px;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text strong {
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .nav-logo-text span {
      font-size: 0.65rem;
      color: var(--text-light);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .nav-cta {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 9px 22px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 100px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

    .nav-login {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 9px 22px;
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .nav-login:hover { border-color: var(--blue); color: var(--blue-deep); }

    .nav-buttons { display: flex; align-items: center; gap: 10px; }

    /* ─── POPUP OVERLAY ─── */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(20, 20, 20, 0.45);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .popup-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .popup {
      background: var(--white);
      border-radius: 24px;
      width: 100%;
      max-width: 680px;
      max-height: 92vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0,0,0,0.18);
      transform: translateY(20px) scale(0.98);
      transition: transform 0.28s ease, opacity 0.28s ease;
      opacity: 0;
      position: relative;
    }
    .popup-overlay.open .popup {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .popup-header {
      padding: 32px 32px 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }
    .popup-close {
      background: var(--cream);
      border: none;
      border-radius: 50%;
      width: 36px; height: 36px;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--text-mid);
      transition: background 0.15s;
    }
    .popup-close:hover { background: var(--orange-soft); color: var(--orange-deep); }

    .popup-title {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
      line-height: 1.15;
    }
    .popup-subtitle {
      font-size: 0.88rem;
      color: var(--text-light);
      margin-top: 4px;
      line-height: 1.5;
    }

    .popup-steps {
      padding: 24px 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
      margin-top: 24px;
    }
    .popup-step {
      display: flex;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .popup-step:last-child { border-bottom: none; }
    .step-num {
      width: 32px; height: 32px;
      background: var(--orange-pale);
      border: 1.5px solid var(--orange-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--orange-deep);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .step-content strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 3px;
    }
    .step-content p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    .popup-form-section {
      padding: 0 32px 32px;
    }
    .popup-form-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
      display: block;
    }
    .popup-iframe-wrap {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--cream);
    }
    .popup-iframe-wrap iframe {
      width: 100%;
      height: 520px;
      border: none;
      display: block;
    }

    @media (max-width: 540px) {
      .popup { border-radius: 18px; }
      .popup-header { padding: 24px 20px 0; }
      .popup-steps { padding: 20px 20px; }
      .popup-form-section { padding: 0 20px 24px; }
      .popup-title { font-size: 1.3rem; }
      .popup-iframe-wrap iframe { height: 460px; }
    }

    /* ─── HERO ─── */
    .hero {
      padding: 100px 24px 64px;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 56px;
      align-items: center;
      min-height: 90vh;
    }

    .hero-text {}

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      background: var(--orange-pale);
      border: 1px solid var(--orange-soft);
      padding: 5px 12px;
      border-radius: 100px;
      margin-bottom: 22px;
      opacity: 0;
      animation: fadeUp 0.6s 0.1s ease forwards;
    }

    h1.hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.6rem, 5vw, 4.4rem);
      font-weight: 700;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.6s 0.2s ease forwards;
    }
    h1.hero-title em {
      font-style: italic;
      color: var(--orange);
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 32px;
      max-width: 480px;
      opacity: 0;
      animation: fadeUp 0.6s 0.3s ease forwards;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.6s 0.4s ease forwards;
    }
    .meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.78rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--text-mid);
    }

    .hero-btn-wrap {
      opacity: 0;
      animation: fadeUp 0.6s 0.5s ease forwards;
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      padding: 14px 34px;
      background: var(--orange);
      color: var(--white);
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(240,112,64,0.3);
    }
    .btn-main:hover {
      background: var(--orange-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(240,112,64,0.4);
    }

    .hero-visual {
      position: relative;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s ease forwards;
    }
    .hero-visual img.main-photo {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 24px;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .hero-visual-card {
      position: absolute;
      bottom: -20px;
      left: -24px;
      background: var(--white);
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 180px;
    }
    .vc-icon {
      width: 40px; height: 40px;
      background: var(--orange-pale);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .vc-text strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text);
    }
    .vc-text span {
      font-size: 0.72rem;
      color: var(--text-light);
    }

    /* ─── SECTION BASE ─── */
    .section {
      padding: 72px 24px;
    }
    .section-inner {
      max-width: 1080px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
    }
    .section-heading {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 16px;
    }
    .section-body {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 640px;
    }

    /* ─── DIVIDER ─── */
    .divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 0;
    }

    /* ─── ABOUT ─── */
    .about { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-copy p { font-size: 1rem; line-height: 1.82; color: var(--text-mid); }
    .about-copy p + p { margin-top: 16px; }

    .about-photo img {
      width: 100%;
      border-radius: 20px;
      aspect-ratio: 1;
      object-fit: cover;
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    }

    /* ─── QUICK FACTS ─── */
    .facts { background: var(--blue-pale); }

    .facts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 40px;
    }
    .fact-card {
      background: var(--white);
      border-radius: 18px;
      padding: 28px 22px;
      border: 1px solid var(--blue-soft);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .fact-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(74,144,217,0.12);
    }
    .fact-icon { font-size: 1.8rem; margin-bottom: 12px; }
    .fact-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 4px;
    }
    .fact-value {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.1;
    }
    .fact-sub { margin-top: 4px; font-size: 0.82rem; color: var(--text-light); }

    /* ─── PHOTO STRIP ─── */
    .photo-strip { background: var(--cream); padding: 40px 24px; }
    .photo-strip-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 16px;
    }
    .photo-strip img {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      display: block;
    }
    .photo-strip img:first-child { aspect-ratio: 16/9; }
    .photo-strip img:last-child  { aspect-ratio: 1; }

    /* ─── MEMBERSHIP ─── */
    .membership { background: var(--orange-pale); }

    .membership-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
      margin-top: 40px;
    }

    .price-card {
      background: var(--white);
      border-radius: 24px;
      padding: 40px 36px;
      border: 1px solid var(--orange-soft);
      box-shadow: 0 8px 32px rgba(240,112,64,0.08);
    }
    .price-top {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      margin-bottom: 8px;
    }
    .price-amount {
      font-family: 'Fraunces', serif;
      font-size: 4.5rem;
      font-weight: 700;
      line-height: 1;
      color: var(--orange);
      letter-spacing: -0.03em;
    }
    .price-unit {
      font-size: 1rem;
      color: var(--text-light);
      margin-bottom: 10px;
    }
    .price-desc {
      font-size: 0.88rem;
      color: var(--text-light);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .price-includes {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
    .price-includes li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-mid);
    }
    .price-includes li::before {
      content: '';
      width: 18px; height: 18px;
      background: var(--orange-pale);
      border: 1.5px solid var(--orange-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23F07040' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    .membership-copy p {
      font-size: 1rem;
      line-height: 1.82;
      color: var(--text-mid);
    }
    .membership-copy p + p { margin-top: 16px; }

    /* ─── FAQ ─── */
    .faq { background: var(--white); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    details.faq-item {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: box-shadow 0.2s;
    }
    details.faq-item[open] {
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    details.faq-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 22px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.4;
      user-select: none;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary::after {
      content: '+';
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--orange);
      flex-shrink: 0;
      transition: transform 0.25s;
    }
    details.faq-item[open] summary::after {
      transform: rotate(45deg);
    }
    .faq-answer {
      padding: 0 22px 20px;
      font-size: 0.92rem;
      line-height: 1.78;
      color: var(--text-mid);
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    /* ─── LOCATION ─── */
    .location { background: var(--blue-pale); }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
      margin-top: 40px;
    }
    .location-copy p { font-size: 1rem; line-height: 1.82; color: var(--text-mid); }
    .location-copy p + p { margin-top: 14px; }

    .location-map {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--blue-soft);
      box-shadow: 0 8px 24px rgba(74,144,217,0.08);
    }
    .location-map iframe {
      width: 100%;
      height: 320px;
      border: none;
      display: block;
    }
    .location-address {
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .location-address span {
      font-size: 0.88rem;
      color: var(--text-mid);
      font-weight: 500;
    }

    /* ─── SIGN UP CTA ─── */
    .signup { background: var(--orange-pale); text-align: center; }
    .signup .section-inner { display: flex; flex-direction: column; align-items: center; }
    .signup .section-heading { max-width: 520px; }
    .signup .section-body { text-align: center; margin-bottom: 32px; }

    /* ─── CONTACT ─── */
    .contact { background: var(--cream); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      margin-top: 40px;
    }
    .contact-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 32px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    }
    .contact-leader {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .contact-role {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 28px;
    }
    .contact-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
      font-size: 0.92rem;
    }
    .c-icon {
      width: 38px; height: 38px;
      background: var(--blue-pale);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-row a { color: var(--blue-deep); text-decoration: none; font-weight: 500; }
    .contact-row a:hover { text-decoration: underline; }

    .fb-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      padding: 10px 22px;
      background: #1877F2;
      color: var(--white);
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .fb-link:hover { opacity: 0.88; }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .info-box {
      background: var(--white);
      border-radius: 16px;
      padding: 22px 20px;
      border: 1px solid var(--border);
    }
    .info-box-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 6px;
    }
    .info-box-value {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
    }
    .info-box-sub { font-size: 0.82rem; color: var(--text-light); margin-top: 2px; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--sand);
      border-top: 1px solid var(--border);
      padding: 32px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    .footer-logo img {
      height: 28px; width: 28px;
      border-radius: 6px;
      object-fit: contain;
    }
    .footer-logo span {
      font-family: 'Fraunces', serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
    }
    .footer-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--text-light);
      text-decoration: none;
    }
    .footer-links a:hover { color: var(--orange); }
    footer p.copy {
      font-size: 0.78rem;
      color: var(--text-light);
      width: 100%;
      text-align: center;
      padding-top: 8px;
      border-top: 1px solid var(--border);
      margin-top: 4px;
    }

    /* ─── REVEAL ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        min-height: unset;
        padding-top: 90px;
        gap: 40px;
      }
      .hero-visual { order: -1; }
      .hero-visual img.main-photo { aspect-ratio: 16/9; }
      .hero-visual-card { left: 16px; bottom: -16px; }
      .about-grid,
      .membership-grid,
      .location-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .facts-grid { grid-template-columns: repeat(2, 1fr); }
      .faq-grid { grid-template-columns: 1fr; }
      .photo-strip-inner { grid-template-columns: 1fr; }
      .photo-strip img:last-child { display: none; }
    }

    @media (max-width: 540px) {
      nav { padding: 0 16px; }
      .nav-logo-text span { display: none; }
      .section { padding: 56px 16px; }
      .facts-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .fact-card { padding: 20px 16px; }
      h1.hero-title { font-size: 2.2rem; }
      .price-amount { font-size: 3.5rem; }
      footer { padding: 24px 16px; }
    }

    /* ─── LOGIN PAGE ─── */

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--cream);
    padding: 20px;
  }
  
  .login-container {
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    text-align: center;
  }
  
  .login-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  
  .login-title {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .login-input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
  }
  
  .login-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(74,144,217,0.15);
  }
  
  .login-button {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  
  .login-error {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--orange-deep);
  }
  
  .login-forgot {
    margin-top: 18px;
    background: none;
    border: none;
    font-size: 0.82rem;
    color: var(--text-light);
    cursor: pointer;
    text-decoration: underline;
  }
  
  .login-forgot:hover {
    color: var(--orange);
  }

  .day-date {
    font-family: 'Fraunces', serif;
    font-size: 2rem;        /* was 1.3rem */
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  
  .day-time {
    font-size: 1.6rem;      /* was 0.75rem */
    font-weight: 600;
    color: var(--text-mid); /* slightly darker so it reads well at this size */
    margin-top: 2px;
    font-family: 'Fraunces', serif;
  }
  
  .day-name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;     /* add a little breathing room */
  }

  </style>