/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== THEME TOKENS – Gold (default) ===== */
:root {
  /* Backgrounds */
  --bg:          #fdfaf5;
  --bg-card:     #ffffff;
  --bg-light:    #f5efe4;
  /* Primary accent */
  --gold:        #c47d1a;
  --gold-dim:    #9a5f0e;
  --gold-light:  #fdf0d8;
  /* Secondary accent */
  --purple:      #7c4dce;
  --purple-dim:  #ede8fb;
  /* Tertiary accent */
  --teal:        #2a8a6b;
  --teal-light:  #e6f5ef;
  /* Text */
  --text:        #2c1f0e;
  --text-muted:  #7a6a52;
  --heading-color: #1a0f00;
  /* Borders */
  --border:        rgba(180, 120, 30, 0.18);
  --outline-border: rgba(44, 31, 14, 0.25);
  /* Footer */
  --footer-bg:     #2c1f0e;
  --footer-border: rgba(196, 125, 26, 0.20);
  /* Buttons */
  --btn-shadow:    rgba(196, 125, 26, 0.35);
  /* Glows / transparent tints */
  --gold-glow:      rgba(196, 125, 26, 0.15);
  --purple-glow:    rgba(124, 77,  206, 0.12);
  --teal-glow:      rgba(42,  138, 107, 0.10);
  --gold-subtle:    rgba(196, 125, 26, 0.08);
  --gold-subtle-bg: rgba(196, 125, 26, 0.10);
  --gallery-overlay: rgba(196, 125, 26, 0.25);
  --lightbox-bg:    rgba(20, 12, 2, 0.95);
  /* Navbar */
  --navbar-bg:     rgba(253, 250, 245, 0.95);
  --nav-mobile-bg: rgba(253, 250, 245, 0.98);
  /* Layout */
  --radius:      12px;
  --font-head:   'Cinzel', serif;
  --font-body:   'Raleway', sans-serif;
  --nav-h:       72px;
  --section-gap: 100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-gap) 0; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.2; letter-spacing: 0.03em; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--heading-color); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--heading-color); margin-bottom: 20px; }
h3 { font-size: 1.25rem; color: var(--heading-color); margin-bottom: 12px; }

p { margin-bottom: 16px; color: var(--text); }
p:last-child { margin-bottom: 0; }

