/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #9f5a2e;
  padding: 0;
  margin: 0 0 1rem 0;
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 2.3rem;
  text-transform: capitalize;
}
@media (min-width: 800px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
  text-transform: capitalize;
}
@media (min-width: 800px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 1.3rem;
  text-transform: capitalize;
}
@media (min-width: 800px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (min-width: 800px) {
  h4 {
    font-size: 1.4rem;
  }
}

p {
  font-size: 1.1rem;
  color: #000;
  padding: 0;
  margin: 0 0 1rem 0;
}
p:last-of-type {
  margin: 0;
}

strong {
  color: #515739;
}

a {
  font-size: 1.1rem;
  color: #000;
  text-decoration-color: transparent;
  transition: 0.3s;
}
a:hover, a:focus {
  color: #515739;
}

ul {
  padding: 0 0 0 1.5rem;
}

li {
  font-size: 1.1rem;
  padding: 0;
  margin: 0;
}

.wp-block-media-text {
  margin: 2rem 0;
}
@media (min-width: 800px) {
  .wp-block-media-text {
    margin: 4rem 0;
  }
}
.wp-block-media-text:first-of-type {
  margin: 0 0 2rem;
}
@media (min-width: 800px) {
  .wp-block-media-text:first-of-type {
    margin: 0 0 4rem;
  }
}
.wp-block-media-text:last-of-type {
  margin-bottom: 0;
}
.wp-block-media-text .wp-block-media-text__content {
  margin: 2rem 0 0;
  padding: 0;
}
@media (min-width: 800px) {
  .wp-block-media-text .wp-block-media-text__content {
    margin: 0;
    padding: 4rem 0 4rem 2rem;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
  overflow: hidden;
}
@media (min-width: 800px) {
  .wp-block-media-text .wp-block-media-text__media {
    margin: 0 2rem 0 0;
  }
}
.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media (min-width: 800px) {
  .wp-block-media-text .wp-block-media-text__media img {
    height: 100%;
  }
}

@media (min-width: 800px) {
  .has-media-on-the-right .wp-block-media-text__content {
    padding: 4rem 2rem 4rem 0;
  }
}
@media (min-width: 800px) {
  .has-media-on-the-right .wp-block-media-text__media {
    margin: 0 0 0 2rem;
  }
}
.has-media-on-the-right .wp-block-media-text__media img {
  height: 300px;
}

@media (max-width: 800px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}
.wp-block-columns {
  gap: 0;
  margin: 0;
}
@media (min-width: 800px) {
  .wp-block-columns {
    gap: 2rem;
  }
}
.wp-block-columns .wp-block-column ul {
  margin: 0;
}
@media (min-width: 800px) {
  .wp-block-columns .wp-block-column ul {
    margin: 1rem 0;
  }
}

.main-images {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem 2rem 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 800px) {
  .main-images {
    padding: 2rem 3rem 6rem 1rem;
    justify-content: center;
    flex-direction: row;
  }
}
.main-images .main-image-wrap {
  display: flex;
  position: relative;
  gap: 1rem;
  width: 90%;
  order: 2;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.2s;
}
@media (min-width: 800px) {
  .main-images .main-image-wrap {
    order: 1;
    width: 70%;
    padding: 0 2rem;
  }
}
.main-images .main-image-wrap .main-image {
  z-index: 2;
  width: 100%;
  height: 500px;
}
.main-images .main-image-wrap .main-image:last-of-type {
  display: none;
}
@media (min-width: 576px) {
  .main-images .main-image-wrap .main-image {
    height: 600px;
  }
}
@media (min-width: 800px) {
  .main-images .main-image-wrap .main-image {
    width: 50%;
  }
  .main-images .main-image-wrap .main-image:last-of-type {
    display: block;
  }
}
.main-images .main-image-wrap .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 576px) {
  .main-images .main-image-wrap .main-image img {
    object-fit: contain;
  }
}
@media (min-width: 800px) {
  .main-images .main-image-wrap .main-image img {
    object-fit: cover;
  }
}
@media (min-width: 800px) {
  .main-images .main-image-wrap:before {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 150px;
    background: #c7cbb9;
  }
}
.main-images .main-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1rem 0 0 0;
  order: 1;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.4s;
}
@media (min-width: 800px) {
  .main-images .main-content {
    width: 30%;
    margin: 0;
    padding: 0;
    align-items: center;
    order: 2;
  }
}
.main-images .main-content .floral-icon {
  width: 200px;
  margin: 2rem 0 0 -2rem;
  display: none;
}
@media (min-width: 800px) {
  .main-images .main-content .floral-icon {
    display: block;
    margin: 2rem 0 0 0;
  }
}
.main-images .main-content h1 {
  color: #515739;
  font-family: lato, sans-serif;
  font-weight: 200;
  font-size: 1.3rem;
  text-align: center;
  margin: 0;
}
.main-images .main-content p {
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-size: 2rem;
  color: #9f5a2e;
  text-align: center;
  margin: 0 0 1rem 0;
}
@media (min-width: 800px) {
  .main-images .main-content p {
    font-size: 2.4rem;
  }
}
.main-images .floral-icon {
  width: 200px;
  order: 3;
}
@media (min-width: 800px) {
  .main-images .floral-icon.mobile-header-image {
    display: none;
  }
}

.introduction-wrap {
  background: #f4f4f1;
  width: 100%;
}
.introduction-wrap .introduction {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 992px) {
  .introduction-wrap .introduction {
    padding: 6rem 1rem;
    width: 70%;
    margin: 0 auto;
  }
}
.introduction-wrap .introduction .quote-snippet {
  text-align: center;
}

.wedding-cakes {
  width: 100%;
  padding: 4rem 1rem;
  margin: 0 auto;
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 800px) {
  .wedding-cakes {
    padding: 6rem 1rem;
    flex-direction: row;
    gap: 4rem;
  }
}
.wedding-cakes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 800px) {
  .wedding-cakes .content {
    width: 50%;
  }
}
.wedding-cakes .content .floral-icon {
  width: 200px;
  margin: 0 auto 2rem auto;
}
.wedding-cakes .content h2,
.wedding-cakes .content p {
  text-align: center;
}
.wedding-cakes .wedding-cake-image {
  margin: 2rem 0 0 0;
  width: 100%;
}
@media (min-width: 576px) {
  .wedding-cakes .wedding-cake-image {
    height: 400px;
  }
}
@media (min-width: 800px) {
  .wedding-cakes .wedding-cake-image {
    height: 600px;
    width: 50%;
  }
}
.wedding-cakes .wedding-cake-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .wedding-cakes .wedding-cake-image img {
    object-fit: cover;
  }
}

