@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #f26722;
  --brand-deep: #db4f10;
  --brand-soft: #fff0e7;
  --ink: #2c2a29;
  --muted: #746f6b;
  --line: rgba(44, 42, 41, 0.09);
  --paper: #fffdfb;
  --cream: #fff8f3;
  --white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(44, 42, 41, 0.07);
  --shadow-lg: 0 28px 80px rgba(111, 57, 22, 0.14);
  --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 15% 10%, rgba(242, 103, 34, 0.12), transparent 27rem),
    radial-gradient(circle at 90% 30%, rgba(255, 207, 172, 0.28), transparent 28rem),
    linear-gradient(145deg, #fffaf6 0%, #fff 55%, #fff7f0 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, 44px);
  isolation: isolate;
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  width: 220px;
  height: 220px;
  top: 8%;
  inset-inline-start: -90px;
  background: rgba(242, 103, 34, 0.13);
}

.ambient-two {
  width: 280px;
  height: 280px;
  bottom: 3%;
  inset-inline-end: -120px;
  background: rgba(255, 209, 177, 0.3);
}

.link-page {
  width: min(100%, 660px);
  margin: 0 auto;
  padding: clamp(20px, 5vw, 42px);
  background: rgba(255, 253, 251, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  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: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  color: #5f554f;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(52, 42, 35, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28b56c;
  box-shadow: 0 0 0 5px rgba(40, 181, 108, 0.12);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(52, 42, 35, 0.05);
  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: #928b86;
}

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

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

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

.brand-mark {
  display: inline-block;
  margin: 8px auto 4px;
}

.logo-frame {
  display: grid;
  place-items: center;
  width: clamp(240px, 58vw, 350px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 220ms ease;
}

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

.logo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(166, 78, 29, 0.08));
}

.hero-copy {
  max-width: 540px;
  margin: 4px auto 30px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 7px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(1.82rem, 5.8vw, 2.65rem);
  line-height: 1.24;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.intro {
  max-width: 450px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.93rem, 2.5vw, 1.02rem);
  line-height: 1.75;
}

.hours-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 12px 15px;
  text-align: start;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,241,231,.88));
  border: 1px solid rgba(242, 103, 34, 0.14);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(112, 59, 26, 0.075);
}

.hours-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 15px;
}

.hours-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.hours-copy small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.hours-copy strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.hours-time {
  padding: 8px 11px;
  color: var(--brand-deep);
  background: rgba(242, 103, 34, 0.09);
  border: 1px solid rgba(242, 103, 34, 0.10);
  border-radius: 999px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill.is-closed .status-dot {
  background: #ef6b5a;
  box-shadow: 0 0 0 5px rgba(239, 107, 90, 0.12);
}

.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,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(44, 42, 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;
  background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.7) 50%, transparent 85%);
  transform: translateX(-120%);
  transition: transform 500ms ease;
  pointer-events: none;
}

.action-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 103, 34, 0.25);
  box-shadow: 0 16px 34px rgba(102, 53, 25, 0.1);
  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(--brand) 0%, #ff7d31 100%);
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(242, 103, 34, 0.25);
}

.action-primary:hover {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(242, 103, 34, 0.3);
}

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

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

.action-icon svg,
.action-arrow svg,
.social-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.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.78rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.action-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #aaa19b;
  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(--brand);
  background: var(--brand-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,.14);
}

.social-block {
  margin-top: 28px;
  padding: 21px;
  background: linear-gradient(145deg, #2d2b2a 0%, #3b3633 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(44, 42, 41, 0.16);
}

.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.3;
}

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

.social-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #ffd3b8;
  background: rgba(242, 103, 34, 0.16);
  border: 1px solid rgba(255, 153, 92, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  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.075);
  border: 1px solid rgba(255,255,255,.09);
  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.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.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.62);
  font-family: "Manrope", sans-serif;
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer {
  margin-top: 34px;
  padding: 26px 10px 4px;
  color: #817a75;
  border-top: 1px solid rgba(44, 42, 41, 0.09);
  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(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-phone:hover {
  color: var(--brand);
}

.footer-separator {
  color: rgba(44, 42, 41, 0.28);
}

.footer-credit {
  margin-top: 15px;
  color: #aaa29d;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.025em;
}

.footer-credit strong {
  color: #746d68;
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(242, 103, 34, 0.38);
  outline-offset: 4px;
}

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

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

  .topbar {
    margin-bottom: 14px;
  }

  .status-pill {
    max-width: 56%;
  }

  .brand-mark {
    margin-top: 4px;
  }

  .logo-frame {
    width: min(78vw, 290px);
  }

  .hero-copy {
    margin-top: 0;
    margin-bottom: 25px;
  }

  .hours-card {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 11px;
    margin-bottom: 20px;
    padding: 11px 12px;
    border-radius: 18px;
  }

  .hours-icon {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .hours-time {
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 8px 10px;
    text-align: center;
  }

  .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.96rem;
  }

  .action-content small {
    font-size: 0.73rem;
  }

  .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 {
    margin-top: 14px;
  }
}

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

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

  .action-primary {
    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;
  }
}
