@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2C1A12;
  background: #F7F0E6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: #2C1A12;
}

p {
  margin-bottom: 1.5rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section {
  padding: 10rem 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
}

.section-header {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}
.section-header--center {
  text-align: center;
}
.section-header--center .section-header__tag {
  justify-content: center;
}
.section-header--center .section-header__tag::before {
  display: none;
}
.section-header--center .section-header__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8A46A;
  margin-bottom: 1rem;
}
.section-header__tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #C8A46A;
  flex-shrink: 0;
}

.section-header__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  color: #2C1A12;
}
.section-header__title em {
  font-style: italic;
  color: #8C5E4E;
}
@media (max-width: 1024px) {
  .section-header__title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .section-header__title {
    font-size: 1.65rem;
  }
}

.section-header__title--light {
  color: #F7F0E6;
}
.section-header__title--light em {
  color: #C8A46A;
}

.section-header__subtitle {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  font-weight: 300;
  color: #5C3D2E;
  max-width: 560px;
}
@media (max-width: 480px) {
  .section-header__subtitle {
    font-size: 1rem;
  }
}

.section-header__subtitle--light {
  color: rgba(247, 240, 230, 0.72);
}

.btn {
  display: inline-block;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  transition: all 0.35s ease;
  cursor: pointer;
}
@media (max-width: 480px) {
  .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.68rem;
  }
}
.btn--primary {
  background: #8C5E4E;
  color: #F7F0E6;
  border: 1.5px solid #8C5E4E;
}
.btn--primary:hover {
  background: #6A3F31;
  border-color: #6A3F31;
}
.btn--outline {
  background: transparent;
  color: #8C5E4E;
  border: 1.5px solid #8C5E4E;
}
.btn--outline:hover {
  background: #8C5E4E;
  color: #F7F0E6;
}
.btn--outline-light {
  background: transparent;
  color: #F7F0E6;
  border: 1.5px solid rgba(247, 240, 230, 0.5);
}
.btn--outline-light:hover {
  border-color: #F7F0E6;
  background: rgba(247, 240, 230, 0.08);
}
.btn--gold {
  background: #C8A46A;
  color: #6A3F31;
  border: 1.5px solid #C8A46A;
  font-weight: 500;
}
.btn--gold:hover {
  background: #E4CFA0;
  border-color: #E4CFA0;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) {
  transition-delay: 0s;
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}
.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}
.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}
.fade-up:nth-child(7) {
  transition-delay: 0.6s;
}
.fade-up:nth-child(8) {
  transition-delay: 0.7s;
}

.page-hero {
  background: #8C5E4E;
  padding: calc(72px + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(106, 63, 49, 0.55) 0%, transparent 65%);
}
@media (max-width: 768px) {
  .page-hero {
    padding: calc(72px + 3rem) 0 3rem;
  }
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  color: #F7F0E6;
  margin-bottom: 1rem;
}
.page-hero__title em {
  font-style: italic;
  color: #C8A46A;
}
@media (max-width: 1024px) {
  .page-hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .page-hero__title {
    font-size: 1.8rem;
  }
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(247, 240, 230, 0.72);
  font-weight: 300;
}
@media (max-width: 480px) {
  .page-hero__subtitle {
    font-size: 1rem;
  }
}

