:root {
  --burgundy: #760039;
  --burgundy-deep: #570029;
  --burgundy-soft: #f6e7ee;
  --orange: #ff8b16;
  --orange-deep: #e56f00;
  --orange-soft: #fff0dd;
  --ink: #2b2226;
  --muted: #756a6f;
  --cream: #fff8ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: rgba(87, 0, 41, 0.10);
  --shadow-sm: 0 10px 28px rgba(87, 0, 41, 0.08);
  --shadow-lg: 0 30px 90px rgba(87, 0, 41, 0.16);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 139, 22, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 28%, rgba(118, 0, 57, 0.10), transparent 28rem),
    linear-gradient(145deg, #fff4e5 0%, var(--cream) 48%, #fffaf3 100%);
  font-family: "Alexandria", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body[data-language="en"] {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 46px);
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.075'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  width: 220px;
  height: 220px;
  top: 7%;
  inset-inline-start: -95px;
  background: rgba(255, 139, 22, 0.18);
  filter: blur(8px);
}

.ambient-two {
  width: 290px;
  height: 290px;
  bottom: 2%;
  inset-inline-end: -130px;
  background: rgba(118, 0, 57, 0.10);
  filter: blur(9px);
}

.link-page {
  width: min(100%, 670px);
  margin: 0 auto;
  padding: clamp(20px, 5vw, 42px);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: clamp(26px, 5vw, 42px);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.hero { text-align: center; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.status-pill,
.language-toggle {
  min-height: 37px;
  color: #65565e;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(87, 0, 41, 0.05);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: 0.77rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a762;
  box-shadow: 0 0 0 5px rgba(35, 167, 98, 0.12);
}

.status-pill.is-closed .status-dot {
  background: #dc5b53;
  box-shadow: 0 0 0 5px rgba(220, 91, 83, 0.12);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.language-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.language-current,
.language-next {
  min-width: 20px;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.language-next { color: #9b8f94; }

.toggle-track {
  position: relative;
  width: 34px;
  height: 20px;
  background: var(--orange-soft);
  border-radius: 999px;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  inset-inline-start: 3px;
  width: 14px;
  height: 14px;
  background: var(--burgundy);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(87, 0, 41, 0.25);
  transition: transform 220ms ease;
}

html[dir="ltr"] .toggle-thumb { transform: translateX(14px); }

.brand-mark {
  display: inline-block;
  margin: 0 auto;
}

.logo-frame {
  display: grid;
  place-items: center;
  width: clamp(225px, 54vw, 315px);
  background: transparent;
  transition: transform 220ms ease;
}

.brand-mark:hover .logo-frame { transform: translateY(-3px) scale(1.012); }

.logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 13px 22px rgba(87, 0, 41, 0.09));
}

.hero-copy {
  max-width: 560px;
  margin: -3px auto 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 7px;
  color: var(--orange-deep);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  margin-bottom: 11px;
  color: var(--burgundy);
  font-size: clamp(1.7rem, 5.7vw, 2.55rem);
  line-height: 1.28;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.intro {
  max-width: 475px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.91rem, 2.45vw, 1rem);
  line-height: 1.8;
}

.hours-accordion {
  margin-top: 16px;
  overflow: hidden;
  text-align: start;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(118, 0, 57, 0.11);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(87, 0, 41, 0.07);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.hours-accordion:hover,
.hours-accordion.is-open {
  border-color: rgba(118, 0, 57, 0.18);
  box-shadow: 0 16px 36px rgba(87, 0, 41, 0.10);
  background: #fff;
}

.hours-toggle {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  padding: 14px 16px;
  color: inherit;
  text-align: start;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hours-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #188956;
  background: #e8f7ef;
  border-radius: 15px;
  transition: color 180ms ease, background 180ms ease;
}

.hours-accordion.is-closed .hours-icon {
  color: #bd433e;
  background: #fbeceb;
}

.hours-icon svg,
.action-icon svg,
.action-arrow svg,
.social-icon svg,
.hours-chevron svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours-icon svg { width: 24px; height: 24px; }

.hours-summary {
  min-width: 0;
}

.hours-summary small,
.hours-summary strong { display: block; }

.hours-summary small {
  margin-bottom: 4px;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
}

.hours-summary strong {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: #188956;
  font-size: 0.76rem;
  line-height: 1.55;
  font-weight: 800;
}

.hours-accordion.is-closed .hours-summary strong { color: #bd433e; }

#todayHours {
  color: var(--muted);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.71rem;
  font-weight: 700;
}

.hours-summary-separator { color: rgba(118, 0, 57, 0.24); }

.hours-chevron {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--burgundy);
  background: var(--burgundy-soft);
  border-radius: 50%;
  transition: transform 220ms ease, background 180ms ease;
}

.hours-chevron svg { width: 19px; height: 19px; }
.hours-accordion.is-open .hours-chevron { transform: rotate(180deg); }

.hours-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 260ms ease, opacity 180ms ease;
}

.hours-accordion.is-open .hours-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.hours-panel-inner {
  min-height: 0;
  overflow: hidden;
  margin: 0 16px;
}

.hours-accordion.is-open .hours-panel-inner {
  padding: 14px 0 16px;
  border-top: 1px solid rgba(118, 0, 57, 0.09);
}

.hours-panel-title {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  color: #685b61;
  background: var(--cream);
  border: 1px solid rgba(118, 0, 57, 0.07);
  border-radius: 13px;
  font-size: 0.73rem;
}

.hours-row.is-today {
  color: var(--burgundy);
  background: linear-gradient(135deg, #fff4e7, #fff9f0);
  border-color: rgba(255, 139, 22, 0.38);
  box-shadow: inset 3px 0 0 var(--orange);
}

html[dir="rtl"] .hours-row.is-today { box-shadow: inset -3px 0 0 var(--orange); }

.day-name {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.day-time {
  flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  white-space: nowrap;
}

.actions {
  display: grid;
  gap: 13px;
}

.action-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 14px 16px;
  overflow: hidden;
  background: rgba(255,255,255,.89);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(87, 0, 41, 0.045);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.65) 50%, transparent 85%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(118, 0, 57, 0.20);
  box-shadow: 0 16px 34px rgba(87, 0, 41, 0.10);
  background: #fff;
}

.action-card:hover::after { transform: translateX(120%); }
.action-card:active { transform: translateY(-1px) scale(0.992); }

.action-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--burgundy) 0%, #93004a 100%);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(118, 0, 57, 0.24);
}

