.hero-logo {
  width: 132px;
  height: 132px;
}
/* Inline style replacements for CSP compliance (from index.html) */
.img-nav-logo {
  height: 48px;
  width: auto;
}

.section-bg-white {
  background-color: rgba(255, 255, 255, 0.34);
}

.section-bg-beige {
  background-color: rgba(226, 210, 187, 0.38);
}

.centered-mt-2xl {
  text-align: center;
  margin-top: var(--spacing-2xl);
}

.grid-logo-info {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 0.55rem;
}
/* Portfolio grid image and button classes for CSP compliance */
.portfolio-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

.portfolio-btn {
  display: inline-block;
  margin-top: var(--spacing-md);
  width: 100%;
  text-align: center;
}
/* ===== COMPONENTS CSS ===== */

header {
  background: rgba(247, 242, 234, 0.88);
  border-bottom: 1px solid rgba(35, 27, 22, 0.08);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(35, 27, 22, 0.05);
  backdrop-filter: blur(14px);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  gap: var(--spacing-md);
}

.logo {
  font-size: var(--text-2xl);
  font-weight: 700;
  font-family: var(--font-primary);
  white-space: nowrap;
  letter-spacing: -0.03em;
}

.logo a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  padding: 0.55rem 0.95rem;
  border-radius: 1rem;
  color: var(--color-black);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(74, 55, 40, 0.08), rgba(226, 210, 187, 0.2));
  border: 1px solid rgba(35, 27, 22, 0.08);
  box-shadow: 0 10px 24px rgba(35, 27, 22, 0.06);
}

.logo a::before {
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.logo a:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(35, 27, 22, 0.1);
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex: 1;
  margin-inline-start: var(--spacing-xl);
}

.nav a {
  display: inline-block;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: rgba(35, 27, 22, 0.84);
  background-color: transparent;
  transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--color-black);
  transform: translateY(-1px);
  background-color: rgba(118, 97, 79, 0.1);
  box-shadow: inset 0 0 0 1px rgba(118, 97, 79, 0.2);
}

.language-switcher {
  display: flex;
  gap: 0.55rem;
  margin-inline-start: auto;
}

.language-switcher button {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(35, 27, 22, 0.18);
  background-color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border-radius: 999px;
  font-size: var(--text-sm);
  transition: all 0.25s ease;
}

