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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

button {
  all: unset;
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button,
input[type=submit],
input[type=button],
input[type=reset] {
  cursor: pointer;
}

:focus {
  outline: 2px solid #8b5a3c;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #794b39;
  background-color: #f3e0c4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 48rem) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (max-width: 48rem) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

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

a {
  color: #8b5a3c;
  transition: color 150ms ease-out;
}
a:hover, a:focus {
  color: #67432d;
}

.container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 48rem) {
  .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .container {
    width: 71.25rem;
  }
}

section {
  padding: 3rem 0;
}
@media (max-width: 48rem) {
  section {
    padding: 2rem 0;
  }
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.5rem;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #d8b18d;
  border-radius: 0.5rem;
  background-color: white;
  transition: border-color 150ms ease-out;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #8b5a3c;
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media print {
  body {
    background: white;
    padding-top: 0;
  }
  .no-print {
    display: none;
  }
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f3e0c4;
  padding: 1rem 0;
  z-index: 1020;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 4rem;
}
.main-header__inner {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 48rem) {
  .main-header__inner {
    max-width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .main-header__inner {
    max-width: 71.25rem;
  }
}
.main-header__logo {
  position: relative;
  z-index: 1051;
}
.main-header__logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}
.main-header__toggle {
  display: none;
}
@media (max-width: 48rem) {
  .main-header__toggle {
    display: block;
    width: 2rem;
    height: 2rem;
    position: relative;
    z-index: 1051;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .main-header__toggle span {
    display: block;
    width: 100%;
    height: 0.0625rem;
    background: #794b39;
    position: relative;
    transition: background-color 150ms ease-out;
  }
  .main-header__toggle span::before, .main-header__toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.0625rem;
    background: #794b39;
    transition: transform 200ms ease-out;
  }
  .main-header__toggle span::before {
    top: -0.5rem;
  }
  .main-header__toggle span::after {
    bottom: -0.5rem;
  }
}
.main-header__toggle.is-active span {
  background: transparent;
}
.main-header__toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}
.main-header__toggle.is-active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.main-header__nav {
  display: flex;
  gap: 1.5rem;
}
.main-header__nav a {
  color: #794b39;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 150ms ease-out;
}
.main-header__nav a:hover, .main-header__nav a:focus {
  color: #8b5a3c;
}
@media (max-width: 48rem) {
  .main-header__nav {
    display: none;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: #f3e0c4;
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .main-header__nav.is-active {
    display: flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  .main-header__toggle span, .main-header__toggle span::before, .main-header__toggle span::after, .main-header__nav a {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 48rem) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}
.nav__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5a3c;
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .nav__logo {
    margin-bottom: 0;
  }
}
.nav__logo:hover, .nav__logo:focus {
  color: #67432d;
}
.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 48rem) {
  .nav__list {
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    gap: 1.5rem;
  }
}
.nav__item {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (min-width: 48rem) {
  .nav__item {
    width: auto;
  }
}
.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  color: #794b39;
  font-weight: 600;
  transition: color 150ms ease-out;
}
.nav__link:hover, .nav__link:focus {
  color: #8b5a3c;
}
.nav__link--active {
  color: #8b5a3c;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2em;
  height: 0.125rem;
  background-color: #8b5a3c;
  border-radius: 0.5rem;
}
@media (min-width: 48rem) {
  .nav__link--active::after {
    bottom: -0.5rem;
  }
}
.nav__toggle {
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  color: #794b39;
}
@media (min-width: 48rem) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle:hover, .nav__toggle:focus {
  color: #8b5a3c;
}

.nav--open .nav__list {
  display: flex;
}

.no-js .nav__toggle {
  display: none;
}
.no-js .nav__list {
  display: flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease-out, box-shadow 150ms ease-out;
  border: none;
}
.button--primary {
  background-color: #8b5a3c;
  color: #f3e0c4;
}
.button--primary:hover, .button--primary:focus {
  background-color: #67432d;
  color: #f3e0c4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button--primary:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.button--primary:disabled {
  background-color: #af714b;
  color: #f3e0c4;
  cursor: not-allowed;
  box-shadow: none;
}
.button--secondary {
  background-color: #d8b18d;
  color: #794b39;
}
.button--secondary:hover, .button--secondary:focus {
  background-color: #cb9767;
  color: #794b39;
}
.button--secondary:disabled {
  background-color: #e5cbb3;
  color: rgba(121, 75, 57, 0.6);
  cursor: not-allowed;
}
.button--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.button--large {
  padding: 1.5rem 3rem;
  font-size: 1.5rem;
}
@media (max-width: 48rem) {
  .button--large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 48rem) {
  .button--full-mobile {
    width: 100%;
  }
}
.button:focus {
  outline: 0.125rem solid #8b5a3c;
  outline-offset: 2px;
}
.button:disabled {
  opacity: 0.7;
  pointer-events: none;
}
.button__icon {
  margin-right: 0.5rem;
}
.button__icon--right {
  margin-right: 0;
  margin-left: 0.5rem;
}
.button--loading {
  position: relative;
  pointer-events: none;
}
.button--loading::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(243, 224, 196, 0.3);
  border-radius: 50%;
  border-top-color: #f3e0c4;
  animation: button-spin 0.8s linear infinite;
  margin-left: 1rem;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}