.action-primary:hover {
  background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(118, 0, 57, 0.28);
}

.action-menu {
  border-color: transparent;
}

.action-primary.action-menu {
  min-height: 90px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 139, 22, 0.42), transparent 10rem),
    linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 58%, #8c0046 100%);
  box-shadow: 0 20px 42px rgba(118, 0, 57, 0.26);
}

.action-primary.action-menu:hover {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 139, 22, 0.54), transparent 10rem),
    linear-gradient(135deg, #4b0024 0%, var(--burgundy-deep) 52%, var(--burgundy) 100%);
}

.action-online {
  min-height: 84px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,240,221,.88));
  border-color: rgba(255, 139, 22, 0.32);
  box-shadow: 0 12px 28px rgba(229, 111, 0, 0.08);
}

.action-online .action-icon {
  color: var(--orange-deep);
  background: var(--orange-soft);
}

.action-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--burgundy);
  background: var(--burgundy-soft);
  border-radius: var(--radius-sm);
}

.action-icon svg { width: 25px; height: 25px; }

.action-primary .action-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.action-menu .action-icon {
  color: #fff;
  background: rgba(255, 139, 22, 0.30);
}

.whatsapp .action-icon {
  color: #168f52;
  background: #e8f8ef;
}

.action-content {
  min-width: 0;
  text-align: start;
}

.action-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
}

.action-content small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.action-primary .action-content small { color: rgba(255, 255, 255, 0.80); }

.action-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #aa9ca3;
  border-radius: 50%;
  transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.action-arrow svg { width: 20px; height: 20px; }

