:root {
  --white: #ffffff;
  --cream: #f7f2ea;
  --cream-2: #fbf8f3;
  --dark: #02122b;
  --black: #050505;
  --green: #17251a;
  --green-soft: #223729;
  --gold: #02122b;
  --gold-dark: #E3F2FF;
  --text: #02122b;
  --muted: #81786e;
  --border: rgba(20, 20, 20, 0.1);
  --shadow: 0 24px 70px rgba(25, 20, 15, 0.12);
  --radius: 10px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

main {
    width: 100%;
}

body {
  margin: 0;
  background: var(--cream-2);
  color: var(--text);
  font-family: "Playfair Display", sans-serif;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 300;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1.5rem;
  font-weight: 400;
}

h1,
.h1,
h2,
h3 {
  color: var(--dark);
  font-family: "Playfair Display", cursive;
  font-weight: 300;
  line-height: 1.25;
}

.h1,
h1 {
  font-size: clamp(3.2rem, 7vw, 3.75rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
}

h3,.h3 {
  font-size: 2.5rem;
}

h4,.h4 {
  font-size: 2rem;
  font-family: "Playfair Display", sans-serif;
}

p {
  margin-bottom: 1.35rem;
}

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

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

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1550px;
    padding: 0 2rem;
}

.btn {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  width: fit-content;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
}

.btn-outline-dark {
    border-color: #02122b;
    color: #02122b;
}
.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: #02122b;
    color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: "Playfair Display", cursive;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: 0.3s ease;
  backdrop-filter: blur(8px) contrast(100%);
  -webkit-backdrop-filter: blur(8px) contrast(100%);
  background: rgba(255, 255, 255, 0.75);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  padding: 0.55rem 0;
}

.site-header.is-scrolled .navbar-brand,
.site-header.is-scrolled .nav-link {
  color: var(--dark);
}
.site-header .row {
    height: 80px;
    align-items: flex-start;
}

.site-header .navbar-brand {
    position: relative;
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
}

.site-header .navbar-brand img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translateX(-50%);
    object-fit: contain;
    z-index: 100;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

.nav-item {
    position: relative;
    margin: 0 0.75rem !important;
}

.nav-link {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 0 !important;
    color: var(--text);
}
.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--text);

    transform: scaleX(0);
    transform-origin: right; /* start från höger */
    transition: transform 0.3s ease-in-out;
}
.current_page_item .nav-link::before,
.nav-item:hover .nav-link::before {
    transform: scaleX(1);
    transform-origin: left; /* så den "fyller ut" snyggt */
}
@keyframes underlineSwipe {
    0% {
        transform: scaleX(0);
        transform-origin: right;
    }
    50% {
        transform: scaleX(1);
        transform-origin: right;
    }
    51% {
        transform-origin: left;
    }
    100% {
        transform: scaleX(0);
        transform-origin: left;
    }
}

.current_page_item .nav-link,
.nav-link:hover {
  color: var(--text);
}

.section {
  margin-bottom: 10rem;
}

.section-heading {
  margin: 0 auto 4rem;
}

.experience-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(25, 20, 15, 0.08);
  text-align: center;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

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

.experience-wrapper {
  padding: 2rem 1rem;
}

.experience-card img {
  height: 260px;
  object-fit: cover;
}

.experience-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin: -28px auto 1.5rem;
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: 50%;
  color: var(--text);
}

.experience-card h3 {
  margin-bottom: 1rem;
}

.experience-card p {
  max-width: 280px;
  margin: 0 auto 1rem;
  font-size: 1rem;
}

