/* =========================================================================
   AM-CY001-紫色轻奢 / Purple Luxury Massage
   Single-file stylesheet (BEM-ish, vanilla CSS)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand colors */
  --color-purple: #8c4dd9;          /* rgb(140,77,217) – primary brand */
  --color-purple-dark: #7240b3;     /* rgb(114,64,179) – secondary brand */

  /* Neutrals */
  --color-text: #212529;            /* rgb(33,37,41) – body text */
  --color-text-soft: #6c757d;       /* bootstrap text-secondary */
  --color-text-mute: #aaaaaa;       /* footer text */
  --color-heading-soft: #333333;    /* girlname / contact link */
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-contact: #e5e5e5;
  --color-bg-footer: #333333;

  /* Status colors */
  --color-ok: #009844;              /* rgb(0,152,68) */
  --color-no: #e70012;              /* rgb(231,0,18) */
  --color-coming: var(--color-purple-dark);

  /* Spacing & sizing */
  --container-max: 1140px;
  --container-pad: 15px;
  --nav-height: 66px;
  --radius-sm: 2px;
  --radius-pill: 25px;

  /* Typography sizes */
  --fs-h1-hero: 100px;
  --fs-h3-hero: 45px;
  --fs-h2-section: 42px;
  --fs-p-hero: 22px;
  --fs-p-info: 17px;
  --fs-girlname: 22px;
  --fs-footer: 14.4px;

  /* Font stacks */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans SC", "Noto Sans",
               "Liberation Sans", sans-serif;

  /* Transition */
  --t-default: 0.3s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  text-align: left;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5rem; font-weight: 500; line-height: 1.2; }
