@charset "UTF-8";

/*
Theme Name: PCB RVA
Theme URI: 
Author: Joelle Shapiro
Author URI: 
Description: 
Tested up to: 6.8
Version: 2.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pcbrva
*/

/* G E N E R A L */

@font-face {
  font-family: louis;
  src: url(fonts/Louis\ George\ Cafe.ttf);
}

@font-face {
  font-family: oranienbaum;
  src: url(fonts/Oranienbaum.ttf);
}

@font-face {
  font-family: liteon;
  src: url(fonts/LiteOn-FREE.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --a: #d0d2c9;
  --b: #50655e;
  --c: #1E1928;
  --d: #9b632a;
  --e: #b5b7d0;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--a);
  font-family: louis;
  font-size: 18px;
  color: var(--c);
  overflow-x: hidden;
  line-height: 30px;
}

h1 {
  text-align: center;
  font-size: clamp(36px, 10vw, 42px);
  font-family: oranienbaum;
  line-height: clamp(36px, 10vw, 45px);
  margin-bottom: 0px;
  text-wrap: nowrap;
}

h2 {
  text-align: center;
  font-size: clamp(20px, 9vw, 24px);
  font-family: oranienbaum;
  text-wrap: balance;
  margin: 40px -30px 40px -30px;
  background: var(--c);
  color: var(--a);
  padding: 20px 30px;
}

h3 {
  text-align: center;
  font-size: clamp(36px, 10vw, 42px);
  font-family: oranienbaum;
  line-height: clamp(36px, 10vw, 45px);
  margin-bottom: 0px;
}

h4 {
  text-align: left;
  font-size: 26px;
  font-size: clamp(26px, 9vw, 32px);
  font-family: oranienbaum;
  line-height: clamp(30px, 12vw, 36px);
  text-wrap: balance;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
  line-height: 2;
}

a {
  color: var(--c);
  text-decoration: none;
  transition: .3s;
}

a:hover {
  transition: .3s;
}

p a {
  color: var(--b);
  text-decoration: underline;
}

p a:hover {
  color: var(--d);
}

main ul {
  padding-left: 40px;
  margin-bottom: 20px;
}

.page-heading {
  display: flex;
  place-content: center;
  place-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

header {
  height: 70px;
  background: var(--a);
  border-bottom: 1px solid var(--b);
  padding: 0 20px;
  display: flex;
  place-content: space-between;
  place-items: center;
  line-height: 1rem;
  position: sticky;
  top: 0;
  z-index: 5;
}

header .logo img {
  height: 50px;
  width: 50px;
}

header nav.desktop {
  display: none;
}

header nav.mobile {
  display: flex;
  place-content: center;
  place-items: center;
  gap: 10px;
}

.submenu-toggle {
    display: inline-block;
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--e);
  font-size: 20px;
  transition: .2s;
}

#mobile-menu li.open > a > .submenu-toggle {
  transform: rotate(180deg);  
  transition: .2s;
}


header .book-button {
  background: var(--c);
  color: var(--a);
  padding: 15px 20px;
  font-weight: 700;
  border: 1px solid var(--c);
  cursor: pointer;
}

header .book-button:hover {
  background: var(--e);
  color: var(--c);
}

#burger {
  height: 40px;
  width: 30px;
  font-size: 40px;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

#close {
  height: 40px;
  width: 30px;
  font-size: 40px;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease-in;
  color: var(--e);
  z-index: 30;
  position: absolute;
  right: 20px;
  top: 15px;
}

#mobile-menu {
  position: absolute;
  top: -100vh;
  height: fit-content;
  width: 100%;
  left: 0;
  background: var(--c);
  z-index: 10;
  padding: 25px 25px 1px 25px;
  overflow: hidden;
  transition: .6s;
}

#mobile-menu.open {
  transform: translateY(100vh);
  transition: .6s;
}

#mobile-menu ul {
  list-style-type: none;
  font-size: 24px;
  line-height: 40px;
}

#mobile-menu ul li {
  min-height: 60px;
}

#mobile-menu ul li span {
  line-height: 60px;
}

#mobile-menu ul li .sub-menu li {
  height: 60px;
  padding-left: 20px;
}

#mobile-menu ul li a {
  color: var(--e);
  width: 100%;
  height: 100%;
  display: block;
}

#mobile-menu #menu-item-33 a {
  background: var(--e);
  color: var(--c);
  width: 100vw;
  display: flex;
  place-items: center;
  padding-left: 25px;
  margin-left: -25px;
  height: 70px;
}

main {
  padding: 30px;
  margin: 0 auto;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 56vh;
}

section {
  border-bottom: 1px solid var(--b);
}

section:last-of-type {
  border-bottom: none;
}

hr {
  display: none;
}

footer {
  background: var(--a);
  padding: 30px;
  display: flex;
  place-content: center;
  place-items: center;
  border-top: 1px solid var(--c);
}

.fa-instagram {
  font-size: 30px;
  margin: 10px auto;
  display: block;
}

footer ul,
footer .address {
  text-align: center;
}

footer ul {
  font-size: 14px;
}