.footer {
  background-color: #794b39;
  color: #f3e0c4;
  padding: 2rem 0;
  margin-top: 3rem;
}
.footer__content {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .footer__content {
    width: 45rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
}
@media (min-width: 64.0625rem) {
  .footer__content {
    width: 71.25rem;
  }
}
.footer__contact h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d8b18d;
}
.footer__contact p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer__contact p:last-child {
  margin-bottom: 0;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 48rem) {
  .footer__nav ul {
    text-align: right;
  }
}
.footer__nav li {
  margin: 0;
}
.footer__nav a {
  color: #d8b18d;
  font-size: 1rem;
  transition: color 150ms ease-out;
  text-decoration: none;
}
.footer__nav a:hover, .footer__nav a:focus {
  color: #e5cbb3;
  text-decoration: underline;
}
@media print {
  .footer {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer a {
    transition: none;
  }
}

.hero {
  min-height: calc(100vh - 4rem);
  margin-top: 4rem;
  padding: 2rem 0;
  background-color: #f3e0c4;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 48rem) {
  .hero .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .hero .container {
    width: 71.25rem;
  }
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2rem;
  color: #794b39;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  max-width: 45rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.hero__content {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}
.hero__intro {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #794b39;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .hero__intro {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

.services {
  padding: 2rem 0;
  background-color: white;
}
@media (min-width: 48rem) {
  .services {
    padding: 3rem 0;
  }
}
.services .container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 48rem) {
  .services .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .services .container {
    width: 71.25rem;
  }
}
.services__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #794b39;
  margin-bottom: 2rem;
  text-align: left;
}
@media (max-width: 48rem) {
  .services__title {
    font-size: 1.5rem;
  }
}
.services__content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .services__content {
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 3rem;
  }
}
.services__text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #794b39;
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .services__text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.services__image {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 48rem) {
  .services__image {
    margin-top: 0;
  }
}
.services__image img {
  width: 100%;
  height: auto;
  display: block;
}
.services__cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 48rem) {
  .services__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.services__card {
  background-color: rgba(216, 177, 141, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: transform 200ms ease-out;
}
.services__card:hover {
  transform: translateY(-0.25rem);
}
.services__card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #8b5a3c;
  margin-bottom: 1rem;
}
.services__card p {
  font-size: 1rem;
  color: #794b39;
  margin: 0;
}
.services__cta {
  margin-top: 2rem;
}
@media (min-width: 48rem) {
  .services__cta {
    margin-top: 3rem;
  }
}
.services__cta .button {
  width: 100%;
}
@media (min-width: 48rem) {
  .services__cta .button {
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .services__card {
    transition: none;
  }
  .services__card:hover {
    transform: none;
  }
}

.features {
  padding: 2rem 0;
  background-color: #f3e0c4;
}
@media (min-width: 48rem) {
  .features {
    padding: 3rem 0;
  }
}
.features .container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 48rem) {
  .features .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .features .container {
    width: 71.25rem;
  }
}
.features__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #794b39;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 48rem) {
  .features__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.features__list {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 48rem) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.features__list li {
  position: relative;
  padding-left: 3rem;
  font-size: 1rem;
  color: #794b39;
  line-height: 1.5;
}
.features__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #a9c8a2;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.features__price {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.features__price strong {
  color: #8b5a3c;
  font-weight: 700;
}
.features__cta {
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 48rem) {
  .features__cta {
    margin-top: 3rem;
  }
}
.features__cta .button {
  display: inline-block;
  min-width: 200px;
}
@media (max-width: 48rem) {
  .features__cta .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .features__list li {
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeInUp 0.5s ease-out forwards;
  }
  .features__list li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .features__list li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .features__list li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .features__list li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .features__list li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .features__list li:nth-child(6) {
    animation-delay: 0.6s;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about {
  padding: 2rem 0;
  background-color: white;
}
@media (min-width: 48rem) {
  .about {
    padding: 3rem 0;
  }
}
.about .container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 48rem) {
  .about .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .about .container {
    width: 71.25rem;
  }
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #794b39;
  margin-bottom: 3rem;
  text-align: left;
}
@media (max-width: 48rem) {
  .about__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.about__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 48rem) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 48rem) {
  .about__quote-container {
    position: sticky;
    top: 6rem;
  }
}
.about__quote {
  position: relative;
  padding: 2rem;
  margin-bottom: 1.5rem;
  background-color: rgba(216, 177, 141, 0.1);
  border-radius: 0.75rem;
}
.about__quote p {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #794b39;
  font-style: italic;
  margin: 0;
}
@media (max-width: 48rem) {
  .about__quote p {
    font-size: 1rem;
  }
}
.about__author {
  text-align: center;
  margin-bottom: 2rem;
}
.about__name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5a3c;
  margin-bottom: 0.25rem;
}
.about__description {
  font-size: 1rem;
  color: #794b39;
  opacity: 0.8;
}
.about__accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__accordion-item {
  border-bottom: 1px solid rgba(216, 177, 141, 0.3);
}
.about__accordion-item:last-child {
  border-bottom: none;
}
.about__accordion-trigger {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 150ms ease-out;
}
.about__accordion-trigger h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #794b39;
  margin: 0;
  text-align: left;
}
.about__accordion-trigger:hover h3 {
  color: #8b5a3c;
}
.about__accordion-trigger[aria-expanded=true] h3 {
  color: #8b5a3c;
}
.about__accordion-trigger[aria-expanded=true] .about__accordion-icon {
  transform: rotate(180deg);
}
.about__accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 150ms ease-out;
  position: relative;
}
.about__accordion-icon::before, .about__accordion-icon::after {
  content: "";
  position: absolute;
  background-color: #8b5a3c;
  border-radius: 0.0625rem;
}
.about__accordion-icon::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.about__accordion-icon::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.about__accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 200ms ease-out;
}
.about__accordion-inner {
  padding: 0 0 1.5rem 0;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}
