:root {
  --blush: #f2ddd5;
  --rose: #c9908a;
  --gold: #b8965a;
  --gold-light: #d4b87a;
  --gold-glow: #e8d5a8;
  --cream: #faf6f1;
  --sage: #7d9b78;
  --deep: #1e1a1a;
  --warm-white: #fdfbf9;
  --soft-pink: #f7ebe6;
  --text: #2e2626;
  --text-light: #6b5e5e;
  --text-muted: #9a8e8e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 4vw;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
}
nav.scrolled {
  background: rgba(253,251,249,0.92); backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 30px rgba(30,26,26,0.06); padding: 0.9rem 4vw;
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 500; color: var(--deep); text-decoration: none;
  letter-spacing: 0.01em; transition: color 0.3s;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex; gap: 2.2rem; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--text); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
  height: 1px; background: var(--gold); transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--deep) !important; color: var(--warm-white) !important;
  padding: 0.65rem 1.6rem; border-radius: 50px; font-size: 0.75rem !important;
  letter-spacing: 0.12em; transition: all 0.4s !important;
}
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,150,90,0.25); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
  padding: 8px;
}
.hamburger span {
  width: 22px; height: 1.5px; background: var(--deep); transition: all 0.3s;
  border-radius: 2px;
}

/* ============ LANGUAGE BADGE ============ */
.lang-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
}
.lang-badge .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.42) saturate(0.9) contrast(1.05);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,26,26,0.6) 0%, rgba(30,26,26,0.15) 55%, rgba(184,150,90,0.12) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3; padding: 0 7vw; max-width: 800px;
}
.hero-content > * {
  opacity: 0; transform: translateY(25px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.45s; }
.hero-content > *:nth-child(5) { animation-delay: 0.55s; }

.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-glow); margin-bottom: 1.8rem; font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 400;
  color: white; line-height: 1.1; margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--gold-glow); font-weight: 300; }
.hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75;
  margin-bottom: 2.5rem; max-width: 500px; font-weight: 300;
}
.hero-lang {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2rem;
}
.hero-lang span {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 400;
  padding: 0.35rem 0.8rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.2rem; border-radius: 50px; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(184,150,90,0.35);
}
.btn-outline {
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; color: rgba(255,255,255,0.4); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============ SECTIONS ============ */
section { padding: 8rem 6vw; }
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 400;
  line-height: 1.18; margin-bottom: 1.2rem; color: var(--deep);
}
.section-title em { font-style: italic; color: var(--rose); font-weight: 300; }
.section-desc {
  font-size: 0.95rem; line-height: 1.75; color: var(--text-light);
  font-weight: 300; max-width: 550px;
}

/* ============ ABOUT ============ */
.about {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem;
  align-items: center; background: var(--cream);
  position: relative;
}
.about::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.15), transparent);
}
.about-image {
  position: relative; border-radius: 260px 260px 24px 24px;
  overflow: hidden; aspect-ratio: 3/4; max-height: 620px;
  box-shadow: 0 30px 80px rgba(30,26,26,0.12);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,26,26,0.1), transparent 40%);
}
.about-accent {
  position: absolute; top: -25px; right: -25px; width: 110px; height: 110px;
  border: 1.5px solid var(--gold-glow); border-radius: 50%; opacity: 0.4;
}
.about-text p {
  font-size: 0.95rem; line-height: 1.85; color: var(--text-light);
  margin-bottom: 1.5rem; font-weight: 300;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 1rem; border-radius: 12px; background: var(--warm-white);
  transition: all 0.3s;
}
.feature-item:hover {
  box-shadow: 0 4px 20px rgba(184,150,90,0.1);
  transform: translateY(-2px);
}
.feature-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-glow), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.feature-item h4 {
  font-size: 0.82rem; font-weight: 600; color: var(--deep);
  margin-bottom: 0.2rem; letter-spacing: 0.02em;
}
.feature-item p {
  font-size: 0.78rem !important; line-height: 1.5 !important;
  color: var(--text-muted) !important; margin-bottom: 0 !important;
}
.about-stats {
  display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(184,150,90,0.15);
}
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  font-weight: 400; color: var(--gold);
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.3rem; font-weight: 500;
}

/* ============ PROCESS ============ */
.process { background: var(--deep); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.06), transparent 70%);
}
.process .section-tag { color: var(--gold-glow); }
.process .section-title { color: white; }
.process .section-desc { color: rgba(255,255,255,0.55); }
.process-header { max-width: 550px; margin-bottom: 4rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.step {
  position: relative; padding: 2rem 1.5rem;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.4s;
}
.step:hover {
  border-color: rgba(184,150,90,0.2);
  background: rgba(184,150,90,0.04);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 300; color: rgba(184,150,90,0.25); margin-bottom: 1rem;
  line-height: 1;
}
.step h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 400; color: white; margin-bottom: 0.7rem;
}
.step p {
  font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.5); font-weight: 300;
}
.step-connector {
  position: absolute; top: 50%; right: -1rem; width: 2rem; height: 1px;
  background: rgba(184,150,90,0.15);
}
.step:last-child .step-connector { display: none; }

/* ============ SERVICES ============ */
.services { background: var(--warm-white); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 4.5rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem; border-radius: 18px; background: var(--cream);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--sage));
  transform: scaleX(0); transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(30,26,26,0.08);
  border-color: rgba(184,150,90,0.1);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blush), var(--soft-pink));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.2rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 500; margin-bottom: 0.7rem; color: var(--deep);
}
.service-card p {
  font-size: 0.85rem; line-height: 1.7; color: var(--text-light); font-weight: 300;
}
.service-price {
  margin-top: 1.3rem; font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--gold); font-weight: 500;
}

/* ============ GALLERY ============ */
.gallery { background: var(--deep); padding: 8rem 3.5vw; }
.gallery .section-tag { color: var(--gold-glow); }
.gallery .section-title { color: white; }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px; gap: 10px;
}
.gallery-item {
  border-radius: 10px; overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: brightness(0.95) saturate(1.05);
}
.gallery-item:hover img {
  transform: scale(1.06); filter: brightness(1.02) saturate(1.1);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,26,26,0.5), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .item-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); font-weight: 500;
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s; z-index: 2;
}
.gallery-item:hover .item-label { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ============ PRICING ============ */
.pricing {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.pricing-header p {
  color: var(--text-light); font-weight: 300; line-height: 1.75; margin-top: 1rem;
  font-size: 0.92rem;
}
.pricing-table {
  max-width: 920px; margin: 0 auto; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 60px rgba(30,26,26,0.07);
}
.pricing-table table { width: 100%; border-collapse: collapse; background: white; }
.pricing-table thead { background: var(--deep); }
.pricing-table th {
  padding: 1.3rem 1.5rem; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-glow); text-align: left; font-weight: 600;
}
.pricing-table td {
  padding: 1.1rem 1.5rem; font-size: 0.88rem;
  border-bottom: 1px solid rgba(242,221,213,0.25); color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr { transition: all 0.25s; }
.pricing-table tbody tr:hover { background: var(--soft-pink); }
.pricing-table .price {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--gold); white-space: nowrap;
}
.pricing-note {
  text-align: center; margin-top: 2.5rem; font-size: 0.82rem;
  color: var(--text-muted); font-weight: 300;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--soft-pink); text-align: center;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute; bottom: -40%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.08), transparent 70%);
}
.contact-inner { max-width: 680px; margin: 0 auto; position: relative; }
.contact-methods {
  display: flex; justify-content: center; gap: 3.5rem; margin: 3.5rem 0; flex-wrap: wrap;
}
.contact-method { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.contact-method .icon {
  width: 58px; height: 58px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  box-shadow: 0 4px 24px rgba(184,150,90,0.12); transition: all 0.4s;
}
.contact-method:hover .icon {
  background: var(--gold); transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(184,150,90,0.3);
}
.contact-method a {
  text-decoration: none; color: var(--text); font-size: 0.88rem; font-weight: 500;
}
.contact-method span {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
}
.contact-langs {
  display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem;
}
.contact-langs span {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500;
  padding: 0.4rem 1rem; border: 1px solid rgba(184,150,90,0.25);
  border-radius: 50px;
}
.instagram-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white; padding: 1rem 2.5rem; border-radius: 50px;
  text-decoration: none; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 0.5rem; transition: all 0.4s;
}
.instagram-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(131,58,180,0.3);
}

