:root {
  --bg: #14100e;
  --card: rgba(255, 255, 255, 0.035);
  --card-border: rgba(212, 175, 122, 0.18);
  --text: #f3ece3;
  --text-dim: #b5a894;
  --gold: #d4af7a;
  --gold-bright: #e8c992;
  --whatsapp: #4fce5d;
  --wechat: #55c15b;
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* --- ambient background --- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top, #1d1713 0%, var(--bg) 60%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.22), transparent 70%);
}

.glow-2 {
  width: 520px;
  height: 520px;
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(140, 90, 60, 0.20), transparent 70%);
  animation-delay: -7s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

/* --- card --- */
.card {
  width: 100%;
  max-width: 640px;
  padding: 48px 44px 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: rise 0.7s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- brand --- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--gold-bright);
  background: linear-gradient(145deg, rgba(212, 175, 122, 0.18), rgba(212, 175, 122, 0.05));
  border: 1px solid rgba(212, 175, 122, 0.3);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --- headline --- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 18px;
}

h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.lede {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 32px;
}

/* --- contacts --- */
.contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact:hover,
.contact:focus-visible {
  border-color: rgba(212, 175, 122, 0.45);
  background: rgba(212, 175, 122, 0.07);
  transform: translateY(-1px);
  outline: none;
}

.contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--gold-bright);
  background: rgba(212, 175, 122, 0.1);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-icon.whatsapp {
  color: var(--whatsapp);
  background: rgba(79, 206, 93, 0.1);
}

.contact-icon.wechat {
  color: var(--wechat);
  background: rgba(85, 193, 91, 0.1);
}

.contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-hint {
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact:hover .contact-hint,
.contact:focus-visible .contact-hint {
  opacity: 1;
  transform: translateX(0);
}

/* --- hours --- */
.hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(212, 175, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 122, 0); }
}

/* --- footer --- */
footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --- toast --- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 16px);
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(38, 30, 24, 0.95);
  border: 1px solid rgba(212, 175, 122, 0.4);
  color: var(--gold-bright);
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* --- small screens --- */
@media (max-width: 480px) {
  .card {
    padding: 36px 24px 24px;
  }

  .contact-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow,
  .hours-dot,
  .card {
    animation: none;
  }
}
