@charset "UTF-8";
:root {
  --border-color: #515c58;
  --bg-color: #f4f1ee;
  --text-color: #1a1a1a;
  --btn-color: #515c58;
  --btn-text-color: #f4f1ee;
  --btn-hover-color: #f4f1ee;
  --btn-border-color: #515c58;
  --btn-hover-text-color: #515c58;
  --link-color: #515c58;
  --link-hover-color: #6d7a75;
  --some-color: #1a1a1a;
  --some-hover-color: #2a2a2a;
  --square-color: ;
  --text-hover-color: #666;
  --gray-border: #a0a0a0;
  --shadow-color: #49494980;
  --square-bg-light: #ea9fc01a;
  --square-outline: #ea9fc04d;
  --square-bg-medium: #ea9fc026;
  --card-shadow: #00000033;
  --mobile-outline: #ea9fc0cc;
  --overlay-bg: #0000004d;
  --nav-bg: #f4f1eef2;
  --nav-shadow: #00000033;
  --accent-color: ;
}

[data-theme=dark] {
  --border-color: #ddc2bd;
  --bg-color: #1a1a1a;
  --text-color: #f4f1ee;
  --btn-color: #ddc2bd;
  --btn-text-color: #1a1a1a;
  --btn-hover-color: #1a1a1a;
  --btn-border-color: #ddc2bd;
  --btn-hover-text-color: #ddc2bd;
  --link-color: #ddc2bd;
  --link-hover-color: #f4f1ee;
  --some-color: #f4f1ee;
  --some-hover-color: #e4e1de;
  --text-hover-color: #b3b3b3;
  --gray-border: #666;
  --shadow-color: #f3f1ee80;
  --square-bg-light: #cdafa31a;
  --square-outline: #cdafa34d;
  --square-bg-medium: #cdafa326;
  --card-shadow: #f4f1ee33;
  --mobile-outline: #cdafa3cc;
  --overlay-bg: #f4f1ee4d;
  --nav-bg: #333333f2;
  --nav-shadow: #f4f1ee33;
  --accent-color: #cdafa3;
}

@font-face {
  font-family: "Andrea Bilarosa";
  src: url("https://dl.dropboxusercontent.com/scl/fi/j44mloywhovdx4mdmleof/Andrea-Bellarosa-1.ttf?rlkey=cbkuhkqkiqa9s0m0gzpa6g5g6&st=ule5umw4") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --cursor-color: #333333; /* black in light mode */
  --cursor-color-rgb: 51, 51, 51;
  --cursor-blend: multiply; /* better blending on light backgrounds */
}

html[data-theme=dark] {
  --cursor-color: #ffffff;
  --cursor-color-rgb: 255, 255, 255;
  --cursor-blend: screen;
}

body {
  cursor: none !important;
}

* {
  cursor: none !important;
}

.main-logo {
  width: 70px;
  height: auto;
  cursor: pointer;
}

.main-logo-mobile {
  width: 75px;
  height: auto;
  margin-bottom: 40px;
  width: 75px;
  height: auto;
  animation: spin 9s linear infinite;
  filter: none !important;
  transition: filter 0.3s ease;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

html[data-theme=dark] .main-logo-mobile {
  filter: invert(1) !important;
}

html[data-theme=light] .main-logo-mobile,
html:not([data-theme=dark]) .main-logo-mobile {
  filter: none !important;
}

/* Circular cursor element */
.custom-cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  background: var(--cursor-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
  box-shadow: 0 0 6px rgba(var(--cursor-color-rgb), 0.28), 0 0 18px rgba(var(--cursor-color-rgb), 0.1);
  mix-blend-mode: var(--cursor-blend);
}

/* soft halo for smoother blending */
.custom-cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cursor-color-rgb), 0.2) 0%, rgba(var(--cursor-color-rgb), 0) 60%);
  pointer-events: none;
  z-index: -1;
}

/* If any pages still include an <img>, hide it */
.custom-cursor img {
  display: none;
}

/* Hide native pointer for interactive elements so only the dot shows */
:where(a,
button,
[role=button],
input[type=button],
input[type=submit],
label,
.clickable,
[onclick],
[onpointerdown],
[onmousedown],
[data-clickable],
[style*="cursor:pointer"],
[style*="cursor: pointer"]) {
  cursor: none !important;
}

/* Indicate hover on interactive elements by enlarging the dot */
.custom-cursor.cursor-hover {
  transform: translate(-50%, -50%) scale(1.9);
  transition: transform 0.08s ease, box-shadow 0.12s ease;
  box-shadow: 0 0 10px rgba(var(--cursor-color-rgb), 0.36), 0 0 36px rgba(var(--cursor-color-rgb), 0.18);
}

.custom-cursor.cursor-hover::after {
  background: radial-gradient(circle, rgba(var(--cursor-color-rgb), 0.28) 0%, rgba(var(--cursor-color-rgb), 0) 60%);
}