.reviews-wrap {
  width: 100%;
  padding: 4rem 0;
  background: #f4f4f1;
  margin-bottom: 4rem;
}
@media (min-width: 800px) {
  .reviews-wrap {
    margin-bottom: 0;
  }
}
.reviews-wrap h2 {
  text-align: center;
}
.reviews-wrap .reviews {
  width: 100%;
  position: relative;
  width: 100%;
  padding: 1rem;
  margin: 0 auto;
  max-width: 87.5rem;
}
@media (min-width: 800px) {
  .reviews-wrap .reviews {
    width: 80%;
    margin: 0 auto;
  }
}
.reviews-wrap .reviews .reviews-box .quote {
  margin: 0 0 1rem 0;
  padding: 0 1rem;
}
.reviews-wrap .reviews .reviews-box p {
  text-align: center;
  margin: 0;
}
.reviews-wrap .reviews .reviews-box .name {
  color: #9f5a2e;
  font-weight: 500;
}
.reviews-wrap .reviews .slick-prev,
.reviews-wrap .reviews .slick-next {
  position: absolute;
  top: 20%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  pointer-events: auto;
}
.reviews-wrap .reviews .slick-prev:hover .iconify,
.reviews-wrap .reviews .slick-next:hover .iconify {
  color: #515739;
}
.reviews-wrap .reviews .slick-prev .iconify,
.reviews-wrap .reviews .slick-next .iconify {
  color: #9f5a2e;
  font-size: 50px;
  transition: 0.3s;
  pointer-events: none;
}
.reviews-wrap .reviews .slick-prev.slick-prev,
.reviews-wrap .reviews .slick-next.slick-prev {
  left: -80px;
}
.reviews-wrap .reviews .slick-prev.slick-next,
.reviews-wrap .reviews .slick-next.slick-next {
  right: -80px;
}
.reviews-wrap .reviews .slick-dots {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.reviews-wrap .reviews .slick-dots li {
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
}
.reviews-wrap .reviews .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #9f5a2e;
  font-size: 0;
  line-height: 0;
  display: block;
  cursor: pointer;
}
.reviews-wrap .reviews .slick-dots li.slick-active button {
  background: #9f5a2e;
}

.main-flavours {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem 4rem 1rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media (min-width: 800px) {
  .main-flavours {
    flex-direction: row;
    align-items: center;
    padding: 4rem 1rem;
    gap: 4rem;
  }
}
.main-flavours .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 800px) {
  .main-flavours .content {
    width: 50%;
    margin: 0 4rem 0 0;
  }
}
.main-flavours .content h2,
.main-flavours .content p {
  text-align: center;
}
.main-flavours .content .floral-icon {
  width: 200px;
  margin: 0 auto 2rem auto;
}
.main-flavours .flavours-image {
  width: 100%;
}
@media (min-width: 576px) {
  .main-flavours .flavours-image {
    height: 400px;
  }
}
@media (min-width: 800px) {
  .main-flavours .flavours-image {
    height: 600px;
    width: 50%;
    margin: 0;
  }
}
.main-flavours .flavours-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .main-flavours .flavours-image img {
    object-fit: cover;
  }
}

.contact-wrap {
  width: 100%;
  background: #f4f4f1;
}
.contact-wrap .contact {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 1rem;
}
@media (min-width: 800px) {
  .contact-wrap .contact {
    padding: 6rem 1rem;
  }
}
@media (min-width: 992px) {
  .contact-wrap .contact {
    flex-direction: row;
  }
}
.contact-wrap .contact .contact-image {
  width: 100%;
  height: 400px;
}
@media (min-width: 992px) {
  .contact-wrap .contact .contact-image {
    width: 50%;
    transform: translateX(2rem);
    height: 650px;
  }
}
.contact-wrap .contact .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .contact-wrap .contact .contact-image img {
    object-fit: cover;
  }
}
.contact-wrap .contact .contact-content {
  position: relative;
  background: #fff;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .contact-wrap .contact .contact-content {
    width: 70%;
    z-index: 10;
    padding: 4rem;
    transform: translateX(-2rem);
    align-items: flex-start;
  }
}
.contact-wrap .contact .contact-content .sub-heading {
  font-size: 1.4rem;
  font-weight: 300;
  color: #515739;
}
.contact-wrap .contact .contact-content h2 {
  text-align: center;
}
@media (min-width: 992px) {
  .contact-wrap .contact .contact-content h2 {
    text-align: left;
  }
}
.contact-wrap .contact .contact-content p {
  text-align: center;
}
@media (min-width: 992px) {
  .contact-wrap .contact .contact-content p {
    text-align: left;
  }
}

.enquire-page-layout {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.split-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 800px) {
  .split-contact-form {
    flex-direction: row;
  }
}
.split-contact-form .split-form {
  width: 100%;
}
.split-contact-form .split-form-image {
  width: 100%;
  display: none;
}
@media (min-width: 576px) {
  .split-contact-form .split-form-image {
    display: block;
    position: sticky;
    top: 1rem;
    right: 0;
  }
}
@media (min-width: 800px) {
  .split-contact-form .split-form-image {
    width: 40%;
  }
}
.split-contact-form .split-form-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
}

