:root {
  --ink: #17211d;
  --muted: #5f6961;
  --deep: #4a2430;
  --green: #5f7f72;
  --sage: #dce8df;
  --rose: #c7727c;
  --clay: #8b565d;
  --gold: #b99a65;
  --cream: #fffaf4;
  --blush: #f8e7e3;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(23, 33, 29, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
}

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

.section-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 1.7rem;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 1rem), var(--max));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.55rem 0.55rem clamp(14rem, 24vw, 19rem);
  color: var(--white);
  background: transparent;
  border: 0;
  transform: translateX(-50%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(74, 36, 48, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(5, 19, 17, 0.24);
  backdrop-filter: blur(18px);
  pointer-events: none;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled::before {
  background: rgba(74, 36, 48, 0.96);
  box-shadow: 0 16px 44px rgba(5, 19, 17, 0.28);
}

.brand {
  position: absolute;
  top: -1.05rem;
  left: 0.75rem;
  z-index: 2;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: clamp(210px, 22vw, 270px);
  height: auto;
  padding: 0.35rem;
  background: rgba(255, 250, 244, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(4, 15, 13, 0.22);
}

.desktop-nav {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a,
.header-cta {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.header-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.header-cta {
  color: var(--deep);
  background: var(--white);
  font-weight: 800;
}

.header-cta:hover {
  background: var(--blush);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #fff2ee;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 241, 239, 0.92) 44%, rgba(255, 241, 239, 0.42) 68%, rgba(74, 36, 48, 0.1) 100%),
    url("../images/hero-kim-wellness.jpg");
  background-position: center center, right 42% top 40px;
  background-repeat: no-repeat;
  background-size: cover, auto 116%;
  transform: scale(1.03);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 1;
  background: repeating-linear-gradient(
    118deg,
    transparent 0 150px,
    rgba(199, 114, 124, 0.09) 151px 154px,
    transparent 155px 285px
  );
  opacity: 0.42;
  animation: ribbonMove 20s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 24%;
  background: linear-gradient(0deg, rgba(255, 250, 244, 0.74), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 8.75rem;
  padding-bottom: 4.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--deep);
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 0.96;
}

.hero-copy {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: #4f3c3e;
  font-size: 1.12rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 620px;
  margin-top: 1.8rem;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.05rem;
  border: 0;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 950;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--deep);
  background: var(--blush);
  box-shadow: 0 14px 34px rgba(199, 114, 124, 0.34);
}

.btn-primary span {
  color: var(--white);
  background: var(--green);
}

.btn-light {
  color: var(--deep);
  background: var(--white);
}

.btn-light span {
  color: var(--white);
  background: var(--rose);
}

.btn-ghost {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(74, 36, 48, 0.18);
}

.btn-ghost span {
  color: var(--deep);
  background: var(--sage);
}

.btn-dark {
  color: var(--white);
  background: var(--deep);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1.35rem;
  color: #5e4b4c;
  font-size: 0.92rem;
}

.hero-points span {
  position: relative;
  padding-left: 1rem;
}

.hero-points span::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  width: 44px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 36, 48, 0.3);
  border-radius: 999px;
}

.scroll-indicator span {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--deep);
  border-bottom: 2px solid var(--deep);
  transform: rotate(45deg);
  animation: scrollPulse 1.35s ease-in-out infinite;
}

.intro-strip {
  color: var(--cream);
  background: var(--deep);
}

.intro-strip-inner {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
}

.intro-strip p,
.intro-strip a {
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.intro-strip p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.section {
  padding: 4.5rem 0;
}

.about-section {
  background: var(--cream);
}

.split-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2,
.offer-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.08;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.offer-card p {
  max-width: 720px;
  color: var(--muted);
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-photo figcaption,
.price-sheet figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-section {
  background: linear-gradient(180deg, var(--blush), var(--cream));
}

.section-heading {
  margin-bottom: 2rem;
}

.price-grid,
.trust-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.price-card,
.trust-card {
  min-height: 260px;
  padding: 1.2rem;
  border: 1px solid rgba(18, 59, 53, 0.12);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(23, 33, 29, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.price-card:hover,
.trust-card:hover {
  border-color: rgba(39, 103, 93, 0.28);
  box-shadow: 0 20px 50px rgba(23, 33, 29, 0.14);
  transform: translateY(-5px);
}

.price-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--rose);
  border-radius: var(--radius);
  font-weight: 900;
}

.price-card h3,
.trust-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  line-height: 1.22;
}

.price-card p,
.trust-card p {
  color: var(--muted);
}

.duration {
  margin: 0.2rem 0 0.7rem;
  color: var(--clay) !important;
  font-weight: 850;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.price-row strong {
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.price-sheet {
  max-width: 850px;
  margin: 2rem auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-sheet img {
  width: 100%;
}

.trust-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 59, 53, 0.98), rgba(23, 33, 29, 0.94)),
    linear-gradient(118deg, rgba(185, 154, 101, 0.24), transparent 42%, rgba(199, 114, 124, 0.18));
}

.trust-section .section-heading p,
.trust-section .section-heading h2,
.trust-section .trust-card p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-card {
  min-height: 180px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--gold);
  box-shadow: none;
}

.gallery-section {
  background: var(--cream);
}

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 14px 38px rgba(23, 33, 29, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 360ms ease, opacity 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.82;
}

.gallery-item span {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(18, 59, 53, 0.82);
  backdrop-filter: blur(12px);
  font-weight: 850;
  line-height: 1.2;
}

.contact-section {
  background: linear-gradient(180deg, var(--sage), var(--cream));
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-list a {
  display: grid;
  gap: 0.2rem;
  min-height: 64px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 59, 53, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-list a:hover {
  border-color: rgba(39, 103, 93, 0.38);
  transform: translateX(4px);
}

.contact-list strong {
  color: var(--deep);
}

.contact-list span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.availability {
  margin-top: 1rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(18, 59, 53, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--deep);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid rgba(18, 59, 53, 0.18);
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.map-wrap {
  height: 380px;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(18, 59, 53, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.owner-offer {
  background: var(--deep);
}

.offer-card {
  max-width: 820px;
  margin-inline: auto;
  padding: 1.4rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.13), rgba(255, 255, 255, 0.04)),
    var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(4, 15, 13, 0.28);
}

.offer-card p,
.offer-card li {
  color: rgba(255, 255, 255, 0.82);
}

.offer-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1.1rem 0 1.4rem;
  padding-left: 1.2rem;
}

.offer-card .btn {
  width: 100%;
  background: var(--gold);
}

.site-footer {
  padding: 2rem 0 6rem;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-inner strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.footer-inner p {
  margin: 0.25rem 0 0;
}

.footer-inner a {
  display: block;
  width: fit-content;
  margin-bottom: 0.35rem;
  color: inherit;
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--white);
}

.powered {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  margin-top: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-align: center;
}

.powered a {
  display: inline-flex;
  width: auto;
  margin: 0;
  color: inherit;
}

.powered a:hover {
  color: var(--white);
}

.mobile-cta-logo {
  display: none;
}

.mobile-cta {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.5rem;
  background: rgba(74, 36, 48, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(5, 19, 17, 0.34);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  min-height: 58px;
  display: grid;
  place-items: center;
  gap: 0.15rem;
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 850;
}

.mobile-cta span {
  color: var(--gold);
  font-size: 0.68rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 19, 17, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 84svh;
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  color: var(--deep);
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  font-weight: 850;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 0, 0);
  }
}

@keyframes ribbonMove {
  from {
    transform: translate3d(-3%, -2%, 0);
  }
  to {
    transform: translate3d(3%, 2%, 0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 225px;
  }

  .site-header {
    top: 1.7rem;
    min-height: 62px;
    padding-left: 11.85rem;
  }

  .header-cta {
    padding-inline: 0.75rem;
  }

  .mobile-cta-logo {
    position: fixed;
    left: 50%;
    bottom: 6.35rem;
    z-index: 61;
    display: block;
    width: min(70vw, 250px);
    padding: 0.3rem;
    background: rgba(255, 250, 244, 0.97);
    border: 1px solid rgba(74, 36, 48, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 16px 44px rgba(5, 19, 17, 0.28);
    transform: translateX(-50%);
  }

  .mobile-cta-logo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 184px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(255, 250, 244, 0.99) 0%, rgba(255, 244, 241, 0.96) 58%, rgba(255, 244, 241, 0.62) 100%),
      url("../images/hero-kim-wellness.jpg");
    background-position: center center, right -105px top 0;
    background-size: cover, auto 108%;
  }

  .hero-inner {
    padding-top: 8.8rem;
    padding-bottom: 1.35rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    margin-top: 0.9rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .hero-actions .btn {
    min-height: 72px;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.55rem 0.35rem;
    font-size: 0.74rem;
  }

  .hero-actions .btn span {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 0.56rem;
  }

  .hero-points {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.8rem;
    font-size: 0.8rem;
  }

  .hero-points span::before {
    top: 0.55rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .offer-card h2 {
    font-size: 1.9rem;
  }
}

@media (min-width: 560px) {
  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-strip-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

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

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

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-copy {
    font-size: 1.22rem;
  }

  .section {
    padding: 6rem 0;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 3.5rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .offer-card h2 {
    font-size: 3rem;
  }

  .contact-layout {
    align-items: start;
  }

  .offer-card {
    padding: 2rem;
  }

  .offer-card .btn {
    width: fit-content;
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .price-grid,
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1160px) {
  .hero h1 {
    font-size: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
