/* ═══════════════════════════════════════════════
   PBZ NİZAM ORGANİZASYON — MAIN STYLES
   ═══════════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --gold-pale: rgba(201,168,76,0.12);
  --black: #0A0A0A;
  --dark: #111009;
  --dark2: #0D0B08;
  --off-white: #F8F5EF;
  --text-muted: rgba(248,245,239,0.5);
  --text-dim: rgba(248,245,239,0.35);
  --border: rgba(201,168,76,0.18);
  --border-hover: rgba(201,168,76,0.6);
  --radius: 2px;
  --font-serif: 'Playfair Display', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.2rem 0;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
.navbar.scrolled {
  padding: 0.8rem 0;
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 19px; letter-spacing: 3px; color: var(--gold);
  transition: var(--transition);
}
.nav-logo:hover { color: var(--gold-light); }
.logo-crown { animation: floatUp 3s ease-in-out infinite; display: inline-block; }
.logo-sep { opacity: 0.5; }
.nav-links {
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-link {
  font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(248,245,239,0.55);
  padding: 8px 14px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-cta {
  font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 10px 22px; background: transparent;
  transition: var(--transition); margin-left: 0.8rem;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); transition: var(--transition);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 65px 65px;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.12;
  filter: grayscale(30%);
}
.hero-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-monogram {
  width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  animation: borderGlow 3s ease-in-out infinite;
}
.hero-monogram span {
  font-family: var(--font-serif); font-size: 24px;
  color: var(--gold); letter-spacing: 2px;
}
.hero-eyebrow {
  font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  animation: fadeInUp 1s ease 0.2s both;
}
.h-line { width: 50px; height: 1px; background: var(--gold); opacity: 0.7; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 84px);
  font-weight: 400; line-height: 1.05;
  color: var(--off-white); margin-bottom: 0.3rem;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-cormorant);
  font-size: clamp(16px, 2.5vw, 22px);
  letter-spacing: 7px; text-transform: uppercase;
  color: rgba(201,168,76,0.7); margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-divider {
  display: flex; align-items: center; gap: 18px;
  justify-content: center; margin: 1.8rem auto;
  animation: fadeIn 1s ease 0.8s both;
}
.hd-left { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.hd-right { width: 80px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hd-icon { color: var(--gold); font-size: 13px; }
.hero-desc {
  font-family: var(--font-cormorant);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted); max-width: 520px;
  line-height: 1.85; margin: 0 auto 2.8rem;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; animation: fadeInUp 1s ease 0.9s both;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  animation: bounceDown 2s ease-in-out infinite;
  color: var(--gold); opacity: 0.5; font-size: 20px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-gold {
  background: var(--gold); color: var(--black);
  border: none; padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; transition: var(--transition);
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--black); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); color: var(--gold); }
.btn-sm { padding: 9px 22px; font-size: 9px; }
.btn-danger { background: #8B0000; color: white; border: none; padding: 8px 18px; font-size: 11px; letter-spacing: 1px; }
.btn-danger:hover { background: #a00; }

/* ══════════════════════════════════════
   GOLD BAND
══════════════════════════════════════ */
.gold-band {
  background: var(--gold); padding: 18px 2rem;
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.band-item {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.band-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.3); }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center; padding: 3rem 1rem;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.03); }
.stat-num {
  font-family: var(--font-serif); font-size: 46px;
  color: var(--gold); font-weight: 400;
  display: block;
}
.stat-line { width: 30px; height: 1px; background: var(--gold); margin: 10px auto; opacity: 0.4; }
.stat-lbl { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.sec-tag {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center;
  justify-content: center; gap: 12px; margin-bottom: 1.2rem;
}
.sec-tag::before, .sec-tag::after {
  content: ''; flex: 0 0 30px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400; color: var(--off-white);
  margin-bottom: 0.5rem; line-height: 1.2;
}
.sec-title em { color: var(--gold); font-style: italic; }
.sec-sub {
  font-family: var(--font-cormorant);
  font-size: 18px; color: var(--text-muted);
  max-width: 520px; margin: 0.8rem auto 0; line-height: 1.85;
}
.gold-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 1.2rem auto; opacity: 0.4;
}

