:root {
  --nara: #7B68C8;
  --nara-soft: #EAE7F8;
  --nara-dark: #5A4CAB;
  --nara-hover: #6A58B8;
  --white: #FFFFFF;
  --cold: #F5F4F7;
  --graphite: #2D2D2D;
  --ink: #1A1A1A;
  --muted: #7A7A8A;
  --border: rgba(26, 26, 26, 0.1);
  --teal: #3D7A72;
  --lime: #7FA83C;
  --orange: #E07D3C;
  --wa: #25D366;
  --wa-hover: #1DB954;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 24px 70px rgba(27, 23, 49, 0.12);
  --shadow-card: 0 16px 40px rgba(27, 23, 49, 0.09);
  --max: 1180px;
  --font-title: "Lora", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 104, 200, 0.13), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(61, 122, 114, 0.11), transparent 28%),
    linear-gradient(180deg, #fff 0%, #faf9fc 42%, #fff 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.site-header.scrolled {
  box-shadow: 0 16px 36px rgba(35, 28, 67, 0.08);
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--border);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 16px;
  height: 16px;
  display: inline-flex;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 12%, transparent 13%),
    linear-gradient(135deg, var(--nara), var(--teal));
  box-shadow: 0 0 0 8px rgba(123, 104, 200, 0.11);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: var(--font-title);
  font-size: 0.892rem;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #555260;
  font-size: 0.79rem;
}

.nav-link {
  position: relative;
  padding: 7px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--nara);
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--nara);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(123, 104, 200, 0.24);
}

.btn-primary:hover {
  background: var(--nara-hover);
}

.btn-outline {
  border-color: rgba(90, 76, 171, 0.22);
  color: var(--nara-dark);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  border-color: var(--nara);
  background: var(--nara-soft);
}

.btn-wa {
  background: var(--wa);
  color: #073b1b;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
  background: var(--wa-hover);
}

.btn-full {
  width: 100%;
  color: var(--white);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.hero {
  min-height: 100vh;
  width: min(1280px, calc(100% - 40px));
  padding-top: 118px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: center;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nara-dark);
  background: rgba(234, 231, 248, 0.92);
  border: 1px solid rgba(123, 104, 200, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 0.78rem;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 rgba(127, 168, 60, 0.55);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127, 168, 60, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(127, 168, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 168, 60, 0); }
}

.hero-title,
.section-head h2,
.feature-text h2,
.booking-copy h2,
.contact h2 {
  font-family: var(--font-title);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.hero-title {
  margin: 20px 0 18px;
  font-size: clamp(2.15rem, 4.35vw, 4rem);
  max-width: 720px;
}

.hero-title span {
  color: var(--nara);
}

.hero-desc {
  max-width: 640px;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  color: #565260;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 10px;
  max-width: 650px;
}

.hero-stats div {
  padding: 18px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(35, 28, 67, 0.05);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-title);
  color: var(--nara-dark);
  font-size: 1.147rem;
  line-height: 1.1;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 5px;
}

.hero-gallery {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--nara-soft);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 4.5s ease;
}

.hero-image-wrap img.fade {
  opacity: 0;
}

