:root {
  --black: #070605;
  --black-soft: #11100f;
  --brown: #4c2f20;
  --brown-light: #7a5139;
  --gold: #c9a35d;
  --gold-bright: #efcf8a;
  --silver: #c6c8cb;
  --silver-dark: #8d9196;
  --cream: #f4ead6;
  --shadow: rgba(0, 0, 0, 0.62);
  --card-radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height:100vh;margin:0;color:var(--cream);
  font-family:Inter,ui-sans-serif,system-ui,sans-serif;
  background:url("assets/background.png") center/cover fixed no-repeat;
  overflow-x:hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%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='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
}

.business-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 520px);
  overflow: hidden;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(239, 207, 138, 0.25);
  border-radius: var(--card-radius);
  background:
    linear-gradient(145deg, rgba(30, 24, 20, 0.96), rgba(8, 7, 6, 0.985) 55%, rgba(26, 17, 12, 0.98)),
    var(--black);
  box-shadow:
    0 36px 100px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(201, 163, 93, 0.18);
}

.business-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(201, 163, 93, 0.12),
    transparent 28%,
    rgba(198, 200, 203, 0.08),
    transparent 62%,
    rgba(122, 81, 57, 0.18),
    transparent
  );
  animation: ambient-rotate 18s linear infinite;
}

.business-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: calc(var(--card-radius) - 1px);
  background: linear-gradient(150deg, rgba(24, 20, 17, 0.99), rgba(7, 6, 5, 0.99));
}

.animated-border {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(115deg, transparent 10%, var(--gold) 35%, var(--silver) 52%, transparent 76%);
  background-size: 250% 100%;
  opacity: 0.38;
  animation: border-sweep 8s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.shine {
  position: absolute;
  z-index: 2;
  top: -20%;
  left: -55%;
  width: 36%;
  height: 145%;
  pointer-events: none;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), rgba(239, 207, 138, 0.12), transparent);
  filter: blur(2px);
  animation: card-shine 9s ease-in-out infinite;
}

.sparkles span {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(239, 207, 138, 0.8);
  opacity: 0;
  animation: sparkle 5.8s ease-in-out infinite;
}

.sparkles span:nth-child(1) { top: 8%; left: 12%; animation-delay: 0.4s; }
.sparkles span:nth-child(2) { top: 21%; right: 11%; animation-delay: 2.1s; }
.sparkles span:nth-child(3) { top: 49%; left: 7%; animation-delay: 3.3s; }
.sparkles span:nth-child(4) { top: 67%; right: 8%; animation-delay: 1.2s; }
.sparkles span:nth-child(5) { bottom: 9%; left: 20%; animation-delay: 4.1s; }
.sparkles span:nth-child(6) { bottom: 15%; right: 24%; animation-delay: 2.8s; }

.brand-section {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-bottom: 26px;
}

.logo-frame {
  width: min(82vw, 330px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: -8px auto 8px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(239, 207, 138, 0.34);
  border-radius: 50%;
  background: #000;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.58),
    inset 0 0 0 5px rgba(255, 255, 255, 0.018),
    inset 0 0 34px rgba(201, 163, 93, 0.08);
  animation: logo-float 6s ease-in-out infinite;
}

.logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.48));
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 7px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 30px rgba(201, 163, 93, 0.18);
}

