:root {
  --bg-main: #050608;
  --bg-alt: #101217;
  --bg-card: #151821;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.15);
  --text-main: #f5f5f7;
  --text-muted: #a0a3af;
  --border-subtle: #272a33;
}

/* ============= GLOBAL ============= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: #000;
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 100% - 2.4rem);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: min(1200px, 100% - 3rem);
  }
}

/* =============== NAVBAR =============== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: none;
}

/* safety: disable any old hide-on-scroll class */
header.header-hidden {
  transform: none !important;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
}

/* left side: logo + text */
.nav-left {
  display: flex;
  align-items: center;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  min-width: 0;
}

.logo-placeholder img {
  height: 38px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-subtitle {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* right side: links + phone CTA */
.nav-links-wrapper {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.15vw, 1.25rem);
}

.nav-links a {
  position: relative;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05rem;
  height: 1px;
  background: rgba(243, 204, 112, 0.72);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.nav-links a:hover {
  color: #f3cc70;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* phone CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(180deg, #ccb36e, #b89a5c);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  color: #111;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.nav-cta.phone-link {
  color: #000;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.nav-cta.phone-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* =============== NAV TOGGLE (BURGER) =============== */

.nav-toggle {
  display: none;
  position: relative;
  width: 32px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease,
    bottom 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span:nth-child(3) {
  bottom: 0;
}

/* burger animation when nav is open */
.nav.open .nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* =============== RESPONSIVE NAV (MOBILE) =============== */

@media (max-width: 880px) {
  .nav {
    display: flex;
    padding-block: 0.55rem;
    min-height: 60px;
  }

  .logo-placeholder img {
    height: 34px;
  }

  .brand-title {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
  }

  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links-wrapper {
    position: fixed;
    inset-inline: 0;
    top: 60px;
    background: rgba(0, 0, 0, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 0;
    max-height: 0;
    overflow: hidden;
    gap: 0.75rem;

    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.2s ease;
  }

  .nav.open .nav-links-wrapper {
    max-height: 420px;
    padding: 0.8rem 1.3rem 1.2rem;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .nav-cta {
    margin-top: 0.6rem;
    width: 100%;
    justify-content: center;
    display: inline-flex;
    text-align: center;
  }
}

/* ============= MAIN / HERO ============= */

main {
  background: radial-gradient(
    circle at top,
    #20232b 0,
    #050608 45%,
    #020308 100%
  );
  padding-bottom: 3rem;
}

/* HERO – base layout */
#home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* HERO BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;

  /* ✅ correct root-relative path */
  background-image: url("/static/images/hero-alex.jpg");

  background-size: cover;
  background-repeat: no-repeat;

  /* back to a normal centred crop like your screenshots */
  background-position: center center;

  filter: none;
}


.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: transparent;
}

/* inner container */
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4.5rem 0 2.4rem;
}

/* === TEXT PANEL === */
.hero-text-block {
  max-width: 520px;
  color: #fff;
  padding: 1.35rem 1.45rem;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* Top labels */
.hero-heading-main,
.hero-heading-sub {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.85rem;
}

/* "ALEX SCALP" */
.hero-heading-main {
  background: #000;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

/* "HAIR TATTOO" */
.hero-heading-sub {
  background: #b9342d;
  border-radius: 8px;
  border: 1px solid #b9342d;
  color: #fff;
}

.hero-tagline {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f5f5f5;
}

.hero-tagline + .hero-tagline {
  margin-top: 0.3rem;
}

/* CTA BUTTON */
.hero-btn-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d9bb55;
  color: #111;
  padding: 0.9rem 1.8rem;
  min-height: 0;
  border-radius: 4px;
  border: 1px solid #d9bb55;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease;
  margin: 0.2rem 0;
}

.hero-btn:hover {
  background: #c3a545;
  transform: translateY(-2px);
}

/* HERO – RESPONSIVE */

@media (max-width: 900px) {
  .hero-bg {
    background-position-x: 45% !important;
    background-position-y: 45% !important;
  }

  .hero-inner {
    padding: 4.5rem 0 2.4rem;
    justify-content: flex-end;
  }

  .hero-text-block {
    max-width: none;
    margin: 0 1.2rem 1.6rem;
    padding: 1.1rem 1.25rem 1.3rem;
    border-radius: 16px;
  }

  .hero-heading-main,
  .hero-heading-sub {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    padding: 0.4rem 0.9rem;
  }

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

  .hero-btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text-block {
    margin: 0 0.9rem 1.4rem;
    padding: 1rem 1.1rem 1.2rem;
  }

  .hero-heading-main,
  .hero-heading-sub {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-tagline {
    font-size: 0.84rem;
  }
}

/* ============= ABOUT ============= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 840px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }
}

.about-photo {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1), #070910);
  border-radius: 1.3rem;
  border: 1px solid var(--border-subtle);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}

.about-video {
  width: 100%;
  border-radius: 1.4rem;
  display: block;
  object-fit: cover;
  background: #050608;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  max-height: 500px;
}

@media (max-width: 900px) {
  .about-video {
    max-height: 350px;
  }
}

.about-content p {
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.8rem;
  font-size: 0.8rem;
}

.about-meta-item strong {
  display: block;
  color: var(--text-main);
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.services-header-copy .section-subtitle {
  max-width: 58ch;
}

.services-summary {
  padding: 1.45rem 1.5rem;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 58%),
    #0c0e14;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-summary-kicker,
.services-cta-kicker,
.service-card-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.services-summary-title {
  margin: 0.7rem 0 0;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--text-main);
}

.services-summary-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}

.services-summary-item {
  display: grid;
  gap: 0.22rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-summary-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.services-summary-item strong {
  color: var(--text-main);
  font-size: 0.88rem;
}

.services-summary-item span {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.services-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.services-summary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    color 180ms ease;
}

.services-summary-link:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--accent);
}

.services-summary-link-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.services-summary-link-primary:hover {
  background: #e0bc4d;
  border-color: #e0bc4d;
  color: #111;
}

.section-page-link-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.2rem;
}

/* ===================== SERVICES – GRID & CARDS ===================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.services-grid {
  margin-top: 0;
}

.card {
  position: relative;
  padding: 1.9rem 1.9rem 1.6rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #1b1d23 0%, #111218 55%, #0d0e13 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.01);
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}

.service-card {
  min-height: 100%;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.service-card-top .card-tag {
  margin-bottom: 0;
}

.service-card-index {
  flex: 0 0 auto;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.08);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 195, 106, 0.6);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(245, 195, 106, 0.18);
  background: radial-gradient(circle at top left, #20232c 0%, #111218 55%, #090a0f 100%);
}

.card-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.9rem;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.85rem;
}

.card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 245, 245, 0.78);
  margin: 0;
}

.service-card-copy {
  margin-top: 0.1rem;
}

.service-card-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-meta p {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.card-footer {
  margin-top: 1.7rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 245, 0.9);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.card:hover .pill {
  border-color: rgba(245, 195, 106, 0.65);
  background: rgba(245, 195, 106, 0.06);
}

.services-cta-band {
  margin-top: 2rem;
  padding: 1.3rem 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0a0c12;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: center;
}

.services-cta-copy {
  max-width: 42rem;
}

.services-cta-copy p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* SERVICES – RESPONSIVE */

@media (max-width: 992px) {
  .services-header {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .card {
    min-height: 0;
  }

  .services-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .card {
    padding: 1.5rem 1.35rem 1.35rem;
    border-radius: 18px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .services-summary {
    padding: 1.2rem 1.1rem;
    border-radius: 18px;
  }

  .service-card-index {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.72rem;
  }

  .services-cta-band {
    padding: 1.1rem 1rem;
    border-radius: 18px;
  }

  .services-summary-actions {
    width: 100%;
  }

  .services-summary-link {
    width: 100%;
  }

  .section-page-link-row {
    width: 100%;
  }
}

/* ============= GALLERY CAROUSEL ============= */

.gallery-carousel {
  position: relative;
  margin-top: 1.4rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-window {
  overflow: hidden;
  border-radius: 0.9rem;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-item {
  position: relative;
  flex: 0 0 100%;
  max-width: 100%;
  min-height: 200px;
  aspect-ratio: 16 / 10.5;
  background: #000;
  border-radius: 0.9rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#gallery.in-view .gallery-item {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img.gallery-photo,
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}

@media (hover: hover) {
  .gallery-item:hover img.gallery-photo {
    transform: scale(1.05);
  }

  .gallery-item:hover .gallery-photo {
    filter: brightness(0.9);
  }
}

.gallery-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.45rem 0.65rem;
  font-size: 0.74rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #f9fafb;
}

.gallery-label span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.7);
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 600px) {
  .gallery-prev,
  .gallery-next {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .gallery-prev {
    left: 6px;
  }

  .gallery-next {
    right: 6px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 780px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-static-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 1.6rem;
  justify-content: center;
}

.gallery-static-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    #0b0d13;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.gallery-story-card {
  grid-column: 1 / -1;
  max-width: 860px;
  justify-self: center;
}

.gallery-story-card .gallery-photo {
  aspect-ratio: auto;
  height: auto;
}

.gallery-story-inline .gallery-photo {
  aspect-ratio: 4 / 2.55;
  max-height: 300px;
  object-position: center top;
}

.gallery-story-inline .gallery-static-copy {
  padding-top: 0.95rem;
}

.gallery-static-card .gallery-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: none;
}

.gallery-static-copy {
  padding: 1rem 1rem 1.15rem;
}

.gallery-story-panel {
  padding: 1.15rem 1.2rem 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    #0d1016;
}

.gallery-static-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-static-title {
  margin: 0.55rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.gallery-static-copy p {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.gallery-static-result {
  padding-top: 0.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-static-quote {
  padding-top: 0.1rem;
  color: rgba(255, 255, 255, 0.92);
}

.gallery-static-quote span {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--text-muted);
}

.gallery-static-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
  .gallery-static-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ============= WHY CHOOSE US ============= */

#why-us {
  padding-top: 2.4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: center;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-media {
  background: #050608;
  border-radius: 1.4rem;
  padding: 0.4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.why-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  object-fit: cover;
}

.why-content {
  max-width: 540px;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8e1;
  margin-bottom: 0.7rem;
}

.why-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.why-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.why-item:last-child {
  border-bottom: none;
}

.why-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.why-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.why-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background: #1a2a18;
  color: #f5f5f5;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  margin-top: 1.2rem;
  margin-bottom: 0.6rem;
}

.why-cta:hover {
  background: #24401f;
}

/* ============= PRICING (hidden for now) ============= */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  }
}

.pricing-highlight {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(8, 9, 15, 0.95)
  );
  border-radius: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 1.2rem 1.25rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.8);
}

.pricing-highlight h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #f3cc70;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.86rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.3rem;
}

.pricing-row small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pricing-note {
  margin-top: 0.6rem;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.pricing-extra {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ============= REVIEWS ============= */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.2rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 780px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.15rem;
  font-size: 0.84rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.review-card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.review-stars {
  color: var(--accent);
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
}

.review-name {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviews-page-grid {
  margin-top: 1rem;
}

.reviews-summary-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0a0c12;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.reviews-summary-copy {
  max-width: 42rem;
}

.reviews-summary-copy p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.reviews-summary-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.reviews-stat {
  min-width: 120px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.reviews-stat strong {
  display: block;
  color: var(--text-main);
  font-size: 0.92rem;
}

.reviews-stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.reviews-section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

.reviews-section-intro p {
  margin: 0;
  max-width: 38rem;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.reviews-section-intro-compact {
  margin-top: 1.6rem;
}

.review-highlights-grid,
.review-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.review-highlight-card {
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--bg-card);
}

.review-highlight-card h2 {
  margin: 0.55rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.review-highlight-card p {
  margin: 0.55rem 0 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .reviews-summary-band {
    grid-template-columns: 1fr;
  }

  .reviews-summary-stats {
    justify-content: flex-start;
  }

  .reviews-section-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-highlights-grid,
  .review-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= FAQ ============= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.4rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 0.85rem;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-header {
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  cursor: pointer;
}

.faq-header:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.faq-question {
  font-size: 0.86rem;
}

.faq-toggle {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: max-height 0.22s ease, padding-bottom 0.22s ease;
}

.faq-item.active .faq-body {
  max-height: 160px;
  padding-bottom: 0.75rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-page-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0a0c12;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.faq-page-summary-copy {
  max-width: 42rem;
}

.faq-page-summary-copy p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-page-summary-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.faq-page-point {
  min-width: 128px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.faq-page-point strong {
  display: block;
  color: var(--text-main);
  font-size: 0.92rem;
}

.faq-page-point span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.faq-page-intro {
  margin-top: 1.4rem;
}

.faq-page-intro p {
  max-width: 42rem;
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-page-list {
  margin-top: 1rem;
}

.faq-page .faq-item {
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.faq-page .faq-header {
  padding: 0.95rem 1rem;
}

.faq-page .faq-question {
  font-size: 0.9rem;
}

.faq-page .faq-body {
  padding: 0 1rem 0;
  font-size: 0.86rem;
  line-height: 1.75;
}

.faq-page .faq-item.active .faq-body {
  padding: 0 1rem 1rem;
}

.policies-summary-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0a0c12;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.policies-summary-copy {
  max-width: 42rem;
}

.policies-summary-copy p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.policies-summary-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.policies-point {
  min-width: 128px;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.policies-point strong {
  display: block;
  color: var(--text-main);
  font-size: 0.92rem;
}

.policies-point span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.policies-page-grid {
  margin-top: 1.2rem;
}

.policies-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.policies-link-card {
  display: block;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--bg-card);
  text-decoration: none;
}

.policies-link-card h2 {
  margin: 0.55rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.policies-link-card p {
  margin: 0.55rem 0 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.policies-link-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

@media (max-width: 900px) {
  .faq-page-summary {
    grid-template-columns: 1fr;
  }

  .faq-page-summary-points {
    justify-content: flex-start;
  }

  .policies-summary-band {
    grid-template-columns: 1fr;
  }

  .policies-summary-points {
    justify-content: flex-start;
  }

  .policies-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= POLICIES + CLINIC CONTACT GRID ============= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 1.6rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 840px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.contact-card {
  background: var(--bg-card);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.2rem 1.3rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.65);
}

/* Booking / deposits / cancellation card – subtle gold highlight */
.contact-grid .contact-card:first-child {
  border-color: rgba(212, 175, 55, 0.7);
  background: radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.18),
      #11141b
    );
}

.contact-heading {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3cc70;
  margin-bottom: 0.7rem;
}

.booking-list {
  list-style: none;
  margin-top: 0.6rem;
  padding-left: 0;
}

.booking-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

/* Contact rows */
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.contact-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-value a {
  color: var(--text-main);
}

.contact-value a:hover {
  color: var(--accent);
}

/* Social pills */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.social-pill {
  font-size: 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.7rem;
  color: var(--text-muted);
}

/* ===== Clinic Contact Details card ===== */

#contact-details.contact-card {
  background: radial-gradient(
      circle at top right,
      rgba(120, 140, 200, 0.12),
      #10131b
    );
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

#contact-details .contact-value {
  font-size: 0.9rem;
  color: #f5f5f7;
}

#contact-details .contact-value a {
  font-weight: 500;
  text-decoration: none;
}

#contact-details .contact-value a:hover {
  color: var(--accent);
}

#contact-details .social-links {
  margin-top: 0.5rem;
}

#contact-details .social-pill {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-main);
  font-size: 0.8rem;
}

#contact-details .social-pill:hover {
  border-color: var(--accent);
}

@media (max-width: 640px) {
  #contact-details.contact-card {
    text-align: left;
  }

  #contact-details .social-links {
    justify-content: flex-start;
  }
}

/* ============= CONTACT SECTION (FORM + INFO) ============= */

.contact-section {
  background: var(--bg-alt);
  color: var(--text-main);
}

.contact-section .container {
  max-width: 900px;
}

/* Title + subtitle */
.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.contact-section .contact-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Grid: form + clinic info */
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  margin-top: 1.8rem;
}

@media (max-width: 768px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Both columns as cards */
.contact-section .contact-form,
.contact-section .contact-info {
  background: var(--bg-card);
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

/* Form layout */
.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Labels */
.contact-section .contact-form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

/* Inputs + textarea */
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: #05070d;
  padding: 0.7rem 0.9rem;
  font-size: 0.86rem;
  color: var(--text-main);
  outline: none;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.contact-section .contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* Submit button */
.contact-section .contact-form .btn-submit,
.contact-section .contact-form button {
  margin-top: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d9bb55;
  color: #111;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}

.contact-section .contact-form .btn-submit:hover,
.contact-section .contact-form button:hover {
  background: #c3a545;
}

#formMessage {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Clinic info card */
.contact-section .contact-info h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3cc70;
  margin-bottom: 0.6rem;
}

.contact-section .contact-info p {
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.contact-section .contact-info a {
  color: var(--accent);
}

.contact-section .contact-info a:hover {
  color: #f7d675;
}

/* WhatsApp button inside the info card */
.contact-section .contact-info .whatsapp-btn {
  margin-top: 0.8rem;
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #25d366;
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
}

/* === CONTACT FORM – STYLE WHATEVER HTML IS IN #contact-us === */

#contact-us {
  background: var(--bg-alt);
}

#contact-us .section-header {
  margin-bottom: 1.8rem;
}

#contact-us form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 1.1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

#about .section-header,
#gallery .section-header,
#reviews .section-header,
#faqs .section-header,
#policies .section-header {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* stack label over field */
#contact-us label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

/* make all inputs + textarea full-width, dark, rounded */
#contact-us input,
#contact-us textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border-subtle);
  background: #05070d;
  font-size: 0.86rem;
  color: var(--text-main);
  outline: none;
  box-sizing: border-box;
}

#contact-us input:focus,
#contact-us textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

#contact-us textarea {
  min-height: 110px;
  resize: vertical;
}

/* submit button */
#contact-us button[type="submit"] {
  margin-top: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #d9bb55;
  color: #111;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

#contact-us button[type="submit"]:hover {
  background: #c3a545;
}

/* ============= HIDE UNUSED SECTIONS ============= */

#pricing {
  display: none !important;
}