.experience-card a {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame img {
  height: 560px;
  object-fit: cover;
}

.why-section {
  padding: 100px 0;
  background: var(--cream-2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.why-grid div:last-child {
  border-right: 0;
}

.why-grid i {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 2.1rem;
}

.why-grid span {
  max-width: 170px;
  font-weight: 700;
  line-height: 1.35;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 560px;
  background: var(--cream-2);
}

.split-image {
    position: relative;
}

.split-image img {
  height: 100%;
  object-fit: cover;
  height: 85vh;
  min-height: 750px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-actions {
  margin-top: 1rem;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5rem);
}

.hero .split-content {
    margin-top: 4rem;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.half-half-inner {
    display: flex;
    flex-direction: column;
}

.event-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(25, 20, 15, 0.08);
}

.event-card img {
  height: 220px;
  object-fit: cover;
}

.event-card-inner {
  padding:3rem 2rem 2rem 2rem
}

.event-card p {
  margin: 0;
}

.event-date {
  position: absolute;
  top: 170px;
  left: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 75px;
  height: 75px;
  line-height: 85px;
  border-radius: 500px;
  background: var(--gold);
  text-transform: uppercase;
}

.event-date strong,
.event-date span {
  display: block;
  line-height: 1;
}

.event-date strong {
  font-size: 2rem;
  line-height: 1;
}

.event-date span {
  margin-top: 0.15rem;
  font-size: 1rem;
  font-weight: 800;
}

.testimonial-card {
  height: 100%;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(25, 20, 15, 0.07);
  text-align: center;
}

.stars {
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.25em;
}

.testimonial-card p {
  color: var(--text);
}

.testimonial-card strong {
  color: var(--dark);
}

.instagram-link {
  color: var(--gold);
  font-weight: 800;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.instagram-grid img {
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
}

.site-footer {
  padding: 90px 0 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  overflow: hidden;
}

.site-footer img {
    max-width: 150px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-brand span:last-child {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1;
}

.site-footer h3 {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-footer li {
  margin-bottom: 0.7rem;
}


.site-footer a {
  color: var(--white);
}

.site-footer .current_page_item a,
.site-footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 0.8rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,1);
  border-radius: 50%;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 1.5rem;
}


/*
|--------------------------------------------------------------------------
| BRÖLLOP & FEST
|--------------------------------------------------------------------------
*/

.wedding-page {
  overflow: hidden;
}


/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.wedding-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 85vh;
  min-height: 750px;
  overflow: hidden;
  background: var(--cream-2);
}

.wedding-hero-image {
  position: absolute;
  inset: 0 0 0 43%;
}

.wedding-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 40px;
}

.wedding-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  height: 100%;
}

.wedding-hero-content {
  max-width: 680px;
  margin-top: 4rem;
}

.wedding-hero-content > p {
  max-width: 450px;
  margin-bottom: 0;
  font-size: 1.4rem;
}

.wedding-hero-content .hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.wedding-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wedding-text-link i {
  transition: transform 0.3s ease;
}

.wedding-text-link:hover i {
  transform: translateY(5px);
}

.wedding-hero-note {
  display: flex;
  align-items: center;
  align-self: flex-end;
  gap: 1.25rem;
  margin-top: auto;
  margin-bottom: 4rem;
  max-width: 390px;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wedding-hero-note-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}

.wedding-hero-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.wedding-hero-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}


/*
|--------------------------------------------------------------------------
| STATEMENT
|--------------------------------------------------------------------------
*/

.wedding-statement {
  padding: 6rem 0;
  background: #C19944;
  background: linear-gradient(22deg, rgba(193, 153, 68, 1) 0%, rgba(2, 18, 43, 1) 62%);
  color: var(--white);
}

.wedding-statement h2,
.wedding-statement h3,
.wedding-statement h4,
.wedding-statement h5 {
    color: var(--white);
}

.wedding-statement-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  border-radius: var(--radius-lg);
}

.wedding-statement-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 86px;
  height: 86px;
  background: var(--white);
  color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(25, 20, 15, 0.09);
  font-size: 2rem;
  padding-top: 0.3rem;
}

.wedding-statement-inner p {
  margin: 0;
  font-family: "Playfair Display", cursive;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.3;
}


/*
|--------------------------------------------------------------------------
| PLANNING
|--------------------------------------------------------------------------
*/

.wedding-image-stack {
  position: relative;
  min-height: 700px;
}

.wedding-image-main {
  width: 82%;
  height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.wedding-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 310px;
  padding: 12px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.wedding-image-small img {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
}

.wedding-image-label {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 245px;
  padding: 1.6rem;
  background: var(--gold);
  border-radius: var(--radius);
  color: var(--white);
}

.wedding-image-label span,
.wedding-image-label strong {
  display: block;
}

.wedding-image-label span {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wedding-image-label strong {
  font-family: "Playfair Display", cursive;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.25;
}

.wedding-content-block {
  max-width: 570px;
  margin-left: auto;
}

.wedding-mini-points {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.wedding-mini-points div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.wedding-mini-points i {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
}


/*
|--------------------------------------------------------------------------
| OCCASIONS
|--------------------------------------------------------------------------
*/

.wedding-occasions .section-heading {
  max-width: 850px;
  margin-bottom: 4rem;
}

.wedding-occasions .section-heading p {
  max-width: 700px;
  margin: 0 auto;
}

.wedding-occasion-grid {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: 1.5rem;
}

.wedding-occasion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 350px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.wedding-occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.wedding-occasion-card-large {
  grid-column: span 8;
}

.wedding-occasion-card-image {
  grid-column: span 8;
}

.wedding-occasion-image {
  position: absolute;
  inset: 0;
}

.wedding-occasion-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(0, 0, 0, 0.76) 100%
  );
}

.wedding-occasion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-occasion-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 2.5rem;
}

