:root {
  --bg: #f6f1ec;
  --bg-2: #efe3d8;
  --surface: rgba(255,255,255,0.72);
  --surface-strong: rgba(255,255,255,0.9);
  --text: #211d1c;
  --muted: #5e5149;
  --line: rgba(80, 58, 48, 0.14);
  --accent: #b58c75;
  --accent-dark: #6b4f45;
  --gold: #c9a98b;
  --shadow: 0 20px 40px rgba(67, 42, 31, 0.12);
  --radius: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #faf7f3 0%, #f4ede6 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 169, 139, 0.15), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(181, 140, 117, 0.16), transparent 20%),
    radial-gradient(circle at 70% 80%, rgba(173, 139, 117, 0.18), transparent 23%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(calc(100% - 28px), var(--max));
  margin: 18px auto 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.9);
}
.brand-title, .brand-subtitle { display: block; }
.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
}
.brand-subtitle {
  color: var(--muted);
  font-size: .83rem;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a {
  color: var(--muted);
  font-size: .95rem;
}
.nav a:hover, .nav-cta:hover { color: var(--accent-dark); }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px rgba(107, 79, 69, 0.24);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--text);
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.btn-full { width: 100%; }

.section {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 82px 0 0;
  position: relative;
  z-index: 1;
}
.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 38px;
}
.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -.02em;
  margin: 0;
  line-height: .95;
}
.hero-copy h1 { font-size: clamp(3.1rem, 7vw, 5.7rem); margin-top: 12px; }
.section-heading h2,
.about-copy h2,
.contact-copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(181, 140, 117, 0.12);
  color: var(--accent-dark);
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.lead, .about-copy p, .card p, .contact-copy p, .timeline p, .social-card p {
  color: var(--muted);
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.hero-highlights div,
.card,
.card-soft,
.social-card,
.contact-form {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-highlights div { padding: 20px; }
.hero-highlights strong { display: block; font-size: 1.1rem; }
.hero-highlights span { color: var(--muted); font-size: .92rem; }

.hero-media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 22px 70px rgba(58, 38, 30, 0.18);
}

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
}
.about-photo { padding: 18px; }
.about-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 28px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.chips span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: .95rem;
}

.section-heading { margin-bottom: 26px; max-width: 760px; }
.grid {
  display: grid;
  gap: 22px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover, .social-card:hover, .gallery-item:hover { transform: translateY(-4px); }
.card h3, .social-card h3, .step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.timeline {
  display: grid;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
}
.step strong {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-size: 1.15rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; }

.video-wrap {
  padding: 14px;
}
.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
}

.social-card {
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-dark), var(--gold));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
  padding-bottom: 80px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}
.contact-list a { color: var(--accent-dark); }
.contact-form { padding: 24px; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label { display: grid; gap: 8px; margin-bottom: 16px; }
label span { font-weight: 600; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(107,79,69,0.16);
  background: rgba(255,255,255,0.88);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(181,140,117,0.15); }
textarea { resize: vertical; }

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 20px 40px rgba(37,211,102,0.3);
  z-index: 40;
  transition: transform .25s ease;
}
.floating-wa:hover { transform: translateY(-3px) scale(1.03); }
.floating-wa svg { width: 32px; fill: currentColor; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: #111;
  background: #fff;
}

footer {
  padding: 0 20px 34px;
  text-align: center;
  color: var(--muted);
}
footer a { color: var(--accent-dark); }

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .topbar { border-radius: 28px; }
  .hero,
  .about,
  .contact,
  .cards-3,
  .cards-2 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; }
  .hero-media img { min-height: 460px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .nav { display: none; }
  .hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-highlights { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.wide { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .section { width: min(calc(100% - 22px), var(--max)); padding-top: 70px; }
  .hero-media img { min-height: 330px; }
}