/* On touch devices show native cursor and hide custom cursor */
@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
  body,
  * {
    cursor: auto !important;
  }
}
html.dark-theme-loading .toggle-switch,
html.light-theme-loading .toggle-switch {
  transition: none !important;
}
html.dark-theme-loading .toggle-switch *,
html.light-theme-loading .toggle-switch * {
  transition: none !important;
}

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

[hidden] {
  display: none !important;
}

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

:where(a,
button,
input,
select,
textarea,
[role=button],
.burger-menu,
.mobile-menu-close,
.toggle-switch):focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2000;
  background: var(--bg-color);
  color: var(--text-color);
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "bodoni Moda", serif;
  color: var(--text-color);
}

p {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  color: var(--text-color);
}

body {
  max-width: 1500px;
  display: block;
  margin: 0 auto;
  background-color: var(--bg-color);
}

.hero {
  max-width: 3000px;
  border: 1px solid var(--border-color);
  margin: 0 50px 50px 50px;
  border-radius: 20px;
  margin-top: 50px;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.hero .main-img-block {
  position: relative;
}
.hero .container-box-flower {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  flex-direction: row;
}
.hero .tooltip {
  position: absolute;
  top: 25%;
  left: 80%;
  transform: translate(-50%, -120%);
  color: var(--text-color);
  padding: 8px 16px;
  font-size: 1rem;
  z-index: 10;
  white-space: nowrap;
}
.hero #flower {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hero #flower:hover {
  transform: scale(1.01);
}
.hero .h2h3 {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
  font-weight: regular;
}

.flower-nav {
  width: 80%;
  height: 80%;
  animation: spin 9s linear infinite;
  cursor: pointer;
  justify-self: center;
  width: 550px;
  height: 550px;
  margin-top: 50px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.flower-nav:hover {
  animation-play-state: paused;
}
.flower-nav .mainsvg-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px 0 100px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container .toggle-container {
  margin-left: 70px;
  margin-right: 20px;
  order: 1;
}
.nav-container .nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
  order: 2;
}
.nav-container .nav-links a {
  color: var(--text-color);
  text-decoration: none !important;
  list-style: none !important;
  font-size: 1.25rem;
  font-family: "bodoni Moda", serif;
  margin: 0 15px;
}
.nav-container .nav-links a:hover {
  color: var(--text-hover-color);
}
.nav-container .burger-menu {
  order: 3;
  color: var(--text-color);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-container .burger-menu i {
  color: var(--text-color);
}
.nav-container .mobile-menu-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-container .mobile-menu-close i {
  color: var(--text-color);
}

img {
  max-width: 100%;
}

svg {
  max-width: 100%;
}

video {
  width: 100%;
}

.blog-h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  text-align: center;
  margin: 200px 150px;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media (max-aspect-ratio: 16/9) {
  #heroVideo {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}
@media (min-aspect-ratio: 16/9) {
  #heroVideo {
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
    height: 100%;
    min-width: 100%;
  }
}

.custom-mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .custom-mute-btn {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .custom-mute-btn {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
    font-size: 14px;
  }
}
.custom-mute-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
  opacity: 1;
}

.hero-video-container:hover .custom-mute-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-video-container {
    height: 60vh;
    min-height: 300px;
    max-height: 500px;
  }
}
@media (max-width: 480px) {
  .hero-video-container {
    height: 50vh;
    min-height: 250px;
    max-height: 400px;
  }
}
.some {
  position: absolute;
  top: 20px;
  right: 50px;
  z-index: 10;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.some a {
  color: var(--some-color);
  text-decoration: none;
}
.some a:hover {
  color: var(--some-hover-color);
  transform: scale(1.4);
}

.container-box-text {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 0;
  flex-direction: column;
  margin: 120px 110px 100px 0;
  padding: 40px;
  text-align: left;
}
.container-box-text p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
}
.container-box-text h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
}
.container-box-text h2 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
}

.signature {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 100px;
}
.signature .signature-font {
  font-family: "Andrea Bilarosa", cursive;
  font-size: 2rem;
  color: var(--text-color);
}
.signature .paragraph-24 {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
}

.first-section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 80px 0 0 150px;
}
.first-section-about h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 70px;
  max-width: 80%;
}
.first-section-about p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  max-width: 80%;
  line-height: 1.6;
}

.second-section-about {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 100px 150px;
}
.second-section-about p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
  max-width: 80%;
  margin-left: 10%;
}

/* Inverted theme: light background when site is in dark mode, and dark
   background in the default (light) theme for contrast */
[data-theme=dark] .second-section-about {
  background-color: #f4f1ee;
  color: #1a1a1a;
}

:root:not([data-theme=dark]) .second-section-about {
  background-color: #1a1a1a;
  color: #f4f1ee;
}

/* Ensure paragraph text and links inherit the section color so they
   automatically switch when the section color changes with the theme */
.second-section-about p,
.second-section-about p a {
  color: inherit;
}

.third-section-about div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 100px 200px 100px 200px;
}
.third-section-about div img {
  width: 90%;
}
.third-section-about h2 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 60px;
  display: block;
  text-align: center;
}
.third-section-about h3 {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.third-section-about p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
  max-width: 80%;
  margin-left: 10%;
}