.button {
  display: block;
  text-align: center;
  color: var(--c);
  padding: 15px 20px;
  width: 100%;
  border: 1px solid var(--b);
  text-decoration: none;
  font-family: oranienbaum;
  font-size: 26px;
  background: transparent;
  line-height: 1.5;
}

.button:hover {
  color: var(--c);
  text-decoration: none;
  box-shadow: 5px 5px var(--a),
    5px 5px 0px 1px var(--d),
    inset 3px 3px 0px 0px var(--a),
    inset 3px 3px 0px 1px var(--d);
  transform: translate3d(-5px, -5px, -5px);
}

.box-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  place-content: space-between;
  height: fit-content;
}

.box-link {
  text-decoration: none;
  aspect-ratio: 1;
  font-family: oranienbaum;
  width: 100%;
  display: flex;
  place-content: center;
  font-size: clamp(18px, 1.7vw, 26px) !important;
  place-items: center;
  outline-offset: -10px;
  outline: 1px solid var(--a);
  margin: 10px;
  text-align: center;
  color: var(--a);
  transition: .3s;
  position: relative;
}

.box-link:hover {
  outline-offset: 10px;
  outline-color: var(--d);
  transition: .3s;
  transform: scale(1.1);
  background: var(--e);
  color: var(--c);
}

.service-1:before,
.service-2:before,
.service-3:before,
.service-4:before {
  content: "";
  background: url('/wp-content/uploads/2025/09/massage-sq-3-e1756838458529.png');
  background-size: cover;
  filter: brightness(30%);
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: .3s;
  background-color: var(--c);
}

.service-1:hover:before,
.service-2:hover:before,
.service-3:hover:before,
.service-4:hover:before {
  content: "";
  opacity: .2;
  filter: brightness(100%);
}

.service-2:before {
  background: url('/wp-content/uploads/2025/09/reiki-sq-e1756838561769.png');
  background-size: cover;
}

.service-3:before {
  background: url('/wp-content/uploads/2025/09/training-sq-e1756838596170.png');
  background-size: cover;
}

.service-4:before {
  background: url('/wp-content/uploads/2025/09/massage-sq-7-e1756838529269.png');
  background-size: cover;
}

.test-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0 auto;
  place-content: center;
  place-items: center;
  width: 100%;
}

.test {
  padding: 20px 40px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  place-content: center;
  font-size: 20px;
  box-shadow:
    90px -90px 0 -89px var(--b),
    -90px 90px 0 -89px var(--b);
  outline-offset: 10px;
  outline: 1px solid var(--b);
  border-radius: 25px 0 25px 0;
  position: relative;
  transition: .5s;
}

.test:before {
  content: '"';
  position: absolute;
  font-size: 120px;
  font-family: oranienbaum;
  left: -25px;
  top: 25px;
  transition: .5s;
  color: var(--d);
}

.test:after {
  content: '"';
  position: absolute;
  font-size: 120px;
  font-family: oranienbaum;
  right: -25px;
  bottom: -45px;
  transition: .5s;
  color: var(--d);
}

.test:hover {
  transform: translateX(-5px) translateY(-5px) scale(1.1);
  box-shadow: none;
  border-radius: 0;
  transition: .5s;
}

.test:hover.test:before {
  font-size: 150px;
  transition: .5s;
  left: -35px;
  top: 15px;
  color: var(--b);
}

.test:hover.test:after {
  font-size: 150px;
  transition: .5s;
  right: -32px;
  bottom: -70px;
  color: var(--b);
}

.gallery-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 50px;
  margin: 0 auto;
  place-content: space-evenly;
  width: 100%;
  padding: 60px 30px;
}

.gallery-container img {
  aspect-ratio: 1;
  object-fit: cover;
  outline-offset: 10px;
  outline: 1px solid var(--d);
  transition: .5s;
  width: 100%;
}

.gallery-container img:hover {
  transform: scale(1.2);
  transition: .5s;
  outline-offset: -1px;
}

.single {
  max-width: 900px;
}

.single .wp-post-image {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 40vh;
  max-height: 70vw;
  width: auto !important;
  margin: 0 auto 40px auto !important;
  border: 1px solid var(--c);
  border-radius: 100%;
}

hr.image-hr {
  margin-top: calc(-20vh - 40px);
  margin-bottom: calc(20vh + 20px);
  height: 1px;
  width: 100%;
  color: var(--b);
  background-image: linear-gradient(to right, var(--c), var(--c), var(--c));
}

.single h1 {
  font-size: clamp(24px, 6vw, 45px);
  text-wrap: wrap;
}

.single svg {
  display: none;
}

.single p {
  margin: 0;
}

.single .buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  place-content: space-between;
}

.single .page-heading {
  margin-bottom: 20px;
}

sup {
  font-size: 10px !important;
}

/* H O M E P A G E */

#hero {
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column-reverse;
  place-content: start;
  place-items: center;
  margin: -30px;
}

#hero canvas {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 40%;
  width: 100vw;
  height: 100vh;
}

#hero h2 {
  font-size: clamp(24px, 10vw, 45px);
  line-height: 1.3;
  margin: 0;
  text-align: center;
  background: none;
  padding: unset;
  color: var(--c);
}

#hero p {
  margin-bottom: 0;
}