.wedding-occasion-card-pink,
.wedding-occasion-card-pink h3 {
    color: var(--white);
}

.wedding-occasion-card-large .wedding-occasion-content,
.wedding-occasion-card-image .wedding-occasion-content {
  color: var(--white);
}

.wedding-occasion-card-large h3,
.wedding-occasion-card-image h3 {
  color: var(--white);
}

.wedding-occasion-content > span {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.wedding-occasion-content h3 {
  margin-bottom: 0.8rem;
  font-size: 2.5rem;
}

.wedding-occasion-content p {
  max-width: 490px;
  margin: 0;
}

.wedding-occasion-card-pink {
  background: var(--gold);
}

.wedding-occasion-card-dark {
  background: var(--dark);
  color: var(--white);
}

.wedding-occasion-card-dark h3 {
  color: var(--white);
}


/*
|--------------------------------------------------------------------------
| FOOD
|--------------------------------------------------------------------------
*/

.wedding-food {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  overflow: hidden;
}

.wedding-food-image {
  position: absolute;
  inset: 0;
}

.wedding-food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-food-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.93) 40%,
      rgba(255, 255, 255, 0.35) 67%,
      transparent 100%
    );
}

.wedding-food-container {
  position: relative;
  z-index: 2;
}

.wedding-food-content {
  max-width: 640px;
  padding: 5rem 0;
}

.wedding-food-content h2 {
  margin-bottom: 2rem;
}

.wedding-food-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.wedding-food-options span {
  padding: 0.75rem 1.1rem;
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}


/*
|--------------------------------------------------------------------------
| MEMORY
|--------------------------------------------------------------------------
*/

.wedding-memory {
  background: var(--dark);
  color: var(--white);
  padding: 10rem 0;
}

.wedding-memory h2 {
  color: var(--white);
}

.wedding-memory-lines {
  display: grid;
  gap: 0;
}

.wedding-memory-lines p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.wedding-memory-ending {
  margin: 2.5rem 0 0;
  font-family: "Playfair Display", cursive;
  font-size: clamp(2rem, 3vw, 3.2rem);
}


/*
|--------------------------------------------------------------------------
| BENEFITS
|--------------------------------------------------------------------------
*/

.wedding-benefit-grid {
  display: grid;
  gap:1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wedding-benefit-item {
  min-height: 330px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.wedding-benefit-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 2rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
}

.wedding-benefit-item h3 {
  margin-bottom: 1rem;
}

.wedding-benefit-item p {
  margin: 0;
  font-size: 1.1rem;
}


/*
|--------------------------------------------------------------------------
| PROCESS
|--------------------------------------------------------------------------
*/

.wedding-process-intro {
  position: sticky;
  top: 140px;
  max-width: 470px;
}

.wedding-process-list {
  border-top: 1px solid var(--border);
}

.wedding-process-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--border);
}

.wedding-process-item > span {
  font-family: "Playfair Display", cursive;
  font-size: 2.8rem;
}

.wedding-process-item h3 {
  margin-bottom: 0.6rem;
}

.wedding-process-item p {
  max-width: 630px;
  margin: 0;
}


/*
|--------------------------------------------------------------------------
| GALLERY
|--------------------------------------------------------------------------
*/

.wedding-gallery {
  padding: 0 1.5rem;
}

.wedding-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, 340px);
  gap: 1rem;
  max-width: 1800px;
  margin: 0 auto;
}

.wedding-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.wedding-gallery-item-wide {
  grid-row: span 2;
}

.wedding-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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


/*
|--------------------------------------------------------------------------
| CTA
|--------------------------------------------------------------------------
*/

.wedding-cta {
  padding: 10rem 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(243, 178, 178, 1),
      transparent 60%
    ),
    var(--gold-dark);
}

