/* ============================================================
   HOME PAGE — Editorial / Charminar
   A fresh layout: asymmetric grids, vertical margin marks,
   numbered manuscript sections, arch-shaped image frames,
   Charminar woven through as the structural spine.
   Palette + type inherited from the brand (navy / gold / ivory,
   Junge / League Spartan / Cinzel).
   No linear-gradients.
   ============================================================ */

:root {
  --navy: #0b1322;
  --navy-2: #131c32;
  --navy-3: #1a2444;
  --navy-deep: #060a14;
  --gold: #c9a84c;
  --gold-2: #d4b868;
  --gold-soft: #9c8639;
  --gold-deep: #6e5a20;
  --ivory: #f5ecd7;
  --ivory-dim: #cfc6b1;
  --burgundy: #7a2a38;
  --line: rgba(201, 168, 76, 0.28);
  --line-strong: rgba(201, 168, 76, 0.55);
  --line-faint: rgba(201, 168, 76, 0.14);

  --f-display: "Junge", "Times New Roman", serif;
  --f-mark: "Cinzel", "Trajan Pro", serif;
  --f-body: "League Spartan", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* Arabian 8-point star tile (subtle texture) */
  --arabesque: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'><g fill='none' stroke='%23C9A84C' stroke-width='0.7'><rect x='20' y='20' width='40' height='40'/><rect x='20' y='20' width='40' height='40' transform='rotate(45 40 40)'/><circle cx='40' cy='40' r='12'/><circle cx='40' cy='40' r='4'/><path d='M0 40 L 8 40 M 72 40 L 80 40 M 40 0 L 40 8 M 40 72 L 40 80'/></g></svg>");

  /* Tiny Charminar mark for dividers */
  --charminar-mark: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80' fill='none' stroke='%23C9A84C' stroke-width='1.2' stroke-linejoin='round'><path d='M20 80 L 20 50 L 80 50 L 80 80'/><path d='M40 80 L 40 65 Q 40 58 50 58 Q 60 58 60 65 L 60 80'/><path d='M14 50 L 14 30 L 28 30 L 28 50'/><path d='M72 50 L 72 30 L 86 30 L 86 50'/><path d='M16 30 Q 14 18 21 14 Q 28 18 26 30'/><path d='M74 30 Q 72 18 79 14 Q 86 18 84 30'/><path d='M21 14 L 21 5 M 79 14 L 79 5'/><circle cx='21' cy='5' r='1.2' fill='%23C9A84C'/><circle cx='79' cy='5' r='1.2' fill='%23C9A84C'/></svg>");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Junge has no italic — synthesised italics look poor.
   Use color for emphasis. */
em {
  font-style: normal;
  color: var(--gold-2);
}

/* ---------- Tokens ---------- */
.mark {
  font-family: var(--f-mark);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.mark--dim {
  color: var(--ivory-dim);
}
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  font-family: var(--f-mark);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid var(--gold);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  color: var(--navy-deep);
  background: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--gold);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-2);
}
.btn .arr {
  transition: transform 0.35s var(--ease);
}
.btn:hover .arr {
  transform: translateX(4px);
}

/* ---------- Page chrome ---------- */

/* Vertical margin marks — running text in the gutter */
.margin-mark {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-soft);
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
  opacity: 0.7;
}
.margin-mark--left {
  left: -16px;
}
.margin-mark--right {
  right: -16px;
  transform: translateY(-50%) rotate(90deg);
}

/* Top progress dots — index of sections on the right edge */
.dot-index {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
  pointer-events: none;
}
.dot-index a {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  pointer-events: auto;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.dot-index a.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.35);
}
.dot-index a:hover {
  border-color: var(--gold);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 14, 28, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 14px 48px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}
.nav__seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1c2746 0%, #0a1124 70%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.nav__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav__name {
  font-family: var(--f-mark);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.28em;
  color: var(--ivory);
  line-height: 1.1;
}
.nav__name small {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: none;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 34px;
  font-family: var(--f-mark);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  justify-self: center;
}
.nav__links a {
  position: relative;
  color: var(--ivory);
  opacity: 0.82;
  transition:
    color 0.3s var(--ease),
    opacity 0.3s var(--ease);
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition:
    left 0.35s var(--ease),
    right 0.35s var(--ease);
}
.nav__links a:hover {
  color: var(--gold-2);
  opacity: 1;
}
.nav__links a:hover::after {
  left: 0;
  right: 0;
}
.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mark);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 12px 22px;
  border: 1px solid var(--gold-2);
  border-radius: 10px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-1px);
  background: var(--gold-2);
}
.nav__burger {
  display: none;
}