.action-card:hover .action-arrow {
  color: var(--burgundy);
  background: var(--burgundy-soft);
  transform: translateX(-3px);
}

html[dir="ltr"] .action-arrow svg { transform: rotate(180deg); }
html[dir="ltr"] .action-card:hover .action-arrow { transform: translateX(3px); }

.action-primary .action-arrow,
.action-primary:hover .action-arrow {
  color: #fff;
  background: rgba(255,255,255,.13);
}

.social-block {
  margin-top: 28px;
  padding: 21px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,139,22,.22), transparent 13rem),
    linear-gradient(145deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(87, 0, 41, 0.22);
}

.social-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.social-heading h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1.05rem, 4vw, 1.25rem);
  line-height: 1.35;
}

.social-heading .section-kicker { color: #ffad52; }

.social-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #ffd9aa;
  background: rgba(255, 139, 22, 0.16);
  border: 1px solid rgba(255, 173, 82, 0.20);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 17px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.social-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  border-radius: 13px;
  background: rgba(255,255,255,.12);
}

.social-icon svg { width: 21px; height: 21px; }

.social-link span:last-child {
  min-width: 0;
  text-align: start;
}

.social-link strong,
.social-link small { display: block; }

.social-link strong {
  margin-bottom: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 0.83rem;
  font-weight: 800;
}

.social-link small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer {
  margin-top: 35px;
  padding: 27px 10px 4px;
  color: #81747a;
  border-top: 1px solid rgba(118, 0, 57, 0.10);
  text-align: center;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-main p,
.footer-credit { margin: 0; }

.footer-phone {
  color: var(--burgundy);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-phone:hover { color: var(--orange-deep); }
.footer-separator { color: rgba(118, 0, 57, 0.28); }

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
  color: #aa9da3;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.025em;
}

.powered-label {
  flex: 0 0 auto;
  line-height: 1;
  white-space: nowrap;
}

.powered-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.powered-logo {
  display: block;
  width: 72px;
  height: auto;
  max-height: 28px;
  object-fit: contain;
}

.powered-logo-link:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

:focus-visible {
  outline: 3px solid rgba(255, 139, 22, 0.48);
  outline-offset: 4px;
}

@media (max-width: 560px) {
  .page-shell { padding: 10px; }

  .link-page {
    padding: 18px 14px 20px;
    border-radius: 28px;
  }

  .topbar { margin-bottom: 8px; }
  .status-pill { max-width: 58%; }

  .logo-frame { width: min(72vw, 270px); }

  .hero-copy {
    margin-top: -5px;
    margin-bottom: 24px;
  }

  .hours-toggle {
    grid-template-columns: 43px minmax(0, 1fr) 32px;
    min-height: 72px;
    padding: 12px 13px;
    gap: 10px;
  }

  .hours-icon { width: 43px; height: 43px; border-radius: 14px; }
  .hours-summary strong { font-size: 0.72rem; }
  #todayHours { font-size: 0.67rem; }
  .hours-panel-inner { margin: 0 13px; }
  .hours-row { padding: 9px 10px; font-size: 0.7rem; }
  .day-time { font-size: 0.65rem; }

  .action-card {
    grid-template-columns: 47px minmax(0, 1fr) 28px;
    min-height: 76px;
    padding: 12px 13px;
    gap: 12px;
    border-radius: 19px;
  }

  .action-icon {
    width: 47px;
    height: 47px;
    border-radius: 14px;
  }

  .action-content strong { font-size: 0.95rem; }
  .action-content small { font-size: 0.72rem; }

  .social-block {
    padding: 18px 15px;
    border-radius: 24px;
  }

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

  .footer {
    margin-top: 30px;
    padding-top: 23px;
  }

  .footer-main {
    flex-direction: column;
    gap: 8px;
  }

  .footer-separator { display: none; }
  .footer-credit {
    gap: 8px;
    margin-top: 15px;
  }

  .powered-logo { width: 64px; max-height: 25px; }
}

@media (min-width: 850px) {
  .link-page { width: min(100%, 930px); }

  .actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-featured { grid-column: 1 / -1; }
  .social-grid { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