#hero .promo {
  border-bottom: 1px solid var(--b);
  width: 100%;
  background: var(--c);
  color: var(--a);
  display: flex;
  place-content: center;
  place-items: center;
  padding: 0 30px;
  text-align: center;
  order: 3;
  height: 13%;
}

#hero .promo:hover {
  background: var(--e);
  color: var(--c);
}

#hero .promo p {
  font-size: clamp(12px, 5vw, 22px);
  line-height: 1.2;
}

#hero .cta {
  padding: 15px 30px;
  width: 100%;
  text-wrap: stable;
  height: 55%;
  gap: 10px;
  display: flex;
  text-align: center;
  flex-direction: column;
  place-content: space-evenly;
}

#hero .cta p {
  font-size: clamp(12px, 5vw, 22px);
  line-height: 1.8;
}

#hero .cta a {
  font-size: clamp(24px, 5vw, 32px);
  width: 100%;
  padding: 15px 20px;
  margin: 0;
  line-height: 1.2;
  background: var(--c);
  color: var(--a);
  border: 1px solid var(--b);
    font-family: oranienbaum;
}

#hero .cta a:hover {
  background: var(--e);
  color: var(--c);
}

#hero .image {
  height: 32%;
}

#hero .image img {
  width: 100vh;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid var(--b);
}

#featured {
  display: flex;
  padding: 30px 30px 60px 30px;
  flex-direction: column;
  place-content: space-evenly;
  margin: 0 auto;
  height: fit-content;
  margin: 30px -30px 0 -30px;
  gap: 40px;
}

#featured h3 {
  margin: 0;
}

#learn {
  display: flex;
  flex-direction: column;
  place-content: center;
  align-items: start;
  margin: 0px -30px 0 -30px;
  padding: 30px 30px 60px 30px;
}

  #learn p a {
    text-decoration: none;
    color: var(--c);
  }

  #learn p a:hover {
    color: var(--b);
  }

#learn h3 {
  margin-bottom: 20px;
}

#learn .about {
  margin-bottom: 20px;
}

#learn .about p {
  margin-bottom: 20px;
}

#learn .about h4:last-of-type {
  text-align: center;
  background: var(--c);
  color: var(--e);
  padding: 40px 0;
  margin: 0 -30px 0 -30px;
}

#learn .about ul {
  padding-left: 20px;
  list-style-type: square;
  margin-bottom: 0;
}

#learn .about ul li {
  margin-bottom: 10px;
}

#learn .loc {
  width: 100%;
}

#learn .loc .container {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 20px;
}

#learn .loc .hours {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
}

#learn .loc .hours p {
  display: block;
  margin-bottom: 5px;
  line-height: 1.4;
}

#learn .loc .hours .day {
  font-family: oranienbaum;
  font-weight: 600;
  font-size: 22px;
  display: inline-block;
}

#learn .loc .address {
  text-align: center;
  font-family: oranienbaum;
  font-weight: 600;
  font-size: 22px;
}

#learn .loc .address p {
  line-height: 1.2;
}

#testimonials {
  display: flex;
  margin: 0px -30px 0 -30px;
  padding: 30px 60px 60px 60px;
  flex-direction: column;
  place-content: center;
  place-items: center;
  gap: 40px;
}

#gallery {
  margin: -30px;
  padding: 30px 30px 0 30px;
}

/* * FAQ * */

.faq-item {
  border-bottom: 1px solid var(--b);
  overflow: hidden;
}

.question {
  width: 100%;
  padding: 20px;
  display: flex;
  place-items: center;
  text-align: left;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
}

.question:hover,
.question.active {
  background-color: var(--c);
  color: var(--a);
}