/* ---------- Mobile drawer ---------- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 48;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.nav__overlay.is-open {
  display: block;
  opacity: 1;
}
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy-2);
  border-left: 1px solid var(--line-strong);
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 90px 36px 48px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
}
.nav__drawer.is-open {
  transform: translateX(0);
}
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav__drawer-item {
  display: block;
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ivory);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav__drawer-item:hover {
  color: var(--gold-2);
  padding-left: 8px;
}
.nav__drawer-cta {
  margin-top: 36px;
  text-align: center;
  justify-content: center;
}

/* ---------- HERO — asymmetric, Charminar spine ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--arabesque);
  background-size: 160px 160px;
  opacity: 0.035;
  pointer-events: none;
}
/* Charminar silhouette on right side, big */
.hero__charminar {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: min(980px, 70vw);
  height: 105%;
  color: var(--gold);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.hero__charminar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.15) contrast(1.02);
}

.hero__left {
  position: relative;
  z-index: 2;
  padding: 140px 56px 70px 77px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.hero__top-stamp {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.hero__top-stamp::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ivory);
  line-height: 0.95;
  letter-spacing: -0.01em;
  position: relative;
}
.hero__title .l1 {
  display: block;
  font-size: clamp(35.3px, 5.4vw, 82.3px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero__title .l2 {
  display: block;
  font-size: clamp(25.5px, 4.4vw, 63.7px);
  color: var(--gold-2);
  margin-left: clamp(40px, 8vw, 110px);
  line-height: 1;
  margin-top: -10px;
}
.hero__title .l3 {
  display: block;
  font-family: var(--f-mark);
  font-weight: 500;
  font-size: clamp(8.4px, 0.84vw, 11.2px);
  letter-spacing: 0.5em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-top: 16px;
  padding-left: 4px;
}

.hero__under {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
  max-width: 580px;
}
.hero__under-num {
  font-family: var(--f-display);
  font-size: 45px;
  color: var(--gold);
  line-height: 0.8;
  border-right: 1px solid var(--line);
  padding-right: 18px;
  text-align: right;
}
.hero__under-num small {
  display: block;
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.35em;
  color: var(--ivory-dim);
  margin-top: 8px;
  text-align: right;
}
.hero__sub {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__right {
  position: relative;
  z-index: 2;
  padding: 140px 56px 70px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero__seal {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  align-self: flex-end;
  animation: sealFloat 6s ease-in-out infinite;
}
.hero__seal::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.45) 0%,
    transparent 65%
  );
  filter: blur(6px);
}
.hero__seal::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 4px rgba(201, 168, 76, 0.08),
    0 0 40px rgba(201, 168, 76, 0.3);
}
.hero__seal img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}
@keyframes sealFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Vertical "services index" anchored bottom-right of hero */
.hero__index {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__index a {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
  position: relative;
}
.hero__index a small {
  font-family: var(--f-mark);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__index a:hover {
  color: var(--gold-2);
}

/* Postal-stamp clock at top-right of hero */
.hero__stamp {
  position: absolute;
  top: 130px;
  right: 60px;
  z-index: 4;
  padding: 12px 18px;
  border: 1px dashed var(--gold);
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(6, 10, 20, 0.5);
  transform: rotate(-3deg);
}
.hero__stamp b {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--ivory);
  text-transform: none;
  margin-top: 4px;
}

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  left: 110px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  z-index: 4;
}
.hero__scroll .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.hero__scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  animation: scrollWipe 2.2s linear infinite;
}
@keyframes scrollWipe {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ---------- Section system ---------- */
.section {
  position: relative;
  padding: 30px 43px;
  background: var(--navy-deep);
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--arabesque);
  background-size: 160px 160px;
  opacity: 0.035;
  pointer-events: none;
}
.section--alt {
  background: var(--navy-deep);
}

