/* Tandoor Tavern — Coming Soon */

:root {
  --color-near-black: #151413;
  --color-charcoal: #040404;
  --color-gold-light: #f4d08a;
  --color-gold-mid: #d29a43;
  --color-gold-deep: #a56822;
  --color-gold-bright: #e3b665;
  --font-display: "Cinzel Decorative", "Cinzel", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-logo: "Cinzel", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: "Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;
  --pad-x: clamp(1.5rem, 4vw, 3rem);
  --cradle-depth: clamp(34px, 4.2vh, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

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

body {
  background: var(--color-near-black);
  color: var(--color-gold-mid);
  font-family: var(--font-sans);
  overflow: hidden;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  min-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

/* —— Header —— */

.site-header {
  --header-height: clamp(22vh, 26vh, 27vh);
  position: relative;
  flex: 0 0 var(--header-height);
  height: var(--header-height);
  max-height: 27vh;
  min-height: 22vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: var(--color-near-black);
  padding: clamp(0.4rem, 1.2vh, 0.9rem) var(--pad-x) 0;
  z-index: 3;
  overflow: hidden;
}

.header-ornament {
  position: absolute;
  top: clamp(4px, 0.8vh, 10px);
  z-index: 0;
  width: clamp(148px, 20vw, 250px);
  height: auto;
  max-height: calc(100% - var(--cradle-depth) - clamp(4px, 0.8vh, 10px));
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  opacity: 0.92;
  filter: contrast(1.12) brightness(0.93) saturate(1.08);
}

.header-ornament--left {
  left: clamp(4px, 0.6vw, 10px);
  object-position: left top;
}

.header-ornament--right {
  right: clamp(4px, 0.6vw, 10px);
  object-position: right top;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(100% - var(--cradle-depth));
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(clamp(220px, 20vw, 340px), 100%);
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: calc(var(--cradle-depth) * -0.42);
  position: relative;
  z-index: 2;
}

.header-divider {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: var(--cradle-depth);
  flex-shrink: 0;
  margin-top: 0;
  overflow: visible;
}

/* —— Hero —— */

.hero {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  background: #0a0a0a;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  /* Slightly dim the plate so gold type can sit on top */
  filter: brightness(0.82) contrast(1.05);
  transform: translateZ(0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 58% 52% at 50% 48%,
      rgba(4, 4, 4, 0.62) 0%,
      rgba(4, 4, 4, 0.35) 52%,
      rgba(4, 4, 4, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 4, 4, 0.52) 0%,
      rgba(4, 4, 4, 0.62) 50%,
      rgba(4, 4, 4, 0.7) 100%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(100%, 54rem);
  padding: clamp(1rem, 3.5vh, 2.75rem) var(--pad-x);
}

.hero__content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  translate: -50% -50%;
  width: min(96%, 48rem);
  height: min(82%, 24rem);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.42) 40%,
    rgba(0, 0, 0, 0.12) 62%,
    rgba(0, 0, 0, 0) 78%
  );
  z-index: -1;
  pointer-events: none;
}

.instagram-follow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 clamp(1rem, 2.4vh, 1.65rem);
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(244, 208, 138, 0.55);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.45);
  color: #f6dfa0;
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.instagram-follow:hover,
.instagram-follow:focus-visible {
  border-color: #f4d08a;
  background: rgba(20, 14, 6, 0.72);
  color: #fff1c8;
  outline: none;
}

.instagram-follow:focus-visible {
  box-shadow:
    0 0 0 2px rgba(4, 4, 4, 0.9),
    0 0 0 4px rgba(244, 208, 138, 0.65);
}

.instagram-follow__icon {
  flex-shrink: 0;
  display: block;
}

.instagram-follow__label {
  line-height: 1;
}

.hero__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(0.65rem, 1.6vh, 1rem);
  max-width: 32rem;
  font-family: var(--font-logo);
  font-weight: 500;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  line-height: 1.45;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f6dfa0;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.98),
    0 0 14px rgba(0, 0, 0, 0.65);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6.5vw, 6.75rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* Champagne-gold (cooler/lighter) so it won't match warm food amber */
  background-image: linear-gradient(
    180deg,
    #fff1c8 0%,
    #f6dfa0 28%,
    #e8c46a 55%,
    #c4923a 82%,
    #f3d78a 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 1))
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.95))
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.8));
}

/* —— Ornament —— */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 26rem);
  margin: clamp(1rem, 2.4vh, 1.65rem) 0 clamp(1.15rem, 2.6vh, 1.85rem);
}