.gallery-counter {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  color: var(--white);
  background: rgba(26, 26, 26, 0.42);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-thumbs {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.thumb {
  padding: 0;
  height: 74px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  overflow: hidden;
  background: none;
  opacity: 0.78;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.thumb:hover,
.thumb.active {
  transform: translateY(-3px);
  opacity: 1;
  border-color: var(--white);
}

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

.reveal-1,
.reveal-2,
.reveal-3,
.reveal-4,
.reveal-5 {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 0.7s ease forwards;
}

.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.22s; }
.reveal-3 { animation-delay: 0.34s; }
.reveal-4 { animation-delay: 0.46s; }
.reveal-5 { animation-delay: 0.58s; }

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marquee {
  overflow: hidden;
  background: var(--nara-dark);
  color: rgba(255, 255, 255, 0.92);
  padding: 18px 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  padding-right: 18px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-head {
  max-width: 780px;
  margin: 0 0 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.light,
.section-head.light h2 {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--nara);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2,
.feature-text h2,
.booking-copy h2,
.contact h2 {
  margin: 0 0 16px;
  font-size: clamp(1.87rem, 3.4vw, 3.612rem);
}

.section-head p,
.feature-text > p,
.booking-copy > p,
.contact p {
  color: #625e69;
  font-size: 0.909rem;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.gs-img {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gs-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.gs-large {
  grid-row: span 2;
}

.gs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gs-img:hover img {
  transform: scale(1.045);
}

.section-soft {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: rgba(245, 244, 247, 0.82);
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 50px;
  align-items: start;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.char-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(35, 28, 67, 0.04);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.22s ease, border-color 0.22s ease;
}

.char-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.char-item:hover {
  background: var(--nara-soft);
  border-color: rgba(123, 104, 200, 0.35);
  transform: translateY(-3px);
}

.char-item span {
  font-size: 1.488rem;
}

.char-item h3,
.highlight h3,
.srv-card h3,
.price-card h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.char-item p,
.highlight p,
.srv-card p,
.price-card p {
  margin: 0;
  color: #66616e;
}

.feature-text {
  position: sticky;
  top: 110px;
}

.highlight {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--nara-soft);
  border: 1px solid rgba(123, 104, 200, 0.15);
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.14), transparent 30%),
    linear-gradient(135deg, var(--nara-dark), #40368c);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.srv-card {
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s ease;
}

.srv-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.srv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.17);
}

.srv-card span {
  font-size: 1.87rem;
}

.srv-card h3,
.srv-card p {
  color: var(--white);
}

.srv-card p {
  opacity: 0.78;
}

.use-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.use-tag {
  --tag-bg: var(--nara-soft);
  --tag-color: var(--nara-dark);
  --tag-border: rgba(123, 104, 200, 0.22);

  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--tag-border);
  padding: 9px 16px;
  background: var(--tag-bg);
  color: var(--tag-color);
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 8px 20px rgba(35, 28, 67, 0.04);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.use-tag:nth-child(4n + 1) {
  --tag-bg: #EAE7F8;
  --tag-color: #5A4CAB;
  --tag-border: rgba(123, 104, 200, 0.28);
}

.use-tag:nth-child(4n + 2) {
  --tag-bg: rgba(61, 122, 114, 0.13);
  --tag-color: #2F665F;
  --tag-border: rgba(61, 122, 114, 0.28);
}

.use-tag:nth-child(4n + 3) {
  --tag-bg: rgba(127, 168, 60, 0.15);
  --tag-color: #5F7F2D;
  --tag-border: rgba(127, 168, 60, 0.3);
}

.use-tag:nth-child(4n + 4) {
  --tag-bg: rgba(224, 125, 60, 0.14);
  --tag-color: #A75322;
  --tag-border: rgba(224, 125, 60, 0.3);
}

.use-tag.visible {
  opacity: 1;
  transform: translateY(0);
}

.use-tag:hover {
  background: var(--white);
  border-color: currentColor;
  color: var(--tag-color);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(35, 28, 67, 0.08);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-kicker {
  margin: 0 0 12px;
  color: var(--nara);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

.price-card h3 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1;
  margin: 0 0 12px;
}

.price-card h3 span {
  color: var(--nara-dark);
}

.price-note {
  color: var(--muted) !important;
  font-weight: 700;
  margin-bottom: 18px !important;
}

.price-card .btn {
  margin-top: 24px;
}

.slot-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.slot-list button {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cold);
  padding: 15px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slot-list button:hover {
  transform: translateX(4px);
  background: var(--nara-soft);
  border-color: rgba(123, 104, 200, 0.35);
}

.slot-list strong {
  color: var(--nara-dark);
  font-family: var(--font-title);
  font-size: 1.19rem;
}

.slot-list em {
  display: inline-flex;
  margin-left: 8px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  padding: 4px 8px;
}

.tax-note {
  color: var(--muted);
  margin: 20px 0 0;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  gap: 54px;
  align-items: center;
  width: 100%;
  padding: 112px max(20px, calc((100% - var(--max)) / 2));
  background:
    radial-gradient(circle at 80% 10%, rgba(123, 104, 200, 0.28), transparent 30%),
    linear-gradient(135deg, #1A1A1A, #2A2930);
  color: var(--white);
}

.booking-copy h2,
.booking-copy p {
  color: var(--white);
}

.booking-copy > p {
  opacity: 0.76;
}

.booking-benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 13px;
}

.booking-benefits li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.86);
}

.booking-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--nara);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-card {
  background: var(--white);
  color: var(--graphite);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #48444d;
  font-weight: 800;
  font-size: 0.78rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: var(--cold);
  color: var(--ink);
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--nara);
  box-shadow: 0 0 0 4px rgba(123, 104, 200, 0.13);
  background: var(--white);
}

.price-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  margin: 8px 0 18px;
  border-radius: 18px;
  background: var(--nara-soft);
  border: 1px solid rgba(123, 104, 200, 0.18);
}

.price-preview.visible {
  display: flex;
}

.price-preview span {
  color: var(--nara-dark);
  font-weight: 800;
}

.price-preview strong {
  text-align: right;
  color: var(--ink);
  font-family: var(--font-title);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: 46px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 15px;
  background: var(--white);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  opacity: 0;
  transform: translateY(16px);
}

.contact-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-item:hover {
  transform: translateX(6px);
  border-color: rgba(123, 104, 200, 0.36);
  box-shadow: 0 12px 26px rgba(35, 28, 67, 0.07);
}

.contact-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--nara-soft);
}

.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item small {
  color: var(--muted);
  margin-top: 2px;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  min-height: 350px;
  background: var(--cold);
}

.map-card iframe {
  display: block;
  border-radius: var(--radius-lg);
}

.nara-strip {
  background: var(--nara-soft);
  border-top: 1px solid rgba(123, 104, 200, 0.18);
  text-align: center;
  padding: 18px 20px;
  color: #57515f;
}

.nara-strip p {
  margin: 0;
}

.nara-strip a {
  color: var(--nara-dark);
  font-weight: 800;
}

.footer {
  background: #111;
  color: var(--white);
  padding: 36px 20px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
}

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

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  text-align: right;
  font-size: 0.78rem;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-4px);
}

@media (max-width: 960px) {
  .nav-wrap {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 118px;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .gs-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .features-grid,
  .booking,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-text {
    position: static;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

  .nav-wrap {
    height: 68px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 10px 13px;
    font-size: 0.78rem;
  }

  .section,
  .hero {
    width: min(100% - 28px, var(--max));
  }

  .section,
  .section-soft,
  .services,
  .booking {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
  }

  .hero-title {
    font-size: clamp(2.337rem, 12.75vw, 3.57rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-gallery {
    min-height: 430px;
    border-radius: 24px;
  }

  .hero-thumbs {
    gap: 6px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .thumb {
    height: 54px;
    border-radius: 11px;
  }

  .gallery-counter {
    top: 14px;
    right: 14px;
  }

  .gallery-grid,
  .feature-cards,
  .service-grid,
  .price-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gs-large {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .price-card,
  .booking-card {
    padding: 24px;
    border-radius: 24px;
  }

  .slot-list button {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .price-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-wa {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .footer {
    padding-bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
