:root {
  --nude: #d6b8a8;
  --soft-brown: #8b5e3c;
  --off-white: #f9f4ef;
  --white: #ffffff;
  --gold: #c9a26b;
  --text: #3b2b24;
  --muted: #6d5b51;
  --glass: rgba(255, 255, 255, 0.45);
  --shadow: 0 20px 50px rgba(80, 48, 30, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: all 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(214, 184, 168, 0.35), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(201, 162, 107, 0.18), transparent 35%),
    linear-gradient(150deg, #fffaf6 0%, #f8efe8 45%, #fff7f2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: -3;
  background-image:
    linear-gradient(transparent 96%, rgba(139, 94, 60, 0.08) 98%),
    linear-gradient(90deg, transparent 96%, rgba(139, 94, 60, 0.08) 98%);
  background-size: 26px 26px;
}

.floating {
  position: fixed;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -2;
  pointer-events: none;
}

.floating-one {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(214, 184, 168, 0.4), rgba(214, 184, 168, 0.05));
  top: 12%;
  left: -80px;
  animation: floatY 9s ease-in-out infinite;
}

.floating-two {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 162, 107, 0.28), rgba(201, 162, 107, 0.04));
  bottom: 10%;
  right: -60px;
  animation: floatY 11s ease-in-out infinite reverse;
}

.floating-three {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(139, 94, 60, 0.14), rgba(139, 94, 60, 0.03));
  top: 58%;
  right: 16%;
  animation: floatY 8s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--soft-brown));
  box-shadow: 0 0 12px rgba(201, 162, 107, 0.8);
}

.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(214, 184, 168, 0.35), rgba(20, 12, 10, 0.94));
  backdrop-filter: blur(8px);
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 1000;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 107, 0.38), rgba(214, 184, 168, 0));
  filter: blur(18px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.loader-title {
  position: relative;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.loader-title .letter {
  opacity: 0;
  display: inline-block;
  transform: translateY(18px);
  animation: revealLetter 0.45s forwards;
}

@keyframes revealLetter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-sub {
  position: relative;
  color: #f4dfd0;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: fadeRise 1s ease 1s both;
}

@keyframes fadeRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 251, 247, 0.62);
  border-bottom: 1px solid rgba(139, 94, 60, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  text-decoration: none;
  color: var(--soft-brown);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 2.7vw, 1.6rem);
  font-weight: 700;
}

.nav-toggle {
  border: 0;
  background: transparent;
  display: grid;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--soft-brown);
}