.gform_wrapper {
  background: #fff;
  padding: 2rem;
  border: 1px solid #c7cbb9;
}
.gform_wrapper h2 {
  margin: 0 0 1rem 0;
}
.gform_wrapper h3 {
  margin: 0;
}
.gform_wrapper p {
  margin: 0 0 1rem 0;
}
.gform_wrapper p a {
  font-size: 1rem;
  color: #9f5a2e;
}
.gform_wrapper p a:hover, .gform_wrapper p a:focus {
  color: #515739;
}
.gform_wrapper .gform-field-label {
  margin: 0 0 0.5rem 0;
  color: #000;
}
.gform_wrapper .gform-field-label .gfield_required {
  color: #9f5a2e;
  font-weight: normal;
  margin-left: 0.25rem;
}
.gform_wrapper .gfield_consent_label a {
  color: #707070;
  font-size: 0.8rem;
  text-decoration: none;
}
.gform_wrapper .gfield_consent_label a:focus, .gform_wrapper .gfield_consent_label a:hover {
  color: #515739;
}
.gform_wrapper .gform_footer.top_label {
  padding: 1rem 0 0 0;
}
.gform_wrapper input[type=color],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=email],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=url],
.gform_wrapper input[type=week],
.gform_wrapper select,
.gform_wrapper textarea {
  background: #f4f4f1;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gform_wrapper input[type=color]:focus,
.gform_wrapper input[type=date]:focus,
.gform_wrapper input[type=datetime-local]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=month]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=time]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper input[type=week]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: #515739;
  box-shadow: 0 0 0 3px rgba(81, 87, 57, 0.15);
  outline: none;
}
.gform_wrapper .gform_required_legend {
  display: none;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-family: cormorant-garamond, serif;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  color: #9f5a2e;
}

.enquire-review-wrap {
  width: 100%;
  background: #c7cbb9;
  position: relative;
}
@media (min-width: 800px) {
  .enquire-review-wrap {
    height: 300px;
    margin-bottom: 6rem;
  }
}
.enquire-review-wrap .enquire-review {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 800px) {
  .enquire-review-wrap .enquire-review {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 2rem;
    gap: 2rem;
    top: 3rem;
    left: 0;
    right: 0;
  }
}
.enquire-review-wrap .enquire-review .enquire-review-box {
  width: 100%;
}
@media (min-width: 800px) {
  .enquire-review-wrap .enquire-review .enquire-review-box {
    width: 75%;
  }
}
.enquire-review-wrap .enquire-review .enquire-review-box h2 {
  text-transform: none;
  font-size: 2rem;
  padding: 1rem 0 0 0;
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
}
.enquire-review-wrap .enquire-review .enquire-review-box p {
  color: #9f5a2e;
}
.enquire-review-wrap .enquire-review .enquire-review-image {
  width: 100%;
  height: 400px;
}
@media (min-width: 800px) {
  .enquire-review-wrap .enquire-review .enquire-review-image {
    height: 300px;
    width: 25%;
  }
}
.enquire-review-wrap .enquire-review .enquire-review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-wrap {
  position: relative;
  width: 100%;
}
.background-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-image: url("/wp-content/uploads/2025/08/background-header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  height: 400px;
  top: 10rem;
}

#gform_submit_button_1 {
  font-size: 1.1rem;
}

.contact-faq-wrap {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact-introduction {
  padding-bottom: 0 !important;
}

.grecaptcha-badge {
  z-index: 10;
}

.gform_wrapper .gfield--type-date select {
  color: #9f5a2e !important;
}

.error {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.error .overlay {
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin: 2rem 0 0 0;
}
@media (min-width: 800px) {
  .error .overlay {
    margin: 0;
  }
}
.error .content {
  text-align: center;
}
.error .content .btn {
  margin: 1rem 0 0 0;
}

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center;
}
.blog-header h2 {
  color: #fff;
}

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media (min-width: 576px) {
  .blog-post {
    width: 48%;
    margin: 0 1%;
  }
  @supports (display: grid) {
    .blog-post {
      width: 100%;
      margin: 0;
    }
  }
}
.blog-post .image {
  width: 100%;
  height: 300px;
  background-size: cover !important;
  background-position: center center !important;
}
.blog-post .meta {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.blog-post .title {
  color: #000;
  font-size: 1.2rem;
}
.blog-post p {
  color: #000;
}

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto;
}
.post-single .attachment-post-thumbnail {
  width: 100%;
  height: auto;
}

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start;
}
.share-buttons li {
  height: auto;
  flex: 0 1 auto;
  width: calc(33.3333333% - 1px);
  margin-right: 0.063rem;
}
.share-buttons li:last-child {
  width: 33.3333333%;
  margin-right: 0;
}
.share-buttons li:last-child a {
  border-radius: 0 0.188rem 0.188rem 0;
}
.share-buttons li:first-child a {
  border-radius: 0.188rem 0 0 0.188rem;
}
.share-buttons svg {
  fill: #fff;
  margin-right: 0.313rem;
  width: 1rem;
  height: 1rem;
}
.share-buttons a {
  display: block;
  padding: 0.75rem 0.75rem 0.563rem;
  text-align: center;
  color: White;
}

.share-twitter {
  background: #1da1f2;
}

.share-facebook {
  background: #3b5998;
}

.share-pinterest {
  background: #b5071a;
}

.news-main {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 800px) {
  .news-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination {
  text-align: center;
  margin: 2rem 0 0 0;
}
.pagination .page-numbers {
  color: #fff;
  font-weight: 700;
  padding: 0;
  background: #fff;
  color: #fff;
}
@media (min-width: 576px) {
  .pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: #000;
  }
}
@media (min-width: 576px) {
  .pagination .page-numbers:hover, .pagination .page-numbers:focus {
    background: #000;
    color: #fff;
  }
}
@media (min-width: 576px) {
  .pagination .current {
    background: #000;
    color: #fff;
  }
}