.tagline {
  margin-bottom: 0;
  color: var(--silver);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.contact-grid {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 11px;
}

.contact-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  min-width: 0;
  padding: 13px 14px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(198, 200, 203, 0.13);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(76, 47, 32, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 163, 93, 0.5);
  background: linear-gradient(120deg, rgba(201, 163, 93, 0.09), rgba(76, 47, 32, 0.23));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  outline: none;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold) 58%, #8b6937);
  box-shadow: 0 7px 18px rgba(201, 163, 93, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.icon-wrap svg,
.primary-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-label {
  color: var(--silver-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-copy strong {
  overflow: hidden;
  color: #f7f2e8;
  font-size: clamp(0.9rem, 3.7vw, 1rem);
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.contact-item:hover .arrow,
.contact-item:focus-visible .arrow {
  transform: translate(2px, -2px);
}


.booking-button {
  border-color: rgba(201, 163, 93, 0.48);
  background:
    linear-gradient(120deg, rgba(201, 163, 93, 0.15), rgba(76, 47, 32, 0.32));
  box-shadow:
    0 0 0 1px rgba(239, 207, 138, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: booking-glow 4.8s ease-in-out infinite;
}

.booking-button .contact-label,
.booking-button .arrow {
  color: var(--gold-bright);
}

.booking-button .icon-wrap {
  background: linear-gradient(145deg, var(--silver), var(--gold-bright) 52%, var(--gold));
}

.qr-section {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  margin-top: 28px;
  padding: 28px 18px 22px;
  text-align: center;
  border: 1px solid rgba(201, 163, 93, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 163, 93, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.2);
}

.qr-copy h2 {
  margin-bottom: 8px;
  color: var(--silver);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.qr-copy p:last-child {
  max-width: 330px;
  margin-bottom: 18px;
  color: var(--silver-dark);
  font-size: 0.86rem;
  line-height: 1.55;
}

.qr-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 204px;
  height: 204px;
  margin-bottom: 15px;
  border: 1px solid rgba(239, 207, 138, 0.45);
  border-radius: 24px;
  background: #f7f3eb;
  box-shadow: 0 0 0 8px rgba(201, 163, 93, 0.05), 0 20px 42px rgba(0, 0, 0, 0.42);
  animation: qr-glow 5s ease-in-out infinite;
}

.qr-frame img {
  width: 178px;
  height: 178px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

.qr-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.qr-corner-one {
  top: 8px;
  left: 8px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 10px 0 0;
}

.qr-corner-two {
  right: 8px;
  bottom: 8px;
  border-right: 2px solid var(--silver-dark);
  border-bottom: 2px solid var(--silver-dark);
  border-radius: 0 0 10px;
}

.save-text-link {
  margin: 2px 0 14px;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 700;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.save-text-link:hover,
.save-text-link:focus-visible {
  color: var(--gold-bright);
}

.primary-button {
  width: min(100%, 320px);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  color: #17110b;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(110deg, #8c6a38, var(--gold-bright), var(--silver), var(--gold));
  background-size: 220% 100%;
  box-shadow: 0 12px 32px rgba(201, 163, 93, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  animation: button-sheen 7s ease-in-out infinite;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 38px rgba(201, 163, 93, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  outline: none;
}

.primary-button:active {
  transform: translateY(0) scale(0.99);
}

.card-footer {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 22px;
  color: var(--silver-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px rgba(201, 163, 93, 0.6);
}

.toast {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 26px;
  max-width: calc(100% - 36px);
  padding: 12px 18px;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(110deg, var(--gold-bright), var(--silver));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes ambient-rotate {
  to { transform: rotate(360deg); }
}

@keyframes border-sweep {
  0%, 25% { background-position: 100% 0; opacity: 0.18; }
  55% { opacity: 0.58; }
  85%, 100% { background-position: -120% 0; opacity: 0.18; }
}

@keyframes card-shine {
  0%, 50% { left: -55%; opacity: 0; }
  62% { opacity: 1; }
  78%, 100% { left: 125%; opacity: 0; }
}

@keyframes sparkle {
  0%, 72%, 100% { transform: scale(0.2); opacity: 0; }
  80% { transform: scale(1); opacity: 0.95; }
  88% { transform: scale(0.45); opacity: 0.25; }
}

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

@keyframes qr-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201, 163, 93, 0.04), 0 20px 42px rgba(0, 0, 0, 0.42); }
  50% { box-shadow: 0 0 0 10px rgba(201, 163, 93, 0.09), 0 20px 48px rgba(201, 163, 93, 0.12); }
}

@keyframes button-sheen {
  0%, 35% { background-position: 100% 0; }
  70%, 100% { background-position: -100% 0; }
}

@media (min-width: 960px) {
  .page-shell {
    padding: 34px;
  }

  .business-card {
    width: min(100%, 1180px);
    display: grid;
    grid-template-columns: minmax(200px, 0.86fr) minmax(300px, 1.14fr) minmax(250px, 0.96fr);
    grid-template-areas:
      "brand contacts qr"
      "footer footer footer";
    column-gap: clamp(20px, 2.6vw, 42px);
    row-gap: 22px;
    align-items: center;
    padding: clamp(28px, 3vw, 44px);
  }

  .brand-section {
    grid-area: brand;
    align-self: center;
    padding: 0;
  }

  .logo-frame {
    width: min(100%, 250px);
    margin: 0 auto 18px;
    padding: 16px;
  }

  h1 {
    font-size: clamp(2rem, 3.1vw, 2.75rem);
  }

  .contact-grid {
    grid-area: contacts;
    align-self: stretch;
    align-content: center;
  }

  .contact-copy strong {
    font-size: 0.96rem;
  }

  .qr-section {
    grid-area: qr;
    align-self: stretch;
    align-content: center;
    margin-top: 0;
    padding: 24px 16px 20px;
  }

  .qr-copy h2 {
    font-size: 1.3rem;
  }

  .qr-copy p:last-child {
    margin-bottom: 15px;
  }

  .qr-frame {
    width: 184px;
    height: 184px;
  }

  .qr-frame img {
    width: 158px;
    height: 158px;
  }

  .primary-button {
    width: min(100%, 290px);
  }

  .card-footer {
    grid-area: footer;
    padding-top: 18px;
    border-top: 1px solid rgba(198, 200, 203, 0.1);
  }
}

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

  .business-card {
    padding: 22px 15px 26px;
    border-radius: 26px;
  }

  .logo-frame {
    width: min(80vw, 300px);
    margin-bottom: 10px;
    padding: 18px;
  }

  .contact-item {
    grid-template-columns: 42px 1fr auto;
    gap: 10px;
    padding: 11px 12px;
  }

  .icon-wrap {
    width: 42px;
    height: 42px;
  }

  
.booking-button {
  border-color: rgba(201, 163, 93, 0.48);
  background:
    linear-gradient(120deg, rgba(201, 163, 93, 0.15), rgba(76, 47, 32, 0.32));
  box-shadow:
    0 0 0 1px rgba(239, 207, 138, 0.06),
    0 10px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: booking-glow 4.8s ease-in-out infinite;
}

.booking-button .contact-label,
.booking-button .arrow {
  color: var(--gold-bright);
}

.booking-button .icon-wrap {
  background: linear-gradient(145deg, var(--silver), var(--gold-bright) 52%, var(--gold));
}

.qr-section {
    padding-inline: 13px;
  }

  .qr-frame {
    width: 194px;
    height: 194px;
  }

  .qr-frame img {
    width: 168px;
    height: 168px;
  }
}


@keyframes booking-glow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(239, 207, 138, 0.05), 0 10px 28px rgba(0, 0, 0, 0.22), 0 0 0 rgba(201, 163, 93, 0);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(239, 207, 138, 0.12), 0 13px 34px rgba(0, 0, 0, 0.3), 0 0 22px rgba(201, 163, 93, 0.12);
  }
}

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