:root {
  --bg: #f7f3ee;
  --card: #ffffff;
  --accent: #c6a96b;
  --accent-dark: #a88c4a;
  --text: #1a1a1a;
  --muted: #66615a;
  --shadow-soft: 0 14px 40px rgba(30, 20, 8, 0.08);
  --shadow-card: 0 8px 28px rgba(20, 12, 4, 0.06);
  --radius: 14px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at 15% -5%, #fffdf9 0%, #f7f3ee 40%, #f2ece4 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
}

p {
  margin: 0;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 0.7rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 238, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 140, 74, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.top-nav nav {
  display: flex;
  gap: 1rem;
  font-size: 0.94rem;
}

.top-nav nav a {
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
}

.top-nav nav a:hover {
  background: rgba(198, 169, 107, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--accent);
  color: #16110a;
}

.btn-gold:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(168, 140, 74, 0.24);
}

.btn-dark {
  background: #1f1a14;
  color: #fff;
}

.btn-whatsapp {
  background: #1da851;
  color: #fff;
}

.btn-whatsapp:hover {
  filter: brightness(0.95);
}

.btn-full {
  width: 100%;
}

.hero {
  min-height: calc(100dvh - 74px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(23, 16, 8, 0.7), rgba(23, 16, 8, 0.18) 52%, rgba(23, 16, 8, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fdfbf7;
  max-width: 660px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  margin-bottom: 0.55rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.service-selector {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.service-chip {
  border: 1px solid rgba(168, 140, 74, 0.22);
  background: #fff;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.service-chip.active,
.service-chip:hover {
  background: rgba(198, 169, 107, 0.2);
  border-color: rgba(168, 140, 74, 0.5);
}

.portfolio-filter {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.portfolio-btn {
  border: 1px solid rgba(168, 140, 74, 0.25);
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
}

.portfolio-btn.active {
  background: var(--accent);
}

.portfolio-grid {
  column-count: 3;
  column-gap: 0.95rem;
}

.portfolio-card {
  position: relative;
  margin-bottom: 0.95rem;
  overflow: hidden;
  border-radius: var(--radius);
  break-inside: avoid;
  box-shadow: var(--shadow-card);
}

.portfolio-card img {
  width: 100%;
  height: auto;
  transition: transform 0.45s ease;
}

.portfolio-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem;
  color: #fff;
  font-size: 0.88rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.07);
}

.portfolio-card:hover figcaption {
  opacity: 1;
}

.pricing-group {
  margin-bottom: 2rem;
}

.pricing-group h3 {
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
}

.pricing-cards,
.secondary-grid,
.addon-grid,
.testimonial-grid,
.location-grid {
  display: grid;
  gap: 1rem;
}

.pricing-cards {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(168, 140, 74, 0.1);
}

.card h4 {
  font-size: 1.4rem;
}

.price {
  display: block;
  margin: 0.45rem 0;
  color: #18110a;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(198, 169, 107, 0.2);
  color: #5c471a;
  padding: 0.2rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.42rem;
}

.card ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
  color: #4d4438;
  font-size: 0.92rem;
}

.secondary-packages {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168, 140, 74, 0.2);
  padding: 0.9rem;
}

.secondary-packages summary {
  cursor: pointer;
  font-weight: 700;
  color: #5d4d2e;
}

.secondary-grid {
  margin-top: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.addon-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.8rem;
}

.steps-grid li {
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.steps-grid span {
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(198, 169, 107, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.testimonial {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0.8rem;
}

.testimonial img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.location-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.map-embed {
  border: 0;
  width: 100%;
  height: 170px;
  border-radius: 10px;
  margin-top: 0.6rem;
}

.booking-section {
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1rem;
}

.alert-urgency {
  color: #7e230d;
  background: rgba(255, 122, 89, 0.12);
  border: 1px solid rgba(197, 82, 54, 0.28);
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  display: inline-block;
}

.booking-form {
  display: grid;
  gap: 0.85rem;
}

.booking-form label,
.booking-form fieldset {
  background: #fff;
  border: 1px solid rgba(168, 140, 74, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.booking-form select,
.booking-form input {
  border: 1px solid rgba(168, 140, 74, 0.32);
  border-radius: 10px;
  padding: 0.68rem 0.74rem;
  font: inherit;
}

.booking-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.booking-addons label {
  font-size: 0.86rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  border: none;
  background: transparent;
  padding: 0;
}

.form-error {
  min-height: 1.2rem;
  color: #b73615;
  font-size: 0.88rem;
}

.booking-summary {
  padding: 1rem;
  color: #f8f3ea;
  background: linear-gradient(145deg, rgba(35, 24, 9, 0.84), rgba(60, 45, 24, 0.78));
}

.booking-summary h3,
.booking-summary h4 {
  color: #f8f1e3;
}

.booking-summary ul {
  margin: 0.7rem 0;
  padding-left: 1rem;
}

.summary-total {
  margin: 0.7rem 0;
  font-size: 1.05rem;
}

.payment-box {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.disabled {
  opacity: 0.56;
  pointer-events: none;
}

.small {
  font-size: 0.8rem;
}

.final-cta {
  padding-top: 0;
}

.final-wrap {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(198, 169, 107, 0.2), rgba(255, 255, 255, 0.48));
}

.sticky-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #1da851;
  color: #fff;
  border-radius: 999px;
  padding: 0.82rem 1.06rem;
  z-index: 70;
  box-shadow: 0 14px 24px rgba(29, 168, 81, 0.3);
  font-weight: 700;
}

.footer {
  padding: 1.3rem 0 2.3rem;
  font-size: 0.88rem;
  color: #574934;
}

@media (max-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    column-count: 2;
  }

  .top-nav nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3.25rem 0;
  }

  .hero-content {
    padding: 1.2rem;
  }

  .portfolio-grid {
    column-count: 1;
  }

  .service-chip,
  .portfolio-btn {
    font-size: 0.85rem;
  }
}