p { margin: 0 0 1rem; }
a { color: #007bff; text-decoration: underline; }
a:hover { color: #0056b3; }
img { vertical-align: middle; border-style: none; max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }
button { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; color: inherit; }

/* ---------- Utility (minimal Bootstrap-ish) ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--container-pad);
  padding-left: var(--container-pad);
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-md-4, .col-md-6, .col-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-secondary { color: var(--color-text-soft) !important; }
.text-decoration-none { text-decoration: none !important; }
.font-italic { font-style: italic !important; }
.font-weight-light { font-weight: 300 !important; }
.font-weight-bold { font-weight: 700 !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-5 { padding-top: 3rem !important; }
.section { padding-top: 75px; padding-bottom: 75px; }
.cy001color { color: var(--color-purple); }

@media (min-width: 576px) {
  .col-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .d-md-block { display: block !important; }
}
@media (max-width: 575.98px) {
  .col-6 { flex: 0 0 50%; max-width: 50%; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, .7);
  transition: background-color var(--t-default);
}
.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-right: 15px;
  padding-left: 15px;
}
.navbar-brand {
  display: inline-block;
  padding: 5px 0;
  margin-right: 16px;
  font-size: 20px;
  line-height: inherit;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}
.navbar-brand img { height: 40px; width: auto; display: block; }
.navbar-toggler {
  padding: 4px 12px;
  font-size: 20px;
  line-height: 1;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  cursor: pointer;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") center/100% 100% no-repeat;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { display: block; }
.nav-link {
  display: block;
  padding: 8px;
  color: #fff;
  text-decoration: none;
  transition: color var(--t-default);
}
.nav-link:hover,
.nav-link.active { color: var(--color-purple); }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-collapse:not(.show) {
  display: none;
}
.navbar-collapse.show {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .navbar-toggler { display: none; }
  .navbar-collapse,
  .navbar-collapse:not(.show) { display: flex !important; flex-basis: auto; justify-content: flex-end; }
  .navbar-nav { flex-direction: row; }
}

/* ============ HERO ============ */
.hero-section {
  background: url("../images/bg-hero.jpg") center center / cover no-repeat;
  text-align: center;
  padding: 230px 20px 100px;
  color: var(--color-white);
  min-height: 760px;
}
.hero-section h1 {
  font-size: var(--fs-h1-hero);
  font-weight: 700;
  color: var(--color-purple);
  margin: 0 0 8px;
  line-height: 1.2;
}
.hero-section h1 .hero-logo {
  max-width: 420px;
  width: 80%;
  height: auto;
  display: inline-block;
}
.hero-section h3 {
  font-size: var(--fs-h3-hero);
  font-weight: 300;
  font-style: italic;
  color: var(--color-white);
  margin: 10px 0 75px;
  line-height: 1.2;
}
.hero-section p {
  font-size: var(--fs-p-hero);
  font-weight: 300;
  color: var(--color-white);
  margin: 5px 0;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  .hero-section { min-height: 600px; padding-top: 180px; padding-bottom: 60px; }
  .hero-section h1 { font-size: 50px; }
  .hero-section h1 .hero-logo { max-width: 260px; }
  .hero-section h3 { font-size: 30px; margin-bottom: 40px; }
}

/* ============ INFO (NEWS) ============ */
.info-section {
  position: relative;
  min-height: 500px;
  color: var(--color-white);
  padding: 60px 20px;
  text-align: center;
  background: url("../images/bg-info.jpg") center center / cover no-repeat;
}
.info-section p {
  padding: 0 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 2;
  font-size: var(--fs-p-info);
  margin: 0;
  max-width: 850px;
  width: 100%;
}

/* ============ GIRLS (DIVAS) ============ */
.cy001h2 {
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 30px;
  font-size: var(--fs-h2-section);
  text-align: center;
  line-height: 1.2;
}
.girlsbox {
  padding-top: 110px;
}
.girlsbox a { display: block; }
.profile-photo { margin: auto; overflow: hidden; }
.profile-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  display: block;
}
.girlname {
  font-size: var(--fs-girlname);
  font-weight: 700;
  color: var(--color-heading-soft);
  margin: 16px 0 0;
}
.cy001box { text-align: center; }
.cy001box .text-secondary { display: block; line-height: 1.5; }

.isnow {
  box-sizing: border-box;
  height: 25px;
  padding: 0 17px 0 32px;
  text-align: center;
  line-height: 21px;
  border: 1px solid;
  border-radius: var(--radius-pill);
  display: inline-block;
  color: var(--color-heading-soft);
  font-size: 14px;
  letter-spacing: .5px;
  margin-top: 16px;
}
.isnow span {
  padding-top: 1px;
  position: relative;
  display: inline-block;
}
.isok { border-color: var(--color-ok); }
.isok span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -27px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--color-ok);
}
.isno { border-color: var(--color-no); }
.isno span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -27px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--color-no);
}
.iscoming { border-color: var(--color-coming); }
.iscoming span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -27px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--color-coming);
}

/* ============ ABOUT ============ */
.about-section {
  position: relative;
  min-height: 500px;
  color: var(--color-white);
  padding: 0 20px;
  text-align: center;
  background: url("../images/bg-about.jpg") center center / cover no-repeat;
}
.about-section .aboutbox {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-section h2 {
  color: var(--color-purple);
  margin-bottom: 20px;
}
.about-section p {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  font-size: var(--fs-p-info);
}
@media (max-width: 575.98px) {
  .about-section p { width: 100%; }
}

/* ============ DAILY STAR (cy001-1) ============ */
#star { padding-top: 75px; padding-bottom: 75px; }
.cy001-1 {
  max-width: 600px;
  padding: 50px 0 70px;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.cy001-1::after {
  max-width: 450px;
  width: 100%;
  bottom: 0;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  content: "";
  border: 2px solid var(--color-purple-dark);
  display: block;
  z-index: -1;
}
.cy001-1 .swiper-viewport {
  overflow: hidden;
  position: relative;
}
.cy001-1 .swiper-track {
  display: flex;
  transition: transform .5s ease;
}
.cy001-1 .swiper-slide {
  flex: 0 0 100%;
  text-align: center;
}
.cy001-1 .swiper-slide img {
  width: 100%;
  max-width: 380px;
  height: auto;
  padding: 0 15px;
  display: block;
  margin: 0 auto;
}
.cy001-1 .girlname { margin-top: 16px; }
.cy001-1 .text-secondary { display: block; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 10;
}
.cy001-1 .swiper-pagination { bottom: 30px; }
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 0;
  background: rgb(50, 50, 50);
  margin: 0 4px;
  cursor: pointer;
  opacity: 1;
  transition: background var(--t-default);
}
.swiper-pagination-bullet-active { background: var(--color-purple-dark); }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple-dark);
  background: none;
  border: 0;
  transition: opacity var(--t-default);
}
.swiper-button-prev { left: 10px; }
.swiper-button-next { right: 10px; }
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}
.swiper-button-prev::after { transform: rotate(-135deg); margin-left: 6px; }
.swiper-button-next::after { transform: rotate(45deg); margin-right: 6px; }
.swiper-button-prev.is-disabled,
.swiper-button-next.is-disabled { opacity: .35; pointer-events: none; }
.swiper-button-prev.is-hidden,
.swiper-button-next.is-hidden { display: none; }