.cake-gallery {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
.cake-gallery a {
  display: block;
  width: 100%;
  height: 100%;
}
.cake-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 576px) {
  .cake-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .cake-gallery a:nth-child(2),
  .cake-gallery a:nth-child(4),
  .cake-gallery a:nth-child(6),
  .cake-gallery a:nth-child(8),
  .cake-gallery a:nth-child(10),
  .cake-gallery a:nth-child(12) {
    transform: translateY(6rem);
  }
}
@media (min-width: 800px) {
  .cake-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

.wp-block-gallery-1 .wp-block-image:nth-child(2), .wp-block-gallery-1 .wp-block-image:nth-child(4), .wp-block-gallery-1 .wp-block-image:nth-child(6), .wp-block-gallery-1 .wp-block-image:nth-child(8), .wp-block-gallery-1 .wp-block-image:nth-child(10), .wp-block-gallery-1 .wp-block-image:nth-child(12), .wp-block-gallery-1 .wp-block-image:nth-child(14), .wp-block-gallery-1 .wp-block-image:nth-child(16), .wp-block-gallery-1 .wp-block-image:nth-child(18), .wp-block-gallery-1 .wp-block-image:nth-child(20), .wp-block-gallery-1 .wp-block-image:nth-child(22), .wp-block-gallery-1 .wp-block-image:nth-child(24), .wp-block-gallery-1 .wp-block-image:nth-child(26), .wp-block-gallery-1 .wp-block-image:nth-child(28) {
  transform: translateY(2rem);
}
@media (min-width: 576px) {
  .wp-block-gallery-1 .wp-block-image:nth-child(2), .wp-block-gallery-1 .wp-block-image:nth-child(4), .wp-block-gallery-1 .wp-block-image:nth-child(6), .wp-block-gallery-1 .wp-block-image:nth-child(8), .wp-block-gallery-1 .wp-block-image:nth-child(10), .wp-block-gallery-1 .wp-block-image:nth-child(12), .wp-block-gallery-1 .wp-block-image:nth-child(14), .wp-block-gallery-1 .wp-block-image:nth-child(16), .wp-block-gallery-1 .wp-block-image:nth-child(18), .wp-block-gallery-1 .wp-block-image:nth-child(20), .wp-block-gallery-1 .wp-block-image:nth-child(22), .wp-block-gallery-1 .wp-block-image:nth-child(24), .wp-block-gallery-1 .wp-block-image:nth-child(26), .wp-block-gallery-1 .wp-block-image:nth-child(28) {
    transform: translateY(6rem);
  }
}
@media (min-width: 800px) {
  .wp-block-gallery-1 .wp-block-image:nth-child(2), .wp-block-gallery-1 .wp-block-image:nth-child(4), .wp-block-gallery-1 .wp-block-image:nth-child(6), .wp-block-gallery-1 .wp-block-image:nth-child(8), .wp-block-gallery-1 .wp-block-image:nth-child(10), .wp-block-gallery-1 .wp-block-image:nth-child(12), .wp-block-gallery-1 .wp-block-image:nth-child(14), .wp-block-gallery-1 .wp-block-image:nth-child(16), .wp-block-gallery-1 .wp-block-image:nth-child(18), .wp-block-gallery-1 .wp-block-image:nth-child(20), .wp-block-gallery-1 .wp-block-image:nth-child(22), .wp-block-gallery-1 .wp-block-image:nth-child(24), .wp-block-gallery-1 .wp-block-image:nth-child(26), .wp-block-gallery-1 .wp-block-image:nth-child(28) {
    transform: translateY(4rem);
  }
}

.image-block {
  gap: 2rem;
  margin: 4rem 0 0 0;
  align-items: center;
}
@media (min-width: 576px) {
  .image-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.image-block .image {
  height: 400px;
}
.image-block .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-block .image:nth-of-type(1) {
  display: none;
}
@media (min-width: 576px) {
  .image-block .image:nth-of-type(1) {
    display: block;
  }
}
.image-block .image:nth-of-type(2) {
  height: 450px;
}
.image-block .image:nth-of-type(3) {
  display: none;
}
@media (min-width: 576px) {
  .image-block .image:nth-of-type(3) {
    display: block;
  }
}

.process-wrap {
  width: 100%;
  background: #f4f4f1;
  padding: 4rem 0;
}
.process-wrap h2 {
  text-align: center;
}
.process-wrap .process {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}
.process-wrap .process .box {
  display: flex;
  flex-direction: row;
}
.process-wrap .process .box .number {
  width: 10%;
  font-size: 3rem;
  color: #9f5a2e;
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
}
.process-wrap .process .box .content {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.process-wrap .process .box .content h2 {
  text-align: left;
}
.process-wrap .process .slick-prev,
.process-wrap .process .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #9f5a2e;
  font-size: 2.5rem;
  transition: 0.3s;
}
.process-wrap .process .slick-prev:hover, .process-wrap .process .slick-prev:focus,
.process-wrap .process .slick-next:hover,
.process-wrap .process .slick-next:focus {
  color: #515739;
}
.process-wrap .process .slick-prev .iconify,
.process-wrap .process .slick-next .iconify {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
.process-wrap .process .slick-prev {
  right: 0;
}
.process-wrap .process .slick-prev .iconify {
  transform: rotate(180deg);
}
.process-wrap .process .slick-next {
  left: 0;
}

.menu-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem 0;
}
@media (min-width: 576px) {
  .menu-intro {
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 800px) {
  .menu-intro {
    width: 80%;
  }
}
.menu-intro h2 {
  text-align: left;
}
@media (min-width: 576px) {
  .menu-intro h2 {
    text-align: center;
  }
}
.menu-intro p {
  text-align: left;
}
@media (min-width: 576px) {
  .menu-intro p {
    text-align: center;
  }
}
.menu-intro p {
  margin: 0;
}

.cake-menu {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 2rem;
}
@media (min-width: 800px) {
  .cake-menu {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
.cake-menu .menu-content {
  border: 1px solid #c7cbb9;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .cake-menu .menu-content {
    align-items: center;
  }
}
@media (min-width: 576px) {
  .cake-menu .menu-content h3 {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .cake-menu .menu-content p {
    text-align: center;
  }
}
@media (min-width: 800px) {
  .cake-menu .menu-content:last-of-type {
    grid-area: 2/1/3/3;
    width: 50%;
    margin: 0 auto;
  }
}

.dietary-wrap {
  width: 100%;
  background-image: url("/wp-content/uploads/2025/08/background-header.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.dietary-wrap .dietary {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 2rem;
}
.dietary-wrap .dietary .dietary-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .dietary-wrap .dietary .dietary-box {
    justify-content: center;
    align-items: center;
  }
}
.dietary-wrap .dietary .dietary-box h2 {
  text-align: left;
}
@media (min-width: 576px) {
  .dietary-wrap .dietary .dietary-box h2 {
    text-align: center;
  }
}
.dietary-wrap .dietary .dietary-box p {
  text-align: left;
}
@media (min-width: 576px) {
  .dietary-wrap .dietary .dietary-box p {
    text-align: center;
  }
}
.dietary-wrap .dietary .floral-icon-wrap {
  padding-top: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .dietary-wrap .dietary .floral-icon-wrap {
    align-items: center;
    justify-content: center;
  }
}
.dietary-wrap .dietary .floral-icon-wrap .floral-icon {
  width: 100px;
}
@media (min-width: 576px) {
  .dietary-wrap .dietary .floral-icon-wrap .floral-icon {
    width: 200px;
  }
}

.portion-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0 0;
}
.portion-table th,
.portion-table td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}
.portion-table thead th {
  font-weight: 600;
}
.portion-table tbody tr:nth-child(odd) {
  background: #f4f4f1;
}

.portions {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
}
@media (min-width: 800px) {
  .portions {
    justify-content: center;
    align-items: center;
  }
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 800px) {
  .pricing {
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row-reverse;
  }
}
.pricing .pricing-box {
  width: 100%;
}
@media (min-width: 800px) {
  .pricing .pricing-box {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.pricing .pricing-box h2 {
  line-height: 3rem;
}
.pricing .portions-image {
  width: 100%;
}
@media (min-width: 576px) {
  .pricing .portions-image {
    height: 400px;
  }
}
@media (min-width: 800px) {
  .pricing .portions-image {
    height: 600px;
    width: 50%;
    margin: 0;
  }
}
.pricing .portions-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .pricing .portions-image img {
    object-fit: cover;
  }
}
@media (min-width: 800px) {
  .pricing .portions-image {
    flex: 1;
    width: 50%;
    height: unset;
  }
}

.macaron-portions {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 4rem 0 0 0;
}
@media (min-width: 800px) {
  .macaron-portions {
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row-reverse;
  }
}
@media (min-width: 800px) {
  .macaron-portions .portions-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
.macaron-portions .portions-box h2 {
  line-height: 3rem;
}
.macaron-portions .portions-image {
  width: 100%;
}
@media (min-width: 576px) {
  .macaron-portions .portions-image {
    height: 400px;
  }
}
@media (min-width: 800px) {
  .macaron-portions .portions-image {
    flex: 1;
    height: 600px;
  }
}
.macaron-portions .portions-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .macaron-portions .portions-image img {
    object-fit: cover;
  }
}

.btn,
.wp-block-button__link {
  font-size: 1.4rem;
  color: #fff;
  padding: 1rem;
  background: #515739;
  display: inline-block;
  margin: 2rem 0 0 0;
  border-radius: 0;
  text-decoration: none !important;
  transition: 0.3s;
  font-family: cormorant-garamond, serif;
}
.btn:hover, .btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: #fff;
  background: #515739;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

#gform_submit_button_1,
#gform_browse_button_1_12,
.form-control__button {
  font-size: 1.4rem !important;
  color: #fff !important;
  padding: 1rem !important;
  background: #515739 !important;
  border: none !important;
  display: inline-block !important;
  margin: 2rem 0 0 0 !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: 0.3s !important;
  font-family: cormorant-garamond, serif !important;
  cursor: pointer !important;
}
#gform_submit_button_1:hover, #gform_submit_button_1:focus,
#gform_browse_button_1_12:hover,
#gform_browse_button_1_12:focus,
.form-control__button:hover,
.form-control__button:focus {
  color: #fff !important;
  background: #515739 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
}

footer {
  background: #fff;
}
footer .footer-main {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
footer .footer-main .footer-top {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 2rem;
}
@media (min-width: 992px) {
  footer .footer-main .footer-top {
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(1, auto);
  }
}
footer .footer-main .footer-top .footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  grid-area: 2/1/3/2;
}
@media (min-width: 992px) {
  footer .footer-main .footer-top .footer-contact {
    grid-area: 1/1/2/2;
  }
}
footer .footer-main .footer-top .footer-contact .instagram-title-link {
  font-size: 1.5rem;
  color: #9f5a2e;
  position: relative;
}
footer .footer-main .footer-top .footer-contact .instagram-title-link::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #9f5a2e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .footer-main .footer-top .footer-contact .instagram-title-link:hover {
  color: #9f5a2e;
}
footer .footer-main .footer-top .footer-contact .instagram-title-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer-main .footer-top .footer-contact .instagram-title-link:not(:hover)::before {
  transform-origin: right;
}
footer .footer-main .footer-top .floral-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: 1/1/2/2;
}
@media (min-width: 992px) {
  footer .footer-main .footer-top .floral-icon-wrap {
    grid-area: 1/2/2/3;
  }
}
footer .footer-main .footer-top .floral-icon-wrap .floral-icon {
  width: 150px;
}
@media (min-width: 800px) {
  footer .footer-main .footer-top .floral-icon-wrap .floral-icon {
    width: 200px;
  }
}
footer .footer-main .footer-nav .menu-footer-menu-container .menu {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-area: 3/1/4/2;
}
@media (min-width: 992px) {
  footer .footer-main .footer-nav .menu-footer-menu-container .menu {
    flex-direction: column;
    grid-area: 1/3/2/4;
    margin: 0;
    gap: 0.5rem;
  }
}
footer .footer-main .footer-nav .menu-footer-menu-container .menu li {
  padding: 0;
  margin: 0;
}
footer .footer-main .footer-nav .menu-footer-menu-container .menu li a {
  font-size: 1.2rem;
}
footer .footer-bottom {
  background: #c7cbb9;
}
footer .footer-bottom .footer-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  footer .footer-bottom .footer-container {
    flex-direction: row;
  }
}
footer .footer-bottom .footer-container a {
  font-size: 1rem;
  position: relative;
}
footer .footer-bottom .footer-container a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .footer-bottom .footer-container a:hover {
  color: #000;
}
footer .footer-bottom .footer-container a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer-bottom .footer-container a:not(:hover)::before {
  transform-origin: right;
}
footer .footer-bottom .footer-container p {
  margin: 0;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-bottom .footer-container p {
    text-align: left;
  }
}
footer .footer-bottom .footer-container p a {
  font-size: 1rem;
  position: relative;
}
footer .footer-bottom .footer-container p a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
footer .footer-bottom .footer-container p a:hover {
  color: #000;
}
footer .footer-bottom .footer-container p a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
footer .footer-bottom .footer-container p a:not(:hover)::before {
  transform-origin: right;
}

.home.active {
  height: 100%;
  overflow: hidden !important;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 1px solid #c7cbb9;
}
@media (min-width: 800px) {
  .site-header {
    border-bottom: none;
  }
}
.site-header .container {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
}
@media (min-width: 800px) {
  .site-header .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.site-header .logo img {
  max-width: 14rem;
  height: auto;
}
@media (min-width: 576px) {
  .site-header .logo img {
    max-width: 18rem;
  }
}
@media (min-width: 800px) {
  .site-header .logo img {
    max-width: 22rem;
  }
}
.site-header .logo a {
  display: flex;
}
.site-header #mobile-button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.site-header #mobile-button .iconify {
  color: #515739;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #mobile-button .iconify:hover, .site-header #mobile-button .iconify:focus {
  color: #9f5a2e;
}
@media (min-width: 800px) {
  .site-header #mobile-button {
    display: none;
  }
}
.site-header #close-button {
  position: absolute;
  top: 2rem;
  right: 1rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.site-header #close-button .iconify {
  color: #515739;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.site-header #close-button .iconify:hover, .site-header #close-button .iconify:focus {
  color: #9f5a2e;
}
.site-header #back-button {
  display: none;
  position: absolute;
  top: 50px;
  right: 1rem;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 1002;
  transition: 0.3s;
  color: #515739;
}
.site-header #back-button.active {
  display: block;
}
@media (min-width: 992px) {
  .site-header #back-button.active {
    display: none;
  }
}
.site-header #back-button .iconify {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}
.site-header #back-button .iconify:focus, .site-header #back-button .iconify:hover {
  color: #9f5a2e;
}

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  overflow: scroll;
  padding: 1rem;
  margin: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media (min-width: 800px) {
  #mobile-menu.active {
    display: none;
  }
}
#mobile-menu .menu-primary-container {
  width: 100%;
}
#mobile-menu .menu {
  text-align: center;
  margin: 20px 0;
}
#mobile-menu .menu li a {
  display: inline-block;
  margin: 0.5rem 0;
}
#mobile-menu .sub-menu {
  list-style-type: none;
  padding: 4rem 0rem 0rem 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