#booking {
  display: none !important;
}

/* ============= FLOATING WHATSAPP + PHONE (BOTTOM OF PAGE) ============= */

.floating-buttons{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;

  display: flex;
  justify-content: space-between;
  padding: 0 18px;

  z-index: 9999;

  /* stops the wide container blocking clicks on content */
  pointer-events: none;
}

.floating-buttons .float-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(6, 8, 12, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* hard clip to remove edge artifacts */
  overflow: hidden;

  outline: 0;
  -webkit-tap-highlight-color: transparent;

  /* re-enable clicks for the actual buttons */
  pointer-events: auto;

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* stop accidental pseudo elements */
.floating-buttons .float-btn::before,
.floating-buttons .float-btn::after{
  content: none !important;
}

.floating-buttons .float-btn img{
  width: 100%;
  height: 100%;
  object-fit: cover;        /* fills circle */
  border-radius: 50%;
  display: block;
  transform: translateZ(0);
  filter: saturate(1.04) contrast(1.03);
}

/* hover */
.floating-buttons .float-btn:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 34px rgba(0,0,0,.38);
  border-color: rgba(255, 255, 255, 0.16);
}

.floating-buttons .float-btn:active{
  transform: translateY(0) scale(0.98);
}

.floating-buttons .float-btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.36);
}