/* ============ FOOTER ============ */
footer {
  background: var(--deep); color: rgba(255,255,255,0.4); padding: 3.5rem 6vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: white; font-weight: 400;
}
.footer-logo span { color: var(--gold); font-style: italic; }
footer p { font-size: 0.72rem; letter-spacing: 0.06em; }
.footer-langs {
  display: flex; gap: 0.8rem; align-items: center;
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-langs span { color: rgba(255,255,255,0.3); }
.footer-langs .active { color: var(--gold-glow); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
}
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 72%; max-width: 300px;
    height: 100vh; background: var(--warm-white); flex-direction: column;
    padding: 5rem 2rem; gap: 1.6rem; transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5vw; }
  .about::before { display: none; }
  .about-image { max-height: 420px; border-radius: 180px 180px 20px 20px; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; }
  section { padding: 5.5rem 5vw; }
  .about-stats { gap: 1.5rem; }
  .contact-methods { gap: 2rem; }
  .pricing-table { overflow-x: auto; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-lang { flex-wrap: wrap; gap: 0.6rem; }
  .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-langs { flex-wrap: wrap; justify-content: center; }
}

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--deep); color: #fff; padding: 0.8rem 1.4rem;
  border-radius: 0 0 10px 0; font-size: 0.8rem;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-content > * { opacity: 1 !important; transform: none !important; }
}

/* ============ LANGUAGE SWITCH ============ */
.lang-switch { display: flex; align-items: center; gap: 0.35rem; margin-left: 0.6rem; }
.lang-switch a {
  font-size: 0.68rem !important; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted) !important; padding: 0.3rem 0.5rem; border-radius: 50px;
  font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.lang-switch a::after { display: none !important; }
.lang-switch a:hover { color: var(--gold) !important; background: rgba(184,150,90,0.1); }
.lang-switch a[aria-current="true"] {
  color: var(--deep) !important; background: rgba(184,150,90,0.18);
}
.footer-langs a {
  color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s;
}
.footer-langs a:hover { color: var(--gold-glow); }
.footer-langs a[aria-current="true"] { color: var(--gold-glow); font-weight: 600; }

/* ============ REVIEWS ============ */
.reviews { background: var(--warm-white); }
.reviews-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.reviews-header p.section-desc { margin: 1rem auto 0; }
.rating-card {
  max-width: 460px; margin: 0 auto 3rem; background: white;
  border: 1px solid rgba(184,150,90,0.18); border-radius: 20px;
  padding: 2rem 2.2rem; display: flex; align-items: center; gap: 1.6rem;
  box-shadow: 0 12px 45px rgba(30,26,26,0.06);
}
.rating-score {
  font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 1;
  color: var(--gold); font-weight: 500;
}
.rating-meta { text-align: left; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; }
.rating-meta p {
  font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; font-weight: 400;
}
.rating-meta .google-word { color: var(--text); font-weight: 600; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
  max-width: 1150px; margin: 0 auto;
}
.review-card {
  background: white; border: 1px solid rgba(242,221,213,0.7); border-radius: 16px;
  padding: 1.8rem; transition: all 0.4s; display: flex; flex-direction: column; gap: 0.9rem;
}
.review-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 40px rgba(30,26,26,0.08);
  border-color: rgba(184,150,90,0.25);
}
.review-top { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-glow), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--deep);
}
.review-name { font-size: 0.86rem; font-weight: 600; color: var(--deep); }
.review-date { font-size: 0.7rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; }
.review-text {
  font-size: 0.88rem; line-height: 1.75; color: var(--text-light); font-weight: 300;
}
.review-source {
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-top: auto; padding-top: 0.4rem;
}
.reviews-actions {
  display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; flex-wrap: wrap;
}
.btn-google {
  background: white; color: var(--text); border: 1px solid rgba(184,150,90,0.35);
}
.btn-google:hover {
  border-color: var(--gold); background: var(--cream); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,150,90,0.15);
}
.btn-dark { background: var(--deep); color: #fff; }
.btn-dark:hover { background: var(--gold); transform: translateY(-2px); }

/* ============ FAQ ============ */
.faq { background: var(--cream); }
.faq-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid rgba(242,221,213,0.8);
  border-radius: 14px; margin-bottom: 0.9rem; overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item[open] { border-color: rgba(184,150,90,0.3); box-shadow: 0 8px 30px rgba(30,26,26,0.06); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.3rem 1.6rem;
  font-size: 0.92rem; font-weight: 600; color: var(--deep);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300;
  transition: transform 0.3s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 1.6rem 1.4rem; font-size: 0.88rem; line-height: 1.8;
  color: var(--text-light); font-weight: 300;
}
.faq-item .faq-answer a { color: var(--gold); text-decoration: underline; }

/* ============ CONTACT LAYOUT + FORM ============ */
.contact-inner { max-width: 1100px; }
.contact-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem;
  margin-top: 3rem; text-align: left; align-items: start;
}
.form-card {
  background: white; border-radius: 22px; padding: 2.4rem;
  box-shadow: 0 20px 60px rgba(30,26,26,0.08); border: 1px solid rgba(255,255,255,0.6);
}
.form-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 400;
  color: var(--deep); margin-bottom: 0.4rem;
}
.form-card > p.form-intro {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.8rem; font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); font-weight: 600; margin-bottom: 0.45rem;
}
.field label .req { color: var(--rose); }
.field input, .field select, .field textarea {
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text);
  padding: 0.85rem 1rem; border: 1px solid rgba(184,150,90,0.22);
  border-radius: 10px; background: var(--warm-white); transition: all 0.3s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: white;
  box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field input:invalid:not(:placeholder-shown) { border-color: var(--rose); }
.field .field-error {
  font-size: 0.72rem; color: #b5474b; margin-top: 0.35rem; display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #b5474b; background: #fdf6f6;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit {
  width: 100%; justify-content: center; margin-top: 0.6rem;
  background: var(--deep); color: #fff;
}
.form-submit:hover:not(:disabled) { background: var(--gold); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-status {
  margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 10px;
  font-size: 0.84rem; line-height: 1.6; display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #eef5ee; color: #3f6b45; border: 1px solid #cfe3d1; }
.form-status.err { background: #fbeeee; color: #9d3f43; border: 1px solid #f0d4d5; }
.form-note {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 0.9rem;
  text-align: center; font-weight: 300;
}
.contact-side { padding-top: 0.5rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-row {
  display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 14px;
  padding: 1rem 1.2rem; text-decoration: none; transition: all 0.35s;
}
.contact-row:hover {
  background: white; transform: translateX(4px);
  box-shadow: 0 10px 30px rgba(184,150,90,0.14);
}
.contact-row .icon {
  width: 46px; height: 46px; border-radius: 50%; background: white; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(184,150,90,0.14);
}
.contact-row .icon svg { width: 20px; height: 20px; }
.contact-row .label {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; display: block;
}
.contact-row .value {
  font-size: 0.92rem; color: var(--deep); font-weight: 500; margin-top: 0.15rem;
}
.contact-side .contact-langs { justify-content: flex-start; margin: 2rem 0 0; }
.side-note {
  font-size: 0.78rem; color: var(--text-light); line-height: 1.7;
  font-weight: 300; margin-top: 1.6rem;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.35); transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ============ GALLERY IMG SIZING ============ */
.gallery-item img { display: block; }

/* ============ RESPONSIVE (NEW BLOCKS) ============ */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-links .lang-switch { margin: 0.6rem 0 0; }
  .form-card { padding: 1.8rem 1.4rem; }
}
@media (max-width: 620px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .rating-card { flex-direction: column; text-align: center; gap: 1rem; padding: 1.8rem; }
  .rating-meta { text-align: center; }
  .reviews-actions .btn { width: 100%; justify-content: center; }
  .contact-grid { text-align: left; }
}

/* ============ PICTURE WRAPPERS + ELEMENT RESETS ============ */
.hero-bg picture, .about-image picture, .gallery-item picture {
  display: block; width: 100%; height: 100%;
}
.hero-bg img, .about-image img, .gallery-item img { display: block; }
figure.gallery-item { margin: 0; }
button.hamburger {
  background: none; border: none; font: inherit; -webkit-appearance: none; appearance: none;
}
.feature-item h3 {
  font-size: 0.82rem; font-weight: 600; color: var(--deep);
  margin-bottom: 0.2rem; letter-spacing: 0.02em; font-family: 'DM Sans', sans-serif;
}

/* ============ CONTACTO SIN FORMULARIO ============ */
.contact .contact-inner { max-width: 800px; }
.contact-intro {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-light);
  font-weight: 300; max-width: 560px; margin: 1.4rem auto 0;
}
.contact-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 3rem 0 0; text-align: left;
}
.contact-row.primary { grid-column: 1 / -1; }
.contact-row.primary .value { font-size: 1.15rem; font-weight: 600; }
.contact-row.primary .icon { width: 52px; height: 52px; }
.contact .contact-langs { margin-top: 2.5rem; }
@media (max-width: 620px) {
  .contact-list { grid-template-columns: 1fr; }
}
