/* ============================================================
   Mahjong Social at Solara — Main Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --ivory:        #F7F4ED;
  --green:        #1E3D2F;
  --gold:         #D4AF37;
  --gold-deep:    #C09A28;
  --blush:        #E7B5B2;
  --dark:         #1A1A18;
  --muted:        rgba(26, 26, 24, 0.55);
  --muted-light:  rgba(247, 244, 237, 0.68);

  --font-heading: 'Cinzel', serif;
  --font-script:  'Playfair Display', serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
}

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

/* --- Base --- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-heading);
  background-color: var(--ivory);
  color: var(--dark);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Shared Utilities --- */
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 1.25rem auto;
}

/* Left-aligned divider for non-centered sections */
.divider--left {
  margin-left: 0;
  margin-right: 0;
}

/* Tighter divider for FAQ header */
.divider--faq {
  margin: 1rem auto 0;
}

/* Tight vertical margin, no auto centering */
.divider--tight {
  margin: 0.25rem 0;
}

/* Softer divider for proximity section */
.divider--proximity {
  background: rgba(212, 175, 55, 0.4);
  margin: 1.25rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: var(--gold-deep); }

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline-green:hover {
  background: var(--green);
  color: var(--ivory);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid rgba(30, 61, 47, 0.1);
  box-shadow: 0 1px 12px rgba(30, 61, 47, 0.07);
  padding: 0.6rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--gold); }

/* Active nav link */
.nav__links a[aria-current="page"] { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../Images/HeroPicture.webp') center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 61, 47, 0.8);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.1;
}

.hero__location {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--gold);
  margin-top: 0.25rem;
}

.hero__tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(247, 244, 237, 0.75);
  margin-bottom: 0.75rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--ivory);
  padding: 5rem 2rem;
  text-align: center;
}

.about__inner {
  max-width: 680px;
  margin: 0 auto;
}

.about h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.4;
}

.about p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ============================================================
   CLASSES
   ============================================================ */
.classes {
  background: var(--green);
  padding: 5rem 2rem;
}

.classes__inner {
  max-width: 960px;
  margin: 0 auto;
}

.classes__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.classes__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 0.5rem;
}

.class-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.class-card {
  flex: 0 0 calc(33.333% - 1rem);
  border: 1px solid rgba(30, 61, 47, 0.15);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  background: var(--ivory);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.class-card:hover {
  box-shadow: 0 6px 28px rgba(30, 61, 47, 0.14);
  transform: translateY(-2px);
}

.class-card__price {
  font-weight: bolder;
  margin-top: auto;
}

.class-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.class-card__icon svg,
.class-card__icon img {
  width: 38px;
  height: 38px;
}

.class-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.5;
}

.class-card p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.classes__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-top: 2.25rem;
}

.classes__cta a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.classes__cta a:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--blush);
  padding: 5rem 2rem;
  text-align: center;
}

.testimonials__inner {
  max-width: 680px;
  margin: 0 auto;
}

.testimonials .section-label { color: var(--green); }

.quote p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.quote cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.quote-divider {
  width: 30px;
  height: 1px;
  background: rgba(30, 61, 47, 0.2);
  border: none;
  margin: 2rem auto;
}

/* ============================================================
   LOCATION TEASER
   ============================================================ */
.location-teaser {
  background: var(--ivory);
  padding: 5rem 2rem;
  text-align: center;
}

.location-teaser__inner {
  max-width: 800px;
  margin: 0 auto;
}

.location-teaser .section-label { color: var(--green); }

.location-teaser h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

.location-teaser p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 0.35rem;
}

.footer__tagline {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.footer__links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 237, 0.65);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--gold); }

.footer__copy {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(247, 244, 237, 0.55);
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: var(--green);
  padding: 4.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.page-header__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.15;
}

.page-header__sub {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-light);
  margin-top: 0.25rem;
}

/* ============================================================
   LOCATION MAIN
   ============================================================ */
.location-main {
  background: var(--ivory);
  padding: 5rem 2rem;
}

.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.location-map {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 61, 47, 0.14);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-info address {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.8;
  margin-top: 0.4rem;
}

.location-info__note {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(26, 26, 24, 0.45);
  margin-top: 0.4rem;
}

.location-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.4rem;
}