/* Numbered header */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 49px;
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.sec-head__num {
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 45px;
  line-height: 0.8;
}
.sec-head__num small {
  display: block;
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--ivory-dim);
  margin-top: 14px;
  text-transform: uppercase;
}
.sec-head__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18.9px, 2.5vw, 36.4px);
  line-height: 0.98;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.sec-head__title em {
  font-style: normal;
  color: var(--gold-2);
}
.sec-head__aside {
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: right;
  align-self: end;
  padding-bottom: 6px;
}

/* Charminar mini-divider */
.divider-charminar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 28px 0;
}
.divider-charminar .bar {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.divider-charminar .mark {
  width: 80px;
  height: 64px;
  background-image: var(--charminar-mark);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.85;
}

/* ---------- I — HERITAGE ---------- */
.heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.heritage__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 20px;
}
.heritage__h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(17.6px, 2vw, 27.4px);
  line-height: 1.05;
  color: var(--ivory);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.heritage__h em {
  font-style: normal;
  color: var(--gold-2);
}
.heritage__dropcap {
  color: var(--ivory-dim);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
}
.heritage__dropcap::first-letter {
  font-family: var(--f-display);
  font-size: 67px;
  float: left;
  line-height: 0.75;
  margin: 6px 16px 0 0;
  color: var(--gold-2);
  font-weight: 400;
}
.heritage__body {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
}
.heritage__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.heritage__facts div {
  padding: 22px 0;
  border-right: 1px solid var(--line);
}
.heritage__facts div:last-child {
  border-right: 0;
  padding-left: 18px;
}
.heritage__facts div:not(:first-child) {
  padding-left: 18px;
}
.heritage__facts b {
  font-family: var(--f-display);
  font-size: 27px;
  color: var(--gold-2);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.heritage__facts span {
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}

/* Arch-framed image — Mughal pointed arch matching the aboutUsImageBG */
.arch-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--navy-3);
  border-radius: 50% 50% 0 0 / 38% 38% 0 0;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.arch-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  z-index: 0;
}
.arch-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.arch-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(201, 168, 76, 0.12),
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
}
.arch-frame__label {
  position: relative;
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(245, 236, 215, 0.55);
  text-transform: uppercase;
  text-align: center;
  padding: 0 28px;
  z-index: 1;
}
.arch-frame__num {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  background: var(--navy-deep);
  padding: 4px 12px;
  border: 1px solid var(--line);
}