/* vibration animation: animate the ICON ONLY */
.floating-buttons .whatsapp-btn img,
.floating-buttons .phone-btn img{
  animation: vibrate-4s 4s ease-in-out infinite;
}

@keyframes vibrate-4s{
  0%{ transform: translate(0,0) translateZ(0); }
  5%{ transform: translate(-2px,2px) translateZ(0); }
  10%{ transform: translate(2px,-2px) translateZ(0); }
  15%{ transform: translate(-2px,2px) translateZ(0); }
  20%{ transform: translate(2px,-2px) translateZ(0); }
  25%{ transform: translate(0,0) translateZ(0); }
  100%{ transform: translate(0,0) translateZ(0); }
}

/* safe-area support for iPhone */
@supports (bottom: env(safe-area-inset-bottom)){
  .floating-buttons{
    bottom: calc(18px + env(safe-area-inset-bottom));
    padding-left: calc(18px + env(safe-area-inset-left));
    padding-right: calc(18px + env(safe-area-inset-right));
  }
}


/* ===== SECTION TITLES (kicker + big white heading) ===== */

.section-header {
  margin-bottom: 2.8rem;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
}

.section-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.section-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    color 180ms ease;
}

.section-header-link:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--accent);
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
}

@media (max-width: 640px) {
  .section-header-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
}