.question .arrow {
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.question.active .arrow {
  transform: rotate(180deg);
}

.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.answer p {
  padding: 20px;
}

/* * ABOUT * */

.content img {
  width: 100vw;
  margin: -40px -30px 0 -30px;
  display: block;
  height: 50vw;
  max-height: 400px;
  object-fit: cover;
  border-bottom: 20px solid var(--c);
}

.about-left,
.about-right {
  display: flex;
  flex-direction: column;
}

  .about-left ul {
    margin: 20px 0;
  }

  .about-left ul li {
    margin-bottom: 10px;
  }

/* * SERVICES * */

.menu-cat {
  border-bottom: 1px solid var(--b);
  overflow: hidden;
}

.menu-cat h2 {
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  place-items: center;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: .3s;
  font-size: 20px;
}

.menu-cat h2:hover,
.menu-cat h2.active {
  background-color: var(--c);
  color: var(--a);
}

.menu-cat h2 .arrow {
  position: absolute;
  right: 20px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.menu-cat h2.active .arrow {
  transform: rotate(180deg);
}

.cat-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cat-item {
  display: flex;
  flex-direction: column;
  place-items: center;
  place-content: center;
  margin: 20px auto;
  text-align: center;
}

.cat-items .button {
  margin-bottom: 40px;
}

.cat-item .meta {
  width: 100%;
  text-align: center;
}

.cat-item .meta-button {
  margin: 0 10px 10px 0;
  background: var(--c);
  padding: 10px;
  color: var(--a);
  width: 100%;
  display: block;
  text-align: center;
  border: 1px solid var(--c);
}

.cat-item .meta-button:hover {
  background: var(--e);
  color: var(--c);
}

.cat-item .meta-price {
  font-weight: 600;
}

.cat-item:first-of-type {
  margin-top: 40px;
}

.cat-item:last-of-type {
  margin-bottom: 40px;
}

.cat-item img {
  width: 120px !important;
  height: 120px;
  margin: 10px auto !important;
  padding: 0;
  grid-row: 1 / span 2;
  grid-column: 1;
  border-radius: 100%;
  border: 1px solid var(--c) !important;
}

.cat-item h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.cat-item div p {
  font-size: 18px;
  line-height: 1.4;
}

/* * CONTACT * */

.left-img {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  width: 100%;
}

.left-img img {
  width: 100%;
  height: 40vh;
  object-fit: contain;
  border: 0 !important;
  margin: 0 !important;
  opacity: .35;
}

.left-img .content {
  width: 100%;
  flex: 1;
}

.wpforms-container {
  margin: 0 !important;
  width: 100%;
}

.wpforms-field-label {
  font-size: 22px !important;
  font-family: oranienbaum;
}

/* * TEAM * */


.team hr {
  margin: 20px auto 40px auto;
}

.team-member-left,
.team-member-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-flower,
.right-flower {
  height: 250px !important;
  width: 250px !important;
  object-fit: cover !important;
  object-position: top center;
  border: 1px solid var(--c) !important;
  border-radius: 100%;
  grid-column: 1;
  margin: 40px auto !important;
  display: none !important;
}

.about .left-flower,
.about .right-flower {
  display: block !important;
  order: 2;
  border: none !important;
  opacity: .35;
  object-fit: contain !important;
  max-height: 200px;
  margin: 20px auto 0 auto !important;
}

.team-img {
  height: 250px !important;
  width: 250px !important;
  object-fit: cover !important;
  object-position: top center;
  border: 1px solid var(--c) !important;
  border-radius: 100%;
  grid-column: 1;
  margin: 20px auto !important;
}

.empty {
  visibility: hidden !important;
  max-height: 0 !important;
}

.team-member-left h2,
.team-member-right h2 {
  grid-column: 1;
  background: none;
  color: var(--c);
  font-size: clamp(12px, 6vw, 30px);
  margin: 0px -40px 0px -40px;
}

.team-member-left div,
.team-member-right div {
  grid-column: 1;
  padding: 0 20px;
}

/* * BOOKING * */
.ck-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ck-label {
  display: flex;
  gap: 20px;
  place-content: space-between;
  place-items: center;
}

.ck-card select,
.ck-card input {
  padding: 10px;
  width: 100%;
  border-radius: 0;
  background: #e7e8e2;
  border: 1px solid var(--c);
  font-size: 16px;
}

.ck-label select,
.ck-label input {
  width: 70%;
}

.ck-aside {
  grid-column: 2;
}

.ck-contact {
  grid-column: 1;
  grid-row: 3;
}

#find {
  margin-top: 40px !important;
}

.ck-btn {
  background: var(--c);
  color: var(--a);
  padding: 15px 20px;
  font-weight: 700;
  border: 1px solid var(--c);
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  transition: .3s;
  margin: 10px auto;
  display:block;
  max-width: 450px;
}

.ck-btn:hover {
  background: var(--e);
  color: var(--c);
}

#slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ck-btn.slot {
font-weight: 400;
background: #e7e8e2;
color: var(--c);
padding: 5px;
margin: 0;
width: 100%;
display: flex;
flex-direction: column;
gap: 3px;
}

.slot-time {
  font-size: 16px;
  font-weight: 600;
}

.slot-dur,
.slot-staff {
  font-size: 14px;
}

.ck-btn.slot:hover {
  background: var(--e);
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

fieldset {
  display: flex;
  margin: 0 auto;
  border: 1px solid var(--c);
  padding: 20px;  
  width: 100%;
  place-content: center;
}

fieldset div {
  width: 100%;
}

fieldset .ck-svc-row,
fieldset #staff label {
  width: calc(50% - 23px);
  display: inline-block;
  text-align: center;
  background: var(--a);
  border: 1px solid var(--c);
  transition: .2s;
  margin: 10px;
}

fieldset #staff label {
  padding: 10px 20px;
  cursor: pointer;
}

fieldset .ck-svc-row label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  cursor: pointer;
  transition: .2s;
}

fieldset .ck-svc-row:hover,
fieldset #staff label:hover {
  transform:scale(1.05);
  transition: .2s;
}

fieldset input:checked + label,
fieldset input:checked label {
  background: var(--e) !important;
}

.ck-loading {
  opacity:.6
}

.ck-navbtn {
  background: none;
  border: none;
  font-size: 40px;
}

.ck-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px
}

@media (max-width: 1024px) {
  .ck-grid {
    grid-template-columns: 1fr;
  }
}

.ck-btn {
  cursor: pointer;
}

.ck-btn.slot.selected {
  background: var(--e);
}

.ck-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center
}

.ck-svc-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0
}