/* Heritage image + overlapping quote card */
.heritage__img-wrap {
  position: relative;
  width: 65%;
  margin-left: auto;
  padding-bottom: 0;
  margin-right: 100px;
  margin-top: -50px;
}
.heritage__img-wrap img {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.heritage__quote {
  position: absolute;
  bottom: 5%;
  left: -8%;
  background: var(--navy-deep);
  border: 1px solid var(--line-strong);
  padding: 4% 5%;
  width: 70%;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
  z-index: 3;
}
.heritage__quote q {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ivory);
  quotes: "“" "”";
}
.heritage__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- II — SIGNATURE CUISINE (tasting menu list) ---------- */
.tasting {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dish-row {
  display: grid;
  grid-template-columns: 100px 1fr 240px;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.dish-row:last-child {
  border-bottom: 0;
}
.dish-row.is-flipped {
  grid-template-columns: 240px 1fr 100px;
}
.dish-row.is-flipped .dish-row__num {
  order: 3;
  text-align: left;
  border-right: 0;
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 18px;
}
.dish-row.is-flipped .dish-row__img {
  order: 1;
}
.dish-row.is-flipped .dish-row__body {
  order: 2;
  text-align: right;
}
.dish-row.is-flipped .dish-row__title {
  justify-content: flex-end;
}
.dish-row.is-flipped .dish-row__dotline {
  order: 1;
  flex-direction: row-reverse;
}
.dish-row.is-flipped .dish-row__foot {
  justify-content: flex-end;
  gap: 24px;
}

.dish-row__num {
  font-family: var(--f-display);
  font-size: 56px;
  color: var(--gold);
  text-align: right;
  line-height: 0.8;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
.dish-row__num small {
  display: block;
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.35em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
}
.dish-row__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dish-row__sub {
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.dish-row__title {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.dish-row__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18.6px, 2.06vw, 29.4px);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.dish-row__name em {
  font-style: normal;
  color: var(--gold-2);
}
.dish-row__dotline {
  flex: 1;
  display: flex;
  align-items: center;
  height: 1px;
  background-image: radial-gradient(
    circle,
    var(--gold) 0.8px,
    transparent 1.2px
  );
  background-size: 12px 1px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  margin: 0 6px 14px;
  opacity: 0.6;
  min-width: 60px;
}
.dish-row__price {
  font-family: var(--f-display);
  font-size: 25px;
  color: var(--gold-2);
  letter-spacing: 0;
  line-height: 1;
}
.dish-row__desc {
  color: var(--ivory-dim);
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
  max-width: 540px;
}
.dish-row__foot {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  margin-top: 4px;
}
.dish-row__foot .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 4px;
}
.dish-row__foot .dot.off {
  background: transparent;
  border: 1px solid var(--gold-deep);
}
.dish-row__foot .tag {
  padding: 4px 12px;
  border: 1px solid var(--line);
  color: var(--gold);
}

.dish-row__img {
  aspect-ratio: 3 / 4;
  border-radius: 100% 100% 0 0 / 24% 24% 0 0;
  background: var(--navy-3);
  background-image: radial-gradient(
    ellipse at 50% 35%,
    rgba(201, 168, 76, 0.22),
    transparent 65%
  );
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgba(245, 236, 215, 0.55);
  text-transform: uppercase;
  text-align: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.dish-row__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dish-row__img::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.dish-row:hover .dish-row__img {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.tasting__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 35px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 18px;
}
.tasting__foot p {
  color: var(--ivory-dim);
  font-size: 13px;
  max-width: 420px;
  line-height: 1.8;
}

/* ---------- III — SERVICES (vertical minaret columns) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.minaret {
  position: relative;
  background: var(--navy-deep);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.minaret:hover {
  border-color: var(--gold);
}
.minaret__arch {
  aspect-ratio: 4 / 3;
  background: var(--navy-3);
  background-image: var(--arabesque);
  background-size: 80px 80px;
  background-blend-mode: overlay;
  border-radius: 100% 100% 0 0 / 18% 18% 0 0;
  margin: 18px 18px 0;
  border: 1px solid var(--line);
  border-bottom: none;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.minaret__arch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.minaret__arch::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line-faint);
  border-bottom: none;
  border-radius: inherit;
}
.minaret__arch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(201, 168, 76, 0.22),
    transparent 65%
  );
  pointer-events: none;
}
.minaret__icon {
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--navy-deep);
  position: relative;
  z-index: 1;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.minaret:hover .minaret__icon {
  transform: scale(1.06);
  box-shadow: none;
}

.minaret__icon svg {
  width: 44px;
  height: 44px;
}

.minaret__body {
  padding: 25px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.minaret__num {
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}
.minaret__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.02;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.minaret__name em {
  font-style: normal;
  color: var(--gold-2);
}
.minaret__desc {
  color: var(--ivory-dim);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 8px;
}
.minaret__list {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.minaret__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ivory);
  font-weight: 300;
}
.minaret__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* ---------- IV — GALLERY (exhibition wall) ---------- */
.exhibition {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}
.frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.frame {
  position: relative;
  background: var(--navy-3);
  background-image: var(--arabesque);
  background-size: 80px 80px;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.4s var(--ease),
    transform 0.5s var(--ease);
}
.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 168, 76, 0.18),
    transparent 70%
  );
  pointer-events: none;
}
.frame:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.frame--arch {
  border-radius: 100% 100% 0 0 / 18% 18% 0 0;
}
.frame__num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 17px;
  background: rgba(6, 10, 20, 0.7);
  padding: 2px 12px;
  border: 1px solid var(--line);
  z-index: 2;
}
.frame__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px;
  font-family: monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: rgba(245, 236, 215, 0.75);
  text-transform: uppercase;
  background: rgba(6, 10, 20, 0.55);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  z-index: 2;
}

/* Exhibition layout — 12-col grid, 4 rows */
.frame.f1 {
  grid-column: span 5;
  grid-row: span 3;
}
.frame.f2 {
  grid-column: span 4;
  grid-row: span 2;
}
.frame.f3 {
  grid-column: span 3;
  grid-row: span 2;
}
.frame.f4 {
  grid-column: span 4;
  grid-row: span 2;
}
.frame.f5 {
  grid-column: span 3;
  grid-row: span 2;
}
.frame.f6 {
  grid-column: span 4;
  grid-row: span 3;
}
.frame.f7 {
  grid-column: span 8;
  grid-row: span 2;
}

