/* ============================================================
   DRIPPLY — style.css (v4 — matched to live site exactly)
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background-color: #0E1116;
  color: #EAE7DC;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg: #0E1116;
  --bg-elevated: #14181E;
  --bg-card: rgba(21, 24, 30, 0.55);

  --gold: #D9A75C;
  --gold-warm: #E3B88F;
  --gold-dim: rgba(217, 167, 92, 0.32);
  --gold-soft: rgba(217, 167, 92, 0.12);

  --ivory: #F2E1D1;
  --ivory-dim: rgba(242, 225, 209, 0.82);
  --muted: rgba(242, 225, 209, 0.5);
  --muted-light: rgba(242, 225, 209, 0.3);

  --border: rgba(217, 167, 92, 0.18);
  --border-soft: rgba(242, 225, 209, 0.07);

  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --letter-eyebrow: 0.28em;
  --letter-nav: 0.22em;

  --space-section: 68px;
  --space-section-sm: 52px;
  --space-section-xs: 32px;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.005em;
}

p { font-family: var(--font-serif); }

*:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.3s var(--ease);
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(14, 17, 22, 0.78);
  border-bottom: 1px solid var(--border-soft);
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}

.header__nav { display: flex; align-items: center; gap: 28px; }

.header__nav a {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: var(--letter-nav);
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s var(--ease);
}

.header__nav a:hover { opacity: 0.7; }

/* Header CTA button — outline gold, rounded */
.header__cta {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: var(--letter-nav);
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 22px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header__nav a.header__cta:hover {
  opacity: 1;
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 22px rgba(217,167,92,0.22);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 48px;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: bgDrift 30s ease-in-out infinite alternate;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, transparent 0%, rgba(14,17,22,0.5) 60%, rgba(14,17,22,0.96) 100%),
    linear-gradient(to bottom, rgba(14,17,22,0.35) 0%, rgba(14,17,22,0.65) 70%, var(--bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ring-wrap {
  width: 180px;
  height: 180px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.2s var(--ease) 0.15s forwards;
}

.hero__ring-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: ringBreath 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(217,167,92,0.22));
}

.hero__heading {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1.18;
  color: var(--ivory);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.hero__heading-2 {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.2s var(--ease) 0.85s forwards;
}

.hero__tagline {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1.2s var(--ease) 1.15s forwards;
}

/* ============================================================
   SECTION — generic 2-column layout
   ============================================================ */
.section {
  padding: var(--space-section) 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section__eyebrow {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.section__heading {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 26px;
}

.section__body {
  color: var(--ivory-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.section__pace {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
}

/* ============================================================
   MY TIME — gold animated ring mockup on left
   ============================================================ */
.mytime-ring-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  min-height: 380px;
}

.mytime-ring-mock__ring {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 36px;
}

.mytime-ring-mock__ring svg {
  width: 100%;
  height: 100%;
  animation: ringSpin 18s linear infinite;
  filter: drop-shadow(0 0 24px rgba(217,167,92,0.35));
}

.mytime-ring-mock__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 8px;
}

.mytime-ring-mock__sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 28px;
  font-style: italic;
}

.mytime-ring-mock__search {
  width: 100%;
  max-width: 280px;
  padding: 12px 18px 12px 38px;
  background: rgba(242, 225, 209, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-style: italic;
  font-size: 0.9rem;
  position: relative;
  margin-bottom: 28px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D9A75C' stroke-width='2'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");
  background-repeat: no-repeat;
  background-position: 14px center;
}

.mytime-ring-mock__loader {
  width: 22px;
  height: 22px;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

.mytime-ring-mock__loader-text {
  font-size: 0.8rem;
  color: var(--muted-light);
  font-style: italic;
}

/* ============================================================
   STORY CARD — Timeline section
   ============================================================ */
.story-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(21,24,30,0.65) 0%, rgba(21,24,30,0.3) 100%);
}

.story-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.story-card__eyebrow {
  font-size: 0.7rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.story-card__week {
  font-size: 0.78rem;
  color: var(--gold);
}

.story-card__week::before { content: '— '; }

.story-list { list-style: none; position: relative; }

.story-list::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gold-soft) 8%,
    var(--gold-soft) 92%,
    transparent 100%);
}

.story-item { position: relative; padding-left: 32px; padding-bottom: 28px; }
.story-item:last-child { padding-bottom: 0; }

.story-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(217,167,92,0.55);
}