.location-hours li {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.location-hours li strong {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  display: block;
  margin-bottom: 0.15rem;
}

.location-hours li.location-hours__note {
  font-size: 1rem;
  color: rgba(26, 26, 24, 0.5);
}

/* ============================================================
   LOCATION PROXIMITY
   ============================================================ */
.location-proximity {
  background: var(--green);
  padding: 5rem 2rem;
  text-align: center;
}

.location-proximity__inner {
  max-width: 680px;
  margin: 0 auto;
}

.location-proximity .section-label { color: var(--gold); }

.location-proximity h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.location-proximity p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted-light);
  line-height: 1.85;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* ============================================================
   ABOUT PAGE — STORY SECTION
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-story__image {
  overflow: hidden;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__content {
  background: var(--ivory);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.about-story__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.about-story__content p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.85;
}

/* Left-aligned divider inside story content */
.about-story__content .divider {
  margin: 0.75rem 0 1.25rem;
}

/* ============================================================
   ABOUT PAGE — FAQ SECTION
   ============================================================ */
.about-faq {
  background: var(--green);
  padding: 5rem 2rem;
}

.about-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-faq__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 0.25rem;
}

.about-faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.about-faq__item {
  padding: 1.4rem 0;
}

.about-faq__item summary {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.about-faq__item summary::-webkit-details-marker { display: none; }

.about-faq__item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.about-faq__item[open] summary::after {
  content: '\00D7';
}

.about-faq__item p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted-light);
  line-height: 1.8;
  padding-top: 0.85rem;
}

.about-faq__divider {
  width: 100%;
  height: 1px;
  background: rgba(247, 244, 237, 0.15);
  border: none;
  margin: 0;
}

/* Gold inline link — used for body-text links on any background */
.link--gold {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link--gold:hover { color: var(--gold-deep); }

/* ============================================================
   ABOUT PAGE — FAQ CTA SECTION
   ============================================================ */
.about-faq-cta {
  background: var(--green);
  padding: 5rem 2rem;
  text-align: center;
}

.about-faq-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-faq-cta .section-label { color: var(--gold); }

.about-faq-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.4;
}

.about-faq-cta p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact {
  background: var(--ivory);
  padding: 5rem 2rem;
}

.contact__inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.form-group input,
.form-group textarea {
  background: var(--ivory);
  border: 1.5px solid rgba(30, 61, 47, 0.25);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(26, 26, 24, 0.35);
  font-family: var(--font-script);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact__thanks {
  text-align: center;
}

.contact__thanks-text {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact__thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER — SOCIAL ICONS
   ============================================================ */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer__social-link {
  color: rgba(247, 244, 237, 0.65);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.footer__social-link:hover { color: var(--gold); }

/* ============================================================
   NAV — HAMBURGER
   ============================================================ */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: background 0.2s ease;
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  margin-bottom: 2.5rem;
}

.mobile-menu__logo {
  width: 140px;
  height: 140px;
}

.mobile-menu__close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--ivory);
  padding: 0;
  transition: color 0.2s ease;
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

.mobile-menu__nav a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(247, 244, 237, 0.1);
  transition: color 0.2s ease;
}
.mobile-menu__nav a:first-child { border-top: 1px solid rgba(247, 244, 237, 0.1); }
.mobile-menu__nav a:hover { color: var(--gold); }
.mobile-menu__nav a[aria-current="page"] { color: var(--gold); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE — 768px breakpoint
   ============================================================ */
@media (max-width: 768px) {
  .nav {
    padding: 0.6rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav__logo img { height: 40px; }

  .nav__hamburger { display: flex; }

  .nav__links { display: none; }

  .footer__links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 1.5rem;
    row-gap: 0.75rem;
    justify-content: center;
  }

  .class-cards { flex-direction: column; }
  .class-card { flex: none; width: 100%; }

  .location-grid { grid-template-columns: 1fr; gap: 2rem; }

  .about,
  .classes,
  .testimonials,
  .location-teaser,
  .location-main,
  .location-proximity,
  .footer { padding: 3.5rem 1.25rem; }

  .page-header { padding: 3rem 1.25rem; }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story__image {
    height: 280px;
  }

  .about-story__content {
    padding: 3.5rem 1.25rem;
  }

  .about-faq { padding: 3.5rem 1.25rem; }

  .about-faq-cta { padding: 3.5rem 1.25rem; }

  .contact { padding: 3.5rem 1.25rem; }
}