/* ---------- V — BANQUET (sealed invitation) ---------- */
.invitation {
  position: relative;
  padding: 0 77px;
  background: var(--navy-deep);
}
.invitation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--arabesque);
  background-size: 160px 160px;
  opacity: 0.035;
  pointer-events: none;
}
.invitation__box {
  position: relative;
  padding: 84px 56px;
  background: var(--navy-2);
  background-image: var(--arabesque);
  background-size: 120px 120px;
  background-blend-mode: soft-light;
  border: 1px solid var(--line-strong);
  text-align: center;
  overflow: hidden;
}
.invitation__box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line);
  pointer-events: none;
}
/* corner ornaments */
.invitation__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  pointer-events: none;
  z-index: 2;
}
.invitation__corner.tl {
  top: 24px;
  left: 24px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.invitation__corner.tr {
  top: 24px;
  right: 24px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.invitation__corner.bl {
  bottom: 24px;
  left: 24px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}
.invitation__corner.br {
  bottom: 24px;
  right: 24px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.invitation__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
.invitation__charminar {
  width: 80px;
  height: 90px;
  color: var(--gold);
  opacity: 0.9;
}
.invitation__charminar svg {
  width: 100%;
  height: 100%;
}
.invitation__mark {
  font-family: var(--f-mark);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}
.invitation__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26.5px, 3.4vw, 49px);
  line-height: 0.98;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.invitation__title em {
  font-style: normal;
  color: var(--gold-2);
}
.invitation__sub {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.85;
  max-width: 560px;
  font-weight: 300;
}
.invitation__stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 6px 0;
}
.invitation__stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.invitation__stats b {
  font-family: var(--f-display);
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.invitation__stats span {
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.invitation__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- VI — TESTIMONIALS (postcards) ---------- */
.postcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.postcard {
  position: relative;
  background: var(--navy-deep);
  border: 1px solid var(--line);
  padding: 25px 22px 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 26px;
}
.postcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.postcard__stamp {
  border: 1px dashed var(--gold);
  padding: 8px 14px;
  font-family: var(--f-mark);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-2deg);
}
.postcard__stamp b {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--ivory);
  letter-spacing: 0;
  margin-top: 2px;
}
.postcard__no {
  font-family: var(--f-display);
  font-size: 21px;
  color: var(--gold);
  line-height: 1;
}
.postcard__no small {
  display: block;
  font-family: var(--f-mark);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--ivory-dim);
  text-transform: uppercase;
  margin-top: 6px;
}
.postcard__body {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ivory);
}
.postcard__body::before {
  content: “””;
  display: block;
  font-size: 39px;
  color: var(--gold);
  line-height: 0.3;
  margin-bottom: 18px;
}
.postcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  gap: 14px;
}
.postcard__who {
  font-family: var(--f-mark);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.postcard__who small {
  display: block;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ivory-dim);
  text-transform: none;
  margin-top: 4px;
}
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
}
.stars svg {
  width: 12px;
  height: 12px;
}

