/* ═══════════════════════════════════════════════════
   THE LUXURY COMPANY — Global Stylesheet
   Theme: Obsidian Black · Burnished Gold · Translucency
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6C0;
  --gold-dark: #8B6914;
  --black: #080808;
  --black-soft: #111111;
  --black-card: #161616;
  --glass-bg: rgba(12, 12, 12, 0.72);
  --glass-border: rgba(201, 168, 76, 0.22);
  --glass-light: rgba(201, 168, 76, 0.07);
  --white: #FAF6EF;
  --white-dim: rgba(250, 246, 239, 0.65);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Floating WhatsApp ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 950;
  cursor: pointer;
  color: #ffffff;
}

.whatsapp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  text-decoration: none;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-icon svg {
  width: 54px;
  height: 54px;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-icon {
    width: 60px;
    height: 60px;
  }
}

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

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ── Typography Helpers ─────────────────────────── */
.serif {
  font-family: var(--font-serif);
}

.display {
  font-family: var(--font-display);
}

.gold {
  color: var(--gold);
}

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

/* ── Gold Divider ───────────────────────────────── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

.gold-rule.left {
  margin: 1.5rem 0;
}

/* ── Section Label ──────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Glass Card ─────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

nav.scrolled {
  padding: 0.85rem 5vw;
  background: rgba(8, 8, 8, 0.92);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-monogram {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  line-height: 1.3;
}

.nav-logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  color: var(--white-dim);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-socials {
  display: flex;
  gap: 0.9rem;
}

.nav-socials a {
  font-size: 0.75rem;
  color: var(--white-dim);
  transition: color 0.3s;
}

.nav-socials a:hover {
  color: var(--gold-light);
}

.nav-book {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.6rem 1.4rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.nav-book:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 8, 8, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold-light);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 8vw 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-monogram {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  line-height: 1.3;
}

.footer-brand-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 2px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--white-dim);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.footer-contact-list a {
  color: var(--white-dim);
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.fc-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.68rem;
  color: rgba(250, 246, 239, 0.3);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-gold span {
  position: relative;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeUp {
  animation: fadeUp 0.9s ease both;
}

.animate-fadeIn {
  animation: fadeIn 0.9s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

/* ── Decorative ────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── Section header ────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Page Hero (shared) ────────────────────────── */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 8vw 4.5rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .nav-socials {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-book {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}



/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(8, 8, 8, 0.82) 45%, rgba(8, 8, 8, 0.25) 100%),
    radial-gradient(ellipse at 20% 70%, rgba(139, 105, 20, 0.15) 0%, transparent 55%),
    url('./banner-1.jpg') center/cover no-repeat;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent);
  top: -80px;
  right: 5%;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07), transparent);
  bottom: 10%;
  left: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  animation: fadeUp 1s ease both;
}

.hero-monogram {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5em;
  display: block;
  margin-bottom: 0.5rem;
  animation: fadeUp 1s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.3rem;
  animation: fadeUp 1s ease 0.15s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--white-dim);
  margin: 1.2rem 0 2.6rem;
  line-height: 1.6;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.45s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1s both;
}

.hero-scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ── INTRO NUMBERS ──────────────────────────────── */
.intro-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.num-item {
  text-align: center;
  padding: 2.8rem 1rem;
  border-right: 1px solid var(--glass-border);
  transition: background 0.4s;
}

.num-item:last-child {
  border-right: none;
}

.num-item:hover {
  background: var(--glass-light);
}

.num-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.num-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ── ABOUT STRIP ────────────────────────────────── */
.about-strip {
  padding: 8rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-strip-text {}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.about-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-strip-img {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.82);
}

.about-img-frame {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--glass-border);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 1.3rem 1.8rem;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 3px;
}

/* ── SERVICES PREVIEW ───────────────────────────── */
.services-preview {
  padding: 6rem 8vw 8rem;
  background: var(--black-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.svc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: var(--black-card);
}

.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}

.svc-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.4) saturate(0.5);
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2rem;
}