.story-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.story-item__name { font-size: 1.08rem; color: var(--ivory); }

.story-item__tag {
  font-size: 0.7rem;
  letter-spacing: var(--letter-nav);
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.story-item__when {
  font-size: 0.7rem;
  letter-spacing: var(--letter-nav);
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 10px;
}

.story-item__quote {
  font-style: italic;
  color: var(--muted);
  font-size: 0.92rem;
}

.story-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.7rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--space-section) 36px;
  max-width: 760px;
  margin: 0 auto;
}

.faq__eyebrow {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
}

.faq__heading {
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--ivory);
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  border-top: 1px solid var(--border-soft);
}

.faq__item { border-bottom: 1px solid var(--border-soft); }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 4px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  transition: color 0.3s var(--ease);
}

.faq__q:hover { color: var(--gold); }

.faq__icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  transition: transform 0.3s var(--ease);
}

.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }

.faq__item[aria-expanded="true"] .faq__a { max-height: 300px; padding-bottom: 22px; }

.faq__a p {
  padding: 0 4px;
  color: var(--ivory-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   WHEN-TO-USE — small calm explanatory block under hero
   ============================================================ */
/* === USE DRIPPLY FOR — 3 icon points under hero === */
.use-for {
  padding: 16px 36px 28px;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.use-for__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.use-for__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0;
  margin: 0;
  max-width: 820px;
  margin: 0 auto;
}

.use-for__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 4px 8px;
}

.use-for__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(217, 167, 92, 0.32);
  color: var(--gold);
  background: rgba(217, 167, 92, 0.04);
}

.use-for__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ivory-dim);
}

@media (max-width: 720px) {
  .use-for {
    padding: 4px 24px 12px;
  }
  .use-for__lead {
    font-size: 0.98rem;
    margin-bottom: 14px;
  }
  .use-for__list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 320px;
  }
  .use-for__item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 4px 0;
    text-align: left;
  }
  .use-for__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  .use-for__icon svg {
    width: 22px;
    height: 22px;
  }
  .use-for__text {
    font-size: 0.96rem;
  }
}

/* ============================================================
   VOTE — cafe photo left + form right
   ============================================================ */
.vote {
  padding: var(--space-section) 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.vote__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.vote__photo-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 580px;
}

.vote__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 28s ease-in-out infinite alternate;
}

.vote__photo-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  right: 28px;
  z-index: 2;
}

.vote__caption-main {
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.vote__caption-sub {
  font-size: 0.7rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--ivory);
}

.vote__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,17,22,0.85) 0%, transparent 50%);
  pointer-events: none;
}

.vote__eyebrow {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.vote__heading {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 22px;
}

.vote__body {
  color: var(--ivory-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ============================================================
   FORM — custom Dripply
   ============================================================ */
.dripply-form { display: flex; flex-direction: column; gap: 14px; }

.dripply-form__field { position: relative; }

.dripply-form input[type="email"],
.dripply-form textarea {
  width: 100%;
  background: rgba(242, 225, 209, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.dripply-form input[type="email"]::placeholder,
.dripply-form textarea::placeholder {
  color: var(--muted-light);
  font-style: italic;
}

.dripply-form input[type="email"]:focus,
.dripply-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(242, 225, 209, 0.05);
}

.dripply-form textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--font-serif);
}

.dripply-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--ivory-dim);
  line-height: 1.55;
}

.dripply-form__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(242, 225, 209, 0.03);
  cursor: pointer;
  margin-top: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.dripply-form__check input[type="checkbox"]:checked {
  border-color: var(--gold);
  background: var(--gold);
}

.dripply-form__check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.dripply-form__check a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-dim);
  transition: opacity 0.3s var(--ease);
}

.dripply-form__check a:hover { opacity: 0.75; }