.ornament__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-gold-deep) 12%,
    var(--color-gold-light) 50%,
    var(--color-gold-deep) 88%,
    transparent 100%
  );
  opacity: 0.95;
}

.ornament__flourish {
  flex-shrink: 0;
  display: block;
  overflow: visible;
}

/* —— Location —— */

.location {
  margin: 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
}

.location__pin {
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

.location__line {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.72rem, 1.55vw, 0.95rem);
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f6dfa0;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.98),
    0 0 16px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

/* —— Motion —— */

@media (prefers-reduced-motion: no-preference) {
  .hero__content {
    opacity: 0;
    transform: translateY(0.5rem);
    animation: heroFade 0.85s ease-out 0.12s forwards;
  }

  .site-logo {
    opacity: 0;
    animation: logoFade 0.7s ease-out forwards;
  }
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFade {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content,
  .site-logo {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* —— Tablet —— */

@media (max-width: 900px) {
  .hero__title {
    letter-spacing: 0.11em;
  }

  .location__line {
    letter-spacing: 0.22em;
  }

  .ornament {
    width: min(100%, 20rem);
  }
}

/* —— Mobile —— */

@media (max-width: 640px) {
  :root {
    --pad-x: 1.5rem;
    --cradle-depth: 28px;
  }

  .site-header {
    --header-height: auto;
    flex: 0 0 auto;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0.65rem var(--pad-x) 0;
    overflow: hidden;
  }

  .header-ornament {
    top: 5px;
    width: clamp(102px, 30vw, 150px);
    max-height: calc(100% - var(--cradle-depth) - 4px);
    opacity: 0.9;
  }

  .header-ornament--left {
    left: 5px;
  }

  .header-ornament--right {
    right: 5px;
  }

  .site-header__inner {
    max-height: none;
  }

  .site-logo {
    max-width: clamp(190px, 58vw, 270px);
    max-height: min(28vh, 270px);
    margin-bottom: calc(var(--cradle-depth) * -0.3);
  }

  .hero__image {
    object-position: 52% 38%;
    filter: brightness(0.8) contrast(1.05);
  }

  .hero__overlay {
    background:
      radial-gradient(
        ellipse 70% 55% at 50% 45%,
        rgba(4, 4, 4, 0.58) 0%,
        rgba(4, 4, 4, 0.32) 55%,
        rgba(4, 4, 4, 0.55) 100%
      ),
      linear-gradient(
        180deg,
        rgba(4, 4, 4, 0.5) 0%,
        rgba(4, 4, 4, 0.64) 100%
      );
  }

  .hero__content::before {
    width: min(96%, 22rem);
    height: min(70%, 16rem);
    background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 48%,
      rgba(0, 0, 0, 0) 74%
    );
  }

  .hero__content {
    padding-top: 0.85rem;
    padding-bottom: 1.15rem;
  }

  .instagram-follow {
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.95rem;
    letter-spacing: 0.14em;
    font-size: 0.65rem;
  }

  .hero__eyebrow {
    letter-spacing: 0.2em;
    font-size: 0.62rem;
    margin-bottom: 0.7rem;
    padding: 0 0.5rem;
  }

  .hero__title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    letter-spacing: 0.1em;
  }

  .ornament {
    width: min(100%, 17rem);
    margin: 0.9rem 0 1.05rem;
    gap: 0.4rem;
  }

  .ornament__flourish {
    width: 68px;
    height: 16px;
  }

  .location__line {
    font-size: clamp(0.65rem, 3.2vw, 0.78rem);
    letter-spacing: 0.18em;
  }
}

@media (max-width: 380px) {
  .location__line {
    letter-spacing: 0.12em;
    font-size: 0.62rem;
  }
}

@media (max-height: 640px) {
  :root {
    --cradle-depth: 22px;
  }

  .site-header {
    --header-height: clamp(18vh, 22vh, 26vh);
    min-height: 18vh;
    max-height: 26vh;
    padding-top: 0.35rem;
  }

  .site-logo {
    max-width: clamp(140px, 18vh, 220px);
    max-height: calc(100% - 0.2rem);
  }

  .hero__title {
    font-size: clamp(2rem, 8vh, 4.5rem);
  }

  .ornament {
    margin: 0.55rem 0 0.75rem;
  }

  .location__pin {
    margin-bottom: 0.25rem;
    width: 15px;
    height: 15px;
  }
}