.wedding-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5rem;
  border-radius: var(--radius-lg);
}

.wedding-cta-content {
  max-width: 600px;
}

.wedding-cta-content h2 {
  margin-bottom: 2rem;
}

.wedding-cta-highlight {
  margin-bottom: 0;
  font-family: "Playfair Display", cursive;
  font-size: 2.2rem;
}

.wedding-cta-action {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.wedding-cta-action span {
  font-family: "Playfair Display", cursive;
  font-size: 1.5rem;
}




/*
|--------------------------------------------------------------------------
| RESPONSIVE
| All responsive adjustments are intentionally collected at the end.
|--------------------------------------------------------------------------
*/

@media (max-width: 1650px) {
    h1,
    .h1 {
      font-size: clamp(3rem, 8vw, 3.4rem);
    }

    h2,
    .h2 {
      font-size: clamp(2.6rem, 7vw, 3rem);
    }

    h3,
    .h3 {
      font-size: clamp(2.35rem, 6vw, 2.5rem);
    }
}

/* Large desktop / smaller laptop */
@media (max-width: 1399.98px) {
  body {
    font-size: 1rem;
  }
  .section {
    margin-bottom: 8rem;
  }
  .split-content {
    padding: clamp(3rem, 5vw, 5.5rem);
  }

  .split-image img {
    min-height: 680px;
  }

  .wedding-hero-content {
    max-width: 590px;
  }

  .wedding-gallery-grid {
    grid-template-rows: repeat(2, 300px);
  }
}

/* Laptop / landscape tablet */
@media (max-width: 1199.98px) {
  .section {
    margin-bottom: 7rem;
  }

  .section-heading {
    margin-bottom: 3rem;
  }

  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      padding: 0 1.5rem;
  }
  .nav-item {
      margin: 0 0.5rem !important;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .site-header .navbar-brand img {
      height: 120px;
      width: 120px;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid div:nth-child(3n) {
    border-right: 0;
  }

  .why-grid div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wedding-hero {
    min-height: 690px;
  }

  .wedding-hero-image {
    left: 40%;
  }

  .wedding-hero-container {
    gap: 2.5rem;
  }

  .wedding-hero-content {
    max-width: 540px;
  }

  .wedding-hero-content > p {
    max-width: 410px;
  }

  .wedding-hero-note {
    max-width: 350px;
    margin-bottom: 2.5rem;
  }

  .wedding-statement-inner {
    gap: 2.5rem;
  }

  .wedding-image-stack {
    min-height: 610px;
  }

  .wedding-image-main {
    height: 550px;
  }

  .wedding-occasion-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .wedding-occasion-card,
  .wedding-occasion-card-large,
  .wedding-occasion-card-image {
    grid-column: span 6;
  }

  .wedding-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wedding-gallery-grid {
    grid-template-rows: repeat(2, 270px);
  }

  .wedding-cta-inner {
    gap: 3rem;
  }
}

/* Tablet and Bootstrap navbar collapse */
@media (max-width: 991.98px) {
  .navbar-brand,
  .nav-link,
  .site-header.is-scrolled .navbar-brand,
  .site-header.is-scrolled .nav-link {
    color: var(--dark);
  }

  .navbar-collapse {
    max-height: calc(100vh - 90px);
    padding: 1.25rem 0 1.5rem;
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 0.2rem;
  }

  .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.65rem 0 !important;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .section {
    margin-bottom: 6rem;
  }

  .why-section {
    padding: 5rem 0;
  }

  .split-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .split-image {
    order: 1;
  }

  .split-content {
    order: 2;
    padding: 3.5rem 3.5rem 0 3.5rem;
  }

  .split-image img,
  .hero .split-image img {
    height: min(62vw, 540px);
    min-height: 430px;
  }

  .hero .split-content {
    margin-top: 0;
  }

  .section-head-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .image-frame img {
    height: 480px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .wedding-hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .wedding-hero-image {
    position: relative;
    inset: auto;
    height: clamp(390px, 65vw, 610px);
  }

  .wedding-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.18));
    pointer-events: none;
  }

  .wedding-hero-image img {
    border-radius: 0 0 32px 32px;
    object-position: 65% center;
  }

  .wedding-hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    height: auto;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .wedding-hero-content {
    max-width: 100%;
    margin-top: 0;
  }

  .wedding-hero-content > p {
    max-width: 620px;
  }

  .wedding-hero-note {
    align-self: end;
    max-width: 330px;
    margin: 0;
  }

  .wedding-statement {
    padding: 5rem 0;
  }

  .wedding-image-stack {
    min-height: 630px;
    margin-bottom: 3rem;
  }

  .wedding-content-block {
    max-width: none;
    margin-left: 0;
  }

  .wedding-food {
    align-items: flex-end;
    min-height: 760px;
  }

  .wedding-food-image img {
    object-position: 68% center;
  }

  .wedding-food-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.38) 35%, rgba(255,255,255,0.94) 67%, #fff 100%);
  }

  .wedding-food-content {
    max-width: 760px;
    padding: 22rem 0 4.5rem;
  }

  .wedding-memory {
    padding: 7rem 0;
  }

  .wedding-process-intro {
    position: static;
    max-width: 680px;
    margin-bottom: 1.5rem;
  }

  .wedding-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 430px 290px 290px;
  }

  .wedding-gallery-item-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .wedding-cta {
    padding: 7rem 0;
  }

  .wedding-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Tablet och mobil */