/* ---------- VII — RESERVATION (ledger) ---------- */
.ledger {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid var(--line-strong);
  padding: 45px 56px;
}
.ledger::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.ledger__head {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.ledger__head .charminar {
  width: 60px;
  height: 70px;
  color: var(--gold);
  opacity: 0.85;
}
.ledger__head .charminar svg {
  width: 100%;
  height: 100%;
}
.ledger__head h3 {
  font-family: var(--f-display);
  font-size: clamp(19.6px, 2.25vw, 31.4px);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}
.ledger__head h3 em {
  font-style: normal;
  color: var(--gold-2);
}
.ledger__head p {
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.ledger__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 36px;
  position: relative;
}
.lfield {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.lfield--full {
  grid-column: 1 / -1;
}
.lfield label {
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
}
.lfield input,
.lfield select,
.lfield textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ivory);
  padding: 8px 0 12px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color 0.3s var(--ease);
  width: 100%;
  color-scheme: dark;
}
.lfield textarea {
  font-size: 16px;
  font-family: var(--f-body);
  font-weight: 300;
  padding-top: 12px;
}
.lfield select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23C9A84C' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.lfield input::placeholder,
.lfield textarea::placeholder {
  color: rgba(245, 236, 215, 0.35);
  font-family: var(--f-display);
  font-weight: 400;
}
.lfield input:focus,
.lfield select:focus,
.lfield textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-2);
}
.lfield.is-invalid input,
.lfield.is-invalid select,
.lfield.is-invalid textarea {
  border-bottom-color: #b85a6b;
}
.lfield .err {
  font-size: 11px;
  color: #e0a6b0;
  font-family: var(--f-body);
  margin-top: 4px;
  min-height: 14px;
}
.ledger__submit {
  margin-top: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.ledger__submit p {
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--ivory-dim);
  text-transform: uppercase;
}
.ledger__success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.ledger__success.show {
  display: block;
  animation: fadeUp 0.8s var(--ease) both;
}
.ledger__success .check {
  width: 66px;
  height: 66px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.06);
}
.ledger__success h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}
.ledger__success h3 em {
  font-style: normal;
  color: var(--gold-2);
}
.ledger__success p {
  color: var(--ivory-dim);
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 77px 77px 21px;
  position: relative;
}
.footer__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.footer__charminar {
  width: 120px;
  height: 140px;
  color: var(--gold);
  opacity: 0.85;
}
.footer__charminar svg {
  width: 100%;
  height: 100%;
}
.footer__top p {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ivory);
  text-align: center;
  max-width: 540px;
  line-height: 1.3;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__seal {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 30% 30%, #1c2746, #0a1124 70%);
}
.footer__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__brand p {
  color: var(--ivory-dim);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 320px;
  font-weight: 300;
}
.footer h4 {
  font-family: var(--f-mark);
  font-size: 7.7px;
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a {
  color: var(--ivory-dim);
  font-size: 13.5px;
  font-weight: 300;
  transition: color 0.3s var(--ease);
}
.footer ul a:hover {
  color: var(--gold-2);
}
.footer__contact div {
  display: flex;
  
  gap: 4px;
  margin-bottom: 18px;
}
.footer__contact small {
  font-family: var(--f-mark);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer__contact span {
  color: var(--ivory);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 16px;
  height: 16px;
}
.footer__base {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ivory-dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 300;
}
.footer__base .made {
  font-family: var(--f-mark);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.footer__powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px solid var(--line-faint);
  font-family: var(--f-mark);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 1;
}
.footer__powered img {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}
.reveal[data-delay="5"] {
  transition-delay: 0.4s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .section {
    padding: 25px 18px;
  }
  .invitation {
    padding: 0 45px;
  }
  .footer {
    padding: 70px 45px 21px;
  }
  .hero__left {
    padding: 140px 42px 70px 56px;
  }
  .hero__right {
    padding: 140px 42px 70px 21px;
  }
  .hero__scroll {
    left: 80px;
  }
}
@media (max-width: 1024px) {
  .nav,
  .nav.scrolled {
    padding: 16px 22px;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    color: var(--gold);
  }
  .margin-mark {
    display: none;
  }
  .dot-index {
    display: none;
  }
  .section {
    padding: 20px 10px;
  }
  .invitation {
    padding: 0 15px;
  }
  .footer {
    padding: 56px 15px 21px;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero__left {
    padding: 120px 24px 60px;
    align-items: center;
    text-align: center;
  }
  .hero__right {
    padding: 0 15px 56px;
    align-items: stretch;
  }
  .hero__stamp {
    top: 90px;
    right: 22px;
  }
  /* Keep charminar as an absolute background on mobile — do not pull it into the grid flow */
  .hero__charminar {
    position: absolute;
    inset: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.18;
  }
  .hero__scroll {
    display: none;
  }
  .hero__title .l1 {
    margin-top: 20px;
    font-size: clamp(49.4px, 6.9vw, 49px);
  }
  .hero__title .l2 {
    font-size: clamp(49.5px, 5.9vw, 39.2px);
    margin-left: 30px;
    margin-top: 10px;
  }
  .hero__title .l3 {
    font-size: 20px;
  }
  .hero__under {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }
  .hero__under-num {
    display: none;
    font-size: 34px;
  }
  .hero__index {
    align-items: flex-start;
    text-align: left;
  }
  .hero__index a {
    justify-content: flex-start;
  }

  .sec-head {
    grid-template-columns: 80px 1fr;
    gap: 24px;
    margin-bottom: 35px;
  }
  .sec-head__aside {
    display: none;
  }
  .sec-head__num {
    font-size: 32px;
  }

  .heritage {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .heritage__left {
    padding-right: 0;
  }
  .heritage__img-wrap {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
  .heritage__quote {
    margin-left: 0;
    max-width: 100%;
  }

  .dish-row,
  .dish-row.is-flipped {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0;
  }
  .dish-row__num {
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    padding-right: 0;
    font-size: 39px;
    display: flex;
    align-items: baseline;
    gap: 16px;
  }
  .dish-row__num small {
    margin-top: 0;
  }
  .dish-row.is-flipped .dish-row__num {
    text-align: left;
    border-left: 0;
    padding-left: 0;
    order: initial;
  }
  .dish-row.is-flipped .dish-row__img {
    order: -1;
  }
  .dish-row.is-flipped .dish-row__body {
    order: initial;
    text-align: left;
  }
  .dish-row.is-flipped .dish-row__title {
    justify-content: flex-start;
  }
  .dish-row.is-flipped .dish-row__foot {
    justify-content: flex-start;
  }
  /* Full-width landscape image floated to the top of each card */
  .dish-row__img {
    order: -1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px 10px 0 0;
    margin: 0;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .exhibition {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
  }
  .frame.f1 {
    grid-column: span 6;
    grid-row: span 2;
  }
  .frame.f2 {
    grid-column: span 3;
    grid-row: span 2;
  }
  .frame.f3 {
    grid-column: span 3;
    grid-row: span 2;
  }
  .frame.f4 {
    grid-column: span 4;
    grid-row: span 2;
  }
  .frame.f5 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .frame.f6 {
    grid-column: span 3;
    grid-row: span 2;
  }
  .frame.f7 {
    grid-column: span 6;
    grid-row: span 2;
  }

  .invitation__box {
    padding: 56px 21px;
  }
  .postcards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ledger {
    padding: 32px 20px;
  }
  .ledger::before {
    display: none;
  }
  .ledger__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ledger__submit {
    justify-content: center;
    text-align: center;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__top p {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  /* Nav — switch to flexbox so burger always pins to the right */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__cta {
    display: none;
  }

  /* Hero */
  .hero__under {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 200px;
  }
  .hero__under-num {
    display: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 12px;
    font-size: 28px;
    
    align-items: baseline;
    gap: 12px;
    text-align: left;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    justify-content: center;
    text-align: center;
  }

  /* Section system */
  .section {
    padding: 14px 10px;
  }
  .sec-head {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }
  .sec-head__num {
    font-size: 26px;
  }

  /* Heritage */
  .heritage__img-wrap {
    width: 100%;
  }

  /* Gallery exhibition — 2-column on phones */
  .exhibition {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .frame.f1 { grid-column: span 2; grid-row: span 2; }
  .frame.f2 { grid-column: span 2; grid-row: span 1; }
  .frame.f3 { grid-column: span 1; grid-row: span 1; }
  .frame.f4 { grid-column: span 1; grid-row: span 1; }
  .frame.f5 { grid-column: span 2; grid-row: span 1; }
  .frame.f6 { grid-column: span 1; grid-row: span 1; }
  .frame.f7 { grid-column: span 2; grid-row: span 1; }

  /* Banquet invitation */
  .invitation {
    padding: 0 10px;
  }
  .invitation__box {
    padding: 42px 18px;
  }
  .invitation__corner {
    display: none;
  }
  .invitation__stats {
    gap: 24px;
  }
  .invitation__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .invitation__ctas .btn {
    justify-content: center;
    text-align: center;
  }

  /* Testimonials */
  .postcard__body {
    font-size: 18px;
  }

  /* Reservation */
  .ledger {
    padding: 24px 16px;
  }
  .ledger__submit {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .ledger__submit .btn {
    justify-content: center;
  }

  /* Cuisine foot */
  .tasting__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer {
    padding: 42px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .footer__top p {
    font-size: 17px;
  }
}