.ck-svc-meta {
  display: block;
  font-size: 12px;
  opacity: .75;
  margin-left: 26px
}

.ck-aside .ck-cart-total {
  display: flex;
  justify-content: space-between;
}

.ck-cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
}

.ck-daylist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ck-cart-name small {
  display: block;
  font-size: 12px;
  opacity: .75;
}

.ck-cart-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.ck-empty {
  opacity: .8;
}

.ck-weekbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ck-navbtn {
  cursor: pointer;
}

.ck-slots-heading {
  margin: 0;
  text-align: center;
  font-weight: 600
}

.ck-weekgrid {
  display: grid;
  gap: 10px;
  --cols: 7;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
}

.ck-weekgrid.loading {
  opacity: .5;
  pointer-events: none;
  transition: opacity .2s ease
}

.ck-daycol {
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.ck-daycol.is-past {
  opacity: .45
}

.ck-daycol.no-avail .ck-dayhead {
  opacity: .8
}

.ck-empty-day {
  opacity: .5;
}

.ck-date-wrap input[type="date"] {
  width: 100%
}

.ck-subtle {
  opacity: .75;
}

@media (min-aspect-ratio: 2.5/5) and (max-aspect-ratio: 4/5) {
  #hero {
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column-reverse;
    place-content: start;
    place-items: center;
    margin: -30px;
  }

  #hero canvas {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 40%;
    width: 100vw;
  }

  #hero h2 {
    font-size: 9vw;
    line-height: 1.4;
    margin: 0;
    text-wrap: balance;
  }

  #hero p {
    margin-bottom: 0;
  }

  #hero .promo {
    border-bottom: 1px solid var(--b);
    width: 100%;
    display: flex;
    place-content: center;
    place-items: center;
    padding: 0 30px;
    text-align: center;
    order: 3;
    height: 13%;
  }

  #hero .promo p {
    font-size: clamp(12px, 5vw, 22px);
    line-height: 1.3;
  }

  #hero .cta {
    padding: 20px 30px;
    width: 100%;
    text-wrap: stable;
    height: 63%;
    display: flex;
    text-align: center;
    flex-direction: column;
    place-content: space-evenly;
  }

  #hero .cta p {
    font-size: clamp(12px, 5vw, 22px);
    line-height: 1.5;
  }

  #hero .cta a {
    font-size: clamp(24px, 5vw, 32px);
    width: 100%;
    padding: 15px;
    margin: 0;
    line-height: 1;
  background: var(--c);
  color: var(--a);    
  border: 1px solid var(--b);
    font-family: oranienbaum;

  }

  #hero .image {
    height: 26%;
  }

  #hero .image img {
    width: 100vh;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-bottom: 1px solid var(--b);
  }
}

@media (min-width: 450px) {

  #hero .promo p,
  #hero .cta p {
    font-size: 18px;
    text-wrap: balance;
  }

  #hero .promo p {
    line-height: 1.5;
  }

  #hero h2 {
    font-size: 45px;
  }

  #hero .cta a {
    font-size: 26px;
  }

  .box-link {
    width: 40%;
    padding: 30px;
  }
}

@media (min-width: 750px) {

  footer nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    margin: 0 auto;
  }

  footer a:hover {
    color: var(--b);
  }

  footer ul {
    order: 3;
  }

  footer a {
    order: 2;
    margin: 0 auto;
  }

  footer .address {
    text-align: right;
    display: flex;
    flex-direction: row-reverse;
    place-content: space-between;
  }

  footer .address a {
    margin: unset;
    width: 100%;
  }

  .tel {
    text-align: left;
  }

  .fa-instagram {
    margin: unset;
  }

  #hero {
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column-reverse;
    place-content: center;
    place-items: center;
    margin: -30px;
    gap: 20px;
  }

  #hero .promo {
    height: 60px;
  }

  #hero .cta a {
    max-width: 450px;
    margin: 0 auto;
  }

  #hero .image img {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    border: 1px solid var(--c);
  }

  .box-link {
    width: 22%;
    padding: 20px;
  }

  a.button {
    max-width: 450px;
    margin: 0 auto;
  }

  .gallery-container {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .single hr {
    display: block;
  }

  .single .buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    place-content: space-between;
  }

  .menu-cat {
    border-bottom: 1px solid var(--b);
    overflow: hidden;
  }

  .menu-cat h2 {
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    place-items: center;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: .3s;
    font-size: 28px;
  }

  .menu-cat h2:hover,
  .menu-cat h2.active {
    background-color: var(--c);
    color: var(--a);
  }

  .menu-cat h2 .arrow {
    position: absolute;
    right: 20px;
    line-height: 0;
    transition: transform 0.3s ease;
  }

  .menu-cat h2.active .arrow {
    transform: rotate(180deg);
  }

  .cat-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .cat-items .button {
    margin-bottom: 40px;
  }

  .cat-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    place-items: start;
    grid-template-rows: auto auto;
    column-gap: 40px;
    padding: 0 40px;
    margin: 10px auto;
    text-align: left;
  }

  .cat-item:first-of-type {
    margin-top: 40px;
  }

  .cat-item:last-of-type {
    margin-bottom: 40px;
  }

  .cat-item img {
    width: 170px !important;
    height: 170px;
    margin: 20px auto !important;
    padding: 0;
    grid-row: 1 / span 3;
    grid-column: 1;
    border-radius: 100%;
    border: 1px solid var(--c) !important;
  }

  .cat-item h3 {
    grid-row: 1;
    grid-column: 2;
    font-size: 28px;
    align-self: end;
    text-align: left;
  }

  .cat-item div {
    grid-row: 2;
    grid-column: 2;
    align-self: start;
  }

  .cat-item div p {
    margin: 0;
  }

  .cat-item .meta {
    grid-row: 3;
    grid-column: 2;
    align-self: start;
    padding: 10px 0;
    text-align: left;
  }

  .cat-item .meta-button {
    width: fit-content;
    display: inline-block;
    padding: 5px 20px;
  }

  .services hr {
    margin: 10px auto;
  }

  .services hr:last-of-type {
    display: none;
  }
}