.breadcrumb {
  font-size: 0.72rem;
  color: rgba(247, 240, 230, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(247, 240, 230, 0.5);
}
.breadcrumb a:hover {
  color: #C8A46A;
}
.breadcrumb span {
  color: #C8A46A;
}

.legal-mention {
  background: rgba(212, 168, 152, 0.2);
  border: 1px solid rgba(212, 168, 152, 0.5);
  padding: 2rem 2.5rem;
  margin-top: 4rem;
  font-size: 0.72rem;
  color: #9A7060;
  font-style: italic;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .legal-mention {
    padding: 1.5rem;
  }
}

.toast {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  background: #6A3F31;
  color: #F7F0E6;
  padding: 1.5rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  border-left: 3px solid #C8A46A;
  box-shadow: 0 20px 60px rgba(106, 63, 49, 0.22);
  z-index: 9000;
  transform: translateX(calc(100% + 2.5rem));
  transition: transform 0.6s ease;
}
.toast.is-visible {
  transform: translateX(0);
}
@media (max-width: 480px) {
  .toast {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    transform: translateY(calc(100% + 1rem));
  }
  .toast.is-visible {
    transform: translateY(0);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: #6A3F31;
  box-shadow: 0 2px 16px rgba(106, 63, 49, 0.1);
}
.nav--solid {
  background: #6A3F31;
  position: relative;
}

.nav__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .nav__container {
    padding: 0 2.5rem;
  }
}
@media (max-width: 768px) {
  .nav__container {
    padding: 0 2rem;
  }
}
@media (max-width: 480px) {
  .nav__container {
    padding: 0 1.5rem;
  }
}

.nav__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #F7F0E6;
  letter-spacing: 0.03em;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
.nav__logo span {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8A46A;
}
.nav__logo:hover {
  color: #E4CFA0;
}
@media (max-width: 480px) {
  .nav__logo {
    font-size: 1rem;
  }
  .nav__logo span {
    font-size: 0.58rem;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }
}

.nav__link {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.78);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8A46A;
  transition: width 0.35s ease;
}
.nav__link:hover, .nav__link.is-active {
  color: #F7F0E6;
}
.nav__link:hover::after, .nav__link.is-active::after {
  width: 100%;
}
.nav__link.is-active {
  color: #C8A46A;
}
.nav__link--cta {
  background: #C8A46A;
  color: #6A3F31 !important;
  padding: 0.5rem 1.3rem;
  font-weight: 500;
}
.nav__link--cta::after {
  display: none !important;
}
.nav__link--cta:hover {
  background: #E4CFA0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
@media (max-width: 1024px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #F7F0E6;
  transition: all 0.35s ease;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: #6A3F31;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__link {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  color: #F7F0E6;
  transition: color 0.2s ease;
}
.mobile-menu__link:hover {
  color: #C8A46A;
}

.mobile-menu__divider {
  width: 40px;
  height: 1px;
  background: rgba(200, 164, 106, 0.35);
}

.mobile-menu__cta {
  margin-top: 1.5rem;
  background: #C8A46A;
  color: #6A3F31;
  padding: 0.85rem 2.5rem;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}
.mobile-menu__cta:hover {
  background: #E4CFA0;
}

.footer {
  background: #6A3F31;
  color: #F7F0E6;
  padding: 5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer__logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: #F7F0E6;
  line-height: 1.3;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__logo span {
  display: block;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8A46A;
  font-weight: 300;
  margin-top: 3px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(247, 240, 230, 0.72);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer__mention {
  margin-top: 2rem;
  font-size: 0.68rem;
  color: rgba(247, 240, 230, 0.4);
  font-style: italic;
  line-height: 1.65;
  border-top: 1px solid rgba(200, 164, 106, 0.18);
  padding-top: 1.5rem;
}

.footer__col-title {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8A46A;
  margin-bottom: 2rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__nav-link {
  font-size: 0.85rem;
  color: rgba(247, 240, 230, 0.72);
  font-weight: 300;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__nav-link::before {
  content: "—";
  font-size: 0.6rem;
  color: #C8A46A;
  opacity: 0.55;
}
.footer__nav-link:hover {
  color: #C8A46A;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(247, 240, 230, 0.72);
  font-weight: 300;
  line-height: 1.6;
}

.footer__contact-icon {
  color: #C8A46A;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__contact-item a:hover {
  color: #C8A46A;
}

.footer__hours {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(247, 240, 230, 0.72);
  line-height: 2.1;
  margin-top: 1.5rem;
}
.footer__hours strong {
  color: #F7F0E6;
  font-weight: 400;
}

.footer__bottom {
  border-top: 1px solid rgba(200, 164, 106, 0.15);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

.footer__copyright {
  font-size: 0.72rem;
  color: rgba(247, 240, 230, 0.38);
  font-weight: 300;
}

.footer__credit {
  font-size: 0.72rem;
  color: rgba(247, 240, 230, 0.38);
  font-weight: 300;
  transition: color 0.2s ease;
}
.footer__credit a {
  color: #C8A46A;
  font-weight: 400;
}
.footer__credit a:hover {
  color: #E4CFA0;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}
@media (max-width: 480px) {
  .footer__legal {
    gap: 1.5rem;
  }
}

.footer__legal-link {
  font-size: 0.72rem;
  color: rgba(247, 240, 230, 0.38);
  transition: color 0.2s ease;
}
.footer__legal-link:hover {
  color: #C8A46A;
}

.hero {
  min-height: 100vh;
  background: #8C5E4E;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(176, 122, 104, 0.45) 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, rgba(106, 63, 49, 0.65) 0%, transparent 50%);
}

.hero__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=900&q=80") center/cover no-repeat;
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #8C5E4E 0%, rgba(140, 94, 78, 0.25) 50%, transparent 80%), linear-gradient(to top, rgba(106, 63, 49, 0.55) 0%, transparent 40%);
}
@media (max-width: 1024px) {
  .hero__image {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .hero__image {
    width: 100%;
    clip-path: none;
    opacity: 0.22;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 3rem 0;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8A46A;
  margin-bottom: 2rem;
}
.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #C8A46A;
}

.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: #F7F0E6;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.hero__title em {
  font-style: italic;
  color: #C8A46A;
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }
}

.hero__text {
  font-size: 1.15rem;
  color: rgba(247, 240, 230, 0.72);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
@media (max-width: 480px) {
  .hero__text {
    font-size: 1rem;
  }
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247, 240, 230, 0.72);
}
.hero__info-item .icon {
  color: #C8A46A;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero__actions {
    gap: 1rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(247, 240, 230, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-image-wrap {
  position: relative;
}
@media (max-width: 1024px) {
  .about-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .about-image-wrap {
    max-width: 100%;
  }
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-image-border {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  border: 1.5px solid rgba(200, 164, 106, 0.5);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 480px) {
  .about-image-border {
    display: none;
  }
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 2;
  width: 105px;
  height: 105px;
  background: #6A3F31;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-badge .num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: #C8A46A;
  line-height: 1;
}
.about-badge .label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.75);
  line-height: 1.4;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .about-badge {
    display: none;
  }
}

.about-content__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  color: #2C1A12;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.about-content__title em {
  font-style: italic;
  color: #8C5E4E;
}
@media (max-width: 1024px) {
  .about-content__title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .about-content__title {
    font-size: 1.65rem;
  }
}

.about-content__lead {
  font-size: 1.15rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .about-content__lead {
    font-size: 1rem;
  }
}

.about-content__text {
  font-size: 1rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 480px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-value {
  padding: 2rem;
  border: 1px solid rgba(212, 168, 152, 0.5);
  background: #F7F0E6;
}
.about-value__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.about-value__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #2C1A12;
  margin-bottom: 0.5rem;
}
.about-value__text {
  font-size: 0.85rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.75;
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .prestations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .prestations-grid {
    grid-template-columns: 1fr;
  }
}

.card-presta {
  background: #FFFFFF;
  border: 1px solid rgba(212, 168, 152, 0.4);
  padding: 3rem 2.5rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.card-presta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #8C5E4E;
  transition: height 0.55s ease;
}
.card-presta:hover {
  box-shadow: 0 8px 32px rgba(106, 63, 49, 0.16);
  transform: translateY(-4px);
  border-color: rgba(212, 168, 152, 0.85);
}
.card-presta:hover::before {
  height: 100%;
}
@media (max-width: 480px) {
  .card-presta {
    padding: 2rem 2rem;
  }
  .card-presta:hover {
    transform: none;
  }
}

.card-presta__icon {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  display: block;
}

.card-presta__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #2C1A12;
  margin-bottom: 1rem;
}

.card-presta__desc {
  font-size: 0.85rem;
  color: #5C3D2E;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
}

.card-presta__list {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card-presta__list li {
  font-size: 0.85rem;
  color: #5C3D2E;
  display: flex;
  gap: 0.5rem;
  font-weight: 300;
}
.card-presta__list li::before {
  content: "→";
  color: #C8A46A;
  flex-shrink: 0;
}

.card-presta__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8C5E4E;
  font-weight: 400;
}

.tarifs-section {
  background: #EDE3D4;
}

.tarifs-block {
  background: #FFFFFF;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 16px rgba(106, 63, 49, 0.1);
}
@media (max-width: 768px) {
  .tarifs-block {
    padding: 2rem 2rem;
  }
}
@media (max-width: 480px) {
  .tarifs-block {
    padding: 2rem 1.5rem;
  }
}

.tarifs-block__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  color: #8C5E4E;
  margin-bottom: 0.5rem;
}
.tarifs-block__title em {
  font-style: italic;
}
@media (max-width: 480px) {
  .tarifs-block__title {
    font-size: 1.4rem;
  }
}

.tarifs-block__subtitle {
  font-size: 0.85rem;
  color: #9A7060;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
}

.tarifs-table thead {
  border-bottom: 1.5px solid rgba(212, 168, 152, 0.5);
}

.tarifs-table th {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A7060;
  padding: 0 1rem 1rem 0;
  text-align: left;
}
.tarifs-table th:last-child {
  text-align: right;
  padding-right: 0;
}

.tarifs-table tbody tr {
  border-bottom: 1px solid rgba(212, 168, 152, 0.3);
  transition: background 0.2s ease;
}
.tarifs-table tbody tr:hover {
  background: rgba(212, 168, 152, 0.15);
}
.tarifs-table tbody tr:last-child {
  border-bottom: none;
}

.tarifs-table td {
  padding: 1.5rem 1rem 1.5rem 0;
  font-size: 1rem;
  color: #2C1A12;
  font-weight: 300;
}
.tarifs-table td:first-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  padding-right: 2rem;
}
@media (max-width: 480px) {
  .tarifs-table td:first-child {
    font-size: 1rem;
  }
}
.tarifs-table td:nth-child(2) {
  font-size: 0.85rem;
  color: #9A7060;
}
.tarifs-table td:last-child {
  text-align: right;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  color: #8C5E4E;
  font-weight: 400;
}
@media (max-width: 480px) {
  .tarifs-table td:last-child {
    font-size: 1.4rem;
  }
}

.tarifs-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(212, 168, 152, 0.2);
  border-left: 3px solid #C8A46A;
  font-size: 0.85rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .tarifs-note {
    padding: 1.5rem;
  }
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 168, 152, 0.5);
}
.faq-item:first-child {
  border-top: 1px solid rgba(212, 168, 152, 0.5);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2C1A12;
  gap: 2rem;
  transition: color 0.2s ease;
  cursor: pointer;
}
.faq-item__trigger:hover {
  color: #8C5E4E;
}
.faq-item__trigger[aria-expanded=true] {
  color: #8C5E4E;
}
.faq-item__trigger[aria-expanded=true] .faq-item__icon {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq-item__trigger {
    font-size: 1.15rem;
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .faq-item__trigger {
    font-size: 1rem;
    gap: 1rem;
  }
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #D4A898;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #8C5E4E;
  transition: transform 0.35s ease;
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-item__body.is-open {
  grid-template-rows: 1fr;
}

.faq-item__body-inner {
  overflow: hidden;
}

.faq-item__answer {
  padding-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #5C3D2E;
  line-height: 1.9;
}
@media (max-width: 480px) {
  .faq-item__answer {
    padding-bottom: 2rem;
  }
}
.faq-item__answer ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.faq-item__answer li {
  font-weight: 300;
}

.cta-section {
  background: #6A3F31;
  padding: 7rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  color: #F7F0E6;
  margin-bottom: 1rem;
}
.cta-section__title em {
  font-style: italic;
  color: #C8A46A;
}
@media (max-width: 1024px) {
  .cta-section__title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .cta-section__title {
    font-size: 1.65rem;
  }
}

.cta-section__text {
  font-size: 1.15rem;
  color: rgba(247, 240, 230, 0.72);
  font-weight: 300;
  margin-bottom: 3rem;
}
@media (max-width: 480px) {
  .cta-section__text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  color: #2C1A12;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.contact-info__title em {
  font-style: italic;
  color: #8C5E4E;
}
@media (max-width: 1024px) {
  .contact-info__title {
    font-size: 1.85rem;
  }
}
@media (max-width: 480px) {
  .contact-info__title {
    font-size: 1.65rem;
  }
}

.contact-info__text {
  font-size: 1rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 168, 152, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #8C5E4E;
}

.contact-detail__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A7060;
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 1rem;
  color: #2C1A12;
  font-weight: 300;
  line-height: 1.65;
}
.contact-detail__value a:hover {
  color: #8C5E4E;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A7060;
  font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
  border: none;
  border-bottom: 1.5px solid rgba(140, 94, 78, 0.22);
  background: transparent;
  padding: 0.8rem 0;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2C1A12;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #8C5E4E;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: rgba(44, 26, 18, 0.28);
}
.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #C0392B;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C5E4E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

.form-error-msg {
  font-size: 0.68rem;
  color: #C0392B;
  margin-top: 2px;
}

.stats-strip {
  background: rgba(106, 63, 49, 0.06);
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 168, 152, 0.4);
  border-bottom: 1px solid rgba(212, 168, 152, 0.4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stat-item__number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  color: #8C5E4E;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.85rem;
  color: #5C3D2E;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 760px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .step {
    gap: 1.5rem;
  }
}

