/* ============================================================
   Two Years — design system
   ============================================================ */
:root {
  /* Wine (primary depth) */
  --wine-900: #2b0a12;
  --wine-800: #45111f;
  --wine-700: #5e182b;
  --wine-600: #7a2439;

  /* Cream (surfaces) */
  --cream-50: #fffaf3;
  --cream-100: #fdf4e8;
  --cream-200: #f7e9d7;
  --cream-300: #efdcc4;

  /* Gold (fine detail) */
  --gold-500: #b8912f;
  --gold-400: #c8a24d;
  --gold-200: #e8d5a6;

  /* Accents */
  --orange-500: #f2793a;
  --orange-600: #dd6224;
  --blue-200: #bcd7e8;
  --pink-200: #f5c8d3;

  /* Ink */
  --ink: #3b1520;
  --ink-70: #5f3a46;
  --ink-50: #856069;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(43, 10, 18, 0.04), 0 2px 8px rgba(43, 10, 18, 0.06);
  --shadow-md: 0 2px 4px rgba(43, 10, 18, 0.04), 0 10px 28px rgba(43, 10, 18, 0.09);
  --shadow-lg: 0 4px 10px rgba(43, 10, 18, 0.05), 0 22px 55px rgba(43, 10, 18, 0.15);

  --container: 1120px;
  --measure: 64ch;

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

/* ============================================================
   Reset & base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fine paper grain — adds depth without reading as texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.4em;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wine-800);
  font-variation-settings: "SOFT" 20, "WONK" 1;
}

p {
  margin: 0 0 1.1em;
}

::selection {
  background: var(--orange-500);
  color: var(--cream-50);
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 32px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-600);
  font-weight: 600;
  margin: 0 0 1em;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 28px;
  color: var(--gold-400);
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 110px);
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
/* Hidden state is scoped to .js-reveals, which reveal.js sets on <html>.
   If the script never runs, content simply renders visible instead of blank. */
.js-reveals .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}

.js-reveals .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 244, 232, 0.82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(200, 162, 77, 0.24);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px clamp(20px, 5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--wine-600), var(--wine-800));
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(232, 213, 166, 0.3);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.brand:hover {
  transform: rotate(-8deg) scale(1.06);
}

.brand-heart {
  color: var(--gold-200);
  font-size: 1.05rem;
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-70);
  border-radius: 999px;
  transform: perspective(700px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--pink-200));
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--wine-800);
  background: var(--cream-50);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(200, 162, 77, 0.22);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: calc(100% - 32px);
}

.site-nav a.is-active {
  color: var(--wine-800);
  background: var(--cream-200);
}

