@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400;1,6..96,700&family=Noto+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --void:    #0F0A1E;
  --dark:    #160F2A;
  --mid:     #1E1535;
  --pink:    #F472B6;
  --pink-d:  #DB2777;
  --cream:   #F9F0F5;
  --muted:   #9180A0;
  --border:  rgba(244,114,182,.15);
  --ff-head: 'Bodoni Moda', Georgia, serif;
  --ff-body: 'Noto Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--void); color: var(--cream); font-family: var(--ff-body); font-size: 1rem; line-height: 1.6; overflow-x: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* TYPOGRAPHY */
.t-hero { font-family: var(--ff-head); font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 700; line-height: .92; letter-spacing: -.02em; }
.t-hero em { font-style: italic; color: var(--pink); }
.t-xl { font-family: var(--ff-head); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1; letter-spacing: -.01em; }
.t-xl em { font-style: italic; color: var(--pink); }
.t-eyebrow { font-family: var(--ff-body); font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); }
.t-body { font-size: 1.05rem; line-height: 1.75; color: rgba(249,240,245,.8); }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }

/* BUTTONS */
.btn-primary {
  display: inline-block; padding: .85rem 2rem; background: var(--pink); color: var(--void);
  font-family: var(--ff-body); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid var(--pink); transition: background .25s, color .25s;
}
.btn-primary:hover { background: transparent; color: var(--pink); }
.btn-outline {
  display: inline-block; padding: .85rem 2rem; background: transparent; color: var(--cream);
  font-family: var(--ff-body); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid rgba(249,240,245,.3); transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-cta {
  display: inline-block; padding: .85rem 2.2rem; background: transparent; color: var(--cream);
  font-family: var(--ff-body); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid var(--cream); transition: background .25s, color .25s;
}
.btn-cta:hover { background: var(--cream); color: var(--void); }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(15,10,30,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.logo { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; }
.logo span { color: var(--pink); font-style: italic; }
nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; opacity: .75; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--pink); }
.lang-toggle { display: flex; align-items: center; gap: .4rem; }
.lang-toggle button { background: none; border: none; cursor: pointer; font-family: var(--ff-body); font-size: .75rem; font-weight: 600; letter-spacing: .1em; color: rgba(249,240,245,.5); transition: color .2s; }
.lang-toggle button.active, .lang-toggle button:hover { color: var(--pink); }
.lang-toggle .sep { color: rgba(249,240,245,.3); font-size: .7rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: .3s; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { object-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,10,30,.95) 0%, rgba(15,10,30,.55) 50%, rgba(15,10,30,.3) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 2.5rem 5rem; max-width: 800px; }
.hero-eyebrow { margin-bottom: 1.2rem; }
.hero-sub { margin: 1.5rem 0 2.5rem; max-width: 520px; font-size: 1.05rem; line-height: 1.7; color: rgba(249,240,245,.8); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.line-pink { display: block; width: 48px; height: 2px; background: var(--pink); margin-bottom: 1.5rem; }

/* STAT BAR */
.stat-bar { background: var(--mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; }
.stat-item { flex: 1; padding: 2rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700; color: var(--pink); line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }

/* ABOUT BLOCK */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { height: 580px; overflow: hidden; border: 1px solid var(--border); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--dark); padding: 2.5rem 2rem; border-top: 2px solid var(--border); transition: border-color .3s; }
.service-card:hover { border-color: var(--pink); }
.service-num { font-family: var(--ff-head); font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 1rem; font-style: italic; }
.service-card h3 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; margin-bottom: .8rem; }
.service-card p { font-size: .9rem; color: rgba(249,240,245,.65); line-height: 1.7; }

/* GALLERY BENTO */
.gallery-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 4px; }
.bento-item { position: relative; overflow: hidden; }
.bento-item.tall { grid-row: span 2; }
.bento-item.wide { grid-column: span 2; }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,10,30,.7) 0%, transparent 50%); opacity: 0; transition: opacity .3s; }
.bento-item:hover .bento-overlay { opacity: 1; }
.bento-item img { transition: transform .6s; }
.bento-item:hover img { transform: scale(1.04); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.review-card { background: var(--dark); padding: 2rem; }
.review-stars { color: var(--pink); letter-spacing: .1em; margin-bottom: .8rem; }
.review-text { font-size: .9rem; line-height: 1.65; color: rgba(249,240,245,.75); font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* SPLIT CTA */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-img { overflow: hidden; }
.split-txt { background: var(--mid); padding: 4rem; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; }
.split-txt h2 { font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1; }

/* PAGE HEADER */
.page-header { padding: 10rem 0 4rem; background: var(--dark); border-bottom: 1px solid var(--border); }
.page-header .t-eyebrow { margin-bottom: .6rem; }

/* ABOUT VALUES */
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.value-card { background: var(--void); padding: 2.5rem; border-top: 2px solid var(--border); transition: border-color .3s; }
.value-card:hover { border-color: var(--pink); }
.value-card h3 { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; margin-bottom: .8rem; font-style: italic; }
.value-card p { font-size: .9rem; color: rgba(249,240,245,.65); line-height: 1.7; }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; min-height: 420px; }
.contact-info { background: var(--dark); padding: 4rem 3rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon { font-size: 1.2rem; color: var(--pink); line-height: 1; margin-top: .2rem; min-width: 1.5rem; text-align: center; }
.contact-detail h4 { font-family: var(--ff-body); font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.contact-detail a, .contact-detail p { font-size: 1rem; color: var(--cream); line-height: 1.5; }
.contact-detail a:hover { color: var(--pink); }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: none; filter: grayscale(.4) brightness(.8); }

/* FORM */
.form-section { background: var(--dark); }
.contact-form { max-width: 700px; }
.form-note { background: rgba(244,114,182,.08); border-left: 2px solid var(--pink); padding: 1rem 1.2rem; font-size: .88rem; color: rgba(249,240,245,.7); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.full { grid-column: span 2; }
.form-field label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(249,240,245,.05); border: 1px solid var(--border);
  padding: .8rem 1rem; color: var(--cream); font-family: var(--ff-body); font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.form-field input:focus, .form-field select, .form-field textarea:focus { border-color: var(--pink); }
.form-field select option { background: var(--mid); }
.form-field textarea { resize: vertical; }

/* FOOTER */
.site-footer { background: var(--void); border-top: 1px solid var(--border); padding: 4rem 2.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-brand .logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.6; }
.footer-col h4 { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col li a { font-size: .9rem; color: rgba(249,240,245,.6); transition: color .2s; }
.footer-col li a:hover { color: var(--pink); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.disclaimer { max-width: 1200px; margin: .8rem auto 0; font-size: .72rem; color: rgba(145,128,160,.5); }

/* MOBILE NAV */
@media (max-width: 768px) {
  .site-header { padding: 1.2rem 1.5rem; }
  .site-header.scrolled { padding: .9rem 1.5rem; }
  .nav-toggle { display: flex; }
  nav { position: fixed; inset: 0; background: var(--void); flex-direction: column; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 99; }
  nav.open { opacity: 1; pointer-events: all; }
  .nav-links { flex-direction: column; gap: 1.5rem; text-align: center; }
  .nav-links a { font-size: 1.1rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .stat-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; }
  .about-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 340px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .gallery-bento { grid-template-columns: 1fr 1fr; }
  .bento-item.tall { grid-row: span 1; }
  .bento-item.wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; gap: 2px; }
  .split-cta { grid-template-columns: 1fr; }
  .split-img { height: 300px; }
  .split-txt { padding: 3rem 1.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .container { padding: 0 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