.svc-card-tag {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.svc-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.svc-card-name em {
  font-style: italic;
}

.svc-card-desc {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.svc-card:hover .svc-card-desc {
  max-height: 80px;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.svc-card:hover .svc-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Wide card (spans 2 cols) */
.svc-card.wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

/* ── QUOTE SECTION ──────────────────────────────── */
.quote-section {
  position: relative;
  padding: 9rem 8vw;
  text-align: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--black), rgba(8, 8, 8, 0.5), var(--black)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1800&q=80') center/cover;
  opacity: 0.35;
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
}

.quote-author {
  margin-top: 2rem;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials {
  padding: 7rem 8vw;
  background: var(--black-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.tcard {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  padding: 2.5rem;
  transition: border-color 0.4s, transform 0.4s;
}

.tcard:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.tcard-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 1.2rem;
}

.tcard-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.tcard-author {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CTA STRIP ──────────────────────────────────── */
.cta-strip {
  padding: 5rem 8vw;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.07), rgba(139, 105, 20, 0.1));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
}

.cta-strip-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-strip-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white-dim);
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-strip {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-main-img {
    height: 380px;
  }

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

  .svc-card.wide {
    grid-column: span 2;
  }

  .intro-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .num-item:nth-child(2) {
    border-right: none;
  }

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card.wide {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .intro-numbers {
    grid-template-columns: 1fr 1fr;
  }
}

/* about page */

.page-hero .page-hero-bg {
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.9) 45%, rgba(8, 8, 8, 0.3)),
    url('https://images.unsplash.com/photo-1470259078422-826894b933aa?w=1800&q=80') center/cover;
}

.page-hero .menu{
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.9) 45%, rgba(8, 8, 8, 0.3)),
    url('./menu.jpg.jpeg') center/cover !important;
}

/* Story */
.story {
  padding: 7rem 8vw;
}

.story-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.85;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 3rem;
}

.story-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-body p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.story-img-wrap {
  position: relative;
}

.story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: brightness(0.8);
}

.story-img-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--gold);
}

.story-img-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.story-img-card cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* What Sets Us Apart */
.differentiators {
  padding: 6rem 8vw;
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  border-top: 2px solid transparent;
}

.diff-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.diff-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.diff-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.diff-desc {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* Services Overview */
.services-overview {
  padding: 7rem 8vw;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.services-overview-grid.reverse {
  direction: rtl;
}

.services-overview-grid.reverse>* {
  direction: ltr;
}

.sov-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: brightness(0.78);
}

.sov-text {}

.sov-label {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.sov-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sov-title em {
  font-style: italic;
  color: var(--gold-light);
}

.sov-body {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* Location */
.location-section {
  padding: 6rem 8vw;
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.loc-details {}

.loc-address {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 2;
  margin-bottom: 2rem;
}

.loc-address strong {
  color: var(--white);
}

.loc-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.loc-contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--white-dim);
}

.loc-contact-item a {
  color: var(--white-dim);
  transition: color 0.3s;
}

.loc-contact-item a:hover {
  color: var(--gold-light);
}

.lci-icon {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.loc-map {
  height: 380px;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.loc-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(201, 168, 76, 0.03) 30px, rgba(201, 168, 76, 0.03) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(201, 168, 76, 0.03) 30px, rgba(201, 168, 76, 0.03) 31px);
}

.loc-map-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.loc-map-icon {
  font-size: 3rem;
  color: var(--gold);
}

.loc-map-text {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.7rem;
}

@media (max-width: 1024px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-body-grid {
    grid-template-columns: 1fr;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-overview-grid.reverse {
    direction: ltr;
  }

  .location-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}


/* contact page */
.page-hero .page-hero-bg {
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.95) 45%, rgba(15, 12, 5, 0.6)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1800&q=80') center/cover;
}

/* Layout */
.contact-layout {
  padding: 7rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-layout {
  display: grid;
  align-items: start;
  width: 100%;
}

/* Info side */
.contact-info {}

.ci-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 3rem;
}

.ci-block {
  margin-bottom: 2.5rem;
}

.ci-label {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.ci-value a {
  color: var(--white-dim);
  transition: color 0.3s;
}

.ci-value a:hover {
  color: var(--gold-light);
}

.ci-value strong {
  color: var(--white);
}

/* Map */
.ci-map {
  margin-top: 2.5rem;
  height: 240px;
  background: var(--black-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ci-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(201, 168, 76, 0.03) 28px, rgba(201, 168, 76, 0.03) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(201, 168, 76, 0.03) 28px, rgba(201, 168, 76, 0.03) 29px);
}

.ci-map-pin {
  text-align: center;
  position: relative;
  z-index: 2;
}

.ci-map-pin-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

.ci-map-pin-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.5rem;
}

/* Form */
.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 3.5rem;
  position: relative;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.form-title em {
  font-style: italic;
  color: var(--gold-light);
}

.form-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  appearance: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(250, 246, 239, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--black-soft);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.65rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* Success */
.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
}

.success-msg.show {
  display: block;
}

.success-msg .tick {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-msg h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
}

.success-msg p {
  color: var(--white-dim);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 680px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
}


/* gallery page */

.page-hero .page-hero-bg {
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.85) 40%, rgba(8, 8, 8, 0.25)),
    url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1800&q=80') center/cover;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 3.5rem 8vw 2rem;
}