@media (min-width: 992px) {
  #mobile-menu .sub-menu {
    padding: 2rem 0 0;
  }
}
#mobile-menu .sub-menu.active {
  opacity: 1;
  visibility: visible;
}
#mobile-menu .sub-menu li {
  padding: 0.5rem 0;
}
@media (min-width: 800px) {
  #mobile-menu {
    display: none;
  }
}

#main-menu {
  display: none;
}
@media (min-width: 800px) {
  #main-menu {
    display: flex;
    margin: 2rem 0 0 0;
  }
}
#main-menu .menu {
  position: relative;
}
#main-menu .menu li {
  position: relative;
}
#main-menu .sub-menu {
  position: absolute;
  top: 2.5rem;
  left: 0.5rem;
  padding-left: 0;
  max-width: 300px;
  min-width: 250px;
  width: fit-content;
  background: #fff;
  z-index: 1000;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0.75rem 1rem;
  display: none;
}
#main-menu .sub-menu.active {
  display: block;
}
#main-menu .sub-menu li {
  padding: 0;
  margin: 0;
  position: relative;
}
#main-menu .sub-menu li::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #515739;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#main-menu .sub-menu li:hover {
  color: #515739;
}
#main-menu .sub-menu li:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
#main-menu .sub-menu li:not(:hover)::before {
  transform-origin: right;
}
#main-menu .sub-menu li a {
  color: #515739;
  display: inline-block;
  margin: 0.75rem 0;
}
#main-menu .sub-menu li a::before {
  display: none;
}