.review-section-about {
  margin: 120px 0 0 0;
  padding: 80px 60px;
  background-color: var(--bg-color);
  color: var(--text-color);
}
.review-section-about h4 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 30px;
}
.review-section-about .reviews-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 8px 12px 8px;
  scrollbar-width: none; /* Firefox */
}
.review-section-about .reviews-scroller::-webkit-scrollbar {
  display: none; /* WebKit */
}
.review-section-about .review-card {
  scroll-snap-align: center;
  flex: 0 0 60%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 36px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 16px var(--card-shadow);
}
.review-section-about .review-card p {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin: 20px 0 12px 0;
  color: var(--text-color);
}
.review-section-about .review-card .review-author {
  font-family: "bodoni Moda", serif;
  font-size: 1rem;
  color: var(--link-color);
}
.review-section-about .review-card .review-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px var(--card-shadow);
}
.review-section-about .reviews-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.review-section-about .reviews-prev,
.review-section-about .reviews-next {
  width: 44px;
  height: 44px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 22px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1;
  padding: 0;
}
.review-section-about .reviews-prev:hover,
.review-section-about .reviews-next:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}
@media (max-width: 768px) {
  .review-section-about {
    margin: 80px 20px;
  }
  .review-section-about .review-card {
    flex-basis: 88%;
    padding: 28px 24px;
    border-radius: 24px;
  }
}

.fifth-section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0px 150px 0 0px;
}
.fifth-section-about div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.fifth-section-about h5 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 40px;
}
.fifth-section-about p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 40px;
  line-height: 1.6;
}
.fifth-section-about img {
  width: 70%;
}
.fifth-section-about button {
  width: 600px;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.fifth-section-about button:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}

.first-section-work {
  margin: 80px 150px 0 150px;
}
.first-section-work h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
}
.first-section-work p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 80%;
}

.second-section-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 100px 150px;
}
.second-section-work .img-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.second-section-work .img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.second-section-work .img-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 5;
}
.second-section-work .img-container .overlay-img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333333;
  font-size: 1.5rem;
  font-family: "bodoni Moda", serif;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-align: center;
  z-index: 10;
}
.second-section-work .img-container:hover img {
  transform: scale(1.05);
}
.second-section-work .img-container:hover::before {
  opacity: 1;
}
.second-section-work .img-container:hover .overlay-img-text {
  opacity: 1;
}

.first-section-full-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 80px 150px 0 150px;
}
.first-section-full-services h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
  font-weight: 400;
}
.first-section-full-services p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 80%;
  margin-top: 10px;
}
.first-section-full-services img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.first-section-full-services h2 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-top: 80px;
  margin-bottom: 30px;
}

.service-container {
  margin-bottom: 60px;
}
.service-container h3 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
  font-weight: 400;
}
.service-container p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
.service-container ul li {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 10px;
  line-height: 1.6;
  list-style-type: disc;
}
.service-container .btns-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-direction: row;
  width: 100%;
}
.service-container .btns-container button {
  width: 200px;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.service-container .btns-container button:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}

.btns-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  flex-direction: row;
  width: 100%;
}
.btns-container button {
  width: 200px;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btns-container button:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}

.first-section-services {
  margin: 80px 150px 0 150px;
}
.first-section-services img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 40px;
}
.first-section-services h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
  font-weight: 400;
}
.first-section-services h2 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
}

#typing-text {
  display: inline-block;
  white-space: nowrap;
}

#typing-text .caret {
  display: inline-block;
  margin-left: 4px;
  color: var(--text-color);
}

.second-section-services {
  margin: 100px 150px;
}
.second-section-services .line {
  width: 100%;
  height: 1px;
  background-color: var(--some-color);
  margin: 10px 0 10px 0;
  background-color: var(--border-color);
  margin-top: 40px;
  margin-bottom: 40px;
}
.second-section-services .service-one {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  gap: 50px;
  margin-top: 50px;
}
.second-section-services .service-one h3 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
  font-weight: 400;
}
.second-section-services .service-one p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
}
.second-section-services .service-one .coming-soon {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  font-style: italic;
  color: var(--link-color);
}
.second-section-services .service-one a {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  text-decoration: none;
  color: var(--link-color);
}
.second-section-services .service-one:hover a {
  color: var(--link-hover-color);
}
.second-section-services .service-one .price-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  font-weight: 200;
}
.second-section-services .service-one .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.second-section-services .service-one .price-row span {
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: inherit;
}
.second-section-services .service-one .price-value {
  white-space: nowrap;
  font-weight: 200;
}
.second-section-services .service-one .price-container {
  margin-top: 30px;
}
.second-section-services .service-one .price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.second-section-services .service-one .price-item p {
  margin: 0;
}