/* Outlined gold CTA (matches live site) */
.dripply-form__submit {
  width: 100%;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 16px 24px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), opacity 0.3s var(--ease);
  margin-top: 12px;
  min-height: 56px;
}

.dripply-form__submit:hover:not(:disabled) {
  background: var(--gold);
  color: var(--bg);
}

.dripply-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.dripply-form__submit.is-loading { color: transparent; position: relative; }

.dripply-form__submit.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid var(--gold);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.dripply-form__submit:hover:not(:disabled).is-loading::after {
  border-color: var(--bg);
  border-top-color: transparent;
}

.dripply-form__message {
  margin-top: 12px;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  display: none;
}

.dripply-form__message.is-success {
  display: block;
  color: var(--gold-warm);
  background: rgba(217,167,92,0.06);
  border: 1px solid var(--gold-dim);
}

.dripply-form__message.is-error {
  display: block;
  color: #E8B5A5;
  background: rgba(150, 79, 79, 0.08);
  border: 1px solid rgba(150, 79, 79, 0.3);
}

/* ============================================================
   CUSTOM CITY DROPDOWN — gold theme, premium
   ============================================================ */
.city-select {
  position: relative;
  width: 100%;
}

.city-select__btn {
  width: 100%;
  background: rgba(242, 225, 209, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 15px 48px 15px 18px;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.city-select__btn.has-value { color: var(--ivory); font-style: normal; }

.city-select__btn:focus,
.city-select.is-open .city-select__btn {
  outline: none;
  border-color: var(--gold);
  background: rgba(242, 225, 209, 0.05);
}

.city-select__chevron {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--gold);
}

.city-select.is-open .city-select__chevron { transform: rotate(180deg); }

.city-select__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  padding: 16px 0 12px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 20;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.city-select.is-open .city-select__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.city-select__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 24px 12px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 6px;
}

.city-select__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-select__option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 24px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.city-select__option:hover {
  background: rgba(217,167,92,0.06);
  color: var(--gold);
}

.city-select__radio {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--gold-dim);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease);
}

.city-select__option:hover .city-select__radio,
.city-select__option.is-selected .city-select__radio {
  border-color: var(--gold);
}

.city-select__option.is-selected .city-select__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.city-select__option.is-selected {
  color: var(--gold);
  background: rgba(217,167,92,0.04);
}

/* Scrollbar inside panel */
.city-select__panel::-webkit-scrollbar { width: 5px; }
.city-select__panel::-webkit-scrollbar-track { background: transparent; }
.city-select__panel::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ============================================================
   FOOTER (with quote)
   ============================================================ */
.site-footer {
  padding: 72px 32px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--border-soft);
  margin-top: 24px;
}

.footer__quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.7;
}

.footer__wordmark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.7rem;
  letter-spacing: var(--letter-nav);
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s var(--ease);
}

.footer__nav a:hover { color: var(--gold); }

.footer__email {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.footer__email:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.7rem;
  color: var(--muted-light);
  font-style: italic;
}

/* ============================================================
   DELETE ACCOUNT PAGE
   ============================================================ */
.delete-main {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: auto;
}

.delete-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 64px;
  padding: 0 32px;
  transition: opacity 0.3s var(--ease);
}

.delete-back:hover { opacity: 0.7; }

.delete-back__arrow { font-size: 1rem; }

.delete-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 0 32px;
}

.delete-hero__eyebrow {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.delete-hero__heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.18;
  color: var(--ivory);
  margin-bottom: 24px;
}