.menu {
  list-style-type: none;
  padding-left: 0;
}
.menu li {
  padding: 0.5rem 0;
}
@media (min-width: 800px) {
  .menu li {
    display: inline;
    padding: 0.5rem 1rem;
  }
}
.menu a {
  color: #515739;
  font-size: 1.3rem;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.menu a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #515739;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.menu a:hover {
  color: #515739;
}
.menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.menu a:not(:hover)::before {
  transform-origin: right;
}

.page-header {
  width: 100%;
  height: 400px;
  background: #f4f4f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 800px) {
  .page-header {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.page-header .content {
  background: #fff;
  padding: 1rem;
  position: absolute;
  bottom: 1rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.1s;
}
@media (min-width: 800px) {
  .page-header .content {
    width: 400px;
    position: relative;
    padding: 2rem;
    margin: 0 0 0 -10rem;
    bottom: auto;
  }
}
.page-header .content h1 {
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  text-align: center;
}
@media (min-width: 800px) {
  .page-header .content h1 {
    text-align: left;
  }
}
.page-header .content .sub-heading {
  text-align: center;
  display: none;
  margin-bottom: 0.5rem;
}
@media (min-width: 800px) {
  .page-header .content .sub-heading {
    display: block;
    text-align: left;
  }
}
.page-header .content .text-desc {
  text-align: center;
  display: none;
  margin-top: 0.5rem;
}
@media (min-width: 800px) {
  .page-header .content .text-desc {
    text-align: left;
    display: block;
  }
}
.page-header .page-header-image {
  width: 100%;
  height: 400px;
}
@media (min-width: 800px) {
  .page-header .page-header-image {
    width: 60%;
    height: 400px;
  }
}
.page-header .page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header .page-header-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section .faq-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .faq-section .faq-main {
    flex-direction: row;
  }
}
.faq-section .faq-content {
  width: 100%;
}
@media (min-width: 800px) {
  .faq-section .faq-content {
    width: 50%;
  }
}
.faq-section .faq-image {
  height: 700px;
  width: 100%;
}
@media (min-width: 800px) {
  .faq-section .faq-image {
    width: 50%;
  }
}
.faq-section .faq-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 800px) {
  .faq-section {
    flex-direction: column-reverse;
  }
}