.nav-links {
  list-style: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: grid;
  gap: 0.3rem;
  background: rgba(255, 248, 241, 0.95);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav-links.open {
  max-height: 340px;
  padding: 0.85rem 1rem 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  background: rgba(214, 184, 168, 0.25);
  color: var(--soft-brown);
}

main {
  padding-block: 1.5rem 3.5rem;
}

section {
  margin-block: clamp(3.2rem, 7vw, 6rem);
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.center {
  text-align: center;
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.hero-text {
  margin-top: 1rem;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  position: relative;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(120deg, var(--soft-brown), #ac7b56);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(139, 94, 60, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(139, 94, 60, 0.4);
}

.btn-ghost {
  border: 1px solid rgba(139, 94, 60, 0.32);
  color: var(--soft-brown);
  background: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: #6c4327;
}

.ripple::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.45s ease, height 0.45s ease;
}

.ripple:hover::after {
  width: 220%;
  height: 220%;
}

.hero-card {
  padding: 0.75rem;
}

.hero-card img {
  border-radius: calc(var(--radius) - 4px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about {
  display: grid;
  gap: 1.35rem;
  align-items: center;
}

.about-image {
  padding: 0.7rem;
}

.about-image img {
  border-radius: calc(var(--radius) - 4px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.services h2,
.packages h2,
.our-prices h2,
.portfolio h2,
.contact h2 {
  margin-bottom: 1.45rem;
}

.our-prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.our-price-card {
  padding: 0.95rem;
  text-align: center;
}

.our-price-card h3 {
  font-size: 1rem;
  color: #5f3b26;
  margin-bottom: 0.35rem;
}

.our-price-card p {
  color: #356238;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.our-prices-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(130deg, rgba(201, 162, 107, 0.2), rgba(214, 184, 168, 0.24));
  border: 1px solid rgba(139, 94, 60, 0.2);
  color: #5a3a28;
  font-weight: 600;
  text-align: center;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.package-card {
  padding: 1rem;
}

.package-card h3 {
  font-size: 1.04rem;
  margin-bottom: 0.55rem;
  color: #5f3b26;
}

.package-sub {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a5338;
  margin-bottom: 0.45rem;
}

.package-card ul {
  padding-left: 1rem;
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.package-card li {
  line-height: 1.5;
  font-size: 0.92rem;
}

.price-label {
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a5338;
  margin-bottom: 0.35rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.price-now {
  color: #386037;
  font-weight: 700;
}

.price-old {
  color: #975846;
  text-decoration: line-through;
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-9px) scale(1.02);
  box-shadow: 0 20px 34px rgba(80, 42, 20, 0.2);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  background: linear-gradient(140deg, rgba(214, 184, 168, 0.5), rgba(201, 162, 107, 0.32));
}

.service-card p {
  margin-top: 0.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50, 30, 20, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.portfolio-item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  color: #fffdfb;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover::before,
.portfolio-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.social {
  display: grid;
  gap: 1rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.location-card {
  padding: 1rem;
}

.location-title {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a5338;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.location-text {
  color: #5a4336;
  font-weight: 500;
}

.location-map {
  text-decoration: none;
  display: grid;
  align-content: space-between;
  background: linear-gradient(135deg, rgba(214, 184, 168, 0.35), rgba(201, 162, 107, 0.24));
  border: 1px solid rgba(122, 83, 56, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(80, 42, 20, 0.22);
}

.location-cta {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.46rem 0.78rem;
  border-radius: 999px;
  background: #7b4b2f;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.instagram,
.contact-grid {
  padding: 1.2rem;
}

.instagram h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  overflow-wrap: anywhere;
}

.insta-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  font-size: 0.95rem;
  color: #ffffff;
  background: linear-gradient(130deg, #c13584, #e1306c, #f77737);
  box-shadow: 0 8px 16px rgba(193, 53, 132, 0.25);
}

.insta-icon svg {
  width: 14px;
  height: 14px;
}

.insta-icon svg rect,
.insta-icon svg circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.insta-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.insta-grid img {
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insta-grid img:hover {
  transform: scale(1.06);
}

.insta-follow {
  margin-top: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(120deg, #8b5e3c, #b2784d);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 12px 24px rgba(139, 94, 60, 0.3);
}

.insta-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(139, 94, 60, 0.36);
}

.contact-grid ul {
  list-style: none;
  margin: 0.9rem 0 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.contact-grid strong {
  color: #583621;
}

.contact-grid a {
  color: #7b4b2f;
  font-weight: 600;
}

@media (max-width: 759px) {
  .floating {
    display: none;
  }

  .container {
    width: 92%;
  }

  .service-grid,
  .package-grid,
  .our-prices-grid {
    grid-template-columns: 1fr;
  }

  .instagram h3,
  .contact-grid li,
  .package-card li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.contact-form {
  width: min(700px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 2rem);
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  font-size: 0.93rem;
  color: #5b4132;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(139, 94, 60, 0.25);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  padding: 0.84rem 0.9rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 107, 0.2);
}

.footer {
  border-top: 1px solid rgba(139, 94, 60, 0.15);
  text-align: center;
  padding: 1.35rem 1rem 2.5rem;
}

.footer p {
  color: #765848;
  font-size: 0.95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 10, 8, 0.88);
  display: grid;
  place-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 200;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(100%, 940px);
  max-height: 84vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    max-height: none;
    overflow: visible;
  }

  .nav-links li {
    display: inline-flex;
  }

  .nav-links a {
    padding: 0.5rem 0.76rem;
  }

  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.2rem;
  }

  .about {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* ...existing code... */
.call-float {
  position: fixed !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-width: 102px !important;
  padding: 11px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(139, 94, 60, 0.24) !important;
  background: linear-gradient(120deg, var(--soft-brown), #ac7b56) !important;
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: 0 12px 26px rgba(139, 94, 60, 0.32) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px) !important;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease !important;
  animation: callFloatMove 1.8s ease-in-out infinite !important;
}

.call-float.show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.call-float:hover {
  box-shadow: 0 18px 34px rgba(139, 94, 60, 0.4) !important;
}

@keyframes callFloatMove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}