:root {
  --bg: #0a0d10;
  --gold: #d3a94e;
  --gold-light: #f6e7b2;
  --gold-deep: #8a6a2f;
  --teal: #2a7f86;
  --text: #e9e4d6;
  --muted: #b9b3a4;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: var(--sans);
  color: var(--text);
  overflow-x: hidden;

  /* ---- BACKGROUND: dark overlay ON TOP of a free restaurant photo ----
     Free Unsplash image (warm restaurant interior).
     To use another photo, just swap the URL.
     To show the photo MORE, lower the rgba alpha values (e.g. .84 -> .65).
     To show it LESS, raise them (e.g. -> .92).                              */
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(7, 10, 13, .88) 0%, rgba(7, 10, 13, .84) 50%, rgba(7, 10, 13, .94) 100%),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=2000&q=80");
    /* Alternative free photo (dark fine-dining room):
       https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=80 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

::selection { background: rgba(211, 169, 78, .35); }

/* Ambient glows + vignette (adds depth over the photo) */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 45% at 82% 8%, rgba(42, 127, 134, .14), transparent 65%),
    radial-gradient(45% 40% at 15% 92%, rgba(211, 169, 78, .08), transparent 65%),
    radial-gradient(130% 100% at 50% 40%, transparent 45%, rgba(0, 0, 0, .55) 100%);
}

/* Fine texture */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; opacity: .5;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 1px, transparent 1px 12px);
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 20px 64px;
}

/* ---- Arch backdrop ---- */
.arch {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: min(620px, 94vw);
  opacity: .45;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(211, 169, 78, .12));
}

/* ---- Hero ---- */
.hero { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .42em;
  text-indent: .42em;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  color: var(--gold);
}

.title {
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 1.05;
  background: linear-gradient(105deg, var(--gold-deep) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}

@keyframes shimmer { to { background-position: 200% center; } }

.tagline {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  letter-spacing: .05em;
  color: #e8cf96;
}

/* ---- Ornament divider ---- */
.ornament {
  position: relative; z-index: 1;
  margin-top: 46px;
  display: flex; align-items: center; gap: 16px;
}

.line { display: block; width: min(150px, 24vw); height: 1px; }
.line--left  { background: linear-gradient(90deg, transparent, var(--gold)); }
.line--right { background: linear-gradient(90deg, var(--gold), transparent); }

.diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(211, 169, 78, .6);
}

.diya { width: 58px; height: 58px; filter: drop-shadow(0 0 10px rgba(246, 231, 178, .25)); }

.flame {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: flicker 2.4s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { transform: scale(1); }
  25%      { transform: scale(1.06, 1.12); }
  50%      { transform: scale(.96, .94); }
  75%      { transform: scale(1.04, 1.08); }
}

/* ---- Address plaque (high visibility) ---- */
.info {
  position: relative; z-index: 1;
  margin-top: 54px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}

.address-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 42px;
  border: 1px solid rgba(211, 169, 78, .5);
  outline: 1px solid rgba(211, 169, 78, .18);
  outline-offset: 5px;
  background: linear-gradient(180deg, rgba(20, 18, 12, .72), rgba(5, 5, 5, .78));
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5), inset 0 0 26px rgba(211, 169, 78, .07);
  backdrop-filter: blur(3px);
}

.address-card__label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .32em;
  text-indent: .32em;
  color: var(--gold);
}

.address-card__text {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.65;
  color: #f7f3e8;
  text-align: left;
}

.address-card__text svg {
  width: 17px; height: 17px; flex: none; margin-top: 5px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(211, 169, 78, .5));
}

.info__legal {
  font-size: .75rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
}

/* ---- Entrance animations ---- */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .9s cubic-bezier(.2, .7, .3, 1) forwards; }
.d1 { animation-delay: .2s; }
.d2 { animation-delay: .45s; }
.d3 { animation-delay: .7s; }
.d4 { animation-delay: .95s; }
.d5 { animation-delay: 1.2s; }

@keyframes rise { to { opacity: 1; transform: none; } }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  body { background-attachment: scroll; }   /* smoother on phones */
  .address-card { padding: 18px 24px; }
  .address-card__text { flex-direction: column; align-items: center; gap: 6px; text-align: center; }
  .address-card__text svg { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}