.tab-btn {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: none;
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.06);
}

/* Masonry */
.gallery-grid {
  padding: 1rem 8vw 7rem;
  columns: 3;
  column-gap: 4px;
}

.gi {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  cursor: pointer;
}

.gi img {
  display: block;
  width: 100%;
  filter: brightness(0.72) saturate(0.8);
  transition: transform 0.6s ease, filter 0.5s;
}

.gi:hover img {
  transform: scale(1.04);
  filter: brightness(0.5) saturate(0.6);
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}

.gi:hover .gi-overlay {
  background: rgba(8, 8, 8, 0.45);
}

.gi-cap {
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.gi:hover .gi-cap {
  opacity: 1;
  transform: translateY(0);
}

.gi-cap h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.gi-cap span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.96);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: flex;
}

.lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.lb-img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lb-prev {
  left: 1rem;
}

.lb-next {
  right: 1rem;
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(201, 168, 76, 0.2);
}

.lb-cap {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--white-dim);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    columns: 1;
  }
}

/* menu page */

.page-hero .page-hero-bg {
  background:
    linear-gradient(110deg, rgba(8, 8, 8, 0.92) 50%, rgba(8, 8, 8, 0.4)),
    url('https://images.unsplash.com/photo-1470259078422-826894b933aa?w=1800&q=80') center/cover;
}

.page-hero .gallery {
  background:
    linear-gradient(110deg, rgba(8, 8, 8, 0.92) 50%, rgba(8, 8, 8, 0.4)),
    url('./gallery.jpg.jpeg') center/cover;
}

.page-hero .contact {
  background:
    linear-gradient(110deg, rgba(8, 8, 8, 0.92) 50%, rgba(8, 8, 8, 0.4)),
    url('./contact.jpg.jpeg') center/cover;
}

/* ── Filter Tabs ─────────────────────────────────── */
.menu-filter {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0 6vw;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-filter::-webkit-scrollbar {
  display: none;
}

.mf-tab {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 1.2rem 1.6rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.mf-tab:hover {
  color: var(--gold-light);
}

.mf-tab.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ── Menu Layout ─────────────────────────────────── */
.menu-section {
  padding: 5rem 8vw 3rem;
}

.menu-section:last-of-type {
  padding-bottom: 7rem;
}

.menu-section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.msec-title-wrap {}

.msec-tag {
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.msec-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.msec-title em {
  font-style: italic;
  color: var(--gold-light);
}

.msec-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--white-dim);
  max-width: 340px;
  text-align: right;
  line-height: 1.6;
}

/* ── Service Grid Layouts ────────────────────────── */
/* Two-column list for most categories */
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Single column for smaller categories */
.menu-list.single {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 1.4rem;
  background: var(--black-card);
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  gap: 1rem;
}

.menu-item:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: var(--glass-border);
}

.mi-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  transition: color 0.3s;
}

.menu-item:hover .mi-name {
  color: var(--gold-light);
}

.mi-dot {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--glass-border), transparent);
  margin: 0 1rem;
  min-width: 20px;
}