/* ===== GLOBAL SECTION SPACING + NAV OFFSET ===== */

section {
  scroll-margin-top: 90px;
}

/* default vertical padding for all sections except hero */
section:not(#home) {
  padding-top: 3.4rem;
  padding-bottom: 3.6rem;
}

/* slightly extra top space for the main content sections */
#about,
#services,
#gallery,
#why-us,
#reviews,
#faqs,
#policies,
#contact-us {
  padding-top: 3.8rem;
}

/* ============= CLEAN FOOTER ============= */

#site-footer {
  margin-top: 2.4rem;
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  color: var(--text-muted);
}

#site-footer .footer-top {
  padding: 2.4rem 0 1.8rem;
}

#site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) minmax(0, 3fr) minmax(210px, 1.1fr);
  gap: 3rem;
  align-items: start;
}

#site-footer .footer-col {
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

#site-footer .footer-brand-panel,
#site-footer .footer-brand-col {
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

#site-footer .footer-contact-panel {
  order: 3;
  justify-self: end;
  width: 100%;
  max-width: 230px;
}

#site-footer .footer-links-panel {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem 2.4rem;
  align-items: start;
  width: 100%;
}

#site-footer .footer-links-panel > .footer-link-group {
  order: 2;
}

#site-footer .footer-links-panel > .footer-link-group:last-child {
  order: 3;
}

#site-footer .footer-links-panel > .footer-link-group-services {
  order: 1;
}

#site-footer .footer-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

#site-footer .footer-heading {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

#site-footer .footer-brand-name {
  margin-bottom: 0;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#site-footer .footer-line {
  margin-bottom: 0.45rem;
  line-height: 1.55;
}

#site-footer .footer-contact-panel .footer-line {
  margin-bottom: 0;
}

#site-footer .footer-contact-panel .footer-line:not(.footer-location):not(.footer-appointment) {
  display: none;
}

#site-footer .footer-location,
#site-footer .footer-appointment {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

#site-footer .footer-location {
  margin-top: 1rem;
}

#site-footer .footer-line a {
  color: rgba(255, 255, 255, 0.78);
}

#site-footer .footer-line a:hover {
  color: var(--accent);
}

#site-footer .footer-list {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

#site-footer .footer-list li {
  margin-bottom: 0.55rem;
}

#site-footer .footer-logo {
  max-width: 88px;
  height: auto;
  display: block;
  margin: 0;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

#site-footer .footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#site-footer .footer-brand-copy-wrap {
  min-width: 0;
}

#site-footer .footer-tagline {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 28ch;
}

#site-footer .footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

#site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease,
    border-color 0.18s ease;
}

#site-footer .footer-cta:hover {
  transform: translateY(-1px);
}

