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

/* ── Variables ── */
:root {
  --gold: #C41E3A;
  --gold-light: #D63050;
  --gold-dark: #9E1530;
  --gold-muted: rgba(196, 30, 58, 0.12);
  --gold-border: rgba(196, 30, 58, 0.35);
  --bg: #0A0A0A;
  --bg-2: #141414;
  --bg-3: #1C1C1C;
  --bg-4: #242424;
  --text: #F0F0F0;
  --text-muted: #888;
  --text-dim: #555;
  --white: #fff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', 'Segoe UI', sans-serif;
  --ease: all 0.3s ease;
  --ease-slow: all 0.5s ease;
  --radius: 3px;
  --max-w: 1200px;
  --shadow-gold: 0 8px 32px rgba(196, 30, 58, 0.3);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-2);
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--white);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  font-weight: 300;
}

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

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-title span {
  color: var(--gold);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--bg-4);
}

.btn-dark:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--ease);
}

.header.scrolled {
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-name span {
  color: var(--gold);
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  transition: var(--ease);
}

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

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  transition: var(--ease);
}

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196, 30, 58, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(196, 30, 58, 0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 30, 58, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 30, 58, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--gold-muted);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 500px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-border);
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -12px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

.hero-proof-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-proof-text strong {
  color: var(--white);
  font-weight: 500;
}

.hero-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ── Stats ── */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 40px 0;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Specialties ── */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.specialty-card {
  background: var(--bg-2);
  padding: 44px 36px;
  position: relative;
  transition: var(--ease);
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease);
}

.specialty-card:hover {
  background: var(--bg-3);
  transform: translateY(-4px);
}

.specialty-card:hover::before {
  transform: scaleX(1);
}

.specialty-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.specialty-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.specialty-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--gold-border);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.85rem;
}

/* ── Gallery Preview ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Gallery placeholder arts */
.gallery-art {
  width: 100%;
  height: 100%;
}