.mi-badge {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

/* Category image + list split layout for hair colour */
.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.menu-split-img {
  height: 420px;
  object-fit: cover;
  filter: brightness(0.75);
}

/* ── Section Bands (alternating bg) ─────────────── */
.band {
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* ── Category Divider ───────────────────────────── */
.cat-divider {
  padding: 2rem 8vw 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cat-divider-label {
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-divider-line {
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-split {
    grid-template-columns: 1fr;
  }

  .menu-split-img {
    height: 260px;
  }

  .menu-section-header {
    grid-template-columns: 1fr;
  }

  .msec-desc {
    text-align: left;
  }
}



/* service page */
.page-hero .about {
  background:
    linear-gradient(to right, rgba(8, 8, 8, 0.88) 40%, rgba(8, 8, 8, 0.3)),
    url('./about.jpg.jpeg') center/cover !important;
}

/* Cards grid */
.services-section {
  padding: 7rem 8vw;
}

.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}

.sov-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--black-card);
  transition: var(--transition);
}

.sov-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 0.7s ease, filter 0.5s;
}

.sov-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.4);
}

.sov-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 2rem;
}

.sov-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

.sov-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}

.sov-title em {
  font-style: italic;
}

.sov-desc {
  font-family: var(--font-serif);
  font-size: 0.86rem;
  color: var(--white-dim);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.sov-card:hover .sov-desc {
  max-height: 90px;
}

.sov-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.sov-card:hover .sov-link {
  opacity: 1;
  transform: translateY(0);
}

.sov-card.wide {
  grid-column: span 2;
  aspect-ratio: 6/4;
}

/* Feature strip */
.feature-strip {
  padding: 6rem 8vw;
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.fs-text {}

.fs-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.fs-title em {
  font-style: italic;
  color: var(--gold-light);
}

.fs-body {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.fs-img {
  /* height: 420px; */
  object-fit: cover;
  filter: brightness(0.78);
}

@media (max-width: 1024px) {
  .svc-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sov-card.wide {
    grid-column: span 2;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .svc-overview-grid {
    grid-template-columns: 1fr;
  }

  .sov-card.wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
}


/* carousel items */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
}

.t-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.tcard {
  min-width: 100%;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.tcard-text {
  max-width: 700px;
  margin: 0 auto 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  gap: 10px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-dots button.active {
  background: var(--gold);
  transform: scale(1.2);
}


/* ── BRANDS SECTION ───────────────────────────────── */
.brands {
  padding: 7rem 8vw;
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.brands-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 3rem 2.5rem;
  align-items: center;
  justify-items: center;
}

.brand-item {
  width: 100%;
  /* max-width: 180px;
  height: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1.5rem; */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brand-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.brand-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.brand-item:hover::before {
  opacity: 1;
}

.brand-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.85) grayscale(30%);
  opacity: 0.75;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.brand-item:hover img {
  filter: brightness(1) grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .brands-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem 2rem;
  }

  .brand-item {
    max-width: 160px;
    height: auto;
    /* padding: 1.2rem; */
  }

  .brand-item img {
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .brands {
    padding: 5rem 6vw;
  }

  .brands-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem 1.5rem;
  }

  .brand-item {
    max-width: 140px;
    height: auto;
    /* padding: 1rem; */
  }

  .brand-item img {
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .brands-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .brand-item {
    max-width: 100%;
    height: 75px;
  }
}


.loc-map-inner {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.svc-dr-name{
  margin-bottom: 0px;
  line-height: 12px;
}

.svc-dar-desc{
  margin-top: 0px;
  font-size: small;
}


/* table */

.contact-table-section {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.contact-table {
  /* width: 100%; */
  min-width: 1200px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-table th,
.contact-table td {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-table th {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.contact-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.col-id {
  width: 5%;
  text-align: center;
}

.col-name {
  width: 16%;
}

.col-email {
  width: 24%;
}

.col-phone {
  width: 14%;
}

.col-service {
  width: 15%;
}

.col-message {
  width: 26%;
}

.loading-cell {
  text-align: center !important;
  padding: 30px !important;
}

.contact-table td:nth-child(1),
.contact-table th:nth-child(1) {
  text-align: center;
}

.contact-table td:nth-child(3) {
  word-break: break-all;
}

.contact-table td:nth-child(4) {
  white-space: nowrap;
}

.contact-table td:nth-child(6) {
  line-height: 1.8;
}

@media (max-width: 991px) {
  .contact-table th,
  .contact-table td {
    padding: 14px 12px;
    font-size: 14px;
  }

  .contact-table th {
    font-size: 17px;
  }
}

/* table */