[aria-hidden=false] .about__accordion-inner {
  opacity: 1;
  transform: translateY(0);
}
.about__accordion-inner p {
  font-size: 1rem;
  line-height: 1.5;
  color: #794b39;
  margin-bottom: 1.5rem;
}
.about__accordion-inner p:last-child {
  margin-bottom: 0;
}
.about__cta {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 48rem) {
  .about__cta .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about__accordion-content, .about__accordion-icon, .about__accordion-inner {
    transition: none;
  }
}

.pricing {
  padding: 2rem 0;
  background-color: #f3e0c4;
}
@media (min-width: 48rem) {
  .pricing {
    padding: 3rem 0;
  }
}
.pricing .container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 48rem) {
  .pricing .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .pricing .container {
    width: 71.25rem;
  }
}
.pricing__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #794b39;
  margin-bottom: 3rem;
  text-align: left;
}
@media (max-width: 48rem) {
  .pricing__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.pricing__content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .pricing__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.pricing__basic, .pricing__travel {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (min-width: 48rem) {
  .pricing__basic, .pricing__travel {
    padding: 2rem;
  }
}
.pricing__basic h3, .pricing__travel h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #794b39;
  margin-bottom: 1.5rem;
}
.pricing__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(216, 177, 141, 0.3);
  font-size: 1rem;
  color: #794b39;
}
.pricing__list li:last-child {
  border-bottom: none;
}
.pricing__price {
  font-weight: 600;
  color: #8b5a3c;
}
.pricing .button--primary {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .pricing .button--primary {
    grid-column: 1/-1;
    max-width: 400px;
    justify-self: center;
  }
}
.pricing__info {
  grid-column: 1/-1;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(121, 75, 57, 0.8);
  text-align: center;
}
@media (prefers-reduced-motion: no-preference) {
  .pricing__basic, .pricing__travel {
    transition: transform 200ms ease-out;
  }
  .pricing__basic:hover, .pricing__travel:hover {
    transform: translateY(-0.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing__basic, .pricing__travel {
    transition: none;
  }
  .pricing__basic:hover, .pricing__travel:hover {
    transform: none;
  }
}

.contact {
  padding: 2rem 0;
  background-color: white;
}
@media (min-width: 48rem) {
  .contact {
    padding: 3rem 0;
  }
}
.contact .container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 48rem) {
  .contact .container {
    width: 45rem;
  }
}
@media (min-width: 64.0625rem) {
  .contact .container {
    width: 71.25rem;
  }
}
.contact__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #794b39;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 48rem) {
  .contact__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 48rem) {
  .contact__list {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    align-items: center;
  }
}
.contact__list li {
  text-align: center;
}
@media (max-width: 48rem) {
  .contact__list li {
    padding: 1.5rem;
    background-color: rgba(216, 177, 141, 0.1);
    border-radius: 0.75rem;
  }
}
.contact__link {
  display: inline-flex;
  align-items: center;
  color: #8b5a3c;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease-out;
}
@media (max-width: 48rem) {
  .contact__link {
    font-size: 1rem;
  }
}
.contact__link:hover, .contact__link:focus {
  color: #67432d;
}
.contact__link svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  fill: currentColor;
}
.contact__card {
  max-width: 38rem;
  margin: 3rem auto 0;
  padding: 2rem;
  background-color: rgba(216, 177, 141, 0.1);
  border-radius: 0.75rem;
  text-align: center;
}
.contact__card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #794b39;
  margin-bottom: 1rem;
}
.contact__card p {
  font-size: 1rem;
  color: #794b39;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact__card p:last-child {
  margin-bottom: 0;
}
.contact__link:focus-visible {
  outline: 0.125rem solid #8b5a3c;
  outline-offset: 0.25rem;
  border-radius: 0.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .contact__link:hover svg {
    transform: scale(1.1);
    transition: transform 150ms ease-out;
  }
  .contact li {
    opacity: 0;
    transform: translateY(0.5rem);
    animation: contactFadeIn 0.5s ease-out forwards;
  }
  .contact li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .contact li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .contact li:nth-child(3) {
    animation-delay: 0.3s;
  }
}
@media print {
  .contact {
    background-color: transparent;
    padding: 1.5rem 0;
  }
  .contact__list {
    flex-direction: column;
    gap: 1rem;
  }
  .contact__link {
    color: #794b39;
    text-decoration: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact__link:hover svg {
    transform: none;
    transition: none;
  }
  .contact li {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */