:root {
  --color-bg: #faf8f5;
  --color-bg-dark: #1a1814;
  --color-text: #2c2a26;
  --color-text-light: #6b6560;
  --color-text-muted: #a39e97;
  --color-accent: #b8860b;
  --color-accent-light: #d4a843;
  --color-white: #ffffff;
  --color-border: #e8e4df;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(26, 24, 20, 0.08);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-dark { background: var(--color-bg-dark); color: var(--color-white); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-header p { color: var(--color-text-light); }
.section-dark .section-header p { color: var(--color-text-muted); }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo span { font-weight: 400; font-style: italic; color: var(--color-accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-accent); }
.nav-cta {
  background: var(--color-bg-dark);
  color: var(--color-white) !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--color-accent) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 24, 20, 0.85) 0%, rgba(26, 24, 20, 0.6) 100%),
    url('https://images.unsplash.com/photo-1594938298603-c8148c4dae35?w=1920&q=80') center/cover no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; color: var(--color-white); }
.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--color-accent-light); }
.hero-desc {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  opacity: 0.6;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-light); border-color: var(--color-accent-light); }
.btn-outline { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-bg-dark); }
.btn-dark { background: var(--color-bg-dark); color: var(--color-white); border-color: var(--color-bg-dark); }
.btn-dark:hover { background: var(--color-accent); border-color: var(--color-accent); }
.btn-full { width: 100%; }

.header-inner { background: rgba(250, 248, 245, 0.95); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.header-inner.scrolled { padding: 0.75rem 0; }
.nav-links a.active { color: var(--color-accent); }

.section-sm { padding: 3rem 0; }
.store-payment-note {
  margin-top: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.store-hero-card {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.store-hero-slides {
  position: absolute;
  inset: 0;
}
.store-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}
.store-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.store-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,24,20,0.9) 0%, rgba(26,24,20,0.55) 60%, rgba(26,24,20,0.75) 100%);
  z-index: 0;
}
.store-hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
  color: var(--color-white);
}
.store-hero-card .section-label {
  color: var(--color-accent-light);
}
.store-hero-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--color-white);
}
.store-hero-card p {
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}
.store-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.store-hero-badges span {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.store-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.store-card-actions .btn {
  margin-top: 0;
}
.section-cta { text-align: center; margin-top: 3rem; }

.img-cover { background-size: cover; background-position: center; background-repeat: no-repeat; }
.img-center-fit { background-size: contain; background-position: center; background-repeat: no-repeat; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.stars { color: var(--color-accent); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: block;
  object-fit: contain;
  object-position: center;
  background-color: #f5efe7;
  transition: var(--transition);
}
.gallery-img-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.gallery-item:hover .gallery-img { transform: scale(1.02); }
.gallery-grid-sm { grid-template-rows: 200px 200px; }

.cta-banner {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 4rem 0;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.store-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.store-card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #efe7db;
}
.store-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.store-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}
.store-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}
.store-price {
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
}
.store-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-transform: capitalize;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cta-banner p { color: var(--color-text-muted); max-width: 480px; }

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  color: var(--color-white);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1.125rem; opacity: 0.85; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.breadcrumb a:hover { opacity: 1; color: var(--color-accent-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
}
.value-icon {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent-light);
  opacity: 0.5;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.value-card p { font-size: 0.9375rem; color: var(--color-text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-bottom: 1.25rem;
}
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.9375rem; color: var(--color-text-light); }

.service-detail { margin-bottom: 4rem; }
.service-detail:last-child { margin-bottom: 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-grid.reverse .service-detail-img { order: 2; }
.service-detail-grid.reverse .service-detail-text { order: 1; }
.service-detail-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-detail-text p { color: var(--color-text-light); margin-bottom: 1.5rem; }
.section-dark-block {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 4rem;
  border-radius: var(--radius);
  margin: 4rem 0;
}
.section-dark-block .service-detail-text p { color: var(--color-text-muted); }
.feature-list { margin-bottom: 2rem; }
.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}
.section-dark-block .feature-list li { color: var(--color-text-muted); }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}
.pricing-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.price-box {
  flex: 1;
  min-width: 100px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
}
.section-dark-block .price-box { border-color: rgba(255, 255, 255, 0.15); }
.price-box span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}
.section-dark-block .price-box span { color: var(--color-text-muted); }
.price-box strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-accent);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.timeline { max-width: 800px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}
.timeline-marker {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
}
.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.timeline-content p { color: var(--color-text-light); margin-bottom: 0.75rem; }
.timeline-meta {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 500;
}

.faq-list { max-width: 700px; margin: 0 auto; }
.faq-list-center { text-align: left; }
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}
.section:not(.section-dark) .faq-item { border-color: var(--color-border); }
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  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.25rem; color: var(--color-accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.section-dark .faq-item p { color: var(--color-text-muted); }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.contact-details-light li {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}
.contact-details-light strong { color: var(--color-text); }
.contact-details-light a:hover { color: var(--color-accent); }
.contact-form-light {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}
.contact-form-light h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-form-light .form-group label { color: var(--color-text-light); }
.contact-form-light .form-group input,
.contact-form-light .form-group select,
.contact-form-light .form-group textarea {
  background: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-text);
}
.contact-form-light .form-group input::placeholder,
.contact-form-light .form-group textarea::placeholder { color: var(--color-text-muted); }

