/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --awb-color1: #ffffff;
  --awb-color2: #f9f9fb;
  --awb-color3: #b8e3e9;
  --awb-color4: #65bd7d;
  --awb-color5: #198fd9;
  --awb-color6: #434549;
  --awb-color7: #212326;
  --awb-color8: #050554;
  --body-font: 'NTR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --max-w: 1040px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--awb-color8);
  background: var(--awb-color1);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--awb-color5); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--awb-color8);
  line-height: 1;
}

h1 { font-size: 3.5em; }
h2 { font-size: 3em; margin: 0; }
h3 { font-size: 2.1em; margin: 0; }
h4 { font-size: 1.4em; margin: 0; line-height: 1; }

/* ===== HERO SECTION ===== */
.hero-section {
  background-image:
    linear-gradient(180deg, rgba(184,227,233,0.74) 6%, var(--awb-color1) 100%),
    url(images/books-image-copy-scaled.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  padding-top: 75px;
  padding-bottom: 0;
  margin-bottom: 33px;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-image-wrap {
  text-align: right;
  max-width: 600px;
  margin-left: auto;
}

.hero-image-wrap img {
  max-width: 100%;
  height: auto;
}

.hero-title-bar {
  background: linear-gradient(88deg, var(--awb-color3) 60%, rgba(255,255,255,0.8) 91%);
  background-size: cover;
  border-radius: 0 50px 50px 0;
  padding: 25px;
  margin-top: -200px;
  position: relative;
  z-index: 10;
  width: 80%;
  overflow: hidden;
}

.hero-h1 {
  font-size: 70px;
  line-height: 1;
  margin: 0;
}

.hero-h2 {
  font-size: 40px;
  line-height: 1;
  margin: 0;
}

/* ===== SPLIT SECTIONS (About, Menu, Hours, Contact) ===== */
.split-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.split-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split-left {
  width: 50%;
  padding: 15px;
  background-color: var(--awb-color3);
}

.split-left h2 {
  font-size: 60px;
  line-height: 1;
  margin: 0;
}

.sticky-left {
  position: sticky;
  top: 30%;
}

.sticky-menu,
.sticky-hours,
.sticky-contact {
  top: 43%;
}

.split-right {
  width: 50%;
  padding-left: 25px;
  border-left: 4px solid var(--awb-color3);
}

.bordered-left {
  /* already set above */
}

/* ===== MENU SECTION ===== */
.menu-section {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.89) 0%, rgba(255,255,255,0.89) 100%),
    url(images/client-on-massage-table.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.menu-section .split-right {
  padding-left: 25px;
}

.price-format {
  margin-bottom: 0.5em;
}

.sep {
  border: none;
  border-top: 1px solid var(--awb-color3);
  margin: 10px 0;
}

.service-item {
  margin-bottom: 20px;
}

.service-item h4 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 5px;
}

.service-item .price {
  margin-bottom: 5px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.gallery-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-title {
  font-size: 60px;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HOURS SECTION ===== */
.hours-text {
  font-size: 1.3em;
  line-height: 1.5;
}

/* ===== CONTACT SECTION ===== */
.contact-right {
  padding: 20px 25px;
  background-color: var(--awb-color3);
  border-left-color: var(--awb-color3);
}

.contact-right p {
  margin-left: 0;
}

.contact-form {
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  font-family: var(--body-font);
  font-size: 1em;
  color: var(--awb-color8);
  background: var(--awb-color1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--awb-color5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--awb-color6);
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--awb-color7);
  color: var(--awb-color1);
  font-family: var(--body-font);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: var(--awb-color8);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form notices */
.notice {
  padding: 14px 20px;
  margin-bottom: 10px;
  font-size: 0.9em;
  border-radius: 0;
}

.notice.success {
  background: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

.notice.error {
  background: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

.form-status {
  margin: 0 0 10px;
  padding: 14px 20px;
  font-size: 0.9em;
}

.form-status.success {
  background: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}

.form-status.error {
  background: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--awb-color3);
  padding: 15px 0;
  text-align: center;
  font-size: 1em;
  margin-top: 4px;
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

#lightbox button {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 640px) {
  .hero-title-bar {
    margin-top: -85px;
    width: 100%;
    border-radius: 0;
  }

  .hero-h1 {
    font-size: 46px;
  }

  .hero-h2 {
    font-size: 28px;
  }

  .split-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-container {
    padding: 0 16px;
  }

  .split-inner {
    flex-direction: column;
  }

  .split-left {
    width: 100%;
    position: static;
  }

  .split-right {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-top: 25px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-title {
    font-size: 40px;
  }

  .split-left h2 {
    font-size: 40px;
  }

  .contact-right {
    padding-left: 0;
  }

  .contact-right p {
    margin-left: 15px;
  }

  .contact-form {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (min-width: 641px) and (max-width: 1024px) {
  .hero-h1 {
    font-size: 50px;
  }
}