@media (min-width: 1000px) {

  /* G E N E R A L */

  body {
    background: var(--a);
    font-family: louis;
    font-size: 18px;
    color: var(--c);
    overflow-x: hidden;
  }

  h1 {
    font-size: 65px;
    line-height: 70px;
    font-family: oranienbaum;
    margin-bottom: 0;
    text-wrap: nowrap;
  }

  h2 {
    font-size: 40px;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 20px;
    background: none;
    color: var(--c);
  }

  h3 {
    text-align: center;
    font-size: 50px;
    font-family: oranienbaum;
    line-height: 55px;
    margin-bottom: 20px;
  }

  h4 {
    text-align: left;
    font-size: 30px;
    font-family: oranienbaum;
    line-height: 35px;
  }

  header {
    height: 160px;
    background: var(--a);
    border-bottom: 1px solid var(--b);
    padding: 0 40px;
    display: flex;
    place-content: space-between;
    place-items: center;
    line-height: 1;
    position: relative;
  }

  header .logo {
    font-family: oranienbaum;
    line-height: unset !important;
  }

  header .logo img {
    height: 125px;
    width: 125px;
  }

  header nav.mobile {
    display: none;
  }

  header nav.desktop {
    display: block;
  }

  header nav ul,
  footer nav ul {
    list-style-type: none !important;
    margin: 0;
  }

  header nav ul li {
    display: inline;
    padding: 20px;
    position: relative;
  }

  header nav ul li:hover a {
    color: var(--d);
  }

  header nav ul li:last-of-type a {
    background: var(--c);
    padding: 15px 30px;
    color: var(--a);
    border: 1px solid var(--c);
  }

  .sub-menu {
    display: none;
  }

  header nav ul li:last-of-type a:hover {
    background: var(--e);
    padding: 15px 30px;
    color: var(--c);
  }

  header nav ul li:hover .sub-menu {
    display: block;
    position: absolute;
    left: 20px;
    margin-top: 20px;
    border: 1px solid var(--c);
    background: var(--a);
    width: 200px;
  }

  .sub-menu li {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 20px;
  }

  .sub-menu a {
    background: none !important;
    color: var(--c) !important;
    border: none !important;
    text-align: left;
    padding: 0 !important;
  }

    .sub-menu a:hover {
    color: var(--d) !important;
  }

  main {
    padding: 40px;
    margin: 0 auto;
  }

  section {
    padding: 40px;
    border-bottom: 1px solid var(--b);
  }

  hr {
    border: 0;
    display: block;
    margin: 70px auto 90px auto;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #5e746ebf, rgba(0, 0, 0, 0));
  }

  .button {
    display: block;
    text-align: center;
    padding: 10px 40px;
    border: 1px solid var(--b);
    margin: 0 auto;
    min-width: 240px;
    width: 100%;
    text-decoration: none;
    font-family: oranienbaum;
    font-size: 26px;
    background: transparent;
  }

  .button:hover {
    color: var(--c);
    text-decoration: none;
    box-shadow: 5px 5px var(--a),
      5px 5px 0px 1px var(--d),
      inset 3px 3px 0px 0px var(--a),
      inset 3px 3px 0px 1px var(--d);
    transform: translate3d(-5px, -5px, -5px);
  }

  .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    place-content: space-evenly;
    width: 100%;
    max-width: 1100px;
  }

  .box-link {
    text-decoration: none;
    aspect-ratio: 1;
    font-family: oranienbaum;
    width: 20%;
    display: flex;
    place-content: center;
    place-items: center;
    outline-offset: -10px;
    outline: 1px solid var(--a);
  }

  .test-container {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin: 0 auto;
    place-content: center;
    place-items: center;
    max-width: 1300px;
  }

  .test {
    padding: 10px 40px;
    text-decoration: none;
    width: 33%;
    height: 85vh;
    font-size: 26px;
    display: flex;
    flex-direction: column;
    place-content: center;
    font-size: 18px;
    gap: 20px;
    box-shadow:
      90px -90px 0 -89px var(--b),
      -90px 90px 0 -89px var(--b);
    outline-offset: 10px;
    outline: 1px solid var(--b);
    border-radius: 25px 0 25px 0;
    position: relative;
    transition: .5s;
  }

  .test:before {
    content: '"';
    position: absolute;
    font-size: 120px;
    font-family: oranienbaum;
    left: -25px;
    top: 25px;
    transition: .5s;
    color: var(--d);
  }

  .test:after {
    content: '"';
    position: absolute;
    font-size: 120px;
    font-family: oranienbaum;
    right: -25px;
    bottom: -45px;
    transition: .5s;
    color: var(--d);
  }

  .test:hover {
    transform: translateX(-5px) translateY(-5px) scale(1.1);
    box-shadow: none;
    border-radius: 0;
    transition: .5s;
  }

  .test:hover.test:before {
    font-size: 150px;
    transition: .5s;
    left: -35px;
    top: 15px;
    color: var(--b);
  }

  .test:hover.test:after {
    font-size: 150px;
    transition: .5s;
    right: -32px;
    bottom: -70px;
    color: var(--b);
  }

  .gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    place-content: space-evenly;
  }

  .gallery-container img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 20%;
    outline-offset: 10px;
    outline: 1px solid var(--d);
    transition: .5s;
  }

  .gallery-container img:hover {
    transform: scale(1.2);
    transition: .5s;
    outline-offset: -1px;
  }

  /* H O M E P A G E */

  #hero {
    height: calc(100vh - 160px);
    display: grid;
    padding: 0;
    grid-template-rows: 60px 1fr;
    grid-template-columns: 5% 1fr 60vh 5%;
    place-content: center;
    place-items: center;
    margin: -40px;
  }

  #hero canvas {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 200px;
    height: unset;
  }

  #hero .promo {
    grid-row: 1;
    grid-column: 1 / span 4;
    border-bottom: 1px solid var(--b);
    width: 100%;
    height: 100%;
    display: flex;
    place-content: center;
    place-items: center;
  }

  #hero .promo p {
    font-size: inherit;
    line-height: inherit;
  }

  #hero .cta a {
    font-size: inherit;
    line-height: inherit;
  }

  #hero .cta {
    grid-row: 2;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    place-content: space-around;
    width: 100%;
    height: 90%;
    padding: 40px 10px 40px 0;
    font-size: 24px;
    line-height: 1.6;
    text-wrap: stable;
    gap: unset;
    text-align: unset;
  }

  #hero .cta h2 {
    font-size: clamp(20px, 3.5vw, 65px);
    line-height: clamp(24px, 3.8vw, 70px);
    margin-bottom: 0;
    line-height: unset;
    text-align: left;
    text-wrap: unset;
  }

  #hero .cta p {
    font-size: 22px;
    line-height: inherit;
    text-wrap: wrap;
  }

  #hero .cta a {
    display: block;
    text-align: center;
    padding: 10px 40px;
    border: 1px solid var(--b);
    margin: 0 auto;
    min-width: 240px;
    text-decoration: none;
    font-family: oranienbaum;
    font-size: 26px;
  }

  #hero .image {
    grid-row: 2;
    grid-column: 3;
    height: auto;
  }

  #hero .image img {
    height: 60vh;
    width: 60vh;
    object-fit: cover;
    border-radius: 100%;
    border: 1px solid var(--b);
  }

  #featured {
    display: flex;
    margin: 40px -40px 0 -40px;
    padding: 40px;
    gap: 60px;
    flex-direction: column;
    place-content: space-around;
  }

  #learn {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 50% 50%;
    place-content: center;
    place-items: start;
    gap: 40px;
    margin: 0px -40px;
    padding: 40px 80px;
  }

  #learn .about {
    grid-column: 1;
    border-right: 1px solid var(--b);
    padding-right: 20px;
    height: 100%;
    max-width: 650px;
    justify-self: end;
  }

  #learn .about h4:last-of-type {
    margin: inherit;
    margin-bottom: 0;
    background: none;
    color: inherit;
    padding: 40px 0 0 0;
  }

  #learn .about ul {
    padding-left: 20px;
    list-style-type: square;
  }

  #learn .about ul li {
    margin-bottom: 20px;
  }

  #learn .loc {
    grid-column: 2;
    display: grid;
    max-width: 650px;
    justify-self: start;
  }

  #learn .loc .container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
    margin-bottom: 40px;
    gap: 0;
  }

  #learn .loc .hours {
    text-align: right;
    grid-column: 1;
    border-right: 1px solid var(--d);
    display: block;
    flex-direction: column;
    padding-right: 40px;
    width: 100%;
  }

  #learn .loc .hours p {
    display: block;
    text-align: right;
  }

  #learn .loc .hours .day {
    font-family: oranienbaum;
    font-weight: 600;
    font-size: 22px;
  }

  #learn .loc .address {
    text-align: center;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    place-content: center;
    place-items: center;
    font-family: oranienbaum;
    font-weight: 600;
    font-size: 22px;
  }

  #testimonials {
    display: flex;
    flex-direction: column;
    place-content: center;
    place-items: center;
    gap: 40px;
    margin: 0px -40px;
    padding: 40px 80px 80px 80px;
  }

  #gallery {
    display: flex;
    place-content: center;
    place-items: center;
    margin: 0px -40px -40px -40px;
    padding: 0 40px;
  }

  /* * ABOUT * */

  .content img {
    width: 50%;
    margin: 40px 40px 40px 0;
    aspect-ratio: 16/9;
    max-height: unset;
    border-bottom: none;
  }

  .about-left {
    display: grid;
    grid-template-columns: 250px 1fr;
    column-gap: 80px;
    place-content: center;
    position: relative;
  }

  .inner-content {
      min-height: 60vh;
  display: flex;
  flex-direction: column;
  place-content: center;
  }

  .about-left ul {
    margin: 20px 0;
    line-height: 1.3;
  }

  .about-left:nth-of-type(odd) ul {
    columns: 2;
    column-gap: 40px;
  }

    .about-left ul li {
    margin-bottom: 10px;
  }

  .about-left:before {
    content: "";
    background-color: var(--e);
    width: 200px;
    height: auto;
    aspect-ratio: 9/16;
    display: block !important;
    position: absolute;
    margin-left: 3%;
    bottom: 20%;
  }

  .about-left:nth-of-type(even):before {
    background-color: var(--b) !important;
  }

  .about-right:before {
    content: "";
    background-color: var(--e);
    width: 200px;
    height: auto;
    aspect-ratio: 9/16;
    display: block !important;
    position: absolute;
    right: 0;
    margin-right: 100px;
    margin-top: 250px;
  }

  .about-left p {
    grid-column: 1;
  }

  .about-left p img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border: 0;
    border-radius: 0;
    aspect-ratio: unset;
    margin: unset;
    height: 90vh;
  }

  .about-right {
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-template-rows: auto auto auto;
    place-content: center;
    column-gap: 80px;
    padding: 40px 80px;
    position: relative;
  }

  .about-right p {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .about-right p img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    border: 0;
    border-radius: 0;
    aspect-ratio: unset;
    margin: unset;
    max-height: unset;
  }

  .about hr {
    margin: 40px 0;
  }

  .about-left h2 {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    line-height: 1.5;
  }

  .about-right h2 {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
  }


  .about-left div,
  .about-right div {
    padding: 0;
  }

  /* * CONTACT * */

  .left-img {

    display: flex;
    flex-direction: row;
    place-content: center;
    place-items: center;
    gap: 70px;
  }

  .left-img img {
    width: 30%;
    height: 80vh;
  }

  .left-img .content {
    flex: 1;
  }

  .wpforms-container {
    margin: 0 !important;
  }

  /* * TEAM * */

  .team-member-left {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 40px;
    place-items: center;
    place-content: center;
    position: relative;
  }

    .team-member-left:before {
    content: "";
    background-color: var(--e);
    width: 200px;
    height: auto;
    aspect-ratio: 9/16;
    display: block !important;
    position: absolute;
    margin-left: 3%;
    place-self: start;
    bottom: 20%;
  }

      .team-member-right:before {
    content: "";
    background-color: var(--b);
    width: 200px;
    height: auto;
    aspect-ratio: 9/16;
    aspect-ratio: 9/16;
    display: block !important;
    position: absolute;
    right: 4;
    place-self: end;
    margin-bottom: 10%;
  }

  .left-flower {
    height: 60vh !important;
    width: 100% !important;
    margin: 0 !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center;
    border: none !important;
    grid-column: 1;
    grid-row: 1 / span 3;
    padding-right: 80px;
    border-radius: 0;
    place-self: center;
    display: block !important;
    opacity: .35;
  }

  .team-member-right {
    display: grid;
    grid-template-columns: 1fr 250px;
    grid-template-rows: auto auto auto;
    place-items: center;
    place-content: center;
    column-gap: 40px;
  }

  .right-flower {
    height: 60vh !important;
    width: 100% !important;
    margin: 0 !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center;
    border: none !important;
    grid-column: 2;
    grid-row: 1 / span 3;
    padding-left: 80px;
    border-radius: 0;
    place-self: center;
    display: block !important;
    opacity: .35;
  }

  .team-member-left .team-img {
    width: 300px !important;
    height: 300px !important;
    object-fit: cover;
    border: 1px solid var(--c);
    border-radius: 100%;
    grid-column: 2;
    margin: 0 0 40px 0 !important;
  }

  .team-member-right .team-img {
    width: 300px !important;
    height: 300px !important;
    object-fit: cover;
    border: 1px solid var(--c);
    border-radius: 100%;
    grid-column: 1;
    margin: 0 0 40px 0 !important;
  }

  .team-member-left h2 {
    grid-column: 2;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    align-self: end;
  }

  .team-member-right h2 {
    grid-column: 1;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    align-self: end;
  }

  .team-member-left div {
    grid-column: 2;
    padding: 0;
    align-self: start;
  }

  .team-member-right div {
    grid-column: 1;
    padding: 0;
    align-self: start;
  }

  .empty {
    visibility: hidden !important;
    max-height: 0 !important;
  }
}

@media (min-width: 1200px) {
  .test {
    height: 70vh;
  }
}

@media (min-width: 1300px) {
  .test {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto;
  }

}

@media screen and (max-width: 768px) {
  .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item {
    max-width: 300px;
    margin: 0 auto !important;
    width: 100%;
  }
}

@media (max-width: 550px) {
    .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto;
  }
}