/* ══════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.svc-card {
  background: var(--dark);
  padding: 3rem 2.5rem; text-align: center;
  transition: var(--transition); cursor: default;
}
.svc-card:hover { background: #161310; }
.svc-num {
  font-family: var(--font-serif); font-size: 11px;
  color: rgba(201,168,76,0.35); letter-spacing: 3px; margin-bottom: 1.5rem;
}
.svc-icon {
  width: 72px; height: 72px;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 26px;
  transition: var(--transition);
}
.svc-card:hover .svc-icon {
  border-color: var(--gold); background: rgba(201,168,76,0.05);
}
.svc-title {
  font-family: var(--font-serif); font-size: 19px;
  font-weight: 400; color: var(--off-white); margin-bottom: 0.8rem;
}
.svc-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.85; }
.svc-line {
  width: 0; height: 1px; background: var(--gold);
  margin: 1.5rem auto 0; transition: width 0.4s ease;
}
.svc-card:hover .svc-line { width: 40px; }

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-section { background: var(--dark2); }
.gallery-filter {
  display: flex; gap: 0.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3); color: var(--text-muted);
  padding: 8px 18px; background: transparent; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem; transform: translateY(10px);
  transition: var(--transition); opacity: 0;
}
.gallery-item:hover .gallery-label { transform: translateY(0); opacity: 1; }
.gallery-cat {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.gallery-name {
  font-family: var(--font-serif); font-size: 16px;
  color: var(--off-white);
}
.gallery-border {
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,0);
  transition: border-color 0.4s;
}
.gallery-item:hover .gallery-border { border-color: rgba(201,168,76,0.5); }
.gallery-video { width: 100%; height: 100%; object-fit: cover; }

/* ── Gallery Preview Illustrations (homepage) ── */
.gallery-illus {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
}
.gallery-illus.cat-dugun { background: radial-gradient(circle at 50% 30%, #1c1b12 0%, #0c0b07 70%); }
.gallery-illus.cat-nisan { background: radial-gradient(circle at 50% 35%, #2a160f 0%, #0d0907 75%); }
.gallery-illus.cat-kina  { background: radial-gradient(circle at 50% 35%, #241408 0%, #0c0805 75%); }
.gallery-illus.cat-davet { background: radial-gradient(circle at 50% 35%, #161a14 0%, #0a0b08 75%); }
.gallery-illus.cat-kurumsal { background: radial-gradient(circle at 50% 35%, #15140c 0%, #0a0907 75%); }
.gallery-art { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; }
.gallery-icon {
  width: 38%; max-width: 90px; height: auto;
  fill: none; stroke: var(--gold); stroke-width: 1.2;
  opacity: 0.85; transition: var(--transition);
}
.gallery-item.large .gallery-icon { max-width: 130px; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 8/3; }
.gallery-icon .fill { fill: var(--gold); stroke: none; }
.gallery-illus:hover .gallery-icon { opacity: 1; transform: scale(1.05); stroke: var(--gold-light); }
.gallery-label-static { margin-top: 1rem; }
.gallery-label-static .gallery-cat {
  font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.gallery-label-static .gallery-name {
  font-family: var(--font-serif); font-size: 16px; color: var(--off-white);
}
.gallery-illus .gallery-border { border-color: rgba(201,168,76,0.12); }
.gallery-illus:hover .gallery-border { border-color: rgba(201,168,76,0.45); }
.gallery-item.wide.gallery-illus { flex-direction: row; gap: 1.5rem; }
.gallery-item.wide .gallery-art { flex: 0 0 auto; width: auto; }
.gallery-item.wide .gallery-icon { max-width: 56px; }
.gallery-item.wide .gallery-label-static { margin-top: 0; text-align: left; }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(201,168,76,0.08);
}
.why-card {
  background: var(--dark);
  padding: 3rem; display: flex; gap: 2rem;
  align-items: flex-start; transition: var(--transition);
}
.why-card:hover { background: #15110A; }
.why-num {
  font-family: var(--font-serif); font-size: 38px;
  color: rgba(201,168,76,0.18); font-weight: 400;
  line-height: 1; flex-shrink: 0; min-width: 52px;
}
.why-icon { font-size: 22px; color: var(--gold); margin-bottom: 0.8rem; }
.why-card h4 {
  font-family: var(--font-serif); font-size: 19px;
  font-weight: 400; color: var(--off-white); margin-bottom: 0.6rem;
}
.why-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.9; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(201,168,76,0.08);
}
.testi-card {
  background: var(--black); padding: 2.5rem;
  transition: var(--transition);
}
.testi-card:hover { background: var(--dark2); }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 1.2rem; }
.testi-quote {
  font-family: var(--font-cormorant);
  font-size: 17px; color: rgba(248,245,239,0.7);
  line-height: 1.9; font-style: italic; margin-bottom: 1.5rem;
}
.testi-line { width: 24px; height: 1px; background: var(--gold); margin-bottom: 1rem; opacity: 0.5; }
.testi-name { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.testi-event { font-size: 10px; color: var(--text-dim); letter-spacing: 1px; margin-top: 4px; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 7rem 2rem; text-align: center;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.cta-ornament {
  font-family: var(--font-serif); font-size: 22px;
  color: rgba(201,168,76,0.3); margin-bottom: 1.5rem;
  letter-spacing: 8px; animation: shimmer 3s ease-in-out infinite;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400; color: var(--off-white);
  margin-bottom: 0.5rem; position: relative; z-index: 1;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-desc {
  font-family: var(--font-cormorant);
  font-size: 19px; color: var(--text-muted);
  margin: 1.2rem auto 2.8rem; max-width: 440px;
  line-height: 1.85; position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   CONTACT BAR / PAGE
══════════════════════════════════════ */
.contact-bar {
  background: var(--black);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.contact-bar-item {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; border-right: 1px solid var(--border); padding: 2rem;
}
.contact-bar-item:last-child { border-right: none; }
.cb-icon { color: var(--gold); font-size: 20px; }
.cb-lbl { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.5); margin-bottom: 4px; }
.cb-val { font-size: 13px; color: rgba(248,245,239,0.6); }
.cb-val a { color: rgba(248,245,239,0.6); transition: var(--transition); }
.cb-val a:hover { color: var(--gold); }

/* Contact Form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-form-wrap h3 {
  font-family: var(--font-serif); font-size: 28px;
  color: var(--off-white); margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(201,168,76,0.04);
  border: 1px solid var(--border); color: var(--off-white);
  padding: 12px 16px; font-family: var(--font-sans);
  font-size: 13px; transition: var(--transition);
  outline: none; border-radius: 0;
  -webkit-appearance: none;
}
.form-group select option { background: var(--dark); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-wrap { padding: 2rem 0; }
.contact-info-wrap h3 {
  font-family: var(--font-serif); font-size: 28px;
  color: var(--off-white); margin-bottom: 2rem;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 17px; flex-shrink: 0;
}
.contact-detail-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-detail-val { font-size: 14px; color: var(--text-muted); }
.contact-detail-val a { color: var(--text-muted); transition: var(--transition); }
.contact-detail-val a:hover { color: var(--gold); }
.map-wrap {
  margin-top: 2rem; border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap iframe { display: block; width: 100%; height: 300px; filter: grayscale(30%) invert(92%) hue-rotate(180deg); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero {
  min-height: 60vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 9rem 2rem 5rem;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 45%; aspect-ratio: 1; object-fit: cover;
  border: 4px solid var(--black);
}
.about-border-deco {
  position: absolute; top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid rgba(201,168,76,0.2); pointer-events: none;
}
.about-text .sec-tag { justify-content: flex-start; }
.about-text .sec-tag::before { display: none; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400; color: var(--off-white);
  line-height: 1.2; margin-bottom: 1rem;
}
.about-text h2 em { color: var(--gold); font-style: italic; }
.about-text p {
  font-family: var(--font-cormorant);
  font-size: 17px; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 1rem;
}
.about-values { margin-top: 2rem; }
.about-value {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.2rem;
}
.av-num {
  font-family: var(--font-serif); font-size: 28px;
  color: rgba(201,168,76,0.2); line-height: 1; flex-shrink: 0;
}
.av-text h5 {
  font-family: var(--font-serif); font-size: 16px;
  font-weight: 400; color: var(--off-white); margin-bottom: 3px;
}
.av-text p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--border); margin-top: 3rem;
}
.team-card { background: var(--dark); padding: 2.5rem; text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 28px; color: var(--gold);
}
.team-name { font-family: var(--font-serif); font-size: 17px; color: var(--off-white); margin-bottom: 4px; }
.team-role { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  padding: 9rem 2rem 5rem; text-align: center;
  background: var(--black); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 65px 65px;
}
.breadcrumb {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 400; color: var(--off-white);
  position: relative; z-index: 1;
}
.page-title em { color: var(--gold); font-style: italic; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: #060504; }
.footer-top { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem;
}
.footer-logo {
  font-family: var(--font-serif); font-size: 19px;
  letter-spacing: 4px; color: var(--gold); margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-cormorant); font-size: 15px;
  color: var(--text-dim); line-height: 1.7; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 15px; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 12.5px; color: var(--text-dim); transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 1rem; font-size: 12.5px; color: var(--text-dim);
}
.footer-contact i { color: var(--gold); margin-top: 2px; font-size: 13px; flex-shrink: 0; }
.footer-contact a { color: var(--text-dim); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-bottom-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 10px; color: rgba(248,245,239,0.18); letter-spacing: 1px; }
.footer-seo { font-size: 9px !important; color: rgba(248,245,239,0.12) !important; }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ══════════════════════════════════════
   FLASH MESSAGES
══════════════════════════════════════ */
.flash-container { position: fixed; top: 80px; right: 1rem; z-index: 2000; }
.flash {
  padding: 1rem 1.5rem; margin-bottom: 0.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(10,10,10,0.97);
  color: var(--off-white); font-size: 13px;
  display: flex; align-items: center; gap: 1rem;
  backdrop-filter: blur(10px);
  animation: slideInRight 0.3s ease;
  max-width: 380px;
}
.flash button { background: none; border: none; color: var(--text-muted); font-size: 18px; line-height: 1; }
.flash-error { border-left-color: #c0392b; }
.flash-success { border-left-color: #27ae60; }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: var(--gold);
  font-size: 28px; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(201,168,76,0.1); border: 1px solid var(--border);
  color: var(--gold); font-size: 20px; padding: 1rem;
  cursor: pointer; transition: var(--transition);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,168,76,0.2); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes shimmer {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(201,168,76,0.3); }
  50% { border-color: rgba(201,168,76,0.9); }
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    z-index: 199;
    overflow-y: auto;
  }
  .nav-links.open .nav-link {
    display: block;
    padding: 20px;
    text-align: center;
    color: #F8F5EF;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    background: transparent;
  }
  .nav-links.open .nav-link:hover,
  .nav-links.open .nav-link.active {
    color: #C9A84C;
    background: rgba(201,168,76,0.08);
  }
  .nav-links.open .nav-link::after { display: none; }
  .nav-links.open .nav-cta {
    display: block;
    margin: 20px;
    padding: 16px;
    text-align: center;
    background: #C9A84C;
    color: #0a0a0a;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .nav-toggle { display: flex; }
  .nav-link { font-size: 12px; padding: 12px; }
  .nav-cta { margin-left: 0; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .contact-bar { grid-template-columns: 1fr; }
  .contact-bar-item { border-right: none; border-bottom: 1px solid var(--border); }
  .gold-band { gap: 1rem; }
  .band-dot { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-title { font-size: 48px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section { padding: 4rem 1.2rem; }
  .svc-card { padding: 2rem 1.5rem; }
}