#site-footer .footer-cta-primary {
  background: var(--accent);
  color: #111;
}

#site-footer .footer-cta-primary:hover {
  background: #e0bc4d;
}

#site-footer .footer-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

#site-footer .footer-cta-secondary:hover {
  border-color: rgba(212, 175, 55, 0.55);
  color: var(--accent);
}

#site-footer .footer-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#site-footer .footer-label {
  display: block;
  margin: 1rem 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

#site-footer .footer-link-strong,
#site-footer .footer-link-muted {
  display: inline-block;
}

#site-footer .footer-link-strong {
  font-size: 0.92rem;
  color: var(--text-main);
}

#site-footer .footer-link-strong:hover {
  color: var(--accent);
}

#site-footer .footer-link-muted {
  margin-top: 0.28rem;
  color: var(--text-muted);
}

#site-footer .footer-link-muted:hover {
  color: var(--accent);
}

#site-footer .footer-link-group + .footer-link-group {
  margin-top: 0;
}

#site-footer .footer-link-group {
  min-width: 0;
}

#site-footer .footer-link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

#site-footer .footer-link-grid-compact {
  grid-template-columns: 1fr;
}

#site-footer .footer-link-list {
  display: grid;
  gap: 0.6rem;
}

#site-footer .footer-contact-panel .footer-link-list {
  gap: 0.72rem;
}

#site-footer .footer-link-grid a,
#site-footer .footer-link-list a,
#site-footer .footer-social a {
  color: rgba(255, 255, 255, 0.78);
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0;
}

#site-footer .footer-link-grid a:hover,
#site-footer .footer-link-list a:hover,
#site-footer .footer-social a:hover {
  color: var(--accent);
}

#site-footer .footer-social {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
}

#site-footer .footer-bottom {
  padding: 0 0 1.4rem;
}

#site-footer .footer-bottom-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

#site-footer .footer-credit {
  color: var(--text-muted);
  justify-self: end;
  text-align: right;
}

#site-footer .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

#site-footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
}

#site-footer .footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 960px) {
  #site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #site-footer .footer-links-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 2rem;
  }

  #site-footer .footer-contact-panel {
    order: 3;
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 640px) {
  #site-footer .footer-top {
    padding-top: 2rem;
  }

  #site-footer .footer-brand-lockup {
    align-items: flex-start;
  }

  #site-footer .footer-links-panel {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  #site-footer .footer-bottom-links {
    gap: 1rem;
  }

  #site-footer .footer-bottom-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  #site-footer .footer-credit {
    justify-self: start;
    text-align: left;
  }

  #site-footer .footer-link-grid,
  #site-footer .footer-link-list {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer Legal Links ---- */

.footer-legal a {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.footer-legal a:hover {
  color: #f7d675;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.55);
  text-decoration: underline;
}


/* =========================
   Legal pages: offset for fixed navbar
   ========================= */
body.legal-page main,
body.content-page main {
  padding-top: 110px; /* increase/decrease if needed */
}

@media (max-width: 768px) {
  body.legal-page main,
  body.content-page main {
    padding-top: 140px;
  }
}
/* ===== Legal pages: prevent headings being hidden under fixed navbar ===== */
.legal-page main,
.content-page main {
  padding-top: 120px;
}

@media (max-width: 900px) {
  .legal-page main,
  .content-page main {
    padding-top: 95px;
  }
}

/* ===============================
   CONTACT FORM STATUS + DISABLED BTN
   (Patch - safe overrides)
   =============================== */

.contact-us-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-us-intro {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.contact-us-hint {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .contact-us-row {
    grid-template-columns: 1fr;
  }
}

.contact-us-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.contact-us-alt-link {
  font-size: 0.82rem;
  color: var(--accent);
}

.contact-us-alt-link:hover {
  color: #f7d675;
  text-decoration: underline;
}

.contact-us-status {
  margin-top: 0.8rem;
  min-height: 1.2em; /* prevents layout jump */
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.contact-us-status.is-success {
  color: #7dd56f;
}

.contact-us-status.is-error {
  color: #ff6b6b;
}

.contact-us-status.is-loading {
  color: var(--text-muted);
}

#contact-us button[type="submit"][disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

/* ===============================
   FOOTER SOCIAL LINKS CLICKABLE
   =============================== */

#site-footer .footer-social a {
  color: var(--text-main);
  text-decoration: none;
}

#site-footer .footer-social a:hover {
  color: var(--accent);
  text-decoration: underline;
}