@media (max-width: 767.98px) {
  .swiper-button-prev,
  .swiper-button-next { display: none; }
}

/* ============ RESTING / OTHERS (cy001-2) ============ */
.others { padding-top: 75px; padding-bottom: 75px; }
.cy001-2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.cy001-2 .swiper-track {
  display: flex;
  transition: transform .6s ease;
  will-change: transform;
}
.cy001-2 .swiper-slide {
  flex: 0 0 auto;
  width: 330px;
  margin-right: 40px;
  padding: 0 20px;
}
.cy001-2 .swiper-slide a {
  display: block;
  cursor: pointer;
}
.cy001-2 .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .cy001-2 .swiper-slide { width: 280px; margin-right: 16px; padding: 0 8px; }
}

/* ============ CONTACT ============ */
.contactbox {
  padding: 60px 20px;
  background-color: var(--color-bg-contact);
}
.contactbox h2 {
  position: relative;
  margin-bottom: 90px;
  color: var(--color-purple);
  text-align: left;
}
.contactbox h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-purple);
  left: 2px;
  top: 70px;
}
.contactbox p,
.contactbox a { font-size: 17px; font-weight: 600; color: var(--color-text); margin-bottom: 16px; }
.contactbox a { color: var(--color-heading-soft); transition: color var(--t-default); }
.contactbox a:not(.telbtn):hover { color: var(--color-purple); }
.contactbox .btnbox {
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.contactbox .telbtn {
  margin-top: 20px;
  display: block;
  width: 100%;
  padding: 10px 30px;
  background-color: var(--color-purple);
  color: var(--color-white) !important;
  font-weight: 700;
  max-width: 320px;
  text-align: center;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  transition: background-color var(--t-default), transform var(--t-default);
}
.contactbox .telbtn:hover {
  background-color: var(--color-purple-dark);
  color: var(--color-white) !important;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .contactbox .btnbox { padding-top: 16px; align-items: stretch; }
  .contactbox .telbtn { max-width: 100%; }
}

/* ============ INNER PAGE BANNER & CONTENT ============ */
.page-banner {
  position: relative;
  min-height: 360px;
  padding: 200px 20px 60px;
  background: url("../images/bg-hero.jpg") center center / cover no-repeat;
  text-align: center;
  color: var(--color-white);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .55);
  z-index: 0;
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-purple);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: 2px;
}
.page-banner p {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  color: var(--color-white);
  letter-spacing: 1px;
}
@media (max-width: 575.98px) {
  .page-banner { min-height: 280px; padding-top: 140px; padding-bottom: 40px; }
  .page-banner h1 { font-size: 36px; }
  .page-banner p { font-size: 15px; }
}

