:root {
  /* New Color Palette */
  --bg-main: #f0eceb;
  --bg-secondary: #e8e4e2;
  --bg-card: #ffffff;
  
  /* Typography - Prussian Blue */
  --text-primary: #222c3a;
  --text-secondary: #4a5562;
  --text-muted: #6d7682;
  
  /* Accent Colors */
  --gold: #d9bf94;
  --gold-dark: #b89f6f;
  --gold-light: #e8d9ba;
  --bondi-blue: #4991b0;
  --prussian-blue: #222c3a;
  
  /* Borders & Shadows */
  --border-light: #e0dbd9;
  --border-medium: #ccc5c2;
  --border-gold: #d9bf94;
  
  --shadow-sm: 0 1px 3px rgba(34, 44, 58, 0.08);
  --shadow-md: 0 4px 12px rgba(34, 44, 58, 0.1);
  --shadow-lg: 0 10px 40px rgba(34, 44, 58, 0.12);
  
  --radius: 8px;
  --radius-lg: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 94%);
  margin-inline: auto;
}

.center {
  text-align: center;
}

header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: var(--prussian-blue);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand .logo-svg {
  height: 56px;
  width: auto;
  display: block;
}

.monogram {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 1px solid var(--gold-dark);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  transition: all 0.3s ease;
}

.brand span {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--gold);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid var(--gold);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  transition: all 0.2s ease;
}

.pill:hover {
  background: var(--gold);
  color: var(--prussian-blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  font-weight: 600;
  font-size: 15px;
  color: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn.glow {
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
}

.btn.glow:hover {
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: url('assets/nocturne-02.webp');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border-light);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26, 23, 20, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
}

h1 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
  color: var(--prussian-blue);
}

.headline {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  color: var(--prussian-blue);
}

.sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.badges {
  display: inline-flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  padding: 8px 16px;
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--prussian-blue);
  line-height: 1.3;
}

.section-lead {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.feature {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.feature .media {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.feature .body {
  padding: 24px;
}

.feature h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--prussian-blue);
}

.feature p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.card .tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 4px 10px;
  width: max-content;
  margin: 0 auto;
  background: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card h4 {
  font-family: "Playfair Display", serif;
  margin: 16px 0 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  margin: 0 0 10px;
  line-height: 1.6;
  font-size: 15px;
}

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

.tier {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-medium) 100%);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tier.pop {
  border: 1.5px solid var(--gold);
  background: linear-gradient(135deg, 
    rgba(212, 175, 55, 0.08) 0%, 
    var(--bg-card) 50%,
    var(--bg-medium) 100%);
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.2),
    inset 0 1px 2px rgba(212, 175, 55, 0.1);
}

.tier.pop::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0d0d0f;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: "Playfair Display", serif;
}

.pm {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 400;
}

footer {
  padding: 50px 0 60px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-medium);
  background: var(--bg-secondary);
}

.inp,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-medium);
  background: white;
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.2s ease;
}

.inp:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

label.consent {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
  text-align: left;
  max-width: 100%;
}

label.consent span {
  flex: 1;
}

label.consent a {
  color: var(--gold-dark);
  text-decoration: underline;
  font-weight: 500;
  white-space: nowrap;
}

label.consent a:hover {
  color: var(--gold);
}

input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--gold);
}

.form .actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.form .actions .btn {
  min-width: 160px;
  justify-content: center;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: 1px solid var(--gold-dark);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.whatsapp img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

.whatsapp span {
  font-weight: 700;
  font-size: 15px;
  color: white;
  letter-spacing: 0.02em;
}

.whatsapp:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #8a6d35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
}

/* Gallery / Collage */
.collage {
  position: relative;
  min-height: 500px;
  margin-top: 40px;
}

.collage a {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage a:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  z-index: 10;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  font-weight: 300;
  line-height: 1;
}

.lightbox .close:hover {
  background: var(--gold);
  color: white;
  transform: rotate(90deg);
}

@media (max-width: 1100px) {
  .features,
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .collage {
    min-height: 400px;
  }
}

@media (max-width: 860px) {
  .collage {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  nav {
    display: none;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  section {
    padding: 60px 0;
  }

  .features,
  .cards {
    grid-template-columns: 1fr;
  }

  .badges {
    flex-direction: column;
    align-items: center;
  }
  
  .whatsapp span {
    display: none;
  }
  
  .whatsapp {
    padding: 14px;
  }
}