.third-section-services {
  margin: 100px 150px;
}
.third-section-services .line {
  width: 100%;
  height: 1px;
  background-color: var(--some-color);
  margin: 10px 0 10px 0;
  background-color: var(--border-color);
  margin-top: 40px;
  margin-bottom: 40px;
}
.third-section-services .service-one {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  gap: 50px;
  margin-top: 50px;
}
.third-section-services .service-one h3 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 400;
}
.third-section-services .service-one.how-work-header {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.third-section-services .service-one.how-work-header h3 {
  margin-bottom: 0;
}
.third-section-services .service-one.how-work-header .scroll-hint {
  background: none;
  border: none;
  color: var(--link-color);
  font-size: 2.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.third-section-services .service-one.how-work-header .scroll-hints {
  display: flex;
  align-items: center;
  gap: 14px;
}

.process-scroll {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 70px;
  flex-direction: row;
  max-width: -moz-fit-content;
  max-width: fit-content;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}
.process-scroll::-webkit-scrollbar {
  height: 8px;
}
.process-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.process-scroll::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 4px;
}
.process-scroll > * {
  flex: 0 0 auto;
  max-width: 50%;
  scroll-snap-align: start;
}
.process-scroll p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  margin-bottom: 35px;
  line-height: 1.6;
}
.process-scroll .number-heading {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 0;
}
.process-scroll h4 {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  position: relative;
  margin-top: 50px;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--border-color);
}
.process-timeline > div {
  position: relative;
  padding-top: 10px;
}
.process-timeline .number-heading {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  margin-bottom: 16px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.process-timeline .number-heading:hover {
  background-color: var(--link-color);
  color: var(--bg-color);
}
.process-timeline h4 {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
  margin-bottom: 12px;
}
.process-timeline p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  line-height: 1.6;
}

.faq-line .line {
  width: 80%;
  background-color: var(--border-color);
  margin-top: 40px;
  margin-bottom: 40px;
}
.faq-line .faq-heading {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin: 100px 0 30px 150px;
}

.fourth-section-service {
  margin: 80px 150px;
}
.fourth-section-service .faq-heading {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
}
.fourth-section-service .line {
  margin-bottom: 80px;
}
.fourth-section-service > div {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.fourth-section-service .faq-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-direction: row;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  text-align: left;
  font-family: "bodoni Moda", serif;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.fourth-section-service .faq-button:hover {
  color: var(--link-color);
}
.fourth-section-service .faq-button .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--link-color);
}
.fourth-section-service .faq-button.active .arrow {
  transform: rotate(180deg);
}
.fourth-section-service .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.fourth-section-service .faq-answer.active {
  max-height: 500px;
  padding: 20px 0;
}
.fourth-section-service .faq-answer p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  line-height: 1.6;
  color: var(--text-color);
}

.service-btn {
  width: 200px;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-left: 150px;
}
.service-btn:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 0;
  margin-left: 100px;
  margin-top: 80px;
}
.grid-two .grid-flower-scroll {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-two .vertical-line {
  position: absolute;
  width: 2px;
  height: 100vh;
  background-color: var(--border-color);
  left: 50%;
  top: 5vh;
  transform: translateX(-50%);
  z-index: 0;
}
.grid-two #scroll-flower {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.grid-two h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
}
.grid-two p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.6;
}
.grid-two h2 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
}
.grid-two h3 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 30px;
}
.grid-two h4 {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 30px;
}
.grid-two p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 65px;
}
.grid-two img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}
.grid-two video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.grid-two button {
  width: 300px;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 200px;
}
.grid-two button:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}
.grid-two ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
.grid-two ul li {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 10px;
  line-height: 1.6;
  list-style-type: disc;
}
.grid-two ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.grid-two ol li {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 10px;
  line-height: 1.6;
  list-style-type: decimal;
}
.grid-two .list-p {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 20px;
}
.grid-two .btns-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  flex-direction: row;
  margin-top: 100px;
  width: 100%;
}

/* Apply same inverted theme as second-section-about to reviews section */
[data-theme=dark] .review-section-about {
  background-color: #f4f1ee;
  color: #1a1a1a;
}

:root:not([data-theme=dark]) .review-section-about {
  background-color: #1a1a1a;
  color: #f4f1ee;
}

.review-section-about h4,
.review-section-about p,
.review-section-about .review-author {
  color: inherit;
}

.grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  color: var(--text-color);
  margin: 70px 0;
  align-items: start;
  justify-items: center;
}
.grid-three dt {
  font-weight: bold;
}
.grid-three dd {
  margin-top: 20px;
  color: var(--link-color);
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr;
  gap: 0;
  border-radius: 10px;
  margin: 50px 20px;
  padding: 100px 100px;
  position: relative;
}
.contact-form-section .contact-title {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  text-decoration: overline;
  font-weight: 400;
  position: absolute;
  top: 0; /* Adjust this value to position the title above the section */
  left: 6px;
}
.contact-form-section h2 {
  font-family: "bodoni Moda", serif;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 20px;
}
.contact-form-section .paragraph-22 {
  font-family: "Raleway", sans-serif;
  font-size: 1.375rem;
  color: var(--text-color);
  font-weight: 200;
  line-height: normal;
  list-style: none;
  margin-bottom: 90px;
}
.contact-form-section .contact-form label,
.contact-form-section .contact-form input,
.contact-form-section .contact-form textarea {
  display: block;
  width: 100%;
}
.contact-form-section .contact-form label {
  font-family: "Raleway", sans-serif;
  color: var(--text-color);
}
.contact-form-section .contact-form legend {
  color: var(--text-color);
  font-family: "Raleway", sans-serif;
}
.contact-form-section .contact-form input,
.contact-form-section .contact-form textarea,
.contact-form-section .contact-form select {
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-family: "Raleway", sans-serif;
  color: var(--text-color);
  background-color: transparent;
  box-shadow: none;
  outline: none;
  width: 100%;
}
.contact-form-section .contact-form input:focus,
.contact-form-section .contact-form textarea:focus,
.contact-form-section .contact-form select:focus {
  outline: none;
  border-bottom: 2px solid var(--border-color);
  box-shadow: none;
}
.contact-form-section .contact-form select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}
.contact-form-section .contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form-section .contact-form placeholder {
  color: var(--text-color);
  opacity: 0.7;
  font-family: "Raleway", sans-serif;
}
.contact-form-section .btn-form {
  width: 100%;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form-section .btn-form:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}
.contact-form-section .service-selection {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: end;
  border: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.contact-form-section .checkbox-group1,
.contact-form-section .checkbox-group2 {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-form-section .checkbox-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  cursor: pointer;
  padding: 0;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--text-color);
  min-height: auto;
}
.contact-form-section .checkbox-label:hover {
  background-color: transparent;
  border-color: transparent;
}
.contact-form-section .checkbox-label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 2px;
}
.contact-form-section .checkbox-label input[type=checkbox]:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}
.contact-form-section .checkbox-label input[type=checkbox]:checked::after {
  content: "✓";
  color: var(--text-color);
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-form-section .checkbox-label input[type=checkbox]:focus {
  outline: 2px solid var(--square-outline);
  outline-offset: 2px;
}
.contact-form-section .checkbox-label:has(input:checked) {
  background-color: transparent;
  border-color: transparent;
}

.contact-img {
  border-radius: 5px;
}

.intake-page {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.intake-section {
  max-width: 960px;
  margin: 80px auto 120px auto;
  padding: 0 20px;
}

.intake-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 40px;
}
.intake-header img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 3s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(180, 169, 175, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(180, 169, 175, 0.7));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(180, 169, 175, 0.4));
  }
}
.intake-header h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 16px;
}
.intake-header p {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 70px;
}
.intake-form label {
  font-family: "Raleway", sans-serif;
  color: var(--text-color);
  margin-bottom: 6px;
}
.intake-form input[type=text],
.intake-form input[type=email],
.intake-form input[type=url],
.intake-form input[type=date],
.intake-form textarea,
.intake-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background-color: transparent;
  color: var(--text-color);
  font-family: "Raleway", sans-serif;
}
.intake-form textarea {
  resize: vertical;
}

.intake-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 50px;
}

.intake-step-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intake-step-group[data-step="0"] .btn-form {
  align-self: center;
}

.intake-step-group[data-step="0"] .intake-next {
  width: 75%;
  margin-top: 10px;
  align-self: flex-start;
  margin-left: 100px;
}

.intake-step {
  border: none;
  border-radius: 5px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.intake-step legend {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  color: var(--text-color);
  font-weight: normal;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}
.intake-step legend::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  margin: 12px 0 18px 0;
}

.intake-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intake-fieldset legend {
  font-family: "bodoni Moda", serif;
  color: var(--text-color);
  margin-bottom: 6px;
}
.intake-fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.intake-fieldset input[type=checkbox],
.intake-fieldset input[type=radio] {
  accent-color: var(--link-color);
}

.intake-form .btn-form {
  align-self: flex-start;
  width: 240px;
  height: 50px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.intake-form .btn-form:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}

