/* Devon & Hilary
   Palette, type and spacing are declared once here. Everything below reads from them. */

:root {
  /* grounds */
  --cream: #F6F2EA;
  --sand: #EDE8DE;
  --sand-deep: #E8E1D5;
  /* ink */
  --ink: #2A2622;
  --ink-soft: #4A443D;
  --stone: #6E655B;
  --stone-light: #8C8577;
  /* lines */
  --rule: #DED5C7;
  --linen: #C9BFAE;
  /* accent */
  --sage: oklch(0.55 0.06 145);
  --sage-deep: oklch(0.42 0.05 145);
  --sage-light: oklch(0.78 0.04 145);
  --highlight: oklch(0.88 0.04 95);
  --error: #9C4A3A;
  /* dress-code swatches */
  --blush: #F1E7E4;
  --oat: #E5DFCF;

  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Futura', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;

  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(56px, 8vw, 104px);
  --nav-h: 72px;
}

/* ---- fonts (self-hosted, latin subsets) ---- */
@font-face {
  font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url(../fonts/cormorant-garamond-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url(../fonts/cormorant-garamond-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300 500; font-display: swap;
  src: url(../fonts/cormorant-garamond-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300 500; font-display: swap;
  src: url(../fonts/cormorant-garamond-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url(../fonts/jost-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost'; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url(../fonts/jost-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, figure, ul, fieldset { margin: 0; }
ul { padding: 0; list-style: none; }
fieldset { padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sage); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
::selection { background: var(--highlight); }
::placeholder { color: var(--stone-light); opacity: 1; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
section[id] { scroll-margin-top: var(--nav-h); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---- shared type roles ---- */
.eyebrow { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--stone); }
.label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
.heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  text-wrap: balance;
}
.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.4;
  text-wrap: pretty;
}
.prose { font-size: 16px; line-height: 1.85; color: var(--ink-soft); text-wrap: pretty; }
.link { text-decoration: underline; text-decoration-color: var(--linen); text-underline-offset: 3px; }
.link:hover { text-decoration-color: currentColor; }

.button {
  display: inline-block;
  align-self: flex-start;
  padding: 15px 30px;
  border: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.button:hover { background: var(--sage-deep); color: var(--cream); }
.button:disabled { opacity: 0.6; cursor: default; }

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad-x);
  border-bottom: 1px solid var(--rule);
  background: rgba(246, 242, 234, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav__brand { font-family: var(--serif); font-size: 20px; letter-spacing: 0.18em; }
.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav__rsvp { color: var(--ink); }

/* ---- hero ---- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: clamp(48px, 7vw, 96px) var(--pad-x);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.hero__title em { font-weight: 300; color: var(--sage); }
.hero__rule { width: 56px; height: 1px; background: var(--linen); }
.hero__when { display: flex; flex-direction: column; gap: 6px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.hero__count { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.hero__text .button { margin-top: 8px; }
.hero__image { min-height: min(78vh, 640px); background: var(--sand-deep); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- sections ---- */
.section { padding: var(--pad-y) var(--pad-x); }
.rule-top { border-top: 1px solid var(--rule); }

/* Label column + body column. One column on phones, 1:2 from tablets up.
   (The Claude Design export used auto-fit + span 2, which overflowed below ~900px.) */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); }
@media (min-width: 720px) { .split { grid-template-columns: 1fr 2fr; } }
.split__label {
  font-family: inherit;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 8px;
}
.split__body { display: flex; flex-direction: column; gap: 22px; max-width: 620px; }

/* ---- proposal photo ---- */
.feature { display: flex; flex-direction: column; }
.feature__image { height: clamp(280px, 44vw, 560px); background: var(--sand); }
.feature__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 78%; }
.feature__caption { padding: 16px var(--pad-x) 0; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-light); }

/* ---- the day ---- */
.details { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 52px); }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.fact { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--rule); }
.fact__title { font-family: var(--serif); font-size: 26px; line-height: 1.2; }
.fact__text { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.panel { display: flex; flex-direction: column; gap: 8px; padding: clamp(22px, 3vw, 32px); background: var(--sand); }
.panel__text { font-size: 16px; line-height: 1.8; color: var(--ink-soft); max-width: 680px; }

/* ---- what to wear ---- */
.swatches { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.swatch { position: relative; width: 44px; height: 44px; border-radius: 50%; }
.swatch--blush { background: var(--blush); }
.swatch--oat { background: var(--oat); }
.swatch--sage { background: var(--sage-light); }
.swatch--linen { background: var(--linen); }
.swatch--stone { background: var(--stone-light); }

/* ---- photos ---- */
.gallery { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px); }
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.gallery__tall { width: 100%; height: clamp(360px, 52vw, 560px); object-fit: cover; }
.gallery__stack { display: flex; flex-direction: column; gap: 24px; }
.gallery__stack img { width: 100%; object-fit: cover; }
.gallery__stack img:first-child { height: clamp(200px, 28vw, 300px); }
.gallery__stack img:last-child { height: clamp(160px, 22vw, 212px); }

/* ---- rsvp ---- */
.rsvp { background: var(--sand); }
.rsvp__intro { display: flex; flex-direction: column; gap: 10px; }
.rsvp__intro .split__label { padding-top: 0; }
.rsvp__note { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }

.form { display: flex; flex-direction: column; gap: 22px; max-width: 560px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > legend { margin-bottom: 10px; }
.field input, .field textarea {
  border: 0;
  border-bottom: 1px solid var(--linen);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { border: 1px solid var(--linen); background: var(--cream); padding: 14px; resize: vertical; }
.field--short input { width: 140px; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--linen);
  font-size: 15px;
  cursor: pointer;
}
.choice input { margin: 0; accent-color: var(--ink); }
.choice:has(input:checked) { border-color: var(--ink); }
.choice:has(input:focus-visible) { outline: 2px solid var(--sage); outline-offset: 3px; }
.form .button { padding: 16px 34px; margin-top: 4px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.rsvp__error { font-size: 14px; color: var(--error); }

.rsvp__thanks { display: flex; flex-direction: column; gap: 14px; max-width: 560px; outline: none; }
.rsvp__thanks-title { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 4vw, 36px); line-height: 1.2; }
.rsvp__thanks-text { font-size: 16px; line-height: 1.8; color: var(--ink-soft); }

/* ---- footer ---- */
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 34px var(--pad-x);
  border-top: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* ---- save-the-date phase ---- */
.save-date-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.save-date {
  min-width: 0;
  flex: 1;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
}
.flip-scene {
  /* Wide enough to fill the window, but never taller than it: the whole card shows without scrolling. */
  width: min(1120px, 100%, (100vh - 150px) * 1.55);
  width: min(1120px, 100%, (100svh - 150px) * 1.55);
  perspective: 1800px;
}
.flip-card {
  width: 100%;
  aspect-ratio: 1.55;
  display: block;
  cursor: pointer;
  outline: none;
  container-type: size; /* lets the card's type and spacing scale with the card's own height (cqh) */
  -webkit-tap-highlight-color: transparent;
}
.flip-card:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 6px;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.72, 0.25, 1);
}
.flip-card.is-flipped .flip-card__inner { transform: rotateY(180deg); }
.flip-card__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 24px 70px rgba(42, 38, 34, 0.11);
}
.flip-card__face--back { transform: rotateY(180deg); }
.save-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  background: #FCFAF6;
  box-shadow: 0 24px 70px rgba(42, 38, 34, 0.11);
}
.save-card__photo {
  min-width: 0;
  background: var(--sand-deep);
}
.save-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}
.save-card__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8cqh clamp(24px, 3.4vw, 72px);
  text-align: center;
}
.save-card__copy .eyebrow { margin-bottom: 5cqh; }
.save-card__names {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: clamp(44px, 13cqh, 94px);
  font-weight: 300;
  line-height: 0.77;
  letter-spacing: -0.025em;
}
.save-card__names em {
  margin: 0.26em 0 0.2em;
  color: var(--sage);
  font-size: 0.65em;
  font-weight: 300;
}
.save-card__rule {
  width: 48px;
  height: 1px;
  margin: 6cqh 0 3.5cqh;
  background: var(--linen);
}
.save-card__date {
  font-family: var(--serif);
  font-size: clamp(19px, min(3.6cqh, 2vw), 28px);
  font-weight: 400;
  line-height: 1.3;
}
.save-card__place {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.save-card__count {
  margin-top: 3cqh;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
}
.flip-card__cue {
  margin-top: 4cqh;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(252, 250, 246, 0.9);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  transition: border-color 0.3s, color 0.3s;
}
.flip-card__cue-icon {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  color: var(--sage);
}
.flip-card:hover .flip-card__cue { border-color: var(--linen); color: var(--ink); }
.cue-touch { display: none; }
@media (hover: none) {
  .cue-touch { display: inline; }
  .cue-mouse { display: none; }
}

/* Until the first flip, the card gives a small turn now and then to show it has another side. */
.flip-card.is-hinting .flip-card__inner { animation: card-hint 1.3s cubic-bezier(0.35, 0, 0.25, 1); }
.flip-card.is-hinting .flip-card__cue-icon { animation: cue-spin 1.3s cubic-bezier(0.35, 0, 0.25, 1); }
@keyframes card-hint {
  0%, 100% { transform: rotateY(0); }
  35% { transform: rotateY(-16deg); }
  65% { transform: rotateY(5deg); }
}
@keyframes cue-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
.save-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(20px, 6vh, 92px) clamp(40px, 7vw, 92px);
  border: 1px solid var(--rule);
  background:
    radial-gradient(circle at 8% 12%, rgba(119, 139, 111, 0.12), transparent 22%),
    radial-gradient(circle at 92% 88%, rgba(202, 180, 164, 0.16), transparent 25%),
    #FCFAF6;
  text-align: center;
}
.save-back::before,
.save-back::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(110, 101, 91, 0.16);
  border-radius: 50%;
}
.save-back::before { top: -84px; left: -70px; }
.save-back::after { right: -70px; bottom: -84px; }
.save-back__monogram {
  margin-bottom: clamp(12px, 4vh, 38px);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--stone);
}
.save-back__monogram span { color: var(--sage); font-style: italic; }
.save-back__message {
  margin-top: clamp(14px, 4vh, 38px);
  font-family: var(--serif);
  font-size: clamp(34px, min(5.2vw, 8vh), 70px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.save-back__rule {
  width: 48px;
  height: 1px;
  margin: clamp(16px, 5vh, 48px) 0;
  background: var(--linen);
}
.save-back__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  width: min(620px, 100%);
}
.save-back__details > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 28px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}
.save-back__details > div + div { border-left: 1px solid var(--rule); }
.save-back__note {
  margin-top: clamp(16px, 5vh, 48px);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-soft);
}
.save-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--pad-x) 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* Short laptop windows: tighten the back so it still fits inside the card. */
@media (min-width: 761px) and (max-height: 700px) {
  .save-back__monogram { margin-bottom: 2vh; font-size: 17px; }
  .save-back__message { margin-top: 2vh; font-size: clamp(30px, 7vh, 48px); }
  .save-back__rule { margin: 3vh 0; }
  .save-back__details > div { gap: 4px; font-size: 18px; line-height: 1.35; }
  .save-back__note { margin-top: 3vh; font-size: 16px; }
  .save-back .flip-card__cue { margin-top: 2.6vh; }
}

