:root {
  --black: #0a0a0c;
  --black-2: #131316;
  --black-3: #1c1c20;
  --black-4: #26262b;
  --gold: #caa353;
  --gold-dark: #a17f39;
  --gold-light: #e9d9ad;
  --silver: #c9cdd3;
  --white: #f5f5f7;
  --muted: #a3a3ab;
  --muted-2: #6f6f78;
  --line: rgba(255, 255, 255, .09);
  --wa: #25d366;
  --shadow: 0 20px 50px rgba(0, 0, 0, .45);
  --shadow-md: 0 26px 60px rgba(0, 0, 0, .55);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --font-title: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Utilities */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.services { background: var(--black); }
.about { background: var(--black-2); }
.process { background: var(--black); }
.gallery { background: var(--black-2); }
.plans { background: var(--black); }
.testimonials { background: var(--black-2); }
.location { background: var(--black); }
.contact { background: var(--black-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--center { display: block; text-align: center; }
.accent { color: var(--gold); }
.section__title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 12px;
}
.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  color: #1a1206;
  box-shadow: var(--shadow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, .03);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--full { width: 100%; }

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 10, 12, .96);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__mark {
  border-radius: 50%;
  display: block;
}
.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-family: var(--font-title);
}
.header__brand-text strong {
  color: var(--white);
  font-size: 16px;
  letter-spacing: .05em;
}
.header__brand-text small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
}
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
}
.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav a:not(.btn) {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s ease;
}
.header__nav a:not(.btn):hover { color: var(--gold); }

/* Hero */
.hero {
  padding: 190px 0 100px;
  position: relative;
}
.hero__inner { max-width: 720px; }
.hero h1 {
  font-size: clamp(34px, 5.6vw, 58px);
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 18px;
  color: var(--silver);
  max-width: 560px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 48px;
}
.trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}
.trust__item span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.trust__item span b { color: var(--white); }

/* Cards / services */
.card {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(202, 163, 83, .35); }
.card__photo-wrap { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; margin: -32px -26px 20px; }
.card__photo {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform .3s ease;
}
.card:hover .card__photo { transform: scale(1.05); }
.ic {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(202, 163, 83, .18), rgba(202, 163, 83, .04));
  color: var(--gold);
  margin-bottom: 18px;
}
.ic--noPhoto { margin-top: 0; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; margin-bottom: 18px; }
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}
.services__more {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
}
.services__more a { color: var(--gold); font-weight: 600; }

/* About / features */
.feature { text-align: center; }
.feature .ic { margin: 0 auto 18px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14px; }

/* Process */
.process__grid { text-align: center; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; }

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black-3);
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
}
.gallery__item--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-title);
  color: var(--muted-2);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-style: dashed;
}

/* Plans */
.plans__grid { align-items: stretch; }
.plan {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1206;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.plan h3 { font-size: 22px; margin-bottom: 6px; }
.plan__price {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 22px;
}
.plan__features {
  text-align: left;
  margin-bottom: 26px;
  flex: 1;
}
.plan__features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(202, 163, 83, .18);
  box-shadow: inset 0 0 0 2px var(--gold);
}

/* Testimonials */
.testimonials__soon {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 16px;
}
.testimonials__soon a { color: var(--gold); font-weight: 600; }

/* Location */
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.location__map iframe { display: block; }

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}
.contact__info h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  margin-bottom: 14px;
}
.contact__list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 15px; }
.contact__list li svg { color: var(--gold); flex-shrink: 0; }
.contact__list em { color: var(--muted-2); font-style: normal; }
.contact__form {
  background: var(--black-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.contact__note { font-size: 13px; color: var(--muted-2); margin: 0; min-height: 18px; }
.contact__note.is-visible { color: var(--gold); }

/* Footer */
.footer { background: #060607; padding-top: 64px; border-top: 1px solid var(--line); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand p { font-size: 14px; margin-top: 16px; max-width: 300px; }
.footer__col h4 {
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom-in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-2);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===== Breakpoints ===== */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .header__toggle { display: flex; }
  .header__nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: rgba(10, 10, 12, .98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .header__nav.is-open { max-height: 480px; }
  .header__nav a:not(.btn) { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .header__nav-cta { margin-top: 16px; }
  .grid--3 { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .hero { padding: 150px 0 70px; }
}

@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-in { flex-direction: column; text-align: center; }
}