.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-intro { max-width: 560px; color: var(--text-muted); margin-bottom: 60px; }
.center { text-align: center; }
.center.section-intro { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 32px; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--btn-shadow); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--outline-border); }
.btn-outline:hover { background: var(--gold-light); border-color: var(--gold); color: var(--gold-dim); }
.full-width { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; z-index: 1000; transition: background 0.4s ease; gap: 16px; }
.navbar.scrolled { background: var(--navbar-bg); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: 0 2px 20px var(--gold-subtle); }
.logo { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.08em; color: var(--gold); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: #fff !important; padding: 9px 20px; border-radius: 50px; font-weight: 500; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--btn-shadow); }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.lang-btn { background: none; border: 1px solid var(--border); color: var(--text-muted); font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; padding: 5px 10px; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }
.lang-btn.active { color: var(--gold); border-color: var(--gold); background: var(--gold-subtle-bg); }
.lang-sep { color: var(--border); font-size: 0.8rem; }

/* ===== HAMBURGER ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 20% 50%, var(--purple-glow) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, var(--gold-glow)   0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, var(--teal-glow)   0%, transparent 45%),
    var(--bg);
  overflow: hidden; text-align: center;
}
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, var(--gold-subtle) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 24px; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.hero-content h1 { margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; animation: fadeInUp 2s ease 1s both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }
@keyframes fadeInUp { from{opacity:0;transform:translateX(-50%) translateY(20px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

/* ===== INTRO STRIP ===== */
.intro-strip { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.intro-item { display: flex; align-items: center; justify-content: center; gap: 12px; }
.intro-icon { color: var(--gold); font-size: 0.8rem; }
.intro-item p { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 0; }

/* ===== ABOUT ===== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.image-frame { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(135deg, var(--purple-dim) 0%, var(--gold-light) 100%); display: flex; align-items: center; justify-content: center; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder { font-size: 5rem; color: var(--gold); opacity: 0.4; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); color: var(--bg); border-radius: var(--radius); padding: 20px 24px; text-align: center; }
.about-badge span { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge p { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(8,8,15,0.7); margin: 4px 0 0; }
.about-text { padding-top: 20px; }
.about-locations { display: flex; flex-direction: column; gap: 8px; margin: 20px 0 28px; }
.location-tag { font-size: 0.85rem; color: var(--text-muted); }

/* ===== SERVICES ===== */
.services { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.service-card { flex: 0 1 calc(33.333% - 16px); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold), var(--purple)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 60px var(--gold-glow); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(124,77,206,0.3); background: linear-gradient(135deg, var(--purple-dim) 0%, var(--bg-card) 100%); }
.featured-label { position: absolute; top: 16px; right: 16px; background: var(--purple); color: #fff; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.service-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 20px; }
.service-link { color: var(--teal); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; display: inline-block; }
.service-link:hover { color: var(--gold); }
.price-note { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 48px auto 0; padding: 20px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px; max-width: 480px; }
.price-icon { color: var(--gold); font-size: 0.8rem; }
.price-note p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.price-note strong { color: var(--gold); }

/* ===== JOURNEY ===== */
.journey { background: var(--bg); }
.journey-steps { display: flex; align-items: flex-start; margin-top: 60px; }
.step { flex: 1; text-align: center; padding: 0 16px; }
.step-number { font-family: var(--font-head); font-size: 3.5rem; color: rgba(196,125,26,0.2); line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
.step:hover .step-number { color: var(--gold); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }
.step-connector { flex-shrink: 0; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim), transparent); margin-top: 56px; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-item { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; cursor: pointer; border: 1px solid var(--border); background: var(--bg-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.rotated img { transform: rotate(90deg) scale(1.334); }
.gallery-item.rotated:hover img { transform: rotate(90deg) scale(1.41); }
.gallery-item.rotated-left img { transform: rotate(-90deg) scale(1.334); }
.gallery-item.rotated-left:hover img { transform: rotate(-90deg) scale(1.41); }
.gallery-overlay { position: absolute; inset: 0; background: var(--gallery-overlay); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 1.4rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: var(--lightbox-bg); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 1.1rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; transition: all 0.2s; }
.lightbox-close:hover { background: var(--gold-glow); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 2.2rem; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-glow); border-color: var(--gold); }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.1em; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: var(--font-head); font-size: 5rem; color: var(--purple); line-height: 1; opacity: 0.15; }
.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card > p { color: var(--text); font-style: italic; font-size: 0.95rem; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--purple)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1rem; color: #fff; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text); font-weight: 500; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--text); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
input, select, textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; font-weight: 300; outline: none; transition: border-color 0.2s; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; min-height: 130px; }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
.form-success { display: none; text-align: center; color: var(--gold); margin-top: 16px; font-size: 0.9rem; }
.form-success.visible { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--footer-bg); border-top: 1px solid var(--footer-border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding: 60px 24px; }
.footer-brand .logo { display: block; margin-bottom: 16px; color: var(--gold) !important; }
.footer-brand p { color: rgba(253,250,245,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-name { color: var(--gold) !important; font-size: 0.85rem !important; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(253,250,245,0.4); margin-bottom: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(253,250,245,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--footer-border); padding: 20px 24px; text-align: center; }
.footer-bottom p { color: rgba(253,250,245,0.4); font-size: 0.8rem; margin: 0; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ===== FOOTER LEGAL ===== */
.footer-legal { margin-top: 6px; }
.footer-legal a { color: rgba(253,250,245,0.4); font-size: 0.8rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-card { flex: 0 1 calc(50% - 12px); }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .nav-links { gap: 18px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; }
  .navbar { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--nav-mobile-bg); backdrop-filter: blur(20px); flex-direction: column; gap: 0; padding: 24px 0; border-bottom: 1px solid var(--border); transform: translateY(-110%); transition: transform 0.4s ease; justify-content: flex-start; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 32px; font-size: 0.9rem; }
  .nav-cta { margin: 12px 32px 0; text-align: center; display: block; padding: 12px; }
  .intro-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 380px; margin: 0 auto; }
  .about-badge { bottom: -16px; right: 0; }
  .service-card { flex: 0 1 100%; max-width: 480px; }
  .journey-steps { flex-direction: column; align-items: center; max-width: 400px; margin: 60px auto 0; }
  .step { padding: 24px 0; }
  .step-connector { width: 1px; height: 32px; background: linear-gradient(180deg, transparent, var(--gold-dim), transparent); margin: 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 60px auto 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.6rem; }
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }
  .lang-switcher { display: none; }
}