@media (max-width: 760px) {
  /* On phones the card is inset like a real card and sized to the screen, so all of it
     shows at once. The photo takes whatever height the words leave. */
  .save-date { padding: 16px 16px 0; place-items: stretch; }
  .flip-scene { width: 100%; perspective: 1400px; }
  .flip-card {
    aspect-ratio: auto;
    height: calc(100vh - 76px);
    height: calc(100svh - 76px);
    min-height: 540px;
    max-height: 820px;
  }
  .flip-card__face { box-shadow: 0 14px 40px rgba(42, 38, 34, 0.12), 0 2px 6px rgba(42, 38, 34, 0.05); }
  .save-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rule);
    box-shadow: none;
  }
  .save-card__photo { flex: 1 1 auto; min-height: 0; }
  .save-card__photo img { object-position: center 30%; }
  .save-card__copy { flex: none; padding: clamp(20px, 3.4svh, 32px) 24px clamp(18px, 2.6svh, 26px); }
  .save-card__copy .eyebrow { margin-bottom: clamp(12px, 2.2svh, 22px); font-size: 11px; }
  .save-card__names { font-size: clamp(46px, min(15vw, 7.4svh), 68px); }
  .save-card__rule { margin: clamp(16px, 2.8svh, 26px) 0 clamp(12px, 2svh, 18px); }
  .save-card__count { margin-top: clamp(8px, 1.4svh, 14px); }
  .flip-card__cue { margin-top: clamp(14px, 2.4svh, 22px); }
  .save-back { padding: 40px 25px 28px; }
  .save-back__monogram { margin-bottom: 22px; }
  .save-back__message { margin-top: 24px; font-size: clamp(34px, 10.2vw, 50px); }
  .save-back__rule { margin: clamp(22px, 4svh, 34px) 0; }
  .save-back__details { grid-template-columns: 1fr; width: 100%; gap: 20px; }
  .save-back__details > div { padding: 0; font-size: 19px; }
  .save-back__details > div + div { border-left: 0; }
  .save-back__note { max-width: 280px; margin-top: clamp(22px, 4svh, 34px); }
  .save-back .flip-card__cue { margin-top: clamp(22px, 4svh, 36px); }
  .save-footer { padding: 20px 24px; }
}

@media (max-width: 380px) {
  .save-card__date { font-size: 19px; }
  .save-card__place { letter-spacing: 0.14em; }
  .save-back { padding-left: 20px; padding-right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .flip-card__inner { transition-duration: 0.01ms; }
  .flip-card.is-hinting .flip-card__inner,
  .flip-card.is-hinting .flip-card__cue-icon { animation: none; }
}
