:root {
  --black: #070707;
  --surface: #11100e;
  --surface-soft: #191713;
  --gold: #d9ad54;
  --gold-light: #f5dc96;
  --cream: #f4ede0;
  --muted: #aaa294;
  --line: rgba(217, 173, 84, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 25%, rgba(217, 173, 84, 0.08), transparent 26%),
    radial-gradient(circle at 85% 65%, rgba(29, 54, 98, 0.12), transparent 30%),
    var(--black);
  font-family: Tahoma, "Noto Sans Thai", Arial, sans-serif;
  line-height: 1.6;
}
body.locked { overflow: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(217, 173, 84, 0.14), transparent 30%),
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.96)),
    url("./assets/slide-01.webp") center / cover;
  backdrop-filter: blur(18px);
}
.age-gate.hidden { display: none; }
.age-panel {
  position: relative;
  width: min(500px, 100%);
  padding: 38px 38px 34px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(28, 23, 15, 0.98), rgba(5, 5, 5, 0.99) 55%),
    #090909;
  border: 1px solid rgba(245, 220, 150, 0.7);
  border-radius: 18px;
  box-shadow:
    0 35px 110px rgba(0, 0, 0, 0.82),
    0 0 70px rgba(217, 173, 84, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.08);
}
.age-panel::before {
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff0bd, transparent);
  content: "";
}
.age-panel::after {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 320px;
  height: 250px;
  background: radial-gradient(circle, rgba(217, 173, 84, 0.2), transparent 66%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}
.age-logo {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  margin: 0 auto 17px;
}
.age-logo::before {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(217, 173, 84, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(217, 173, 84, 0.2);
  content: "";
}
.age-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65), inset 0 0 18px rgba(255, 221, 137, 0.12);
}
.age-logo span {
  position: absolute;
  right: -4px;
  bottom: 10px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #151008;
  background: linear-gradient(135deg, #fff1bd, #bd852d);
  border: 3px solid #0a0907;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
  font: 800 0.9rem/1 Georgia, serif;
}
.age-brand { position: relative; z-index: 1; margin: 0 0 12px !important; color: var(--gold) !important; font: 0.68rem Georgia, serif; letter-spacing: 0.2em; }
.age-panel h1 { position: relative; z-index: 1; margin: 0 0 10px; color: #fff8e8; font-size: 1.55rem; }
.age-panel > p:not(.age-brand) { position: relative; z-index: 1; max-width: 390px; margin: 0 auto; color: var(--muted); }
.age-panel button,
.gold-button,
.contact-button {
  display: inline-flex;
  justify-content: center;
  padding: 12px 22px;
  color: #090909;
  background: linear-gradient(135deg, #f8e4a8, #bd852d);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}
.age-panel button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 24px;
  padding-block: 14px;
  border-radius: 7px;
  box-shadow: 0 12px 35px rgba(189, 133, 45, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.age-panel button:hover { box-shadow: 0 16px 42px rgba(217, 173, 84, 0.34); transform: translateY(-2px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  padding: 10px clamp(18px, 5vw, 76px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.4rem; }
.logo img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.main-nav { display: flex; flex: 1; justify-content: center; gap: 24px; color: #d6d0c4; }
.main-nav a:hover { color: var(--gold-light); }
.contact-button { padding: 10px 16px; }

.hero-slider {
  position: relative;
  height: clamp(620px, 76vh, 880px);
  overflow: hidden;
  isolation: isolate;
  background: rgba(2, 3, 10, 0.66);
  border-bottom: 1px solid var(--line);
}
.star-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.slider-stage { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 7s ease, visibility 900ms;
}
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide img {
  position: absolute;
  top: 5%;
  right: clamp(3%, 8vw, 12%);
  width: min(43vw, 560px);
  height: 90%;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid rgba(245, 220, 150, 0.48);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72), 0 0 50px rgba(217, 173, 84, 0.12);
}
.hero-slide.banner-slide img {
  top: 50%;
  right: 50%;
  width: auto;
  max-width: 94vw;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  border: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
  transform: translate(50%, -50%);
}
.hero-slide.banner-slide .slide-shade {
  background: linear-gradient(0deg, rgba(2, 3, 10, 0.68), transparent 32%);
}
.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 10, 0.98) 0%, rgba(2, 3, 10, 0.88) 39%, rgba(2, 3, 10, 0.2) 72%),
    linear-gradient(0deg, rgba(2, 3, 10, 0.88), transparent 36%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: clamp(22px, 8vw, 120px);
  z-index: 2;
  width: min(620px, 52vw);
  transform: translateY(-50%);
}
.slide-content h1,
.slide-content h2 {
  margin: 0;
  color: #fff;
  font: 700 clamp(2.7rem, 5.5vw, 6.5rem)/1.04 Georgia, serif;
}
.slide-content p:not(.eyebrow) { max-width: 520px; margin: 22px 0 30px; color: #c8c1b5; font-size: 1.08rem; }
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 48px;
  height: 58px;
  place-items: center;
  padding: 0;
  color: var(--gold-light);
  background: rgba(6, 6, 8, 0.72);
  border: 1px solid var(--line);
  cursor: pointer;
  font: 300 2.2rem/1 Georgia, serif;
  transform: translateY(-50%);
}
.slider-arrow:hover { background: var(--gold); color: #070707; }
.slider-arrow.previous { left: 18px; }
.slider-arrow.next { right: 18px; }
.slider-footer {
  position: absolute;
  left: clamp(22px, 8vw, 120px);
  right: clamp(22px, 8vw, 120px);
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-dots { display: flex; gap: 9px; }
.slider-dots button {
  width: 32px;
  height: 3px;
  padding: 0;
  background: rgba(255,255,255,0.3);
  border: 0;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}
.slider-dots button.active { width: 62px; background: var(--gold-light); }
.slide-count { display: flex; align-items: center; gap: 10px; color: #80796f; font: 0.75rem Georgia, serif; }
.slide-count span:first-child { color: var(--gold-light); font-size: 1rem; }
.slide-count i { width: 42px; height: 1px; background: var(--line); }

.service-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.service-bar span { padding: 18px; text-align: center; color: var(--gold-light); background: #0c0b09; font-size: 0.9rem; }

.ceo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 720px;
  border-bottom: 1px solid var(--line);
}
.ceo-photo { min-height: 620px; overflow: hidden; }
.ceo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.ceo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 110px);
  background: rgba(17, 16, 14, 0.88);
  backdrop-filter: blur(4px);
}
.eyebrow { margin: 0 0 10px; color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; }
.ceo-copy h1 { margin: 0; color: var(--gold-light); font: 700 clamp(3rem, 6vw, 6.5rem)/0.95 Georgia, serif; }
.ceo-copy h2 { margin: 24px 0 14px; font-size: clamp(1.45rem, 2.7vw, 2.6rem); line-height: 1.35; }
.ceo-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); }
.ceo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.ceo-tags span { padding: 7px 12px; border: 1px solid var(--line); color: var(--gold-light); font-size: 0.85rem; }
.gold-button { align-self: flex-start; }

.profiles-section { width: min(1320px, calc(100% - 36px)); margin: 0 auto; padding: 78px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.section-heading h2, .contact-section h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); }
.section-heading > p { max-width: 480px; margin: 0; color: var(--muted); text-align: right; }
.selection-highlight {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 8px 0 0;
  color: var(--gold-light);
  font-size: 0.92rem;
}
.selection-highlight strong {
  color: var(--gold);
  font: 700 1.7rem/1 Georgia, serif;
  letter-spacing: 0.03em;
}
.profile-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 13px;
  background: rgba(13, 12, 10, 0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}
.profile-search {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  color: var(--gold);
  background: #080807;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}
.profile-search span { font: 1.5rem/1 Georgia, serif; }
.profile-search input {
  width: 100%;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}
.profile-search input::placeholder { color: #777066; }
.profile-filters { display: flex; gap: 6px; }
.profile-filters button {
  padding: 9px 12px;
  color: #aaa294;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
}
.profile-filters button:hover { color: var(--gold-light); }
.profile-filters button.active {
  color: #080807;
  background: linear-gradient(135deg, #f8e4a8, #bd852d);
  font-weight: 800;
}
.profile-result { min-width: 74px; color: var(--gold-light); text-align: right; font-size: 0.78rem; }
.profile-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: start; gap: 18px; }
.profile-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #181510, #090909);
  border: 1px solid rgba(217, 173, 84, 0.26);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.profile-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
}
.profile-card:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 28px rgba(217, 173, 84, 0.15);
  transform: translateY(-3px);
}
.profile-card:hover::after { border-color: rgba(245, 220, 150, 0.22); }
.profile-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: #0b0a08;
  border: 0;
  cursor: zoom-in;
  text-align: left;
}
.profile-image::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  content: "";
}
.profile-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 22%;
  transition: filter 300ms ease;
}
.profile-card:hover .profile-image img { filter: saturate(1.04) contrast(1.02); }
.profile-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  color: var(--gold-light);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(217, 173, 84, 0.45);
  border-radius: 20px;
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}
.feature-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 10px;
  color: #151008;
  background: linear-gradient(135deg, #fff0bd, #c58b31);
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(217, 173, 84, 0.3);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}
.feature-badge.status-new { color: #06150d; background: linear-gradient(135deg, #9bf4b7, #20b966); }
.feature-badge.status-popular { color: #fff; background: linear-gradient(135deg, #b96b86, #77334c); }
.feature-badge.status-featured { color: #151008; background: linear-gradient(135deg, #fff0bd, #c58b31); }
.card-body { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px; }
.card-body small { color: var(--gold); font: 0.58rem/1.2 Georgia, serif; letter-spacing: 0.1em; }
.card-body h3 { margin: 0; color: #fff; font-size: 1rem; }
.card-body p { margin: 2px 0 0; color: var(--muted); font-size: 0.75rem; }
.card-body a {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f8e4a8, #bd852d);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
}
.profile-empty {
  margin: 42px 0 0;
  padding: 38px;
  color: var(--muted);
  border: 1px dashed var(--line);
  text-align: center;
}
.load-more-wrap { display: flex; justify-content: center; margin-top: 38px; }
.load-more-wrap[hidden] { display: none; }
.load-more-button {
  display: grid;
  min-width: 250px;
  padding: 14px 28px;
  color: var(--gold-light);
  background: linear-gradient(145deg, #181510, #090909);
  border: 1px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.load-more-button span { font-weight: 800; }
.load-more-button small { margin-top: 2px; color: var(--muted); font-size: 0.68rem; }
.load-more-button:hover {
  color: #090909;
  background: linear-gradient(135deg, #f8e4a8, #bd852d);
  transform: translateY(-3px);
}
.load-more-button:hover small { color: rgba(9, 9, 9, 0.68); }

.trust-section {
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(70px, 9vw, 130px) max(18px, calc((100% - 1320px) / 2));
  background:
    radial-gradient(circle at 15% 40%, rgba(217, 173, 84, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(17, 16, 13, 0.88), rgba(6, 6, 6, 0.82));
  backdrop-filter: blur(3px);
  border-block: 1px solid var(--line);
}
.trust-heading h2 { margin: 0; color: #fff; font: 700 clamp(2.5rem, 4.5vw, 5rem)/1.06 Georgia, serif; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.trust-grid article { min-height: 210px; padding: 30px; background: rgba(10, 10, 9, 0.96); }
.trust-grid strong { display: block; margin-bottom: 22px; color: var(--gold); font: 1rem Georgia, serif; }
.trust-grid h3 { margin: 0 0 8px; color: var(--gold-light); font-size: 1.05rem; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 0.86rem; }

.poolvilla-service {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 680px;
  background: rgba(13, 12, 10, 0.86);
  backdrop-filter: blur(3px);
  border-bottom: 1px solid var(--line);
}
.poolvilla-service > img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.poolvilla-service-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 7vw, 100px); }
.poolvilla-service-copy h2 { margin: 0; color: #fff; font: 700 clamp(2.7rem, 5vw, 5.4rem)/1 Georgia, serif; }
.poolvilla-service-copy > p:not(.eyebrow) { color: var(--muted); }
.poolvilla-service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 28px; }
.poolvilla-service-tags span { padding: 7px 11px; color: var(--gold-light); border: 1px solid var(--line); font-size: .78rem; }

.profile-modal[hidden] { display: none; }
.profile-modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 24px; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  border: 0;
  backdrop-filter: blur(14px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: #0d0c0a;
  border: 1px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(217, 173, 84, 0.14);
  animation: modal-in 260ms ease both;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  color: var(--gold-light);
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.modal-visual { position: relative; min-height: 620px; overflow: hidden; background: #050505; }
.modal-visual::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 40%); content: ""; }
.modal-visual img { width: 100%; height: 100%; object-fit: cover; }
.modal-number { position: absolute; left: 22px; bottom: 20px; z-index: 2; color: var(--gold-light); font: 0.72rem Georgia, serif; letter-spacing: 0.16em; }
.modal-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 72px); }
.modal-copy h2 { margin: 0; color: #fff; font: 700 clamp(2.5rem, 5vw, 4.7rem)/1 Georgia, serif; }
.modal-area { align-self: flex-start; margin: 18px 0; padding: 6px 12px; color: var(--gold-light); border: 1px solid var(--line); border-radius: 20px; font-size: 0.78rem; }
.modal-copy > p:not(.eyebrow) { margin: 0 0 24px; color: #d3cbbc; font-size: 1.08rem; }
.modal-features { display: grid; gap: 9px; margin-bottom: 30px; color: var(--muted); font-size: 0.83rem; }
.modal-features span::before { margin-right: 9px; color: var(--gold); content: "◆"; font-size: 0.55rem; }
.modal-line { padding: 14px 20px; color: #09150d; background: linear-gradient(135deg, #79ee9f, #06c755); border-radius: 5px; text-align: center; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms ease var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } }

.contact-section {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 48px max(18px, calc((100% - 1200px) / 2));
  background: rgba(25, 23, 19, 0.86);
  backdrop-filter: blur(4px);
  border-block: 1px solid var(--line);
}
.contact-section img {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(217, 173, 84, 0.42);
  border-radius: 50%;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.46), 0 0 28px rgba(217, 173, 84, 0.1);
}
.contact-section p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; min-width: 320px; }
.contact-actions a { padding: 12px 15px; color: var(--gold-light); border: 1px solid var(--gold); border-radius: 5px; text-align: center; font-weight: 700; }
.contact-actions .contact-line { color: #07130b; background: #06c755; border-color: #06c755; }

.contact-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  background: rgba(10, 9, 7, 0.92);
  border: 1px solid var(--gold);
  border-radius: 34px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.62), 0 0 28px rgba(217, 173, 84, 0.14);
  backdrop-filter: blur(14px);
}
.contact-popup-label {
  padding-left: 10px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}
.contact-popup-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.contact-popup-button:hover { transform: translateY(-3px) scale(1.04); }
.contact-popup-button.line { background: #06c755; font: 800 0.56rem/1 Arial, sans-serif; }
.contact-popup-button.phone { color: #111; background: var(--gold-light); border-color: #fff1bd; font-size: 1.2rem; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(18px, 5vw, 76px); color: #777066; font-size: 0.8rem; }

@media (max-width: 1050px) {
  .profile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .profile-toolbar { grid-template-columns: 1fr auto; }
  .profile-filters { grid-column: 1 / -1; grid-row: 2; }
  .profile-result { grid-column: 2; grid-row: 1; }
  .trust-section { grid-template-columns: 1fr; }
  .poolvilla-service { grid-template-columns: 1fr 1fr; }
  .ceo-section { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 130px 1fr; }
  .contact-section img { width: 130px; height: 130px; }
  .contact-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; gap: 18px; padding-bottom: 4px; }
  .contact-button { margin-left: auto; }
  .hero-slider { height: 720px; }
  .hero-slide img { top: 6%; right: 5%; width: 62vw; height: 64%; opacity: 0.74; }
  .hero-slide.banner-slide img {
    top: 42%;
    right: 50%;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    opacity: 1;
    transform: translate(50%, -50%);
  }
  .hero-slide.slide-wide img {
    top: 45%;
    width: 100%;
    max-width: none;
  }
  .hero-slide.slide-poster img {
    top: 43%;
    width: auto;
    max-width: 86%;
    max-height: 78%;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.76), 0 0 35px rgba(217, 173, 84, 0.12);
  }
  .hero-slide.slide-logo img {
    top: 42%;
    width: auto;
    max-width: 80%;
    max-height: 72%;
    border-radius: 50%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.78), 0 0 44px rgba(217, 173, 84, 0.18);
  }
  .slide-shade { background: linear-gradient(0deg, #02030a 12%, rgba(2,3,10,0.78) 55%, rgba(2,3,10,0.2)); }
  .slide-content { top: auto; bottom: 90px; left: 22px; width: calc(100% - 44px); transform: none; }
  .slide-content h1, .slide-content h2 { font-size: clamp(2.3rem, 10vw, 4rem); }
  .slide-content p:not(.eyebrow) { margin: 14px 0 20px; font-size: 0.95rem; }
  .slider-arrow { top: 37%; width: 40px; height: 48px; }
  .slider-arrow.previous { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .slider-footer { left: 22px; right: 22px; bottom: 25px; }
  .service-bar { grid-template-columns: repeat(2, 1fr); }
  .ceo-section { grid-template-columns: 1fr; }
  .ceo-photo { min-height: 500px; }
  .ceo-copy { padding: 46px 22px; }
  .profiles-section { padding-top: 56px; }
  .profile-toolbar { top: 128px; grid-template-columns: 1fr auto; }
  .profile-filters { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .profile-filters button { flex: 0 0 auto; }
  .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading > p { text-align: left; }
  .trust-section { padding-inline: 22px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .poolvilla-service { grid-template-columns: 1fr; }
  .poolvilla-service > img { min-height: 460px; }
  .modal-panel { grid-template-columns: 1fr 1fr; }
  .modal-visual { min-height: 520px; }
  .modal-copy { padding: 34px; }
  .contact-section { grid-template-columns: 1fr; text-align: center; }
  .contact-section img { margin: auto; }
  .contact-actions { grid-column: auto; grid-template-columns: 1fr; }
  .contact-popup { right: 12px; bottom: 12px; }
  footer { flex-direction: column; }
}

@media (max-width: 430px) {
  .age-gate { padding: 12px; }
  .age-panel { padding: 27px 20px 23px; border-radius: 14px; }
  .age-logo { width: 136px; height: 136px; margin-bottom: 14px; }
  .age-logo span { width: 44px; height: 44px; font-size: 0.78rem; }
  .age-panel h1 { font-size: 1.25rem; }
  .age-panel > p:not(.age-brand) { font-size: 0.85rem; }
  .age-panel button { margin-top: 18px; }
  .logo span { display: none; }
  .profile-toolbar { position: static; grid-template-columns: 1fr auto; }
  .profile-filters { gap: 4px; }
  .profile-result { font-size: 0.7rem; }
  .profile-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 175px; }
  .profile-modal { padding: 10px; }
  .modal-panel { display: block; overflow-y: auto; }
  .modal-visual { min-height: 55vh; max-height: 55vh; }
  .modal-copy { padding: 30px 22px; }
  .modal-copy h2 { font-size: 2.8rem; }
  .contact-popup { padding: 6px; }
  .contact-popup-label { display: none; }
  .contact-popup-button { width: 44px; height: 44px; }
}

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