.intake-toggle-container {
  position: fixed;
  top: 30px;
  left: 80px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intake-toggle-switch {
  position: relative;
  width: 110px;
  height: 15px;
  border-radius: 25px;
  border: 3px solid var(--gray-border);
  background-color: var(--bg-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.intake-toggle-switch.dark-mode {
  background-color: var(--bg-color);
  border-color: #3a3939;
}

.intake-toggle-slider {
  position: absolute;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.intake-toggle-switch.dark-mode .intake-toggle-slider {
  transform: translateX(71px);
}

.intake-toggle-slider svg {
  width: 30px;
  height: 30px;
  position: relative;
  top: -14px;
  transform: scale(2);
}

.intake-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.intake-nav .btn-form {
  align-self: auto;
  min-width: 180px;
}

@media (max-width: 768px) {
  .intake-section {
    margin: 60px 20px 100px 20px;
  }
  .intake-toggle-container {
    top: 60px;
    left: auto;
    right: 20px;
  }
  .intake-header {
    text-align: left;
  }
  .intake-header p {
    margin: 0;
    max-width: 100%;
  }
  .intake-form .btn-form {
    width: 100%;
  }
  .intake-step-group[data-step="0"] .intake-next {
    margin-left: 0;
  }
  .intake-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .intake-nav .btn-form {
    width: 100%;
  }
}
.blog-h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  margin-top: 50px;
}

.art-shop-h1 {
  font-family: "bodoni Moda", serif;
  font-size: 2.25rem;
  text-decoration: overline;
  font-weight: 400;
  margin: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery-grid .gallery-item {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.gallery-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 15px;
  transition: all 150ms ease-in-out;
  box-shadow: 0 4px 8px var(--card-shadow);
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
.gallery-grid h2 {
  font-family: "bodoni Moda", serif;
  color: var(--text-color);
}
.gallery-grid p {
  font-family: "Raleway", sans-serif;
  color: var(--text-color);
}
.gallery-grid .buy-link {
  font-family: "Raleway", sans-serif;
  color: var(--text-color);
  text-decoration: none;
}
.gallery-grid .buy-link:hover {
  color: var(--link-hover-color);
}
.gallery-grid .gallery-item-text {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 0;
  flex-direction: column;
  margin-top: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  align-items: 0;
  gap: 10px;
  flex-direction: row;
  position: relative; /* Allows absolute positioning of scroll logo */
  border: 1px solid var(--border-color);
  border-radius: 20px;
  margin: 300px 60px 20px 60px;
  padding: 70px;
  font-size: 0.9rem;
  color: var(--text-color);
}
.footer-container .h1-4f,
.footer-container .footer-heading {
  font-family: "bodoni Moda", serif;
  color: var(--text-color);
  font-weight: 400;
}
.footer-container .footer-links a {
  color: var(--text-color);
  text-decoration: none !important;
  list-style: none !important;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: column;
}
.footer-container .footer-links a:hover {
  color: var(--link-hover-color);
}
.footer-container .btn-footer {
  width: 150px;
  height: 40px;
  background-color: var(--btn-color);
  color: var(--btn-text-color);
  border: none;
  margin-top: 40px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.footer-container .btn-footer:hover {
  background-color: var(--btn-hover-color);
  border: 1px solid var(--btn-border-color);
  color: var(--btn-hover-text-color);
}
.footer-container .some-footer {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}
.footer-container .some-footer a {
  color: var(--some-color);
  text-decoration: none;
}
.footer-container .some-footer a:hover {
  color: var(--some-hover-color);
  transform: scale(1.4);
}

.scroll-logo-flower {
  position: absolute;
  top: -80px; /* Positions logo above the border */
  left: 50%;
  transform: translateX(-50%); /* Centers horizontally */
  z-index: 10; /* Ensures logo appears above other elements */
}
.scroll-logo-flower a {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.scroll-logo-flower a:hover {
  transform: scale(1.1);
}

.scroll-logo-img {
  width: 130px;
  height: 130px;
  animation: spin 9s linear infinite;
  max-width: 100%;
  margin-top: 0.6rem;
  cursor: pointer;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.made-by {
  margin-bottom: 20px;
  margin-top: 5px;
  font-size: 1rem;
  font-family: "bodoni Moda", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 10px;
}

.toggle-switch {
  position: relative;
  width: 110px;
  height: 15px;
  border-radius: 25px;
  border: 3px solid var(--gray-border);
  background-color: var(--bg-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.dark-mode {
  background-color: var(--bg-color);
  border-color: #3a3939;
}

.toggle-slider {
  position: absolute;
  /* top: 3px; */
  /* left: 3px; */
  /* width: 32px;
    height: 32px; */
  /* background-color: white; */
  /* border-radius: 50%; */
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.2); */
  overflow: visible;
}

.toggle-switch.dark-mode .toggle-slider {
  transform: translateX(71px);
}

.toggle-slider svg {
  width: 30px;
  height: 30px;
  position: relative;
  top: -14px;
  /* fill: #ff89be; */
  /* transition: fill 0.3s ease; */
  transform: scale(2);
}

.thank-you-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.thank-you-section h1 {
  font-family: "bodoni Moda", serif;
  font-size: 4rem;
  color: var(--text-color);
  font-weight: 400;
  text-align: center;
}
.thank-you-section .paragraph-24 {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  text-align: center;
  max-width: 600px;
}
.thank-you-section .logo-thank-you-page {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: none !important;
  transition: filter 0.3s ease;
}

body.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.thank-you-page main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-container-typ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-direction: row;
  width: 70%;
  max-width: 600px;
}
.cta-container-typ .signature {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 50px;
}
.cta-container-typ .back-home-link {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--text-color);
  line-height: normal;
  list-style: none;
  text-decoration: none;
  color: var(--link-color);
  white-space: nowrap;
}
.cta-container-typ .back-home-link:hover {
  color: var(--link-hover-color);
}

html[data-theme=dark] .logo-thank-you-page {
  filter: invert(1) !important;
}

html[data-theme=light] .logo-thank-you-page,
html:not([data-theme=dark]) .logo-thank-you-page {
  filter: none !important;
}

@media (min-width: 320px) and (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }
  .nav-container {
    justify-content: space-between;
    padding: 30px 15px 10px 15px;
  }
  .nav-container .toggle-container {
    margin-left: 0;
    margin-right: auto;
    order: 0;
  }
  .nav-container .burger-menu {
    order: 2;
    margin-left: auto;
  }
  .hero {
    margin: 20px;
  }
  .burger-menu {
    display: flex !important;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: opacity 0.3s ease;
    order: 2;
  }
  .burger-menu:focus {
    outline: 2px solid var(--mobile-outline);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .burger-menu.hidden {
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: var(--overlay-bg);
    z-index: 1000;
    transition: right 0.3s ease-in-out, background-color 0.8s ease 1s;
    padding: 80px 40px 40px 40px;
    overflow-y: auto;
  }
  .mobile-menu.active {
    right: 0;
    background-color: var(--bg-color);
  }
  .mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 20px;
    cursor: pointer;
    padding: 10px;
    color: var(--text-color);
  }
  .mobile-menu-close:focus {
    outline: 2px solid var(--mobile-outline);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .mobile-menu-close:hover {
    color: var(--link-hover-color);
  }
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50%;
    gap: 0;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
  }
  .mobile-menu-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "bodoni Moda", serif;
    padding: 15px 0;
    transition: all 0.3s ease;
  }
  .mobile-menu-links a:hover {
    color: var(--link-hover-color);
    padding-left: 10px;
    border-bottom: 1px solid var(--border-color);
  }
  .mobile-menu.active .mobile-menu-links {
    opacity: 1;
  }
  .some {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    justify-content: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    gap: 15px !important;
    background-color: var(--nav-bg) !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px var(--nav-shadow) !important;
    z-index: 900 !important;
  }
  .clickable-flower,
  .tooltip {
    display: none !important;
  }
  #flower {
    transform: none !important;
    animation: none !important;
    pointer-events: none !important;
    cursor: default !important;
  }
  .hero .grid,
  .gallery-grid,
  .first-section-about,
  .third-section-about div,
  .second-section-work,
  .service-one,
  .grid-two,
  .contact-form-section,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .grid-three {
    grid-template-columns: 1fr !important;
    gap: 20px 16px;
    margin: 50px 20px;
    justify-items: start;
    text-align: left;
  }
  .grid-three dd {
    margin-top: 0;
  }
  .grid-three dt {
    margin-top: 20px;
  }
  .first-section-about {
    margin: 20px 0 0 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .first-section-about h1 {
    margin: 20px;
  }
  .first-section-about p {
    margin: 20px;
  }
  .grid-flower-scroll {
    display: none !important;
  }
  .second-section-about {
    padding: 20px 10px;
  }
  .second-section-about p {
    margin: 20px;
    max-width: 100%;
    margin-left: 20px;
    text-align: left;
  }
  .third-section-about h2 {
    margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
  }
  .third-section-about h3 {
    margin: 20px;
    display: flex;
    text-align: left;
  }
  .third-section-about p {
    margin: 20px;
    max-width: 100%;
    margin-left: 20px;
    text-align: left;
  }
  .third-section-about div {
    margin: 10px 20px;
  }
  .third-section-about div img {
    display: flex;
    margin: 0 auto;
    width: 100%;
  }
  .review-section-about {
    margin: 0;
    padding: 50px 10px;
  }
  .review-section-about .review-card {
    flex: 0 0 100%;
  }
  .review-section-about .reviews-control {
    gap: 3px;
  }
  .review-section-about h4 {
    font-size: 2.5rem !important;
    margin: 20px 20px 35px 20px;
  }
  .fifth-section-about {
    grid-template-columns: 1fr !important;
    margin: 0;
  }
  .fifth-section-about div {
    align-items: flex-start;
  }
  .fifth-section-about h5 {
    margin: 20px;
    font-size: 2rem !important;
  }
  .fifth-section-about p {
    margin: 0 20px;
    max-width: 100%;
    margin-left: 20px;
    text-align: left;
  }
  .fifth-section-about img {
    width: 100%;
  }
  .fifth-section-about button {
    margin: 20px;
    width: 90%;
  }
  h1 {
    font-size: 2rem !important;
  }
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem !important;
  }
  h3 {
    font-size: 1.75rem !important;
  }
  h4 {
    font-size: 1.25rem !important;
  }
  h5 {
    font-size: 1.125rem !important;
  }
  p {
    font-size: 1.125rem !important;
  }
  .paragraph-22 {
    font-size: 1.125rem !important;
  }
  .paragraph-24 {
    font-size: 1.125rem !important;
  }
  .paragraph-28 {
    font-size: 1.125rem !important;
  }
  .footer-paragraph {
    font-size: 0.75rem !important;
  }
  .container-box-text {
    margin: 50px 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 150px 20px 20px 20px;
    padding: 40px 20px;
    text-align: center;
  }
  .footer-container .h1-4f,
  .footer-container .footer-heading {
    display: none !important;
  }
  .footer-container .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .footer-container .some-footer {
    justify-content: center;
  }
  .contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 50px 20px;
    padding: 50px 20px;
  }
  .contact-intro {
    text-align: center;
    margin-top: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .service-selection {
    flex-direction: column !important;
    gap: 15px;
  }
  .contact-title {
    position: static !important;
    margin-bottom: 30px;
  }
  .contact-form-content {
    margin-top: 30px;
  }
  .first-section-work {
    margin: 50px 20px 0 20px;
  }
  .second-section-work {
    margin: 50px 20px;
  }
  .first-section-services {
    margin: 50px 20px 0 20px;
  }
  .second-section-services {
    margin: 50px 20px;
  }
  .second-section-services .service-one {
    grid-template-columns: 1fr !important;
    margin-top: 10px;
  }
  .second-section-services .line {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .second-section-services h3 {
    margin-bottom: 0;
  }
  .second-section-services p {
    margin-top: 5px;
  }
  .second-section-services .price-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
  }
  .second-section-services .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }
  .second-section-services .price-item p {
    margin: 0;
  }
  .second-section-services .service-one.reverse-mobile img {
    order: -1;
  }
  .second-section-services .service-one.reverse-mobile > div {
    order: 0;
  }
  .service-container .btns-container {
    flex-direction: column;
    align-items: stretch;
  }
  .service-container .btns-container button {
    width: 100%;
  }
  .third-section-services {
    margin: 50px 20px;
  }
  .third-section-services .service-one {
    grid-template-columns: 1fr !important;
    margin-top: 10px;
  }
  .third-section-services .line {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .third-section-services h3 {
    margin-bottom: 0;
    font-size: 2rem !important;
  }
  .third-section-services p {
    margin-top: 5px;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-timeline::before {
    display: none;
  }
  .process-timeline .number-heading {
    margin-bottom: 12px;
  }
  .third-section-services .service-one.how-work-header {
    grid-template-columns: 1fr auto !important;
    align-items: center;
  }
  .faq-heading {
    margin: 50px 20px 20px 20px;
    font-size: 2rem !important;
  }
  .fourth-section-service {
    margin: 20px;
  }
  .fourth-section-service .faq-button {
    font-size: 1.25rem !important;
  }
  .fourth-section-service .faq-answer p {
    font-size: 1rem !important;
  }
  .grid-two {
    margin: 50px 20px;
  }
  .grid-two h2 {
    line-height: 1.3;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .lumiere-short .grid-two button {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .lumiere-deeper .grid-two {
    margin: 40px 20px;
  }
  .lumiere-deeper .grid-two h1 {
    margin-bottom: 10px;
  }
  .lumiere-deeper .grid-two h2,
  .lumiere-deeper .grid-two h3,
  .lumiere-deeper .grid-two h4 {
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .lumiere-deeper .grid-two p,
  .lumiere-deeper .grid-two ul,
  .lumiere-deeper .grid-two ol {
    margin-bottom: 20px;
  }
  .lumiere-deeper .grid-two ul,
  .lumiere-deeper .grid-two ol {
    margin-left: 20px;
    padding-left: 0;
    text-align: left;
    list-style-position: outside;
  }
  .lumiere-deeper .grid-two ul li,
  .lumiere-deeper .grid-two ol li {
    font-size: inherit;
  }
  .lumiere-deeper .grid-two img,
  .lumiere-deeper .grid-two video {
    margin-top: 20px;
    border-radius: 10px;
  }
  .lumiere-deeper .btns-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .lumiere-deeper .btns-container button {
    width: 100%;
    margin-top: 0;
  }
  .grid-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 50px 20px;
  }
  .grid-three dt {
    font-size: 1.25rem !important;
  }
  .grid-three dd {
    font-size: 1rem !important;
  }
}
.first-section-full-services {
  margin: 50px 20px 0 20px;
}
.first-section-full-services h1 {
  font-size: 2.5rem !important;
}
.first-section-full-services p {
  font-size: 1.125rem !important;
  max-width: 100%;
  margin-left: 0;
}
.first-section-full-services h2 {
  font-size: 2.3rem !important;
  margin-top: 40px;
}

.service-container {
  margin-bottom: 40px;
}
.service-container h3 {
  font-size: 2rem !important;
  margin-bottom: 30px;
}
.service-container p,
.service-container ul li {
  font-size: 1.125rem !important;
}

.thank-you-section {
  margin: 100px 40px;
}
.thank-you-section h1 {
  font-size: 2.5rem !important;
}
.thank-you-section .paragraph-24 {
  font-size: 1.125rem !important;
}

.cta-container-typ {
  width: 90%;
  max-width: none;
}

.service-btn {
  display: block;
  margin: 40px auto 0 auto;
}

.blog-h1 {
  margin: 50px 20px;
  font-size: 2rem !important;
}

@media (min-width: 1025px) {
  .burger-menu {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (min-width: 1501px) {
  .second-section-about,
  .review-section-about {
    border-radius: 20px;
  }
  .review-section-about {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .second-section-about {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .first-section-about img {
    border-radius: 0 0 20px 0;
  }
  .fifth-section-about img {
    border-radius: 20px 0 0 0;
  }
}/*# sourceMappingURL=style.css.map */