.site-nav a.is-active::after {
  width: calc(100% - 32px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--wine-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(140deg, #f68b4f, var(--orange-600));
  color: var(--cream-50);
  box-shadow: 0 2px 6px rgba(221, 98, 36, 0.25), 0 14px 32px rgba(221, 98, 36, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(221, 98, 36, 0.28), 0 20px 44px rgba(221, 98, 36, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* ============================================================
   Intro stage (fixed overlay on index.html)
   ============================================================ */
.intro-stage {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background: radial-gradient(ellipse at 28% 18%, var(--cream-200), var(--cream-100) 58%);
  transition: opacity 0.7s var(--ease-out);
}

.intro-stage.is-done {
  opacity: 0;
  pointer-events: none;
}

.intro-stage[hidden] {
  display: none;
}

.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.hero-intro.is-hidden {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

/* Days counter */
.days-counter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4.5rem, 17vw, 10rem);
  line-height: 0.95;
  color: var(--wine-700);
  letter-spacing: -0.04em;
  margin: 0 0 0.1em;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  font-variant-numeric: lining-nums;
}

.days-counter .unit {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.6vw, 0.86rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-top: 0.9rem;
}

.hero-intro .btn {
  margin-top: clamp(28px, 5vh, 48px);
}

/* Floating hearts */
.hero-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-hearts span {
  position: absolute;
  bottom: -10%;
  font-size: 1.3rem;
  color: var(--pink-200);
  opacity: 0.5;
  animation: floatUp 11s ease-in infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  12%  { opacity: 0.55; }
  100% { transform: translateY(-115vh) translateX(24px) rotate(22deg); opacity: 0; }
}

/* ============================================================
   Flip stack
   ============================================================ */
.flip-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
}

.flip-stack[hidden] {
  display: none;
}

.flip-frame {
  position: absolute;
  width: min(88vw, 560px);
  height: min(78vh, 720px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  z-index: 1;
  backface-visibility: hidden;
  transform: rotateY(-105deg);
  transition: transform 0.42s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.22s ease;
}

.flip-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-frame.is-active {
  opacity: 1;
  z-index: 2;
  transform: rotateY(0deg);
}

.flip-frame.is-leaving {
  opacity: 0;
  z-index: 1;
  transform: rotateY(105deg);
}

/* ============================================================
   Home view
   ============================================================ */
.home-view[hidden] {
  display: none;
}

.home-hero {
  text-align: center;
  padding: clamp(64px, 13vh, 120px) clamp(20px, 5vw, 32px) clamp(40px, 7vh, 64px);
}

.home-hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  margin: 0;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.home-hero h1 .accent {
  color: var(--orange-500);
  font-style: italic;
}

/* ============================================================
   Letter
   ============================================================ */
.letter {
  position: relative;
  max-width: 720px;
  margin: 0 auto clamp(64px, 10vh, 110px);
  padding: clamp(36px, 6vw, 72px) clamp(26px, 6vw, 76px) clamp(40px, 6vw, 64px);
  background:
    linear-gradient(180deg, var(--cream-50), #fffdf8 60%, var(--cream-50));
  border: 1px solid rgba(200, 162, 77, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* hairline inner frame */
.letter::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 162, 77, 0.18);
  border-radius: calc(var(--radius-md) - 6px);
  pointer-events: none;
}

.letter-greeting {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--wine-700);
  margin: 0 0 1em;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.letter-body p {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 1.5em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

.letter-signoff {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--ink-70);
  margin: 2.4em 0 0.2em;
}

.letter-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.9rem);
  color: var(--wine-700);
  margin: 0;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 60, "WONK" 1;
}

/* ============================================================
   Explore grid (home page section links)
   ============================================================ */
.explore {
  padding: 0 0 clamp(70px, 11vh, 120px);
}

.explore-head {
  text-align: center;
  margin-bottom: clamp(28px, 5vh, 46px);
}

.explore-head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin: 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 152px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--cream-50);
  border: 1px solid rgba(200, 162, 77, 0.28);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.explore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(150deg, rgba(242, 121, 58, 0.1), rgba(245, 200, 211, 0.16));
  transition: opacity 0.4s var(--ease-out);
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.explore-card:hover::before {
  opacity: 1;
}

.explore-card .num {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-500);
  margin-bottom: 6px;
}

.explore-card .label {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wine-800);
  letter-spacing: -0.02em;
}

.explore-card .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--orange-500);
  font-size: 1.1rem;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.explore-card:hover .arrow {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(60px, 10vh, 96px) clamp(20px, 5vw, 32px) clamp(36px, 6vh, 56px);
  text-align: center;
  background: linear-gradient(180deg, var(--cream-200), var(--cream-100));
  border-bottom: 1px solid rgba(200, 162, 77, 0.24);
}

.page-hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  margin: 0;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

main {
  padding: clamp(44px, 7vh, 72px) 0 clamp(80px, 12vh, 120px);
}

/* ============================================================
   Cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 162, 77, 0.26);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  font-size: 1.3rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tag-pink   { background: var(--pink-200);  color: var(--wine-800); }
.tag-blue   { background: var(--blue-200);  color: var(--wine-800); }
.tag-orange { background: var(--orange-500); color: var(--cream-50); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  column-count: 4;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, var(--blue-200), var(--pink-200));
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

@media (max-width: 1024px) { .gallery-grid { column-count: 3; } }
@media (max-width: 720px) {
  .gallery-grid { column-count: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; }
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 7, 13, 0.95);
  backdrop-filter: blur(8px);
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(253, 244, 232, 0.1);
  border: 1px solid rgba(232, 213, 166, 0.32);
  color: var(--cream-100);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-close:hover { transform: scale(1.09) rotate(90deg); }

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 5px;
}

.lightbox-nav:hover { transform: translateY(-50%) scale(1.09); }

.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }

.lightbox-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-200);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   Timeline
   ============================================================ */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 34px;
  border-left: 2px solid rgba(200, 162, 77, 0.4);
}

.timeline-item {
  position: relative;
  padding: 2px 0 46px 26px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange-500);
  border: 3px solid var(--cream-100);
  box-shadow: 0 0 0 2px var(--gold-400);
}

.timeline-date {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--orange-600);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h3 { font-size: 1.35rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 34px 24px 48px;
  text-align: center;
  color: var(--ink-50);
  font-size: 0.85rem;
  border-top: 1px solid rgba(200, 162, 77, 0.22);
}

.site-footer p { margin: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-100);
    border-bottom: 1px solid rgba(200, 162, 77, 0.28);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
  }

  .site-nav.is-open { max-height: 420px; }

  .site-nav a {
    padding: 15px 26px;
    border-radius: 0;
  }

  .site-nav a::after,
  .site-nav a.is-active::after { left: 26px; transform: none; }
  .site-nav a:hover::after,
  .site-nav a.is-active::after { width: 28px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-hearts span { display: none; }

  .js-reveals .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