.step__num {
  width: 50px;
  height: 50px;
  background: #8C5E4E;
  color: #F7F0E6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .step__num {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.step__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #2C1A12;
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .step__title {
    font-size: 1.15rem;
  }
}

.step__text {
  font-size: 1rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.85;
}
@media (max-width: 480px) {
  .step__text {
    font-size: 0.85rem;
  }
}

.payment-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media (max-width: 480px) {
  .payment-badges {
    gap: 1rem;
  }
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #2C1A12;
  padding: 0.6rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(212, 168, 152, 0.5);
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
}

.legal-date {
  display: inline-block;
  font-size: 0.72rem;
  color: #9A7060;
  font-style: italic;
  background: rgba(212, 168, 152, 0.2);
  border-left: 3px solid #C8A46A;
  padding: 0.5rem 1rem;
  margin-bottom: 4rem;
}

.legal-page h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #8C5E4E;
  margin: 4rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 168, 152, 0.5);
}
.legal-page h2:first-of-type {
  margin-top: 0;
}
@media (max-width: 480px) {
  .legal-page h2 {
    font-size: 1.15rem;
  }
}

.legal-page h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: #2C1A12;
  margin: 2rem 0 1rem;
}

.legal-page p {
  font-size: 1rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.legal-page ul,
.legal-page ol {
  margin: 1rem 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-page ul {
  list-style: disc;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page li {
  font-size: 1rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.8;
}

.legal-page strong {
  font-weight: 400;
  color: #2C1A12;
}

.legal-page a {
  color: #8C5E4E;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page a:hover {
  color: #6A3F31;
}

.legal-info-box {
  background: #FFFFFF;
  border: 1px solid rgba(212, 168, 152, 0.5);
  padding: 2.5rem 3rem;
  margin: 2rem 0 2.5rem;
}
.legal-info-box p {
  margin-bottom: 0.5rem;
}
.legal-info-box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .legal-info-box {
    padding: 2rem;
  }
}

.legal-tarifs {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2.5rem;
}

.legal-tarifs th {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A7060;
  padding: 0 1rem 1rem 0;
  text-align: left;
  border-bottom: 1.5px solid rgba(212, 168, 152, 0.5);
}

.legal-tarifs td {
  padding: 1.5rem 1rem 1.5rem 0;
  font-size: 1rem;
  font-weight: 300;
  color: #5C3D2E;
  border-bottom: 1px solid rgba(212, 168, 152, 0.25);
}

.legal-tarifs td:first-child {
  font-family: "Playfair Display", Georgia, serif;
  color: #2C1A12;
}

.legal-tarifs td:last-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: #8C5E4E;
  text-align: right;
}

.legal-tarifs tr:last-child td {
  border-bottom: none;
}

.legal-alert {
  background: rgba(212, 168, 152, 0.2);
  border-left: 3px solid #8C5E4E;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.8;
}
.legal-alert strong {
  color: #8C5E4E;
}
@media (max-width: 480px) {
  .legal-alert {
    padding: 1.5rem;
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(106, 63, 49, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.popup-overlay.is-open .popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup {
  position: relative;
  background: #F7F0E6;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  transition-delay: 0.1s;
}
@media (max-width: 480px) {
  .popup {
    max-width: 100%;
  }
}

.popup__top-bar {
  height: 5px;
  background: linear-gradient(90deg, #8C5E4E, #C8A46A, #B07A68);
}

.popup__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #9A7060;
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 1;
}
.popup__close:hover {
  color: #8C5E4E;
  transform: rotate(90deg);
}

.popup__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) {
  .popup__body {
    grid-template-columns: 1fr;
  }
}

.popup__visual {
  background: #8C5E4E;
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.popup__visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(106, 63, 49, 0.3);
  bottom: -60px;
  left: -60px;
}
@media (max-width: 480px) {
  .popup__visual {
    padding: 3rem 2.5rem;
  }
  .popup__visual::before {
    display: none;
  }
}

.popup__tag {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8A46A;
  position: relative;
}

.popup__promo-wrap {
  position: relative;
  text-align: center;
}

.popup__old-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: rgba(247, 240, 230, 0.45);
  text-decoration: line-through;
  line-height: 1;
  display: block;
}

.popup__new-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  color: #C8A46A;
  line-height: 1;
  display: block;
}
.popup__new-price span {
  font-size: 1.4rem;
  vertical-align: super;
}
@media (max-width: 480px) {
  .popup__new-price {
    font-size: 3.5rem;
  }
}

.popup__saving {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(247, 240, 230, 0.7);
  background: rgba(106, 63, 49, 0.4);
  padding: 0.35rem 0.9rem;
  position: relative;
}

.popup__content {
  padding: 4rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .popup__content {
    padding: 2.5rem 2.5rem 3rem;
  }
}

.popup__eyebrow {
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C8A46A;
  font-weight: 400;
}

.popup__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.85rem;
  color: #2C1A12;
  line-height: 1.2;
}
.popup__title em {
  font-style: italic;
  color: #8C5E4E;
}
@media (max-width: 480px) {
  .popup__title {
    font-size: 1.4rem;
  }
}

.popup__text {
  font-size: 0.85rem;
  color: #5C3D2E;
  font-weight: 300;
  line-height: 1.8;
}

.popup__cta {
  display: inline-block;
  background: #8C5E4E;
  color: #F7F0E6;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  transition: background 0.35s ease;
  text-align: center;
  margin-top: 0.5rem;
}
.popup__cta:hover {
  background: #6A3F31;
  color: #F7F0E6;
}

.popup__skip {
  font-size: 0.72rem;
  color: #9A7060;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  transition: color 0.2s ease;
}
.popup__skip:hover {
  color: #5C3D2E;
  text-decoration: underline;
}

.popup__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #C8A46A;
  color: #6A3F31;
  font-family: "Lato", "Helvetica Neue", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 1;
}/*# sourceMappingURL=style.css.map */