:root {
  --bg-body: #f6f4ff;
  --bg-elevated: #ffffff;
  --bg-elevated-alt: #f4f0ff;
  --bg-soft: #f7f7ff;
  --bg-muted: #f0eef9;
  --accent: #f4a737;
  --accent-soft: rgba(244, 167, 55, 0.16);
  --accent-strong: #d97800;
  --accent-secondary: #7a5cff;
  --accent-secondary-soft: rgba(122, 92, 255, 0.18);
  --text-main: #1f1537;
  --text-soft: #5e5677;
  --text-muted: #9a92b0;
  --text-on-dark: #fdfcff;
  --border-subtle: rgba(15, 5, 55, 0.06);
  --shadow-soft: 0 18px 45px rgba(28, 16, 68, 0.16);
  --radius-lg: 22px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #fdfcff 0, #f4f0ff 50%, #f0eef9 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #fefcf7, #f7f2ff);
  border-bottom: 1px solid rgba(15, 5, 55, 0.06);
  font-size: 0.85rem;
  color: var(--text-soft);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.25rem;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-left i {
  color: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
}

/* Buttons */
.btn {
  --btn-bg: var(--accent);
  --btn-color: #190e02;
  --btn-border: transparent;
  --btn-shadow: 0 14px 30px rgba(244, 176, 62, 0.4);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: transform 0.15s ease-out, box-shadow 0.18s ease-out,
    background 0.18s ease-out, color 0.18s ease-out, border-color 0.18s ease-out;
}

.btn--primary {
  --btn-bg: linear-gradient(135deg, #f4b03e, #ffdd8a);
  --btn-color: #251300;
  --btn-border: rgba(255, 255, 255, 0.08);
}

.btn--secondary {
  --btn-bg: radial-gradient(circle at top left, #7a5cff, #3f2a97);
  --btn-color: #f4edff;
  --btn-border: rgba(144, 118, 255, 0.55);
  --btn-shadow: 0 14px 35px rgba(57, 35, 132, 0.7);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: var(--text-main);
  --btn-border: rgba(255, 255, 255, 0.26);
  --btn-shadow: none;
  backdrop-filter: blur(10px);
}

.btn--whatsapp {
  --btn-bg: #22c15e;
  --btn-color: #f8fff9;
  --btn-border: rgba(255, 255, 255, 0.12);
  --btn-shadow: 0 10px 25px rgba(5, 119, 44, 0.5);
  padding-inline: 1.1rem;
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn--block {
  width: 100%;
}

.btn i {
  font-size: 0.98em;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(63, 44, 122, 0.18);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(63, 44, 122, 0.2);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 255, 0.96));
  border-bottom: 1px solid rgba(15, 5, 55, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 0.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  display: block;
  max-height: 42px;
  width: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 0%, #ffdf95, #f4b03e, #f07139);
  box-shadow: 0 10px 24px rgba(143, 118, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: #241305;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.02rem;
}

.brand-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  border-radius: 999px;
  transition: width 0.18s ease-out;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 2px;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease, translate 0.2s ease;
}

.navbar-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.navbar-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Hero */
.hero {
  padding: 3.75rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0.2rem 0 1rem;
  letter-spacing: 0.03em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.1rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 176, 62, 0.45);
  background: radial-gradient(circle at top left, rgba(244, 176, 62, 0.18), transparent);
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.hero-text {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 38rem;
}

.hero-actions {
  margin: 1.6rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 0.75rem;
}

.meta-item {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 167, 55, 0.3);
  background: linear-gradient(145deg, rgba(255, 250, 235, 0.96), rgba(255, 243, 210, 0.98));
  font-size: 0.8rem;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-size: 0.68rem;
}

.meta-value {
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, #fefcf7 0, #f7f2ff 55%, #f0eef9 100%);
  border: 1px solid rgba(15, 5, 55, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-photo {
  height: 210px;
  background-image: radial-gradient(circle at 10% 0%, #ffdf95, #f4b03e, #f07139),
    url("../img/profile.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
}

.hero-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.hero-card-body h2 {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
}

.hero-card-body p {
  margin: 0 0 0.75rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.05rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-card-body li::before {
  content: "•";
  color: var(--accent-strong);
  margin-right: 0.5rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--light {
  background: radial-gradient(circle at top, #ffffff, #f5f2ff);
}

.section--muted {
  background: radial-gradient(circle at top right, #fdfbff, #f4f0ff);
}

.section--dark {
  background: radial-gradient(circle at top, #f7f4ff, #ece7ff);
  border-top: 1px solid rgba(15, 5, 55, 0.06);
  border-bottom: 1px solid rgba(15, 5, 55, 0.06);
}

.section-header {
  margin-bottom: 2.2rem;
}

.section-header h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.8rem;
  margin: 0.8rem 0 0.6rem;
}

.section-header p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-soft);
}

.section-header--center {
  text-align: center;
}

.section-header--center p,
.section-header--center h2 {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow--on-dark {
  border-color: rgba(244, 222, 141, 0.55);
  background: radial-gradient(circle at top left, rgba(244, 222, 141, 0.18), transparent);
}

/* Grids */
.grid {
  display: grid;
  gap: 1.6rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards */
.feature-card {
  background: linear-gradient(145deg, rgba(255, 250, 235, 0.96), rgba(255, 243, 210, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 167, 55, 0.24);
  padding: 1.35rem 1.3rem;
  box-shadow: 0 18px 40px rgba(63, 44, 122, 0.16);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0%, #ffdf95, #f4b03e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2e1705;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 2.4rem;
  align-items: center;
}

.about-photo {
  border-radius: 26px;
  height: 340px;
  max-width: 420px;
  background-image: radial-gradient(circle at 10% 0%, #ffdf95, #f4b03e, #f07139),
    url("../img/laxmi-yantra.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-copy p {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0.4rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.list-check li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.35rem;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.72rem;
  color: var(--accent-strong);
}

.service-card {
  background: linear-gradient(160deg, rgba(255, 250, 235, 0.96), rgba(255, 242, 214, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 167, 55, 0.28);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: 0 18px 44px rgba(63, 44, 122, 0.16);
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 0%, #fff, #ceb8ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #351e71;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.service-card li {
  margin-bottom: 0.3rem;
}

.service-card li::before {
  content: "•";
  color: var(--accent-secondary);
  margin-right: 0.4rem;
}

.problem-card {
  padding: 1.25rem 1.25rem 1.4rem;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 250, 235, 0.96), rgba(255, 242, 214, 0.98));
  border: 1px solid rgba(244, 167, 55, 0.3);
  box-shadow: 0 18px 40px rgba(63, 44, 122, 0.14);
}

.problem-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.problem-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.link-arrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-strong);
}

.link-arrow::after {
  content: "↗";
  margin-left: 0.35rem;
  font-size: 0.9em;
}

.trust-card {
  padding: 1.25rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 5, 55, 0.08);
  box-shadow: 0 18px 42px rgba(63, 44, 122, 0.18);
}

.trust-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.trust-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Videos */
.videos-cta {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.videos-cta p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-photo {
  border-radius: 20px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15, 5, 55, 0.08);
  box-shadow: 0 18px 40px rgba(63, 44, 122, 0.16);
  position: relative;
  overflow: hidden;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(5, 0, 15, 0.2), transparent 60%);
}

.gallery-photo--1 {
  background-image: url("../img/slider/1.jpg");
}

.gallery-photo--2 {
  background-image: url("../img/slider/2.jpg");
}

.gallery-photo--3 {
  background-image: url("../img/slider/3.jpg");
}

.gallery-photo--4 {
  background-image: url("../img/slider/1.jpg");
}

.gallery-photo--5 {
  background-image: url("../img/slider/2.jpg");
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.gallery-layout-main,
.gallery-layout-side {
  display: grid;
  gap: 1rem;
}

.gallery-layout-main {
  grid-template-rows: minmax(0, 260px);
}

.gallery-layout-side {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 140px;
}

.gallery-layout-photo {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(15, 5, 55, 0.08);
  box-shadow: 0 18px 40px rgba(63, 44, 122, 0.16);
}

.gallery-slider {
  position: relative;
  margin-bottom: 2.3rem;
  border-radius: 26px;
  background: radial-gradient(circle at top, rgba(244, 176, 62, 0.08), #ffffff);
  border: 1px solid rgba(15, 5, 55, 0.08);
  padding: 1.1rem 3.3rem;
  box-shadow: 0 18px 40px rgba(63, 44, 122, 0.18);
  overflow: hidden;
}

.gallery-slider-track {
  position: relative;
  height: 320px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.gallery-slide-photo {
  height: 100%;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}

.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.18s ease-out, transform 0.12s ease-out, box-shadow 0.18s ease-out;
}

.gallery-slider-arrow i {
  font-size: 0.9rem;
}

.gallery-slider-arrow--prev {
  left: 0.7rem;
}

.gallery-slider-arrow--next {
  right: 0.7rem;
}

.gallery-slider-arrow:hover {
  background: var(--accent);
  color: #241305;
  box-shadow: 0 12px 26px rgba(63, 44, 122, 0.28);
}

.gallery-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.gallery-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.18s ease-out, transform 0.18s ease-out, width 0.18s ease-out;
}

.gallery-slider-dot.is-active {
  width: 18px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transform: translateY(-1px);
}

/* Map */
.map-wrapper {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 5, 55, 0.08);
  box-shadow: 0 18px 40px rgba(63, 44, 122, 0.18);
}

.map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Appointment */
.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.appointment-copy p {
  color: var(--text-soft);
}

.contact-highlight {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(244, 176, 62, 0.48);
  background: radial-gradient(circle at top left, rgba(244, 176, 62, 0.16), #fffaf3);
  font-size: 0.9rem;
}

.contact-highlight h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-highlight p {
  margin: 0.2rem 0;
}

.contact-highlight i {
  margin-right: 0.5rem;
  color: var(--accent-strong);
}

.appointment-form-card {
  background: radial-gradient(circle at top, #ffffff, #f4f0ff);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.appointment-form-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(244, 167, 55, 0.26);
  background: linear-gradient(145deg, rgba(255, 250, 235, 0.96), rgba(255, 243, 210, 0.98));
  padding: 0.65rem 0.75rem;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(244, 176, 62, 0.45);
}

.form-note {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #f4f0ff;
  border-top: 1px solid rgba(15, 5, 55, 0.06);
  padding-top: 2.2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  padding-bottom: 1.8rem;
}

.footer-col p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.brand--footer .brand-mark {
  width: 40px;
  height: 40px;
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.35rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.footer-social a:hover {
  background: var(--accent);
  color: #241305;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr);
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-photo {
    order: -1;
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .appointment-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-right {
    width: 100%;
    justify-content: flex-start;
  }

  .navbar-inner {
    padding-block: 0.6rem;
  }

  .navbar-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset-inline: 0;
    top: 70px;
    background: rgba(5, 2, 10, 0.96);
    backdrop-filter: blur(26px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease-out, opacity 0.2s ease-out;
    flex-direction: column;
    padding: 0.9rem 1.6rem 1.4rem;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 2.7rem;
  }

  .grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-card {
    max-width: none;
  }

  .gallery-slider {
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
  }

  .gallery-slider-track {
    height: 230px;
  }

  .gallery-slider-arrow {
    width: 30px;
    height: 30px;
  }

  .gallery-slider-dots {
    margin-top: 0.7rem;
  }

  .gallery-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-slide-photo {
    border-radius: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
  }
}

