:root {
  --bg: #0d0b09;
  --bg-soft: #15120f;
  --panel: #1a1612;
  --panel-2: #211b16;
  --gold: #d8aa70;
  --gold-light: #f0d3a7;
  --gold-dark: #8f6840;
  --cream: #f7eee2;
  --text: #f4ede5;
  --muted: #b9aca0;
  --line: rgba(216, 170, 112, .22);
  --shadow: 0 24px 70px rgba(0,0,0,.35);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}
body::selection { background: var(--gold); color: #16100a; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin-inline: auto; }
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(10, 8, 7, .91);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.header-inner { height: 86px; display: flex; align-items: center; gap: 34px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 235px; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(240,211,167,.4); box-shadow: 0 0 25px rgba(216,170,112,.18); }
.brand span { display: grid; line-height: 1.3; }
.brand strong { font-size: 14px; color: var(--cream); }
.brand small { color: var(--gold); font-family: Georgia, serif; letter-spacing: 1.5px; font-size: 10px; margin-top: 4px; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-inline: auto; }
.main-nav a { color: #ded4ca; font-size: 14px; position: relative; padding-block: 9px; transition: .2s; }
.main-nav a::after { content: ''; position: absolute; right: 0; bottom: 0; height: 1px; width: 0; background: var(--gold); transition: .25s; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--cream); margin: 5px 0; border-radius: 4px; }

.btn {
  min-height: 50px; padding: 0 24px; border-radius: 13px; border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #21160c; box-shadow: 0 12px 35px rgba(216,170,112,.2); }
.btn-gold:hover { box-shadow: 0 16px 45px rgba(216,170,112,.32); }
.btn-outline { color: var(--cream); border-color: rgba(240,211,167,.42); background: rgba(15,12,10,.34); }
.btn-outline:hover { border-color: var(--gold); background: rgba(216,170,112,.08); }
.btn-dark { background: #17120e; color: var(--gold-light); border-color: rgba(29,20,13,.25); }
.btn-whatsapp { background: #1e8a5a; color: white; }
.btn-small { min-height: 43px; padding-inline: 18px; font-size: 13px; }

.hero { min-height: 780px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('../assets/hero-salon-v2.jpg') center/cover no-repeat; transform: scale(1.015); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,6,5,.92) 0%, rgba(9,7,5,.76) 42%, rgba(9,7,5,.24) 75%, rgba(9,7,5,.45) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 20%, rgba(0,0,0,.08) 100%);
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .55fr; gap: 80px; align-items: center; padding-top: 96px; }
.hero-copy { max-width: 710px; }
.eyebrow { color: var(--gold-light); font-size: 13px; letter-spacing: .4px; display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eyebrow span { width: 44px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(44px, 5vw, 76px); line-height: 1.32; margin: 0 0 18px; font-weight: 800; color: var(--cream); text-shadow: 0 8px 30px rgba(0,0,0,.5); }
.hero-copy > p { max-width: 630px; color: #d2c7bc; font-size: 17px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 0; margin-top: 48px; border-top: 1px solid var(--line); padding-top: 22px; max-width: 600px; }
.hero-trust > div { padding-inline: 24px; border-left: 1px solid var(--line); display: grid; }
.hero-trust > div:first-child { padding-right: 0; }
.hero-trust > div:last-child { border-left: 0; }
.hero-trust b { color: var(--gold-light); font-size: 20px; }
.hero-trust span { color: var(--muted); font-size: 11px; }
.hero-card {
  justify-self: end; width: 280px; padding: 28px; border: 1px solid rgba(240,211,167,.24);
  border-radius: 160px 160px 32px 32px; text-align: center;
  background: linear-gradient(180deg, rgba(30,24,19,.68), rgba(13,10,8,.82));
  backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.hero-card-logo { width: 190px; height: 190px; margin: 0 auto 16px; padding: 8px; border-radius: 50%; border: 1px solid rgba(216,170,112,.35); }
.hero-card-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: sepia(.18) contrast(1.12); }
.hero-card p { margin: 10px 0 8px; color: var(--gold-light); font-size: 15px; }
.hero-card-line { height: 1px; width: 65px; background: var(--gold-dark); margin: 12px auto; }
.hero-card small { color: #9f9287; letter-spacing: 1px; font-family: Georgia, serif; }
.scroll-hint { position: absolute; z-index: 4; bottom: 24px; left: 50%; width: 28px; height: 45px; border: 1px solid rgba(240,211,167,.35); border-radius: 20px; transform: translateX(-50%); }
.scroll-hint span { display: block; width: 4px; height: 8px; border-radius: 4px; background: var(--gold); margin: 9px auto; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(13px); opacity: 0; } }

.section { padding: 110px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading > p { color: var(--muted); max-width: 490px; margin: 0; font-size: 14px; }
.section-kicker { color: var(--gold); font-size: 12px; display: block; margin-bottom: 6px; }
.section h2, .bride-feature h2, .booking-strip h2, .contact h2 { font-size: clamp(30px, 3vw, 44px); margin: 0; line-height: 1.45; }
.services { background: radial-gradient(circle at 50% 0%, rgba(216,170,112,.07), transparent 38%); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative; padding: 0; min-height: 520px; border-radius: 20px;
  border: 1px solid var(--line); background: linear-gradient(145deg, rgba(35,29,24,.92), rgba(20,16,13,.95));
  overflow: hidden; transition: .3s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(216,170,112,.55); box-shadow: 0 25px 60px rgba(0,0,0,.3); }
.service-image { height: 220px; position: relative; overflow: hidden; background: #211b16; }
.service-image::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(18,14,11,.58)); pointer-events: none; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-icon {
  position: absolute; right: 18px; bottom: 16px; z-index: 1; width: 48px; height: 48px;
  display: grid; place-items: center; border-radius: 50%; font-size: 24px; color: var(--gold-light);
  background: rgba(17,13,10,.78); border: 1px solid rgba(240,211,167,.4); backdrop-filter: blur(8px);
}
.service-content { padding: 22px 24px 24px; display: flex; flex: 1; flex-direction: column; }
.service-card h3 { margin: 0 0 8px; font-size: 19px; }
.service-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.service-provider {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin: 0 0 18px; padding: 12px 14px; border-radius: 13px;
  border: 1px solid rgba(216,170,112,.2); background: rgba(216,170,112,.065);
}
.service-provider > div { display: grid; line-height: 1.45; }
.service-provider small { color: #9e9084; font-size: 10px; }
.service-provider strong { color: var(--cream); font-size: 14px; }
.service-provider a { color: var(--gold-light); border-bottom: 1px solid rgba(240,211,167,.35); font-size: 11px; white-space: nowrap; }
.service-provider a:hover { color: #fff; border-color: var(--gold-light); }
.service-meta { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); padding-top: 16px; }
.service-meta small { color: #8f8278; display: block; }
.service-price { color: var(--gold-light); font-weight: 700; }
.service-book { border: 0; background: transparent; color: var(--gold); padding: 0; font-weight: 700; }

.bride-feature { padding: 90px 0; background: var(--cream); color: #261d16; }
.bride-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.bride-photo { position: relative; min-height: 610px; }
.bride-photo::before { content: ''; position: absolute; inset: 36px -26px -26px 34px; border: 1px solid rgba(143,104,64,.35); border-radius: 240px 240px 28px 28px; }
.bride-photo img { position: relative; width: 100%; height: 610px; object-fit: cover; object-position: center 40%; border-radius: 240px 240px 28px 28px; box-shadow: 0 30px 80px rgba(73,48,28,.18); }
.photo-badge { position: absolute; bottom: 25px; right: -20px; background: #15110e; color: var(--gold-light); border-radius: 14px; padding: 14px 22px; box-shadow: var(--shadow); }
.bride-copy .section-kicker { color: var(--gold-dark); }
.bride-copy p { color: #67574b; }
.check-list { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-right: 30px; }
.check-list li::before { content: '✓'; position: absolute; right: 0; color: #8d633c; font-weight: bold; }

.gallery { background: #110e0c; }
.text-link { color: var(--gold); font-size: 13px; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 270px 270px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid var(--line); background: var(--panel); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 42px 20px 18px; background: linear-gradient(transparent, rgba(8,6,5,.9)); display: flex; justify-content: space-between; align-items: end; }
.gallery-caption strong { font-size: 14px; }
.gallery-caption span { font-size: 10px; color: var(--gold-light); border: 1px solid rgba(216,170,112,.35); padding: 3px 9px; border-radius: 20px; }

.about { background: radial-gradient(circle at 80% 50%, rgba(216,170,112,.08), transparent 35%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 75px; }
.about-copy > p { color: var(--muted); margin: 20px 0 34px; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature { padding: 19px; border: 1px solid var(--line); border-radius: 16px; display: grid; grid-template-columns: 34px 1fr; column-gap: 8px; background: rgba(255,255,255,.015); }
.feature > span { grid-row: 1 / 3; color: var(--gold); font-size: 24px; }
.feature b { font-size: 13px; }
.feature small { color: #92867b; font-size: 10px; }
.about-collage { min-height: 590px; position: relative; }
.about-large { width: 78%; height: 560px; object-fit: cover; border-radius: 220px 220px 24px 24px; margin-right: auto; border: 1px solid rgba(216,170,112,.3); }
.about-small { position: absolute; right: 0; bottom: 40px; width: 48%; height: 260px; object-fit: cover; border: 10px solid var(--bg); border-radius: 20px; box-shadow: var(--shadow); }
.about-number { position: absolute; left: 0; top: 70px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1a110b; width: 150px; height: 150px; border-radius: 50%; display: grid; place-content: center; text-align: center; box-shadow: 0 20px 60px rgba(216,170,112,.25); }
.about-number strong { font-size: 26px; }
.about-number span { font-size: 10px; }

.testimonials { background: var(--panel); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { background: #100d0b; border: 1px solid var(--line); border-radius: 20px; padding: 28px; position: relative; }
.testimonial-card::after { content: '“'; position: absolute; left: 20px; top: 4px; color: rgba(216,170,112,.14); font: 90px Georgia, serif; }
.stars { color: #e3ad62; letter-spacing: 2px; }
.testimonial-card p { color: #c9bdb2; min-height: 105px; font-size: 13px; }
.testimonial-person { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--line); padding-top: 16px; }
.testimonial-avatar { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(216,170,112,.13); color: var(--gold-light); }
.testimonial-person small { display: block; color: #8e8278; }

.booking-strip { padding: 55px 0; background: linear-gradient(120deg, #d2a368, #ecd0a4); color: #21170f; }
.booking-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.booking-strip span { font-size: 13px; }
.booking-strip h2 { font-size: clamp(26px, 3vw, 40px); }

.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; }
.contact-info > p { color: var(--muted); }
.contact-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.contact-items > * { min-height: 90px; padding: 16px; display: flex; gap: 13px; align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 15px; transition: .2s; }
.contact-items a:hover { border-color: var(--gold-dark); transform: translateY(-2px); }
.contact-items > * > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(216,170,112,.1); color: var(--gold); }
.contact-items small { display: block; color: #8f8378; font-size: 10px; }
.contact-items b { font-size: 12px; font-weight: 500; }
.social-actions { display: flex; gap: 12px; }
.contact-form { background: linear-gradient(145deg, #211a15, #15110e); border: 1px solid var(--line); border-radius: 22px; padding: 32px; box-shadow: var(--shadow); }
.contact-form h3 { margin: 0 0 20px; color: var(--gold-light); }
label { display: grid; gap: 7px; font-size: 12px; color: #c6b9ae; margin-bottom: 14px; }
input, select, textarea { width: 100%; border: 1px solid rgba(216,170,112,.2); border-radius: 11px; padding: 12px 14px; color: var(--text); background: rgba(5,4,3,.42); outline: none; transition: .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,170,112,.08); }
select option { background: #17120f; }
textarea { resize: vertical; }
.form-note { min-height: 26px; margin: 10px 0 0; color: #a9d8b8; font-size: 12px; }

.site-footer { border-top: 1px solid var(--line); background: #090706; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 38px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; }
.footer-brand div { display: grid; }
.footer-brand span { font: 10px Georgia, serif; color: var(--gold); letter-spacing: 1.4px; }
.footer-links { display: flex; gap: 24px; color: #b8aaa0; font-size: 12px; }
.admin-link { color: var(--gold); border-bottom: 1px solid var(--gold-dark); font-size: 11px; }
.footer-bottom { padding-block: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(216,170,112,.1); color: #776d64; font-size: 10px; }

.floating-actions { position: fixed; left: 20px; bottom: 20px; z-index: 900; display: grid; gap: 10px; }
.floating-actions > * { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(216,170,112,.35); display: grid; place-items: center; color: #1d130b; background: var(--gold-light); font-size: 22px; box-shadow: 0 12px 35px rgba(0,0,0,.35); }
.floating-actions a { background: #278a5d; color: white; }

.booking-modal { border: 0; padding: 0; width: min(760px, calc(100% - 28px)); border-radius: 24px; background: transparent; color: var(--text); }
.booking-modal::backdrop { background: rgba(0,0,0,.75); backdrop-filter: blur(7px); }
.modal-shell { position: relative; padding: 32px; border: 1px solid var(--line); background: linear-gradient(145deg, #211a15, #100d0b); border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.modal-close { position: absolute; left: 18px; top: 15px; width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: var(--cream); border-radius: 50%; font-size: 24px; }
.modal-head { display: flex; align-items: center; gap: 13px; margin-bottom: 8px; }
.modal-head img { width: 58px; height: 58px; border-radius: 50%; }
.modal-head span { color: var(--gold); font-size: 10px; }
.modal-head h2 { margin: 0; font-size: 26px; }
.modal-intro { color: var(--muted); font-size: 12px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.full-btn { width: 100%; }
.toast { position: fixed; right: 50%; bottom: 30px; transform: translate(50%, 120px); z-index: 1200; background: #f0d3a7; color: #1e140c; border-radius: 12px; padding: 12px 20px; box-shadow: var(--shadow); font-weight: 700; opacity: 0; transition: .3s; }
.toast.show { transform: translate(50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 980px) {
  :root { --container: min(100% - 30px, 820px); }
  .desktop-booking { display: none; }
  .header-inner { height: 74px; }
  .brand { min-width: 0; margin-left: auto; }
  .brand span { display: none; }
  .menu-toggle { display: block; order: 3; }
  .main-nav { position: fixed; top: 74px; right: 15px; left: 15px; padding: 18px; background: rgba(14,11,9,.98); border: 1px solid var(--line); border-radius: 18px; display: grid; gap: 4px; opacity: 0; transform: translateY(-15px); pointer-events: none; transition: .25s; box-shadow: var(--shadow); }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 10px 12px; }
  .hero { min-height: 720px; }
  .hero-content { grid-template-columns: 1fr; gap: 20px; }
  .hero-card { display: none; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,6,5,.9), rgba(8,6,5,.5)), linear-gradient(0deg, var(--bg), transparent 30%); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .bride-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .bride-photo { order: 2; }
  .bride-photo, .bride-photo img { min-height: 530px; height: 530px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 230px 230px; }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 24px); --radius: 18px; }
  .section { padding: 78px 0; }
  .hero { min-height: 760px; }
  .hero-media { background-position: 45% center; }
  .hero-content { padding-top: 80px; }
  .hero h1 { font-size: 42px; }
  .hero-copy > p { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-trust { gap: 0; margin-top: 34px; }
  .hero-trust > div { padding-inline: 10px; }
  .hero-trust b { font-size: 16px; }
  .hero-trust span { font-size: 9px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .bride-feature { padding: 70px 0; }
  .bride-photo, .bride-photo img { min-height: 430px; height: 430px; }
  .bride-photo::before { display: none; }
  .photo-badge { right: 10px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 280px); }
  .gallery-item:first-child { grid-column: auto; }
  .features { grid-template-columns: 1fr; }
  .about-collage { min-height: 500px; }
  .about-large { height: 460px; width: 88%; }
  .about-small { height: 210px; width: 55%; }
  .about-number { width: 120px; height: 120px; }
  .booking-strip-inner { align-items: stretch; flex-direction: column; }
  .contact-items { grid-template-columns: 1fr; }
  .social-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px 18px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .modal-shell { padding: 24px 17px; max-height: 90vh; overflow: auto; }
  .floating-actions { left: 13px; bottom: 13px; }
  .floating-actions > * { width: 47px; height: 47px; }
}
