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

:root {
  --black:  #080808;
  --dark:   #111;
  --mid:    #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --gold:   #c9a84c;
  --white:  #f0ede8;
  --muted:  #666;
  --font:   'Georgia', serif;
  --sans:   system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ── SHARED ── */
.label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 0.95;
  background: linear-gradient(175deg, #fff 0%, #aaa 40%, #fff 60%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-rule {
  width: 100px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 0.2rem 0;
}

.hero-name {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-sig {
  font-family: cursive, serif;
  font-style: italic;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

.hero-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.hero-cta:hover { opacity: 0.85; }

.hero-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

/* ── WHAT IS ── */
.what {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
}

.what-inner {
  max-width: 680px;
  margin: 0 auto;
}

.what-inner h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.what-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.what-inner p:last-child { margin-bottom: 0; }

/* ── SERVICES ── */
.services {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
}

.services-inner {
  max-width: 680px;
  margin: 0 auto;
}

.services-inner h2 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.svc-list li strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

.svc-icon svg { width: 18px; height: 18px; }

.svc-tagline {
  margin-top: 2.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ── PROCESS ── */
.process {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
}

.process-inner h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

@media (max-width: 680px) {
  .steps { flex-direction: column; }
  .step-divider { width: 1px; height: 2rem; align-self: center; background: var(--border); margin: 0; }
}

.step-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: 0 2rem;
  flex-shrink: 0;
}

@media (min-width: 681px) {
  .step-divider { display: block; }
}

.step {
  flex: 1;
}

.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step h3 {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ── GALLERY ── */
.gallery {
  background: var(--mid);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}

.gallery-header h2 {
  font-family: var(--font);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  color: var(--white);
}

/* ── CAROUSEL ── */
.carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  background: var(--dark);
}

.carousel-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 5;
  transition: opacity 0.6s ease;
}

.carousel-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: bounce 1.2s ease-in-out infinite;
}

.carousel-loader span:nth-child(2) { animation-delay: 0.2s; }
.carousel-loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%            { transform: scale(1);   opacity: 1; }
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.carousel-slide.active { opacity: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

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

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

/* ── CONTACT ── */
.contact {
  background: var(--dark);
  padding: 5rem 1.5rem;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 680px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-text h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-text p {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cdetail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cdetail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.cdetail a,
.cdetail span:not(.cdetail-label) {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cdetail a:hover { color: #fff; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.5rem;
  border-radius: 3px;
  margin-top: 0.5rem;
  width: fit-content;
  transition: opacity 0.2s;
}

.wa-btn:hover { opacity: 0.85; }
.wa-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand {
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.2);
}

footer p:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.12);
}