.delete-hero__sub {
  color: var(--ivory-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.delete-hero__note {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.delete-form-wrap {
  max-width: 520px;
  margin: 0 auto 96px;
  padding: 0 32px;
}

.delete-textarea {
  min-height: 100px;
}

/* === HOW IT WORKS === */
.how-it-works {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 32px;
  text-align: center;
}

.how-it-works__eyebrow {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.how-it-works__heading {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--ivory);
  margin-bottom: 56px;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.how-step {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(21,24,30,0.5) 0%, rgba(21,24,30,0.2) 100%);
}

.how-step__label {
  font-size: 0.7rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.how-step__title {
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.how-step__body {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ============================================================
   LEGAL SUBPAGES (privacy/terms/cookies)
   ============================================================ */
.subpage-main { padding-top: 120px; padding-bottom: 72px; min-height: 80vh; }

.subpage-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.subpage__heading {
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.2;
}

.subpage__date {
  font-size: 0.72rem;
  color: var(--muted-light);
  letter-spacing: 0.14em;
  margin-bottom: 44px;
  font-style: italic;
}

.subpage__intro {
  font-style: italic;
  color: var(--ivory-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 44px;
}

.subpage-content h2 {
  font-size: 0.74rem;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-top: 44px;
  margin-bottom: 16px;
  font-weight: 500;
}

.subpage-content h3 {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ivory);
  margin-top: 28px;
  margin-bottom: 10px;
}

.subpage-content p {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.subpage-content ul { list-style: none; margin-bottom: 16px; }

.subpage-content ul li {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}

.subpage-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); }

.subpage-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-dim);
  transition: opacity 0.3s var(--ease);
}

.subpage-content a:hover { opacity: 0.75; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes ringBreath {
  0%, 100% { opacity: 0.94; filter: drop-shadow(0 0 22px rgba(217,167,92,0.22)); }
  50%      { opacity: 1;    filter: drop-shadow(0 0 40px rgba(217,167,92,0.45)); }
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
@keyframes bgDrift {
  0%   { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.08) translateX(-1.5%); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  :root { --space-section: var(--space-section-sm); }

  .section--split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .vote__inner { grid-template-columns: 1fr; gap: 32px; }

  .vote__photo-wrap { aspect-ratio: 16 / 11; max-height: 440px; }

  .how-it-works__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  :root { --space-section: var(--space-section-xs); }

  .site-header { padding: 14px 22px; }
  .site-header.scrolled { padding: 12px 22px; }
  .header__nav { gap: 18px; }

  .hero { padding: 96px 22px 24px; min-height: auto; }
  .hero__ring-wrap { width: 128px; height: 128px; margin-bottom: 28px; }
  .hero__heading { margin-bottom: 16px; }
  .hero__sub { margin-bottom: 18px; font-size: 0.96rem; }

  .section, .vote, .faq { padding-left: 22px; padding-right: 22px; }

  .mytime-ring-mock { padding: 16px 16px; min-height: 0; }
  .mytime-ring-mock__ring { width: 140px; height: 140px; margin-bottom: 28px; }

  .story-card { padding: 24px 20px; border-radius: 18px; }
  .story-item { padding-left: 28px; padding-bottom: 18px; }
  .story-item__top { flex-direction: column; gap: 4px; align-items: flex-start; }
  .story-item__tag { font-size: 0.65rem; }

  .vote__inner { gap: 24px; }
  .vote__photo-wrap { aspect-ratio: 4 / 4.4; max-height: 440px; }
  .vote__photo-caption { left: 22px; right: 22px; bottom: 20px; }
  .vote__caption-main { font-size: 1.15rem; }

  .faq { padding-top: 28px; padding-bottom: 28px; }
  .faq__heading { margin-bottom: 22px; }
  .faq__q { padding: 22px 4px; font-size: 1rem; }

  .city-select__panel { max-height: 60vh; }

  .site-footer { padding: 32px 22px 28px; gap: 14px; }
  .footer__quote { font-size: 0.9rem; }
  .footer__nav { gap: 18px; }

  .delete-main { padding-top: 100px; padding-bottom: 60px; }
  .delete-back { padding: 0 22px; margin-bottom: 44px; }
  .delete-hero { padding: 0 22px; margin-bottom: 44px; }
  .delete-form-wrap { padding: 0 22px; margin-bottom: 64px; }
  .how-it-works { padding: 0 22px 24px; }
  .how-it-works__heading { margin-bottom: 36px; }
  .how-step { padding: 22px 20px; }

  .subpage-content { padding: 0 22px; }
  .subpage-main { padding-top: 100px; padding-bottom: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__ring-wrap, .hero__heading, .hero__sub, .hero__tagline, .reveal {
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}