.sizes-placeholder {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  text-align: center;
}
.sizes-placeholder[hidden],
.sizes-fieldset[hidden] { display: none; }
.size-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 1rem 0 0.75rem;
}
.size-section-label:first-child { margin-top: 0; }

.sizes-fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 0.25rem;
  margin-bottom: 1.25rem;
}
.sizes-fieldset legend {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0 0.5rem;
  color: var(--color-text);
}
.form-hint {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form-row-thirds {
  grid-template-columns: repeat(3, 1fr);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-map { margin-top: 2rem; }
.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--color-accent); }

.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--color-accent-light);
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.footer-contact a { color: var(--color-text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--color-white); }

.newsletter-form { margin-top: 1.5rem; }
.newsletter-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.75rem;
}
.newsletter-row { display: flex; gap: 0.5rem; }
.newsletter-row input {
  flex: 1;
  padding: 0.625rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--color-white);
}
.newsletter-row input:focus { outline: none; border-color: var(--color-accent); }
.newsletter-row .btn { padding: 0.625rem 1.25rem; }

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
  overflow: hidden;
}
.whatsapp-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  width: auto;
  padding: 0 1.25rem 0 1rem;
  border-radius: 999px;
  gap: 0.5rem;
}
.whatsapp-tooltip {
  display: none;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}
.whatsapp-float:hover .whatsapp-tooltip { display: inline; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image { position: relative; }
.about-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #e8e4df 0%, #d4cfc8 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-frame.big-about {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about-image-placeholder { width: 80px; height: 80px; color: var(--color-text-muted); opacity: 0.5; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-accent-light);
  line-height: 1;
}
.badge-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }
.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.about-text p { color: var(--color-text-light); margin-bottom: 1rem; }
.about-features { margin-top: 2rem; }
.about-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about-features li:last-child { border-bottom: none; }
.about-features strong { font-weight: 600; }
.about-features span { font-size: 0.875rem; color: var(--color-text-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.service-price {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step { text-align: center; padding: 2rem 1rem; }
.step-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.9375rem; color: var(--color-text-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 323 / 220;
  min-height: 220px;
  width: 100%;
  padding: 0;
  background-color: #f5efe7;
  display: block;
  text-align: left;
  text-decoration: none;
  cursor: zoom-in;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.gallery-item:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2a2722 0%, #1a1814 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
}
.gallery-placeholder::before {
  content: attr(data-label);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-white);
  opacity: 0.8;
}
.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(145deg, #3a3530 0%, #2a2722 100%);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.9);
}
.gallery-lightbox-dialog {
  position: relative;
  width: min(100%, 1100px);
  max-height: 90vh;
  background: #111;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.gallery-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.gallery-lightbox-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.gallery-lightbox-btn {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}
.gallery-lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  max-height: calc(90vh - 4rem);
  padding: 0.25rem;
}
.gallery-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.2s ease;
}
body.lightbox-open { overflow: hidden; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}
.testimonial footer { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial strong { font-weight: 600; font-size: 0.9375rem; }
.testimonial span { font-size: 0.8125rem; color: var(--color-text-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--color-text-muted); margin-bottom: 2rem; }
.contact-details li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.contact-details strong {
  display: block;
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--color-white);
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}
.form-group select option { background: var(--color-bg-dark); color: var(--color-white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.footer { background: #0f0e0c; color: var(--color-white); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p { color: var(--color-text-muted); font-size: 0.9375rem; margin-top: 1rem; max-width: 280px; }
.footer-links h4,
.footer-social h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--color-accent-light);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.9375rem; color: var(--color-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--color-white); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  transition: var(--transition);
}
.social-links svg { width: 18px; height: 18px; }
.social-links a:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}
.social-instagram:hover { background: #e4405f; border-color: #e4405f; }
.social-facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-x:hover { background: #000; border-color: #000; }
.social-whatsapp:hover { background: #25d366; border-color: #25d366; }
.footer-bottom { padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: var(--color-text-muted); }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 968px) {
  .about-grid, .contact-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-frame, .gallery-img, .team-photo, .service-detail-img { min-height: 280px; }
  .about-badge { right: 1rem; bottom: -1rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item-large, .gallery-item-wide { grid-column: span 2; }
  .gallery-item { min-height: 180px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .service-detail-grid,
  .service-detail-grid.reverse { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-img,
  .service-detail-grid.reverse .service-detail-text { order: unset; }
  .section-dark-block { padding: 2.5rem 1.5rem; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner p { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
  }
  .nav-links.active { right: 0; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 4rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-thirds { grid-template-columns: 1fr; }
  .timeline-item { gap: 1rem; }
  .about-image-frame, .gallery-img, .team-photo, .service-detail-img { min-height: 220px; }
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .whatsapp-float:hover {
    width: 52px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }
  .whatsapp-float:hover .whatsapp-tooltip { display: none; }
}