.accordion .accordion-box {
  margin-bottom: 1rem;
}
.accordion .accordion-box .accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  background: #f4f4f1;
  border: none;
}
.accordion .accordion-box .accordion-question h3 {
  margin: 0;
  font-size: 1.4rem;
  text-align: left;
  text-transform: none;
}
.accordion .accordion-box .accordion-question .iconify {
  font-size: 1.5rem;
  transition: transform 0.3s;
  transform: rotate(270deg);
  color: #9f5a2e;
}
.accordion .accordion-box .accordion-question.active .iconify {
  transform: rotate(360deg);
}
.accordion .accordion-box .accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
  border-top: none;
  padding: 0 1rem;
}
.accordion .accordion-box .accordion-answer p {
  margin: 1rem 0;
}
.accordion .accordion-box .accordion-answer p a {
  color: #515739;
  text-decoration: underline;
}

.slides {
  max-height: 400px;
  overflow: hidden;
  margin: 0 auto;
  border-top: 1px solid #c7cbb9;
}

.slide-img {
  width: 100%;
  height: 400px;
  position: relative;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}
.slide-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.slide-img .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.3s;
}
.slide-img .container h1 {
  color: #fff;
  margin: 0;
}
.slide-img .container p {
  color: #fff;
}
.split-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 4rem 0 0 0;
}
@media (min-width: 800px) {
  .split-content {
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
  }
  .split-content.split-content-image-left {
    flex-direction: row;
  }
  .split-content.split-content-image-left:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .split-content.split-content-image-right {
    flex-direction: row-reverse;
  }
  .split-content.split-content-image-right:nth-child(odd) {
    flex-direction: row;
  }
}
.split-content .split-content-text {
  width: 100%;
}
@media (min-width: 800px) {
  .split-content .split-content-text {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 0;
  }
}
.split-content .split-content-text h2 {
  line-height: 3rem;
}
.split-content .split-content-image {
  width: 100%;
}
@media (min-width: 576px) {
  .split-content .split-content-image {
    height: 400px;
  }
}
@media (min-width: 800px) {
  .split-content .split-content-image {
    height: 600px;
    width: 50%;
    margin: 0;
  }
}
.split-content .split-content-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .split-content .split-content-image img {
    object-fit: cover;
  }
}
@media (min-width: 800px) {
  .split-content .split-content-image {
    flex: 1;
    width: 50%;
    height: unset;
  }
}