@media (max-width: 991.98px) {
    .site-header,
    .site-header.is-scrolled {
        height: 80px;
        min-height: 80px;
        padding: 0;
    }

    .site-header .container,
    .site-header .container-fluid {
        height: 100%;
    }

    .site-header .row {
        height: 80px;
        min-height: 80px;
        align-items: center;
    }

    .site-header .row > * {
        display: flex;
        align-items: center;
    }

    /*
     * Loggans kolumn.
     * Själva kolumnen är 80px hög, men bilden får sticka ut.
     */
    .site-header .navbar-brand {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 100px;
        width: 100px;
        height: 80px;
        padding: 0;
        margin: 0;
        overflow: visible;
    }

    .site-header .navbar-brand img {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100px;
        height: 100px;
        max-width: none;
        transform: translateX(-50%);
        object-fit: contain;
        z-index: 100;
    }

    /*
     * Håller knappar och menyikon centrerade vertikalt
     * och placerade till höger.
     */
    .site-header .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.75rem;
        height: 80px;
        margin-left: auto;
    }

    .site-header .mobile-menu > * {
        flex: 0 0 auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .site-header .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        margin: 0;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root {
    --radius-lg: 16px;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      padding: 0 0.75em;
  }

  h1,
  .h1 {
    font-size: clamp(2.2rem, 11vw, 2rem);
    line-height: 1.15;
  }

  h2,
  .h2 {
    font-size: clamp(2.2rem, 11vw, 2rem);
    line-height: 1.18;
  }

  h3,
  .h3 {
    font-size: clamp(1.8rem, 11vw, 1.8rem);
  }

  h4,
  .h4 {
    font-size: 1.65rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
  }

  .section {
    margin-bottom: 4.75rem;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
  }

  .experience-card img {
    height: 240px;
  }

  .experience-wrapper {
    padding: 1.75rem 1.25rem 2rem;
  }

  .why-section {
    padding: 4rem 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid div,
  .why-grid div:nth-child(3n),
  .why-grid div:nth-child(-n + 3) {
    min-height: 150px;
    padding: 1.5rem 0.75rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .why-grid div:nth-child(2n) {
    border-right: 0;
  }

  .why-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .why-grid span {
    font-size: 1rem;
  }

  .split-content {
    padding: 2.5rem 1.25rem 0 1.25rem;
  }

  .split-image img,
  .hero .split-image img {
    height: 68vw;
    min-height: 340px;
    max-height: 470px;
    border-radius: var(--radius-lg)
  }

  .image-frame img {
    height: min(95vw, 430px);
  }

  .event-card img {
    height: 210px;
  }

  .event-card-inner {
    padding: 2.75rem 1.5rem 1.75rem;
  }

  .event-date {
    top: 165px;
    left: 1.5rem;
    width: 68px;
    height: 68px;
  }

  .testimonial-card {
    padding: 2rem 1.35rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .instagram-grid img {
    border-radius: 12px;
  }

  .site-footer {
    padding: 4.5rem 0 1.75rem;
  }

  .footer-bottom span:last-child {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .wedding-hero-image {
    height: 430px;
  }

  .wedding-hero-image img {
    border-radius: 0 0 24px 24px;
    object-position: 68% center;
  }

  .wedding-hero-container {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 4.5rem;
  }

  .wedding-hero-content h1 {
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .wedding-hero-content > p {
    font-size: 1.1rem;
  }

  .wedding-hero-content .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .wedding-hero-note {
    align-items: flex-start;
    width: 100%;
    max-width: none;
    padding: 1.25rem;
  }

  .wedding-hero-note-number {
    width: 48px;
    height: 48px;
  }

  .wedding-statement {
    padding: 4rem 0;
  }

  .wedding-statement-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .wedding-statement-mark {
    width: 66px;
    height: 66px;
  }

  .wedding-statement-inner p {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .wedding-image-stack {
    min-height: 500px;
    margin-bottom: 1.5rem;
  }

  .wedding-image-main {
    width: 92%;
    height: 430px;
  }

  .wedding-image-small {
    width: 52%;
    height: 205px;
    padding: 8px;
  }

  .wedding-image-label {
    top: 1.25rem;
    width: 185px;
    padding: 1.15rem;
  }

  .wedding-image-label strong {
    font-size: 1.35rem;
  }

  .wedding-occasion-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wedding-occasion-card,
  .wedding-occasion-card-large,
  .wedding-occasion-card-image {
    grid-column: auto;
    min-height: 330px;
  }

  .wedding-occasion-card-large,
  .wedding-occasion-card-image {
    min-height: 450px;
  }

  .wedding-occasion-content {
    padding: 1.75rem;
  }

  .wedding-occasion-content h3 {
    font-size: 2.35rem;
  }

  .wedding-food {
    min-height: 720px;
  }

  .wedding-food-image img {
    object-position: 70% center;
  }

  .wedding-food-content {
    padding: 18rem 0 3.75rem;
  }

  .wedding-food-options {
    gap: 0.6rem;
    margin-top: 2rem;
  }

  .wedding-food-options span {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }

  .wedding-memory {
    padding: 5rem 0;
  }

  .wedding-memory-lines p {
    padding: 0.9rem 0;
  }

  .wedding-benefit-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wedding-benefit-item {
    min-height: 0;
    padding: 2rem 1.5rem;
  }

  .wedding-benefit-icon {
    margin-bottom: 1.5rem;
  }

  .wedding-process-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 0;
  }

  .wedding-process-item > span {
    font-size: 2rem;
  }

  .wedding-gallery {
    padding: 0 0.75rem;
  }

  .wedding-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.75rem;
  }

  .wedding-gallery-item,
  .wedding-gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    height: 310px;
  }

  .wedding-cta {
    padding: 5rem 0;
  }

  .wedding-cta-inner {
    gap: 2.25rem;
  }

  .wedding-cta-content h2 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .wedding-cta-highlight {
    font-size: 1.8rem;
  }

  .wedding-cta-action {
    width: 100%;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {

  .section {
    margin-bottom: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid div,
  .why-grid div:nth-child(2n),
  .why-grid div:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .why-grid div:last-child {
    border-bottom: 0;
  }

  .split-content {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .split-image img,
  .hero .split-image img {
    height: 78vw;
    min-height: 310px;
  }

  .section-head-row .btn,
  .wedding-hero-content .hero-actions,
  .wedding-hero-content .hero-actions .btn,
  .wedding-cta-action .btn {
    width: 100%;
  }

  .wedding-text-link {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .wedding-hero-image {
    height: 360px;
  }

  .wedding-hero-container {
    padding-top: 2.25rem;
    padding-bottom: 4rem;
  }

  .wedding-hero-note {
    gap: 0.9rem;
  }

  .wedding-hero-note strong {
    font-size: 1.25rem;
  }

  .wedding-image-stack {
    min-height: 365px;
  }

  .wedding-image-main {
    height: 300px;
  }

  .wedding-image-small {
    width: 55%;
    height: 170px;
  }

  .wedding-image-label {
    width: 160px;
    padding: 1rem;
  }

  .wedding-image-label span {
    font-size: 0.75rem;
  }

  .wedding-occasions .section-heading {
      margin-bottom: 1.5rem;
  }

  .wedding-image-label strong {
    font-size: 1.2rem;
  }

  .wedding-occasion-card,
  .wedding-occasion-card-large,
  .wedding-occasion-card-image {
    min-height: 270px;
  }

  .wedding-food {
    min-height: 680px;
  }

  .wedding-food-content {
    padding-top: 16rem;
  }

  .wedding-process-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .wedding-gallery-item,
  .wedding-gallery-item-wide {
    height: 260px;
  }

  .footer-bottom span:last-child {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Touch devices: avoid hover movement that can feel sticky */
@media (hover: none) {
  .experience-card:hover,
  .wedding-occasion-card:hover {
    transform: none;
  }

  .wedding-gallery-item:hover img {
    transform: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.contact-section {
    position: relative;
}

.contact-information,
.contact-form-wrapper {
    height: 100%;
    padding: clamp(2rem, 4vw, 4rem);
    background: var(--light);
}

.contact-information-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-information-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-information-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
}

.contact-information-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-information-content strong {
    display: block;
}

.contact-information-content a,
.contact-information-content span {
    color: inherit;
    text-decoration: none;
}

.contact-information-content a:hover {
    text-decoration: underline;
}

.contact-form-text {
    margin-bottom: 2rem;
}

.contact-map-wrapper {
    margin-top: clamp(2rem, 5vw, 5rem);
}

.contact-map-heading {
    margin-bottom: 1.5rem;
}

.contact-map {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

@media (max-width: 767.98px) {
    .contact-information,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 380px;
        height: 380px;
    }
}

.mobile-menu-toggle {
    width: 50px;
    height: 50px;
    border: 0;
    background: var(--text);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
}
/* Modal overlay */
.mobile-menu-modal .modal-dialog {
    margin: 0 0 0 auto;
    max-width: 420px;
    height: 100%;
}
.mobile-menu-modal .modal-content {
    height: 100vh;
    border: 0;
    border-radius: 0;
    background: var(--white);
    color: var(--text);
    box-shadow: -20px 0 60px rgba(0,0,0,.18);
    overflow: hidden;
}
/* Slide from right */
.mobile-menu-modal.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
.mobile-menu-modal.show .modal-dialog {
    transform: translateX(0);
}
.mobile-menu-modal .modal-dialog-end {
    margin-left: auto;
    margin-right: 0;
}
.mobile-menu-modal .modal-backdrop,
.mobile-menu-modal + .modal-backdrop {
    backdrop-filter: blur(4px);
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    background: var(--text);
}
.mobile-menu-brand {
    font-size:1.8rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}
.mobile-menu-close {
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    position: relative;
    transition: background .2s ease, transform .2s ease;
}
.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}
.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-body {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 84px);
    padding: 1.25rem;
    overflow-y: auto;
}
.mobile-menu-nav {
    flex: 1 1 auto;
}
.mobile-menu-list,
.mobile-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu-list > li:last-child {
    border-bottom: 0;
}
.mobile-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding:0.75rem 0 0.65rem 0;
    border:0 !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
    padding-right: 3rem;
    transition: color .2s ease, transform .2s ease;
}
.mobile-menu-list > li > a::before {
    display: none;
}
.mobile-menu-list:first-child > li > a {
    font-size: 1.5rem;
}
.mobile-menu-list .current-menu-item > a,
.mobile-menu-list .current-menu-ancestor > a {
    color: var(--accent2);
}
.mobile-menu-list .sub-menu {
    padding: .25rem 0 1rem 0;
}
.mobile-menu-list .sub-menu li a {
    padding: .6rem 0 ;
    color: var(--base) !important;
    font-size: 1.25rem;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
    width: 100%;
}
.mobile-menu-actions {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    display: grid;
    gap: .85rem;
}
.modal-backdrop.show {
    opacity: .45;
}
.mobile-menu {
    display: flex;
    align-items:center;
    flex-wrap: wrap;
    gap:0.75rem;
}
.mobile-menu > * {
    flex: 0 0 auto !important;
    margin-top: 0 !important;
}
.mobile-menu > .btn {
    width: auto !important;
}
.mobile-menu-list .menu-item-has-children {
    position: relative;
}
.mobile-submenu-toggle {
    position: absolute;
    top: .55rem;
    right: 0;
    width: 35px;
    height: 35px;
    border: 0;
    background: var(--accent2);
    border-radius: 999px;
    transition: background .2s ease, transform .2s ease;
}
.mobile-submenu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}
.mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}
.menu-item-has-children.is-open > .mobile-submenu-toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
}
.mobile-checklist .topbar-checklist {
    background: var(--base);
    color: var(--white);
    gap:0.3rem;
    padding: 0.3rem 1rem;
    font-size: 60%;
    font-weight: 500;
}
.mobile-checklist .topbar-checklist li,
.mobile-checklist .topbar-checklist li i {
    color: var(--white);
}
