:root {
  --bg: #fbf8f2;
  --bg-alt: #f5eee0;
  --surface: #ffffff;
  --surface-2: #f4ecdb;
  --border: #e6d9bf;
  --text: #211a2e;
  --text-dim: #635b71;
  --gold: #96700f;
  --gold-soft: #7c5a0c;
  --gold-bright: #cfa438;
  --gold-shine: #e9cf8e;
  --plum: #4a2f73;
  --plum-soft: #6b4a9e;
  --shadow: rgba(50, 32, 10, 0.14);
  --radius: 12px;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(150, 112, 15, 0.3);
  --font-display: "Playfair Display", "Cormorant Garamond", serif;
  --font-body: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Starfield background */
.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(150,112,15,0.35), transparent),
    radial-gradient(2px 2px at 70% 15%, rgba(74,47,115,0.28), transparent),
    radial-gradient(1.5px 1.5px at 45% 60%, rgba(150,112,15,0.3), transparent),
    radial-gradient(2px 2px at 85% 70%, rgba(74,47,115,0.25), transparent),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(150,112,15,0.25), transparent),
    radial-gradient(2px 2px at 60% 90%, rgba(74,47,115,0.22), transparent);
  background-size: 600px 600px;
  background-repeat: repeat;
  opacity: 0.8;
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.5; }
  100% { opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .stars, .hero-accent-card, [data-reveal] { animation: none !important; }
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

p { margin: 0; color: var(--text-dim); }

ul { margin: 0; padding: 0; list-style: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid var(--glass-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  position: relative;
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-cta::after { display: none; }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #241608 !important;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-shine) 45%, var(--gold) 60%, var(--gold-bright) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  color: #241608;
  box-shadow: 0 10px 30px -8px rgba(150, 112, 15, 0.45);
  animation: pulse-glow 3.5s ease-in-out infinite, shimmer 5s linear infinite;
}

.btn-primary:hover { transform: translateY(-2px); }

@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 220% 0%; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(150, 112, 15, 0.45); }
  50% { box-shadow: 0 10px 36px -4px rgba(150, 112, 15, 0.7); }
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.btn-ghost:hover { border-color: var(--plum-soft); color: var(--plum-soft); }

.btn-block { width: 100%; }

/* Icons */
.icon-inline {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  stroke: var(--gold);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  width: 320px;
  height: 400px;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(150deg, var(--gold-shine), var(--gold) 55%, var(--plum) 100%);
  box-shadow: 0 40px 70px -25px var(--shadow);
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 40px 70px -25px var(--shadow); transform: scale(1); }
  50% { box-shadow: 0 44px 80px -20px var(--shadow); transform: scale(1.012); }
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  border: 3px solid var(--bg);
}

.hero-accent-card {
  position: absolute;
  bottom: -22px;
  left: -28px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(150deg, #2f2447, #1c1430);
  border: 1px solid rgba(150, 112, 15, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -14px var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.hero-accent-card svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold-shine);
  stroke-width: 1.6;
  fill: none;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-soft);
  margin-bottom: 16px;
  font-weight: 600;
}

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

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold-soft);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-dim);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px); }
}

/* Sections */
.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

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

.section-sub {
  max-width: 620px;
  margin: 0 auto 56px;
}

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

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

.service-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(232, 198, 116, 0.12), 0 0 1px rgba(243, 223, 162, 0.4);
}

.service-card:hover .service-icon svg {
  transform: scale(1.15) rotate(-6deg);
}

.service-icon svg {
  transition: transform 0.3s ease;
}

.service-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(232, 198, 116, 0.12);
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--surface-2);
}

.service-card h3 { font-size: 1.3rem; }

.price {
  margin-top: auto;
  font-weight: 700;
  color: var(--gold-soft);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

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

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-photo-frame-sm {
  position: absolute;
  bottom: -18px;
  right: 4px;
  width: 108px;
  height: 108px;
  border-radius: 16px;
  padding: 5px;
  background: linear-gradient(150deg, var(--gold-shine), var(--plum));
  box-shadow: 0 20px 40px -16px var(--shadow);
}

.about-photo-frame-sm .about-photo {
  border-radius: 12px;
  border: 3px solid var(--bg-alt);
}

.about-photo-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(140deg, var(--gold-soft), var(--plum) 60%, #4c2f8f 100%);
  box-shadow: 0 40px 80px -30px rgba(139, 92, 246, 0.6);
}

.about-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--bg-alt);
}

.about-text p { margin-bottom: 16px; }

.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { color: var(--text); font-weight: 500; }

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

.testimonial {
  margin: 0;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
}

.stars-row {
  color: var(--gold-soft);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}

.testimonial cite {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info p { margin-bottom: 16px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.contact-details a { color: var(--gold-soft); }

.contact-form {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--plum-soft);
}

.form-note {
  color: var(--gold-soft);
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

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

.footer-note {
  font-size: 0.8rem;
  margin-top: 10px;
  color: var(--text-dim);
  opacity: 0.7;
}

/* Scroll reveal (progressive enhancement: visible by default, JS opts elements into the animated state) */
[data-reveal] {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-list { align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; }
  .hero-photo-frame { width: 240px; height: 300px; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 80px; }
  .section { padding: 64px 0; }
}
