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

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

:root {
  --dark:   #120a1e;
  --cream:  #f5f0e8;
  --gold:   #9b6fd4;
  --gold-light: #c4a0e8;
  --text-dark: #120a1e;
  --text-light: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(155,111,212,.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
  cursor: pointer;
}

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

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all .3s;
}

/* ─── PAGE SECTIONS ───────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e0a38 0%, #120a1e 40%, #08011a 100%);
  z-index: 0;
}

/* decorative marble-ink blobs */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(155,111,212,.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(155,111,212,.10) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-photo {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .45;
  mask-image: linear-gradient(to left, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);
}

.hero-photo-placeholder {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(180deg, rgba(155,111,212,.20) 0%, rgba(18,10,30,.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(155,111,212,.35);
  font-size: 0.8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  padding: .85rem 2.4rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

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

/* ─── SERVICES PREVIEW (on homepage) ─────────────────── */
.services-preview {
  background: var(--cream);
  color: var(--text-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.services-preview-img {
  background: linear-gradient(135deg, #c4a0d8 0%, #7840b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}

.services-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(155,111,212,.13) 0%, rgba(155,111,212,.27) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,15,8,.3);
  font-size: 0.75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.services-preview-text {
  padding: 5rem 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.services-preview-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.services-preview-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #3d2860;
  max-width: 420px;
  margin-bottom: 2rem;
}

.btn-outline {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  background: none;
  border-top: none; border-left: none; border-right: none;
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  background: var(--dark);
  padding: 6rem 5%;
  text-align: center;
}

.testimonials .section-label { color: var(--gold); margin-bottom: 3rem; display: block; }

.testimonial-track {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item { display: none; }
.testimonial-item.active { display: block; }

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--dark);
}

.testimonial-item blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}

.testimonial-item cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.testimonial-item .cite-role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.4);
  margin-top: .3rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .2s;
}

.dot.active { background: var(--gold); }

/* ─── FULL SERVICES PAGE ──────────────────────────────── */
.page-hero {
  padding: calc(64px + 5rem) 5% 4rem;
  background: var(--dark);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .8rem;
}

.page-hero p {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
}

.services-grid {
  background: var(--cream);
  color: var(--text-dark);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(155,111,212,.2);
  padding: 2.2rem 2rem;
  transition: box-shadow .25s, transform .25s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(155,111,212,.18);
  transform: translateY(-4px);
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #523878;
  margin-bottom: 1.2rem;
}

.service-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.services-cta {
  background: var(--cream);
  text-align: center;
  padding: 3rem 5% 5rem;
}

/* ─── O NAMA ──────────────────────────────────────────── */
.about-section {
  background: var(--cream);
  color: var(--text-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-img {
  min-height: 400px;
  background: linear-gradient(160deg, #280f48 0%, #120a1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.4rem;
}

.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #3d2860;
  margin-bottom: 1rem;
  max-width: 480px;
}

.about-values {
  background: var(--dark);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.value-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.value-item p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}

/* ─── CERTIFIKATI ─────────────────────────────────────── */
.cert-grid-section {
  background: var(--cream);
  padding: 5rem 5%;
  color: var(--text-dark);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-card {
  background: #fff;
  border: 1px solid rgba(155,111,212,.2);
  overflow: hidden;
  transition: box-shadow .25s;
}

.cert-card:hover { box-shadow: 0 6px 24px rgba(155,111,212,.22); }

.cert-img {
  height: 220px;
  background: linear-gradient(135deg, #e8d8f8 0%, #d0b8ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cert-img img { width: 100%; height: 100%; object-fit: cover; }

.cert-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(28,15,8,.3);
  font-size: 0.7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.cert-img-placeholder .cert-icon { font-size: 2rem; opacity: .4; }

.cert-info {
  padding: 1.2rem 1.4rem;
}

.cert-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.cert-info span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ─── KONTAKT ─────────────────────────────────────────── */
.contact-section {
  background: var(--dark);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-detail .ci-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail div {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.contact-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(155,111,212,.35);
  padding: .85rem 1rem;
  color: var(--text-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

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

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

.form-group select option { background: var(--dark); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: #0a0518;
  border-top: 1px solid rgba(155,111,212,.18);
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.3);
}

footer span { color: var(--gold); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .services-preview,
  .about-section {
    grid-template-columns: 1fr;
  }

  .services-preview-img,
  .about-img { min-height: 280px; }

  .services-preview-text,
  .about-text { padding: 3rem 2rem; }

  .about-values { grid-template-columns: 1fr 1fr; }

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

  .contact-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(155,111,212,.25);
    padding: 1rem 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: .9rem 5%;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }

  .nav-toggle { display: flex; }

  .about-values { grid-template-columns: 1fr; }

  .cert-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .cert-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── VIDEO SECTION ───────────────────────────────────── */
.video-section {
  background: var(--dark);
  padding: 4rem 5%;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* ─── GALLERY SECTION ─────────────────────────────────── */
.gallery-section {
  background: var(--cream);
  padding: 5rem 5%;
  text-align: center;
  color: var(--text-dark);
}

.gallery-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform .25s, box-shadow .25s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(155,111,212,.3);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