.full-width-bullet-wrap {
  width: 100%;
  background: #707070;
}
.full-width-bullet-wrap .full-width-bullet {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 800px) {
  .full-width-bullet-wrap .full-width-bullet {
    padding: 4rem 1rem;
  }
}
.full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin: 2rem 0 0 0;
}
@media (min-width: 800px) {
  .full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid .full-width-bullet-box {
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  gap: 1rem;
  justify-content: center;
  height: 100%;
}
@media (min-width: 800px) {
  .full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid .full-width-bullet-box {
    justify-content: flex-start;
  }
}
.full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid .full-width-bullet-box .iconify {
  font-size: 3rem;
  color: #000;
}
.full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid .full-width-bullet-box h3 {
  margin: 0;
}
.full-width-bullet-wrap .full-width-bullet .full-width-bullet-grid .full-width-bullet-box p {
  text-align: center;
}

.accreditation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media (min-width: 800px) {
  .accreditation-container {
    padding: 6rem 1rem;
  }
}
.accreditation-container .accreditation {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 800px) {
  .accreditation-container .accreditation {
    padding: 4rem 1rem;
  }
}
.accreditation-container .accreditation {
  position: relative;
  padding-top: 2rem !important;
  padding-bottom: 4rem;
}
@media (min-width: 800px) {
  .accreditation-container .accreditation {
    padding-bottom: 2rem;
  }
}
.accreditation-container .accreditation .accreditation-img img {
  margin: 0 auto;
  height: 150px;
}
.accreditation-container .accreditation .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: auto;
}
.accreditation-container .accreditation .slick-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #9f5a2e;
  padding: 0;
  cursor: pointer;
  text-indent: -9999px;
}
.accreditation-container .accreditation .slick-dots button:hover {
  background: #515739;
}
.accreditation-container .accreditation .slick-dots .slick-active button {
  background: #000;
}
.accreditation-container .accreditation-heading {
  color: #515739;
  font-family: lato, sans-serif;
  font-weight: 200;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.accreditation-container .accreditations-intro {
  text-align: center;
}
@media (min-width: 800px) {
  .accreditation-container .accreditations-intro {
    width: 80%;
  }
}
.accreditation-container .accreditations-intro p {
  margin: 1rem 0 0 0;
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonial-wrapper .fixed-bg {
  position: absolute;
  inset: -250px 0 -250px 0;
  background-image: url("https://pikachu.colinst.co.uk/abonnieweecake/wp-content/uploads/2025/11/abwc-gallery-29.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 75% center;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
@media (min-width: 800px) {
  .testimonial-wrapper .fixed-bg {
    background-position: center;
  }
}
.testimonial-wrapper .testimonial {
  position: relative;
  z-index: 1;
}
.testimonial-wrapper .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
}
.testimonial-wrapper .overlay .testimonial-box {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 800px) {
  .testimonial-wrapper .overlay .testimonial-box {
    width: 80%;
  }
}
.testimonial-wrapper .overlay .testimonial-box .iconify {
  font-size: 4rem;
  color: #fff;
}
.testimonial-wrapper .overlay .testimonial-box h2 {
  color: #fff;
  margin: 0;
  text-transform: none;
}
.testimonial-wrapper .overlay .testimonial-box p {
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0 0 0;
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 800px) {
  .testimonial-wrapper .overlay .testimonial-box .left-quote {
    position: absolute;
    left: 0;
    top: -5rem;
  }
}
.testimonial-wrapper .overlay .testimonial-box .right-quote {
  display: none;
}
@media (min-width: 800px) {
  .testimonial-wrapper .overlay .testimonial-box .right-quote {
    position: absolute;
    right: 0;
    bottom: -2rem;
    display: block;
  }
}

.about-testimonial-wrapper {
  position: relative;
  overflow: hidden;
}
.about-testimonial-wrapper .fixed-bg {
  position: absolute;
  inset: -250px 0 -250px 0;
  background-image: url("https://pikachu.colinst.co.uk/abonnieweecake/wp-content/uploads/2025/11/Photo-21-08-2023-19-01-39.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 25%;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.about-testimonial-wrapper .testimonial {
  position: relative;
  z-index: 1;
}
.about-testimonial-wrapper .testimonial .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
}
.about-testimonial-wrapper .testimonial .overlay .testimonial-box {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 800px) {
  .about-testimonial-wrapper .testimonial .overlay .testimonial-box {
    width: 80%;
  }
}
.about-testimonial-wrapper .testimonial .overlay .testimonial-box .iconify {
  font-size: 4rem;
  color: #fff;
}
.about-testimonial-wrapper .testimonial .overlay .testimonial-box p {
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0 0 0;
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media (min-width: 800px) {
  .about-testimonial-wrapper .testimonial .overlay .testimonial-box p {
    text-align: center;
  }
}
@media (min-width: 800px) {
  .about-testimonial-wrapper .testimonial .overlay .testimonial-box .left-quote {
    position: absolute;
    left: 0;
    top: -3rem;
  }
}
.about-testimonial-wrapper .testimonial .overlay .testimonial-box .right-quote {
  display: none;
}
@media (min-width: 800px) {
  .about-testimonial-wrapper .testimonial .overlay .testimonial-box .right-quote {
    position: absolute;
    right: 0;
    bottom: -2rem;
    display: block;
  }
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.social-links a {
  transition: 0.3s;
  display: inline-block;
}
.social-links a .iconify {
  font-size: 1.5rem;
  color: #515739;
}
.social-links a:hover, .social-links a:focus {
  transform: scale(1.1);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-links .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-links .contact-item .iconify {
  color: #515739;
  margin: 0;
}
.contact-links .contact-item a {
  position: relative;
}
.contact-links .contact-item a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.contact-links .contact-item a:hover {
  color: #000;
}
.contact-links .contact-item a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.contact-links .contact-item a:not(:hover)::before {
  transform-origin: right;
}

.contact-all-wrap {
  width: 100%;
  background: #f4f4f1;
}
.contact-all-wrap .contact-all {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 800px) {
  .contact-all-wrap .contact-all {
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row-reverse;
    padding: 4rem 1rem;
  }
}
.contact-all-wrap .contact-all .contact-all-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
}
@media (min-width: 576px) {
  .contact-all-wrap .contact-all .contact-all-text {
    align-items: center;
  }
}
@media (min-width: 800px) {
  .contact-all-wrap .contact-all .contact-all-text {
    flex: 1;
    width: 50%;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 0;
  }
}
.contact-all-wrap .contact-all .contact-all-text h2 {
  line-height: 3rem;
}
.contact-all-wrap .contact-all .contact-all-text p {
  text-align: left;
}
@media (min-width: 576px) {
  .contact-all-wrap .contact-all .contact-all-text p {
    text-align: center;
  }
}
@media (min-width: 800px) {
  .contact-all-wrap .contact-all .contact-all-text p {
    text-align: left;
  }
}
.contact-all-wrap .contact-all .contact-all-image {
  width: 100%;
}
@media (min-width: 576px) {
  .contact-all-wrap .contact-all .contact-all-image {
    height: 400px;
  }
}
@media (min-width: 800px) {
  .contact-all-wrap .contact-all .contact-all-image {
    height: 700px;
    width: 45%;
    margin: 0;
  }
}
.contact-all-wrap .contact-all .contact-all-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 800px) {
  .contact-all-wrap .contact-all .contact-all-image img {
    object-fit: cover;
  }
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: lato, sans-serif;
  font-weight: 200;
  font-style: normal;
  width: 100%;
}

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px;
}

.entry-content .alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.alignfull img {
  width: 100vw;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-layout {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease forwards 0.6s;
}
@media (min-width: 800px) {
  .page-layout {
    padding: 4rem 1rem;
  }
}
.page-layout .floral-icon-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0 0 1rem 0;
}
@media (min-width: 576px) {
  .page-layout .floral-icon-wrap {
    align-items: center;
    justify-content: center;
  }
}
.page-layout .floral-icon-wrap .floral-icon {
  width: 100px;
}
@media (min-width: 800px) {
  .page-layout .floral-icon-wrap .floral-icon {
    width: 200px;
  }
}
.page-layout a {
  text-decoration: underline;
}

.page-split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 800px) {
  .page-split {
    flex-direction: row;
    justify-content: space-between;
  }
}

#iubenda_policy li:before {
  display: none !important;
}

#iubenda_policy .iub_content {
  padding: 0 !important;
}

.footer__credits {
  display: none;
}

#iub-pp-container footer div:last-of-type {
  display: none;
}

#iub-pp-container h1 {
  display: none;
}

#iub-pp-container footer {
  display: none;
}

.page-introduction {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .page-introduction {
    width: 80%;
  }
}
.page-introduction h2 {
  text-align: left;
}
@media (min-width: 576px) {
  .page-introduction h2 {
    text-align: center;
  }
}
.page-introduction p {
  text-align: left;
}
@media (min-width: 576px) {
  .page-introduction p {
    text-align: center;
  }
}
.page-introduction .wp-block-buttons.is-content-justification-center {
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .page-introduction .wp-block-buttons.is-content-justification-center {
    justify-content: center;
  }
}

.quote-snippet {
  text-align: left;
  font-size: 2rem;
  font-family: allura, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #9f5a2e;
}
@media (min-width: 576px) {
  .quote-snippet {
    text-align: center;
  }
}

.intro-group .wp-block-group__inner-container h2 {
  text-align: left;
}
@media (min-width: 576px) {
  .intro-group .wp-block-group__inner-container h2 {
    text-align: center;
  }
}
.intro-group .wp-block-group__inner-container p {
  text-align: left;
}
@media (min-width: 576px) {
  .intro-group .wp-block-group__inner-container p {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */