:root {
  color-scheme: light;
  --font-main: "Manrope", "Noto Sans Bengali", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --bg: #fbfcfd;
  --bg-soft: #f3f7f6;
  --bg-warm: #f8f3ea;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --ink: #092037;
  --muted: #607184;
  --line: rgba(9, 32, 55, 0.12);
  --deep: #071b31;
  --deep-2: #0d3f57;
  --teal: #1a8a84;
  --teal-dark: #0d6969;
  --gold: #c7a15a;
  --gold-light: #f2dfaa;
  --rose: #b95f69;
  --success: #168256;
  --shadow: 0 24px 70px rgba(5, 26, 47, 0.14);
  --shadow-soft: 0 18px 44px rgba(5, 26, 47, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 78px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111d;
  --bg-soft: #0c1b2b;
  --bg-warm: #161819;
  --surface: rgba(13, 28, 43, 0.88);
  --surface-solid: #0e1d2e;
  --ink: #edf7ff;
  --muted: #a8b9c7;
  --line: rgba(233, 246, 255, 0.14);
  --deep: #020b14;
  --deep-2: #123d54;
  --teal: #43c6b8;
  --teal-dark: #3ab4ae;
  --gold: #e7c16f;
  --gold-light: #ffedbd;
  --rose: #e18a92;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  letter-spacing: 0;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  object-fit: cover;
}

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

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

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 18%, transparent);
}

textarea {
  resize: vertical;
}

::selection {
  background: var(--gold-light);
  color: var(--deep);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 14px;
  clip: auto;
  background: var(--deep);
  color: white;
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(5, 26, 47, 0.08);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.nav-shell {
  position: relative;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--deep);
  background:
    radial-gradient(circle at 28% 20%, #fff7dc 0, transparent 34%),
    linear-gradient(145deg, var(--gold-light), var(--gold));
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(199, 161, 90, 0.26);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.nav-menu a {
  border-radius: 999px;
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 13px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  color: var(--teal-dark);
}

.mobile-menu-control {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.language-button,
.nav-cta,
.nav-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button,
.nav-toggle {
  width: 42px;
  padding: 0;
}

.language-button,
.nav-cta {
  padding: 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-cta {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
}

.icon-button:hover,
.language-button:hover,
.nav-cta:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--gold) 70%, var(--line));
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 48px));
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(7, 27, 49, 0.92), transparent);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 27, 49, 0.98) 0%, rgba(7, 27, 49, 0.78) 44%, rgba(7, 27, 49, 0.28) 76%, rgba(7, 27, 49, 0.76) 100%),
    url("https://images.pexels.com/photos/7089020/pexels-photo-7089020.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 138, 132, 0.3), transparent 42%),
    radial-gradient(circle at 14% 26%, rgba(242, 223, 170, 0.24), transparent 24%);
}

.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: min(55vw, 760px);
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82%;
  height: 68%;
  background: linear-gradient(145deg, rgba(199, 161, 90, 0.2), rgba(26, 138, 132, 0.18));
  filter: blur(28px);
}

.hero-portrait img {
  position: relative;
  width: 100%;
  height: 100%;
  object-position: center;
  filter: saturate(0.96) contrast(1.05);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 18%, #000 38%),
    linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 18%, #000 38%),
    linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(54px, 7vw, 94px) 0 clamp(44px, 7vw, 76px);
}

.hero-copy {
  width: min(650px, 100%);
  color: white;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker,
.panel-label {
  color: var(--teal-dark);
}

[data-theme="dark"] .section-kicker,
[data-theme="dark"] .panel-label {
  color: var(--gold-light);
}

.hero h1,
.section-heading h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
}

.hero h1 {
  margin-top: 18px;
  max-width: 740px;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  text-wrap: balance;
}

.hero-tagline {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep);
  box-shadow: 0 18px 40px rgba(199, 161, 90, 0.26);
}

.button-secondary {
  background: white;
  color: var(--deep);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-glass {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  backdrop-filter: blur(18px);
}

.button-whatsapp {
  background: #1f9d68;
  color: white;
  box-shadow: 0 16px 34px rgba(31, 157, 104, 0.25);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 36px;
}

.trust-badges div {
  min-height: 108px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(16px);
}

.trust-badges strong,
.trust-badges span {
  color: white;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
  font-weight: 850;
}

.trust-badges small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-availability {
  align-self: flex-end;
  width: min(320px, 100%);
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hero-availability span,
.hero-availability a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-availability strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 1.35rem;
}

.hero-availability a {
  color: var(--gold-light);
}

.credential-strip {
  background: var(--surface-solid);
  border-bottom: 1px solid var(--line);
}

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

.strip-grid div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.strip-grid div:last-child {
  border-right: 0;
}

.strip-grid svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.section {
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  text-wrap: balance;
}

.section-heading p {
  max-width: 710px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.profile-section {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.66fr);
  gap: 22px;
  align-items: stretch;
}

.bio-panel,
.schedule-panel,
.info-card,
.booking-surface,
.form-surface,
.testimonial-carousel,
.video-testimonial,
.contact-form,
.map-panel,
.social-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.bio-panel {
  padding: clamp(26px, 4vw, 42px);
}

.bio-panel h3,
.surface-head h3,
.schedule-panel h3 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.18;
}

.bio-panel p,
.info-card p,
.service-card p,
.schedule-item span,
.timeline p,
.contact-tile span,
.site-footer p,
.site-footer span {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 750;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--success);
  margin-top: 3px;
}

.profile-cards {
  display: grid;
  gap: 22px;
}

.info-card {
  min-height: 210px;
  padding: 26px;
}

.info-card > svg,
.service-card > svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.info-card h3,
.service-card h3,
.tip-card h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.25;
}

.schedule-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.schedule-item {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.schedule-item strong {
  line-height: 1.3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 850;
  white-space: nowrap;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 26px;
  height: 1px;
  background: var(--line);
}

.timeline article {
  position: relative;
  padding: 56px 18px 20px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-solid) 76%, transparent);
  border: 1px solid var(--line);
}

.timeline time {
  position: absolute;
  top: 0;
  left: 18px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--deep-2), var(--deep));
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(5, 26, 47, 0.18);
}

.timeline h3 {
  margin: 0 0 8px;
  line-height: 1.25;
}

.timeline p {
  margin: 0;
  font-size: 0.92rem;
}

.chamber-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--gold-light) 38%, transparent), transparent 30%),
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--teal) 18%, transparent), transparent 34%),
    linear-gradient(180deg, var(--surface-solid) 0%, var(--bg-soft) 100%);
}

.chamber-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--deep) 4%, transparent), transparent 44%),
    linear-gradient(90deg, color-mix(in srgb, var(--gold) 7%, transparent), transparent 46%);
  pointer-events: none;
}

.chamber-section .container {
  position: relative;
  z-index: 1;
}

.chamber-heading {
  margin-inline: auto;
  text-align: center;
}

.chamber-heading .section-kicker {
  color: var(--teal-dark);
}

.chamber-heading h2 {
  color: var(--ink);
}

.chamber-heading p {
  margin-inline: auto;
  color: var(--muted);
}

.chamber-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin-inline: auto;
}

.chamber-card {
  min-height: 320px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-solid) 96%, transparent), color-mix(in srgb, var(--bg-soft) 72%, transparent)),
    radial-gradient(circle at 50% 0, color-mix(in srgb, var(--gold-light) 22%, transparent), transparent 38%);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.chamber-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--gold) 44%, var(--line));
  box-shadow: var(--shadow);
}

.chamber-card-wide {
  grid-column: 1 / -1;
  width: min(520px, 100%);
  justify-self: center;
}

.chamber-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--teal);
  background:
    radial-gradient(circle at 34% 22%, color-mix(in srgb, var(--gold-light) 48%, transparent), transparent 42%),
    color-mix(in srgb, var(--teal) 10%, transparent);
}

.chamber-icon svg {
  width: 54px;
  height: 54px;
  stroke-width: 2.4;
}

.chamber-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 650;
  line-height: 1.2;
}

.chamber-card h4 {
  margin: 18px 0 14px;
  color: var(--teal-dark);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.3;
}

.chamber-card ul {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chamber-card li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.45;
}

.chamber-card li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold);
}

.chamber-card a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.chamber-card a:hover {
  color: var(--teal-dark);
}

.services-section {
  background: var(--surface-solid);
}

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

.service-card {
  position: relative;
  min-height: 322px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-solid) 94%, transparent), color-mix(in srgb, var(--bg-soft) 72%, transparent)),
    radial-gradient(circle at 100% 0, rgba(199, 161, 90, 0.17), transparent 38%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--gold) 42%, var(--line));
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card span,
.tip-card span,
.gallery-card span {
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 0 20px;
}

.service-card a {
  margin-top: auto;
  color: var(--deep-2);
  font-weight: 850;
}

[data-theme="dark"] .service-card a {
  color: var(--gold-light);
}

.appointment-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--deep) 96%, #000), color-mix(in srgb, var(--deep-2) 85%, #000));
  color: white;
}

.appointment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 161, 90, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(26, 138, 132, 0.3), transparent 28%);
  pointer-events: none;
}

.appointment-section .container {
  position: relative;
  z-index: 1;
}

.appointment-section .section-heading h2,
.appointment-section .section-heading p {
  color: white;
}

.appointment-section .section-kicker {
  color: var(--gold-light);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.64fr);
  gap: 22px;
}

.booking-surface,
.form-surface {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: white;
  padding: clamp(22px, 4vw, 32px);
}

.booking-surface .panel-label,
.form-surface .panel-label {
  color: var(--gold-light);
}

.surface-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.surface-head h3 {
  margin: 6px 0 0;
  color: inherit;
}

.surface-head > svg {
  color: var(--gold-light);
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.date-option,
.slot-option {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.date-option {
  min-height: 82px;
  padding: 14px;
}

.date-option strong,
.date-option span {
  display: block;
}

.date-option strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.date-option span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
}

.date-option:hover,
.slot-option:hover,
.date-option.is-selected,
.slot-option.is-selected {
  transform: translateY(-2px);
  background: rgba(242, 223, 170, 0.2);
  border-color: var(--gold-light);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.slot-option {
  min-height: 46px;
  padding: 8px 10px;
  text-align: center;
  font-weight: 850;
}

.booking-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.booking-note svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold-light);
}

.appointment-form,
.contact-form {
  display: grid;
  gap: 15px;
}

.appointment-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-weight: 800;
}

.appointment-form label span,
.contact-form label span {
  font-size: 0.86rem;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.appointment-form option {
  color: var(--ink);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.confirmation {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(22, 130, 86, 0.18);
  animation: confirmationPop 420ms ease both;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--success);
  color: white;
}

.confirmation h3 {
  margin: 14px 0 6px;
  font-size: 1.25rem;
}

.confirmation p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

@keyframes confirmationPop {
  from {
    transform: translateY(12px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.reviews-section {
  background: var(--bg-warm);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: 22px;
  align-items: stretch;
}

.testimonial-carousel,
.video-testimonial {
  padding: clamp(24px, 4vw, 36px);
}

.testimonial-carousel {
  position: relative;
  min-height: 386px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 360ms ease both;
}

.testimonial-slide.is-active {
  display: block;
}

.rating {
  color: var(--gold);
  font-size: 1.2rem;
}

.testimonial-slide p {
  max-width: 780px;
  margin: 24px 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.42;
}

.testimonial-slide footer {
  display: grid;
  gap: 3px;
}

.testimonial-slide footer strong {
  color: var(--ink);
}

.testimonial-slide footer span {
  color: var(--muted);
}

.carousel-controls {
  position: absolute;
  left: clamp(24px, 4vw, 36px);
  right: clamp(24px, 4vw, 36px);
  bottom: clamp(24px, 4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.carousel-controls button,
.faq-list summary {
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--ink);
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.carousel-dots {
  display: inline-flex;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  min-height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: color-mix(in srgb, var(--muted) 42%, transparent);
}

.carousel-dots button.is-active {
  background: var(--gold);
}

@keyframes fadeSlide {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.video-testimonial {
  display: grid;
  align-content: start;
  gap: 16px;
}

.video-frame,
.youtube-card,
.map-panel {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.video-frame {
  aspect-ratio: 16 / 10;
  background: var(--deep);
}

.video-frame iframe,
.youtube-card iframe,
.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  transition: transform 360ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card div {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.gallery-card span {
  margin-top: 0;
}

.gallery-card strong {
  font-size: 1.08rem;
}

.social-section {
  background:
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a,
.floating-actions a,
.floating-socials a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover,
.floating-actions a:hover,
.floating-socials a:hover {
  transform: translateY(-3px);
  background: var(--teal-dark);
}

.social-preview {
  padding: 16px;
}

.youtube-card {
  aspect-ratio: 16 / 9;
  background: var(--deep);
}

.instagram-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.instagram-strip img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
}

.tips-section {
  background: var(--surface-solid);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tip-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.tip-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
}

.tip-card div {
  padding: 20px;
}

.tip-card span {
  margin-top: 0;
}

.tip-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

.faq-section {
  background: var(--bg-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(5, 26, 47, 0.05);
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list summary svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  background: var(--surface-solid);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 0.62fr);
  gap: 22px;
}

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

.contact-tile {
  min-height: 166px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold) 48%, var(--line));
}

.contact-tile svg {
  color: var(--gold);
}

.contact-tile strong {
  line-height: 1.26;
}

.contact-tile.whatsapp svg {
  color: #1f9d68;
}

.contact-tile.emergency {
  background: color-mix(in srgb, var(--rose) 9%, var(--surface-solid));
}

.contact-form {
  padding: 24px;
}

.contact-form label {
  color: var(--ink);
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
}

.newsletter {
  padding: 0 0 clamp(72px, 9vw, 126px);
  background: var(--surface-solid);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: 26px;
  align-items: center;
  padding: clamp(26px, 5vw, 42px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(7, 27, 49, 0.94), rgba(13, 63, 87, 0.96)),
    url("https://images.pexels.com/photos/4021775/pexels-photo-4021775.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.newsletter .section-kicker {
  color: var(--gold-light);
}

.newsletter h2 {
  margin-top: 8px;
  max-width: 620px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter input {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.form-status {
  margin: 8px 0 0;
  color: var(--success);
  font-weight: 800;
}

.newsletter .form-status {
  color: var(--gold-light);
}

.site-footer {
  padding: 44px 0 116px;
  border-top: 1px solid var(--line);
  background: var(--deep);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.52fr) minmax(200px, 0.46fr);
  gap: 28px;
}

.site-footer .brand strong,
.site-footer strong {
  color: white;
}

.site-footer .brand small,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer p {
  max-width: 600px;
  margin: 16px 0 0;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a:first-child {
  background: #1f9d68;
}

.floating-socials {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 85;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-socials a {
  width: 42px;
  height: 42px;
  background: color-mix(in srgb, var(--deep) 88%, transparent);
  box-shadow: 0 12px 28px rgba(5, 26, 47, 0.16);
  backdrop-filter: blur(12px);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 8px;
  background: color-mix(in srgb, var(--surface-solid) 92%, transparent);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  min-height: 50px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.mobile-cta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-cta a:nth-child(2) {
  background: var(--deep);
  color: white;
}

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

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

svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
    --container: min(calc(100% - 32px), 980px);
  }

  .nav-menu {
    order: 4;
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    align-content: start;
    justify-items: stretch;
    max-height: calc(100svh - var(--header-height) - 24px);
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    border-radius: var(--radius-sm);
    padding: 13px 14px;
  }

  .mobile-menu-control {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--deep);
    color: white;
    font-weight: 850;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-actions {
    order: 2;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    display: grid;
    align-items: end;
    min-height: calc(100svh - 64px);
    padding-top: 64px;
  }

  .hero-copy {
    width: min(650px, 70vw);
  }

  .hero-availability {
    justify-self: start;
    align-self: start;
    margin-bottom: 0;
  }

  .hero-portrait {
    width: min(56vw, 520px);
    opacity: 0.84;
  }

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

  .strip-grid div:nth-child(2) {
    border-right: 0;
  }

  .profile-grid,
  .appointment-grid,
  .testimonial-layout,
  .social-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .schedule-panel {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }

  .timeline::before {
    display: none;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(calc(100% - 24px), 720px);
    --header-height: 68px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-cta {
    display: none;
  }

  .language-button {
    min-height: 40px;
    padding: 0 10px;
  }

  .nav-actions {
    gap: 8px;
  }

  .icon-button,
  .nav-toggle {
    width: 40px;
    min-height: 40px;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    order: 2;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 27, 49, 0.76) 0%, rgba(7, 27, 49, 0.9) 46%, rgba(7, 27, 49, 0.98) 100%),
      url("https://images.pexels.com/photos/7089020/pexels-photo-7089020.jpeg?auto=compress&cs=tinysrgb&w=1000") center / cover;
  }

  .hero-portrait {
    top: 66px;
    right: -74px;
    bottom: auto;
    width: min(92vw, 430px);
    height: 58%;
    opacity: 0.42;
  }

  .hero-content {
    min-height: calc(100svh - 16px);
    padding: 44px 0 54px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 15vw, 4.4rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
    gap: 8px;
  }

  .trust-badges div {
    min-height: 96px;
    padding: 13px 10px;
  }

  .trust-badges strong,
  .trust-badges span {
    font-size: 1.34rem;
  }

  .trust-badges small {
    font-size: 0.68rem;
  }

  .hero-availability {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
  }

  .strip-grid,
  .chamber-grid,
  .service-grid,
  .gallery-grid,
  .tips-grid,
  .contact-options,
  .timeline,
  .date-grid,
  .slot-grid,
  .footer-grid,
  .newsletter-inner,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .chamber-card,
  .chamber-card-wide {
    width: 100%;
    min-height: auto;
  }

  .chamber-card li {
    font-size: 0.91rem;
  }

  .strip-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 74px;
  }

  .strip-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.84rem);
  }

  .bio-panel,
  .info-card,
  .schedule-panel,
  .booking-surface,
  .form-surface,
  .testimonial-carousel,
  .video-testimonial,
  .contact-form {
    border-radius: 18px;
  }

  .schedule-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .date-option {
    min-height: 70px;
  }

  .slot-option {
    min-height: 48px;
  }

  .testimonial-carousel {
    min-height: 450px;
  }

  .testimonial-slide p {
    font-size: 1.16rem;
  }

  .carousel-controls {
    position: static;
    margin-top: 28px;
  }

  .map-panel {
    min-height: 300px;
  }

  .floating-actions,
  .floating-socials {
    display: none;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    gap: 8px;
  }

  .brand strong {
    max-width: 104px;
  }

  .language-button {
    font-size: 0.78rem;
  }

  .nav-actions .icon-button {
    display: none;
  }

  .mobile-cta {
    padding: 6px;
  }

  .mobile-cta a {
    font-size: 0.72rem;
    gap: 5px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