.gallery-art-1 { background: linear-gradient(135deg, #1a1208 0%, #2d1f0a 40%, #1a1208 100%); }
.gallery-art-2 { background: linear-gradient(160deg, #0d0d1a 0%, #1a1030 50%, #0d0d1a 100%); }
.gallery-art-3 { background: linear-gradient(120deg, #0a1a0a 0%, #0f2010 50%, #0a1a0a 100%); }
.gallery-art-4 { background: linear-gradient(200deg, #1a0a0a 0%, #2a1010 50%, #1a0a0a 100%); }
.gallery-art-5 { background: linear-gradient(45deg, #0a0a1a 0%, #10102a 50%, #0a0a1a 100%); }
.gallery-art-6 { background: linear-gradient(170deg, #1a1510 0%, #252015 50%, #1a1510 100%); }

.gallery-art-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.gallery-art-inner svg {
  width: 60%;
  height: 60%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 0.5;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-2);
  padding: 36px;
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  transition: var(--ease);
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-style {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ── Pricing Preview ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--ease);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold-border);
  background: var(--bg-3);
  transform: translateY(-12px);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

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

.pricing-card.featured:hover {
  transform: translateY(-16px);
}

.pricing-tier {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0 8px;
}

.pricing-currency {
  font-size: 1.1rem;
  color: var(--gold);
  font-family: var(--font-serif);
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-unit {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.pricing-desc {
  font-size: 0.85rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-4);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
}

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

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin-bottom: 44px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* ── Footer ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--ease);
  color: var(--text-muted);
}

.social-link:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.footer-bottom {
  border-top: 1px solid var(--bg-4);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: var(--ease);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── Mobile Sticky Bar ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  padding: 10px 16px 14px;
  gap: 10px;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
}

.mobile-sticky-call {
  background: var(--gold);
  color: var(--bg);
}

.mobile-sticky-whatsapp {
  background: #25D366;
  color: var(--white);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.breadcrumb a:hover {
  color: var(--gold);
}

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

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-4);
  overflow: hidden;
}

.about-portrait-art {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #161208 0%, #1e1a10 40%, #161208 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-portrait-art svg {
  width: 60%;
  height: 60%;
  stroke: rgba(196, 30, 58, 0.3);
  fill: none;
  stroke-width: 0.8;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--bg);
  padding: 20px 24px;
  text-align: center;
  border-radius: var(--radius);
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-content .section-label {
  display: block;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-content p:last-of-type {
  margin-bottom: 36px;
}

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

.value-card {
  background: var(--bg-2);
  padding: 36px 28px;
  text-align: center;
  transition: var(--ease);
}

.value-card:hover {
  background: var(--bg-3);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
}

/* ── Gallery Page ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--bg-4);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  transition: var(--ease);
  font-family: var(--font-sans);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

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

.gallery-full .gallery-item {
  aspect-ratio: 1;
}

/* Additional gallery art styles */
.gallery-art-7  { background: linear-gradient(135deg, #0a0a0a 0%, #181808 50%, #0a0a0a 100%); }
.gallery-art-8  { background: linear-gradient(160deg, #100a0a 0%, #200a0a 50%, #100a0a 100%); }
.gallery-art-9  { background: linear-gradient(120deg, #080812 0%, #080820 50%, #080812 100%); }
.gallery-art-10 { background: linear-gradient(200deg, #0a0a08 0%, #101008 50%, #0a0a08 100%); }
.gallery-art-11 { background: linear-gradient(45deg,  #0a0810 0%, #140c20 50%, #0a0810 100%); }
.gallery-art-12 { background: linear-gradient(170deg, #080a08 0%, #101410 50%, #080a08 100%); }

/* ── FAQ Page ── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--bg-4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  transition: var(--ease);
}

.faq-question h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--ease);
}

.faq-question:hover h4 {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--bg-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--ease);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Aftercare Page ── */
.aftercare-intro {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.aftercare-intro-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.aftercare-intro p {
  font-size: 0.9rem;
}

.aftercare-timeline {
  position: relative;
}

.aftercare-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold-border);
}

.aftercare-day {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.aftercare-day-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.aftercare-day-content h4 {
  margin-bottom: 10px;
  padding-top: 12px;
}

.aftercare-day-content p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.aftercare-day-content ul {
  margin-top: 10px;
}

.aftercare-day-content li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.aftercare-day-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.dos-donts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dos-card,
.donts-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 36px;
}

.dos-card {
  border-top: 3px solid var(--gold);
}

.donts-card {
  border-top: 3px solid #c0392b;
}

.dos-card h3,
.donts-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.donts-card h3 { color: #e74c3c; }

.dos-list li,
.donts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-4);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dos-list li:last-child,
.donts-list li:last-child {
  border-bottom: none;
}

.dos-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.donts-list li::before {
  content: '✗';
  color: #e74c3c;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--ease);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-border);
  background: var(--bg-3);
}

.form-input.error,
.form-textarea.error {
  border-color: #c0392b;
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--bg-2);
}

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

.form-error {
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--gold);
  display: none;
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bg-4);
}

.contact-info-item:last-of-type {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-info-value a:hover {
  color: var(--gold);
}

.map-placeholder {
  height: 220px;
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 32px;
  text-align: center;
}

/* ── Pricing Page ── */
.pricing-note {
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 40px;
  text-align: center;
}

.pricing-note strong {
  color: var(--gold);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.extra-card {
  background: var(--bg-2);
  border: 1px solid var(--bg-4);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--ease);
}

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

.extra-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
  display: block;
}

.extra-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.extra-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.extra-unit {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── Keyframes ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spin { animation: spin 20s linear infinite; }

/* ── Media Queries ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  /* Header */
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  /* Hero */
  .hero-social-proof { flex-wrap: wrap; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }

  .stat-item::after {
    display: block;
  }

  /* Grids */
  .specialties-grid { grid-template-columns: 1fr; gap: 2px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
  .values-grid { grid-template-columns: 1fr; }
  .dos-donts-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile sticky */
  .mobile-sticky { display: flex; }
  body { padding-bottom: 70px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions .btn { font-size: 0.7rem; padding: 13px 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-grid { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 12px; }
}