.page-section {
  padding: 80px 20px;
  background-color: var(--color-bg);
}
.page-section .container { max-width: 960px; }
.page-section h2.cy001h2 { text-align: left; margin-bottom: 36px; position: relative; padding-bottom: 16px; }
.page-section h2.cy001h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-purple);
  left: 0;
  bottom: 0;
}
.page-section h3 {
  color: var(--color-purple-dark);
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.page-section p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text);
  margin: 0 0 16px;
}
.page-section ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.page-section ul.feature-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 16px;
  line-height: 1.7;
}
.page-section ul.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-purple);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  background-color: #fafafa;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--t-default), box-shadow var(--t-default), border-color var(--t-default);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(140, 77, 217, .15);
  border-color: var(--color-purple);
}
.contact-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card .icon svg { width: 26px; height: 26px; fill: currentColor; }
.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading-soft);
  margin: 0 0 8px;
}
.contact-card a,
.contact-card p {
  display: block;
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}
.contact-card a:hover { color: var(--color-purple); }

/* ============ FLOATING SIDEBAR (Book / Call) ============ */
.float-actions {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1040;
}
.float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-purple);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(140, 77, 217, .35);
  cursor: pointer;
  border: 0;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .5px;
  transition: transform var(--t-default), background-color var(--t-default), box-shadow var(--t-default);
}
.float-btn:hover {
  transform: translateY(-3px);
  background-color: var(--color-purple-dark);
  box-shadow: 0 10px 24px rgba(114, 64, 179, .45);
  color: var(--color-white);
  text-decoration: none;
}
.float-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-bottom: 2px;
}
.float-btn .label { display: block; }

@media (max-width: 575.98px) {
  .float-actions { right: 12px; gap: 10px; bottom: 24px; top: auto; transform: none; }
  .float-btn { width: 54px; height: 54px; font-size: 10px; }
  .float-btn svg { width: 18px; height: 18px; }
}

/* ============ BOOKING MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--t-default);
}
.modal-overlay.is-open { display: flex; opacity: 1; }
.modal {
  background-color: var(--color-white);
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--t-default);
}
.modal-overlay.is-open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-text-soft);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-default), color var(--t-default);
}
.modal-close:hover { background-color: #f3f3f3; color: var(--color-purple); }
.modal h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-purple);
  margin: 0 0 8px;
  text-align: center;
}
.modal .subtitle {
  font-size: 14px;
  color: var(--color-text-soft);
  text-align: center;
  margin: 0 0 24px;
}
.modal form { display: flex; flex-direction: column; gap: 14px; }
.modal label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading-soft);
  margin-bottom: 4px;
}
.modal input,
.modal select,
.modal textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background-color: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  transition: border-color var(--t-default), background-color var(--t-default);
}
.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  outline: 0;
  border-color: var(--color-purple);
  background-color: #fff;
}
.modal textarea { resize: vertical; min-height: 72px; }
.modal .submit-btn {
  margin-top: 8px;
  padding: 12px 24px;
  background-color: var(--color-purple);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 1px;
  border: 0;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color var(--t-default);
}
.modal .submit-btn:hover { background-color: var(--color-purple-dark); }

body.modal-open { overflow: hidden; }

/* ============ FOOTER ============ */
footer.section {
  padding-top: 110px;
  padding-bottom: 48px;
  background-color: var(--color-bg-footer);
  color: var(--color-text-mute);
  text-align: center;
  font-size: var(--fs-footer);
  line-height: 1.5;
}
footer img {
  display: block;
  margin: 0 auto 48px;
  width: 220px;
  height: auto;
}
.afterbox {
  padding-top: 8px;
  margin-bottom: 48px;
  text-align: center;
}
.afterbox a {
  color: var(--color-white);
  margin: 0 10px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: color var(--t-default);
}
.afterbox a:not(:first-child)::before {
  content: "|";
  color: var(--color-white);
  position: absolute;
  left: -15px;
  top: -1px;
  pointer-events: none;
}
.afterbox a:hover { color: var(--color-purple); }

footer .pt-5 p { margin: 0 0 16px; }

/* ---------- Adjustments for taller bodies ---------- */
@media (max-width: 575.98px) {
  .girlsbox { padding-top: 60px; }
  footer.section { padding-top: 60px; }
  .cy001h2 { font-size: 32px; }
  .contactbox h2 { margin-bottom: 60px; }
  .contactbox h2::after { top: 50px; }
}