.language-switcher button.active {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.language-switcher button:hover {
  background-color: rgba(226, 210, 187, 0.55);
  border-color: rgba(143, 111, 87, 0.32);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

footer {
  background: linear-gradient(180deg, #241b16 0%, #1a1410 100%);
  color: var(--color-white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

footer a {
  color: var(--color-white);
  text-decoration: none;
}

footer a:hover {
  color: var(--color-beige);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--spacing-md);
}

.footer-contact {
  margin-bottom: var(--spacing-md);
}

.footer-hours {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: rgba(247, 242, 234, 0.86);
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
  font-weight: 600;
}

.hours-status__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.hours-status__dot.is-open {
  background-color: #53b87a;
  box-shadow: 0 0 0 3px rgba(83, 184, 122, 0.2);
}

.hours-status__dot.is-closed {
  background-color: #e26f63;
  box-shadow: 0 0 0 3px rgba(226, 111, 99, 0.2);
}

.hours-status__timezone {
  opacity: 0.85;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(226, 210, 187, 0.18);
  border: 1px solid rgba(226, 210, 187, 0.18);
  border-radius: 50%;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-socials a:hover {
  background-color: rgba(226, 210, 187, 0.32);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(226, 210, 187, 0.18);
  padding-top: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer-bottom p {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(247, 242, 234, 0.82);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(247, 242, 234, 0.94);
}

.hero {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2.5rem, 5vw, 5rem);
  position: relative;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
  z-index: -1;
}

/* Hero visual logo container - keep images contained and centered */
.hero-visual-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-block {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-visual-block-side img,
.hero-visual-block-main img,
.hero-logo {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

/* Small site credit/footer */
.site-credit {
  text-align: center;
  font-size: 0.9rem;
  color: #222;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1.2rem 0 1.2rem 0;
  margin-top: 2rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -2px 8px 0 rgba(0,0,0,0.03);
  z-index: 100;
}
.site-credit a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

.hero::before {
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  right: 4%;
  top: 2%;
  background: radial-gradient(circle, rgba(143, 111, 87, 0.25) 0%, rgba(143, 111, 87, 0.02) 70%);
}

.hero::after {
  width: min(28vw, 300px);
  height: min(28vw, 300px);
  left: 3%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(226, 210, 187, 0.5) 0%, rgba(226, 210, 187, 0.04) 72%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.hero-content,
.hero-copy {
  max-width: 42rem;
}

.hero > .hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero-copy > * {
  opacity: 1;
  transform: none;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  max-width: 11ch;
}

.hero p,
.hero-lead {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-lg);
  color: rgba(35, 27, 22, 0.75);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: var(--spacing-lg);
}

.hero-actions .btn-primary {
  box-shadow: 0 14px 28px rgba(35, 27, 22, 0.24);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 10px 18px rgba(35, 27, 22, 0.18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(35, 27, 22, 0.08);
  color: rgba(35, 27, 22, 0.84);
  box-shadow: var(--shadow-sm);
}

.hero-kpis {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 40rem;
}

.hero-kpi {
  padding: 0.8rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(35, 27, 22, 0.08);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.hero-kpi strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.hero-kpi span {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(35, 27, 22, 0.72);
}

.form-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1000;
}

.form-popup.is-open {
  display: flex;
}

.form-popup__dialog {
  width: min(92vw, 480px);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.form-popup__dialog.is-success {
  border-top: 4px solid #4a8f58;
}

.form-popup__dialog.is-error {
  border-top: 4px solid #b24545;
}

.form-popup__text {
  margin: 0 0 1rem;
  color: var(--color-black);
}

.form-popup__close {
  min-width: 9rem;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-visual-panel {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 2rem;
  border: 1px solid rgba(35, 27, 22, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(135deg, #a06f4d 0%, #8a5d40 36%, #5f3f2f 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual-panel:hover {
  transform: none;
}

.hero-visual-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 55%);
  opacity: 0.48;
}

.hero-visual-panel::after {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
}

.hero-visual-inlay {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-visual-inlay-1 {
  width: 52%;
  height: 1px;
  top: 34%;
  left: 12%;
}

.hero-visual-inlay-2 {
  width: 1px;
  height: 44%;
  top: 18%;
  right: 28%;
}

.hero-visual-inlay-3 {
  width: 28%;
  height: 1px;
  bottom: 24%;
  right: 14%;
}

.hero-visual-block {
  position: absolute;
  border-radius: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 248, 240, 0.16);
  backdrop-filter: blur(4px);
  
}

.hero-visual-block-main {
  width: 62%;
  height: 58%;
  left: 10%;
  bottom: 10%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-visual-block-side {
  width: 26%;
  height: 28%;
  right: 10%;
  top: 14%;
  animation-delay: 1.5s;
}

.hero-visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(29, 20, 15, 0.28);
  color: rgba(255, 250, 243, 0.95);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 22px rgba(35, 27, 22, 0.2);
}

.hero-visual-badge-top {
  top: 9%;
  left: 8%;
}

.hero-visual-badge-bottom {
  bottom: 8%;
  right: 12%;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 27, 22, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(35, 27, 22, 0.14);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.34) 34%, transparent 56%);
  transform: translateX(-130%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.card:hover::after {
  transform: translateX(130%);
}

.section .grid-3 .card,
.section .grid-4 .card {
  animation: revealUp 0.8s cubic-bezier(0.2, 0.65, 0.2, 1) both;
}

.section .grid-3 .card:nth-child(2),
.section .grid-4 .card:nth-child(2) {
  animation-delay: 0.08s;
}

.section .grid-3 .card:nth-child(3),
.section .grid-4 .card:nth-child(3) {
  animation-delay: 0.16s;
}

.section .grid-4 .card:nth-child(4) {
  animation-delay: 0.24s;
}

.section .grid-4 .card:nth-child(5) {
  animation-delay: 0.32s;
}

.section .grid-4 .card:nth-child(6) {
  animation-delay: 0.4s;
}

.section .grid-4 .card:nth-child(7) {
  animation-delay: 0.48s;
}

.section .grid-4 .card:nth-child(8) {
  animation-delay: 0.56s;
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
}

.card-title {
  font-size: var(--text-lg);
  margin-bottom: var(--spacing-sm);
}

.card-description {
  font-size: var(--text-sm);
  color: rgba(35, 27, 22, 0.72);
}

.icon {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-location {
  -webkit-mask-image: url('/assets/icons/location.svg');
  mask-image: url('/assets/icons/location.svg');
}

.icon-phone {
  -webkit-mask-image: url('/assets/icons/phone.svg');
  mask-image: url('/assets/icons/phone.svg');
}

.icon-email {
  -webkit-mask-image: url('/assets/icons/email.svg');
  mask-image: url('/assets/icons/email.svg');
}

.icon-instagram {
  -webkit-mask-image: url('/assets/icons/instagram.svg');
  mask-image: url('/assets/icons/instagram.svg');
}

.icon-facebook {
  -webkit-mask-image: url('/assets/icons/facebook.svg');
  mask-image: url('/assets/icons/facebook.svg');
}

.icon-whatsapp {
  -webkit-mask-image: url('/assets/icons/whatsapp.svg');
  mask-image: url('/assets/icons/whatsapp.svg');
}

.icon-search {
  -webkit-mask-image: url('/assets/icons/search.svg');
  mask-image: url('/assets/icons/search.svg');
}

.icon-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #1fb95b;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(14, 76, 36, 0.32);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-fab:hover {
  color: #ffffff;
  background: #18a64f;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(14, 76, 36, 0.36);
}

.whatsapp-fab .icon {
  width: 1.1rem;
  height: 1.1rem;
}

.whatsapp-fab__text {
  line-height: 1;
}

@media (max-width: 640px) {
  .whatsapp-fab {
    right: 0.75rem;
    bottom: 0.75rem;
    min-height: 2.6rem;
    padding: 0.45rem 0.75rem;
  }

  .whatsapp-fab__text {
    font-size: 0.9rem;
  }
}

.portfolio-thumb,
.item-image-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 250px;
  padding: 1.25rem;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 244, 230, 0.22), transparent 38%),
    linear-gradient(135deg, #8f6948 0%, #6f4a34 54%, #4b3226 100%);
  color: var(--color-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.item-image-placeholder {
  min-height: 420px;
}

.portfolio-thumb-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.16);
  border: 1px solid rgba(247, 242, 234, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-thumb-title {
  margin-top: auto;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 1.2;
  max-width: 14ch;
}

.studio-card h3,
.service-card h3,
.process-card h3,
.contact-card h3 {
  margin-bottom: var(--spacing-sm);
}

.card-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--spacing-md);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-taupe);
}

.card-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.card-list li {
  display: flex;
  gap: 0.65rem;
  color: rgba(35, 27, 22, 0.82);
}

.card-list li::before {
  content: '•';
  color: var(--color-taupe);
}

.process-step {
  display: grid;
  gap: 0.75rem;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(143, 111, 87, 0.14);
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-panel,
.contact-info,
.footer-section,
.footer-bottom {
  color: inherit;
}

.contact-info p {
  margin-bottom: 0.7rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.64);
}

.contact-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(35, 27, 22, 0.12);
}

.main-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.contact-registry-panel {
  background-color: #1e1813;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  color: var(--color-white);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-panel {
  background-color: #3a312a;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  color: var(--color-white);
}

.contact-panel-title {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.75rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  border: 1px solid rgba(230, 193, 145, 0.32);
}

.status-open {
  color: #e6c191;
  background: rgba(230, 193, 145, 0.12);
}

.status-closed {
  color: rgba(210, 193, 179, 0.95);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-line-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-line-item .icon {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  color: #e6c191;
}

.contact-line-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e6c191;
  margin-bottom: 0.2rem;
}

.contact-line-item p {
  margin: 0;
  color: rgba(247, 242, 234, 0.92);
}

.contact-field {
  margin-bottom: 1rem;
}

.contact-form-panel label {
  display: block;
  color: #e6c191;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  padding: 0.85rem;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-bottom: 0;
  box-shadow: none;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: #e6c191;
  box-shadow: 0 0 0 3px rgba(230, 193, 145, 0.14);
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 0.35rem;
  background: #e6c191;
  color: #1e1813;
  padding: 0.95rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.submit-btn:hover {
  background: #f0d5b0;
  transform: translateY(-1px);
}

.hours-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #1e1813;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-block {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-block:last-child {
  border-right: none;
}

.hour-block p {
  margin: 0.25rem 0 0;
  color: rgba(247, 242, 234, 0.95);
  font-weight: 700;
}

@media (max-width: 950px) {
  .main-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-registry-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .hours-footer-grid {
    grid-template-columns: 1fr;
  }

  .hour-block {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hour-block:last-child {
    border-bottom: none;
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes driftOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.05);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes inlaySweep {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.05);
  }
}


@keyframes pulseLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual-panel {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    flex-direction: column;
    background: rgba(247, 242, 234, 0.96);
    padding: 0.95rem;
    border-bottom: 1px solid rgba(35, 27, 22, 0.08);
    margin-inline-start: 0;
    gap: var(--spacing-md);
    border-radius: 1.1rem;
    box-shadow: 0 14px 28px rgba(35, 27, 22, 0.1);
    backdrop-filter: blur(10px);
    z-index: 110;
  }

  .nav.active {
    display: flex;
    animation: navReveal 0.24s ease;
  }

  .nav a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(35, 27, 22, 0.08);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.66);
  }

  .header-container {
    gap: var(--spacing-sm);
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero::before,
  .hero::after {
    opacity: 0.5;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-kpis {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual-panel {
    min-height: 340px;
  }

  .hero-visual-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.65rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 0.65rem;
  }

  .logo a {
    padding: 0.45rem 0.75rem;
  }

  .language-switcher {
    gap: 0.35rem;
  }

  .language-switcher button {
    padding: 0.4rem 0.7rem;
  }

  .hero-points {
    gap: 0.5rem;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
