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

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Base Styles */
body {
  background: #f9fff3;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.6;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

/* ============================================================================
   LAYOUT SYSTEM - Based on NextJS Tailwind
   ============================================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1280px) {
  .container-wide {
    padding: 0 13rem;
  }
}

.container-full {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1920px) {
  .container-full {
    padding: 0;
  }
}

/* ============================================================================
   ANIMATION SYSTEM - Matching NextJS Motion
   ============================================================================ */

.animate-element {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.animate-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-image {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.animate-image.in-view {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Desktop image animations with horizontal movement */
@media (min-width: 1024px) {
  .animate-image {
    transform: translateX(-70px) translateY(0);
  }

  .animate-image--right {
    transform: translateX(70px) translateY(0);
  }

  .animate-image.in-view,
  .animate-image--right.in-view {
    transform: translateX(0) translateY(0);
  }
}

/* ============================================================================
   NAVIGATION SYSTEM
   ============================================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f2ffec;
  z-index: 10;
  transition: box-shadow 0.3s ease;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header__container {
    padding: 1.25rem 1rem;
  }
}

@media (min-width: 1280px) {
  .header__container {
    padding: 1.25rem 13rem;
  }
}

.header__logo {
  transition: opacity 0.45s ease;
}

.header__logo:hover {
  opacity: 0.4;
}

.header__nav {
  display: none;
  gap: 1.5rem;
  font-weight: 700;
  align-items: center;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-item {
  color: rgb(72, 77, 70);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__nav-item:hover {
  color: #8ec31f;
}

.header__contact-btn {
  width: 30px;
  height: 30px;
  background-color: #383838;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.45s ease;
}

.header__contact-btn:hover {
  background-color: #769d26;
}

.header__mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header__mobile {
    display: none;
  }
}

.header__mobile-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.header__mobile-btn:hover {
  opacity: 0.7;
}

.header__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f2ffec;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  flex-direction: column;
}

.header__mobile-menu--open {
  display: flex;
}

.header__mobile-menu li {
  padding: 0.5rem 0;
  width: 100%;
}

.header__mobile-menu a {
  display: block;
  width: 100%;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.header__mobile-menu a:hover {
  color: #8ec31f;
}

/* ============================================================================
   BANNER SECTION
   ============================================================================ */

.banner {
  position: relative;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .banner {
    margin-top: 80px;
  }
}

.banner__container {
  padding-bottom: 3rem;
  max-width: 1700px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1920px) {
  .banner__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background-color: #f2ffec;
  z-index: -1;
}

/* ============================================================================
   PRICE SECTION
   ============================================================================ */

.price {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
  height: 300px;
  padding: 0.5rem 0.25rem;
  background-image: url('../images/price.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}

@media (min-width: 640px) {
  .price {
    padding: 0.5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .price {
    height: 400px;
    padding: 0.5rem 0;
  }
}

.price__title {
  font-weight: 700;
  font-size: 20px;
  margin-top: 3rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .price__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.price__subtitle {
  font-weight: 900;
  margin-bottom: 2.5rem;
}

.price__subtitle span {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 0.25rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 1024px) {
  .price__subtitle span {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.price__options {
  display: flex;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .price__options {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .price__options {
    gap: 2.5rem;
  }
}

.price__option {
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .price__option {
    gap: 1.5rem;
  }
}

.price__service-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #99a692;
  color: white;
  width: 66px;
  height: 66px;
  gap: 0;
}

@media (min-width: 1024px) {
  .price__service-box {
    width: 160px;
    height: 160px;
    gap: 0.5rem;
  }
}

.price__service-box p:first-child {
  font-size: 10px;
}

@media (min-width: 1024px) {
  .price__service-box p:first-child {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.price__service-box p:nth-child(2) {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px) {
  .price__service-box p:nth-child(2) {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.price__service-box p:last-child {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5rem;
}

@media (min-width: 1024px) {
  .price__service-box p:last-child {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.price__details {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #99a692;
}

@media (min-width: 1024px) {
  .price__details {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.price__details p:first-child {
  color: #343332;
  margin-top: 0;
}

@media (min-width: 1024px) {
  .price__details p:first-child {
    margin-top: 0.75rem;
  }
}

.price__details p:nth-child(2) {
  padding: 0.25rem 0;
}

@media (min-width: 1024px) {
  .price__details p:nth-child(2) {
    padding: 0.75rem 0;
  }
}

.price__details p:last-child {
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .price__details p:last-child {
    font-size: 65px;
  }
}

/* ============================================================================
   CONCEPT SECTION - Matching NextJS exactly
   ============================================================================ */

.concept {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
  padding-top: 6rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .concept {
    flex-direction: row;
    padding-top: 9rem;
  }
}

@media (min-width: 1280px) {
  .concept {
    padding-left: 0;
    padding-right: 0;
  }
}

.concept__content {
  /* No flex properties on mobile, matches NextJS structure */
}

.concept__title {
  font-size: 32px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .concept__title {
    font-size: 50px;
  }
}

.concept__subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .concept__subtitle {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.concept__subtitle p + p {
  margin-top: 0.75rem;
}

.concept__description {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  line-height: 1.25rem;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .concept__description {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.concept__image-container {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .concept__image-container {
    width: 60%;
    justify-content: flex-end;
  }
}

/* ============================================================================
   SERVICE SECTION - Matching NextJS exactly
   ============================================================================ */

.service {
  position: relative;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1280px) {
  .service {
    padding-left: 0;
    padding-right: 0;
  }
}

.service__container {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.service__header {
  text-align: left;
  margin-bottom: 5rem;
  padding-right: 0;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .service__header {
    text-align: right;
    padding-right: 9rem;
  }
}

.service__title {
  font-size: 32px;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .service__title {
    font-size: 50px;
  }
}

.service__subtitle {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 1024px) {
  .service__subtitle {
    font-size: 20px;
  }
}

.service__items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .service__items {
    gap: 7rem;
  }
}

.service__item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  letter-spacing: 0.05em;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .service__item {
    flex-direction: row;
    gap: 9rem;
  }
}

.service__item--reverse {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  letter-spacing: 0.05em;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .service__item--reverse {
    flex-direction: row-reverse;
    gap: 9rem;
  }
}

.service__image-container {
  width: 95%;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .service__image-container {
    width: 525px;
    max-width: 525px;
  }
}

.service__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .service__content {
    text-align: left;
  }
}

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

@media (min-width: 1024px) {
  .service__content--right {
    text-align: left;
  }
}

.service__item-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .service__item-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.service__item-title--right {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .service__item-title--right {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: right;
  }
}

.service__item-title span,
.service__item-title--right span {
  border-bottom: 1px solid black;
}

.service__item-subtitle {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (min-width: 1024px) {
  .service__item-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.service__item-subtitle--right {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (min-width: 1024px) {
  .service__item-subtitle--right {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: right;
  }
}

.service__description {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 2;
}

@media (min-width: 1024px) {
  .service__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.service__description p + p {
  margin-top: 1.25rem;
}

.service__tags {
  margin-top: 0.75rem;
  text-align: left;
}

.service__tags div + div {
  margin-top: 0.5rem;
}

.service__tag {
  font-size: 0.75rem;
  color: white;
  background-color: #d1d9cc;
  padding: 0.25rem 6px;
  border-radius: 0.125rem;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
}

.service__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .service__footer {
    margin-top: 5rem;
  }
}

.service__footer-text {
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .service__footer-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.service__footer-btn {
  width: 350px;
  border: 1px solid black;
  padding: 0.5rem 2rem;
  font-weight: 700;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.45s ease;
}

.service__footer-btn:hover {
  background-color: #b7cd88;
}

.service__footer-btn img:last-child {
  position: absolute;
  right: 1rem;
}

.service__background {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 40%;
  height: 95%;
  background-color: #f2ffec;
  z-index: -1;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .service__background {
    left: auto;
    right: 0;
    width: 45%;
  }
}

/* ============================================================================
   STAFF SECTION
   ============================================================================ */

.staff {
  position: relative;
}

.staff__container {
  padding-top: 3rem;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .staff__container {
    padding-top: 6rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.staff__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: right;
  padding-right: 2rem;
  padding-left: 0;
}

@media (min-width: 1024px) {
  .staff__title {
    font-size: 50px;
    margin-bottom: 5rem;
    text-align: left;
    padding-left: 9rem;
    padding-right: 0;
  }
}

.staff__members {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 3rem;
}

@media (min-width: 1024px) {
  .staff__members {
    padding: 0;
  }
}

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

@media (min-width: 1024px) {
  .staff__member {
    flex-direction: row;
    gap: 6rem;
  }
}

.staff__member-photo {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staff__member-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .staff__member-name {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.staff__member-reading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 10px;
  padding-left: 0.5rem;
}

@media (min-width: 1024px) {
  .staff__member-reading {
    font-size: 0.75rem;
    line-height: 1rem;
    gap: 1.5rem;
    padding-left: 0;
  }
}

.staff__member-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .staff__member-info {
    font-size: 1rem;
  }
}

.staff__member-info span:first-child {
  font-weight: 700;
}

.staff__background {
  position: absolute;
  top: 0;
  width: 100%;
  height: 97%;
  background-color: #f2ffec;
  z-index: -1;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .staff__background {
    top: 3rem;
    height: 90%;
  }
}

/* ============================================================================
   Q&A SECTION
   ============================================================================ */

.qa {
  padding-top: 6rem;
}

.qa__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1024px) {
  .qa__container {
    padding: 0;
  }
}

.qa__title {
  font-size: 32px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .qa__title {
    font-size: 50px;
    text-align: center;
  }
}

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

.qa__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 1.5rem;
}

.qa__question {
  font-weight: 700;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .qa__question {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.qa__answer {
  color: #374151;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .qa__answer {
    font-size: 1rem;
  }
}

/* ============================================================================
   ACCESS SECTION
   ============================================================================ */

.access {
  padding: 3rem 0;
}

.access__container {
  max-width: 1920px;
  margin: 0 auto;
}

.access__title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .access__title {
    font-size: 50px;
  }
}

.access__map {
  margin-top: 2rem;
  width: 100%;
  aspect-ratio: 16/9;
  height: 400px;
}

@media (min-width: 1024px) {
  .access__map {
    height: 290px;
  }
}

.access__info {
  margin-top: 2rem;
  font-weight: 500;
  padding-left: 2rem;
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .access__info {
    margin-top: 0.5rem;
    padding-left: 30%;
    font-size: 1rem;
  }
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact {
  padding: 3rem 0;
  background-color: #f2ffec;
}

.contact__container {
  max-width: 400px;
  margin: 0 auto;
}

.contact__title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .contact__title {
    font-size: 50px;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .contact__form {
    gap: 1.5rem;
  }
}

.contact__field {
  padding: 0 2.5rem;
}

@media (min-width: 768px) {
  .contact__field {
    padding: 0;
  }
}

.contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 13px;
}

@media (min-width: 1024px) {
  .contact__label {
    font-size: 16px;
  }
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #e9eee5;
}

.contact__submit-area {
  width: 350px;
  margin: 0 auto;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .contact__submit-area {
    padding-top: 0;
  }
}

.contact__notice {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact__notice {
    margin-bottom: 0.25rem;
  }
}

.contact__submit-btn {
  width: 100%;
  border: 1px solid black;
  padding: 0.5rem 2rem;
  font-weight: 700;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.45s ease;
  cursor: pointer;
}

.contact__submit-btn:hover {
  background-color: #b7cd88;
}

.contact__submit-btn img {
  position: absolute;
  right: 1rem;
}

/* ============================================================================
   INTRO SECTION
   ============================================================================ */

.intro {
  position: relative;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1280px) {
  .intro {
    padding-left: 0;
    padding-right: 0;
  }
}

.intro__container {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.intro__header {
  margin-bottom: 2.5rem;
  padding-left: 0;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .intro__header {
    margin-bottom: 5rem;
    padding-left: 9rem;
  }
}

.intro__title {
  font-size: 32px;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .intro__title {
    font-size: 50px;
  }
}

.intro__subtitle {
  font-size: 0.875rem;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .intro__subtitle {
    font-size: 20px;
    max-width: 724px;
  }
}

.intro__items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .intro__items {
    gap: 7rem;
  }
}

.intro__item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  letter-spacing: 0.05em;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .intro__item {
    flex-direction: row;
    gap: 9rem;
    margin-right: 6rem;
  }
}

.intro__item--reverse {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  letter-spacing: 0.05em;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .intro__item--reverse {
    flex-direction: row-reverse;
    gap: 9rem;
    margin-left: 6rem;
  }
}

.intro__image-container {
  width: 95%;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .intro__image-container {
    width: 525px;
    max-width: 525px;
  }
}

.intro__content {
  text-align: center;
}

@media (min-width: 1024px) {
  .intro__content {
    text-align: left;
  }
}

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

@media (min-width: 1024px) {
  .intro__content--right {
    text-align: left;
  }
}

.intro__item-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .intro__item-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.intro__item-title--right {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .intro__item-title--right {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: right;
  }
}

.intro__item-title span,
.intro__item-title--right span {
  border-bottom: 1px solid black;
}

.intro__description {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .intro__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.intro__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 95%;
  background-color: #f2ffec;
  z-index: -1;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .intro__background {
    width: 45%;
  }
}

/* ============================================================================
   FOOTER SECTION
   ============================================================================ */

.footer {
  background-color: #282828;
  color: white;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .footer {
    padding: 1rem 0;
  }
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer__container {
    flex-direction: row;
    text-align: left;
  }
}

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

@media (min-width: 1024px) {
  .footer__info {
    gap: 0.5rem;
  }
}

.footer__address {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer__line-link {
  transition: transform 0.45s ease;
}

.footer__line-link:hover {
  transform: scale(0.75);
}

.footer__line-icon {
  cursor: pointer;
  width: 24px;
}

@media (min-width: 1024px) {
  .footer__line-icon {
    width: auto;
  }
}

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }
}
