:root {
  --ink: #f8f3e8;
  --dark: #111318;
  --oxblood: #20242b;
  --maroon: #303844;
  --ruby: #516171;
  --gold: #d7b46a;
  --deep-gold: #9b7a32;
  --sandal: #ece5d7;
  --ivory: #fbf8ef;
  --leaf: #24453c;
  --muted: #68727c;
  --line: rgba(215, 180, 106, 0.46);
  --shadow: 0 28px 90px rgba(17, 19, 24, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #23262c;
  background:
    radial-gradient(circle at 16px 16px, rgba(215, 180, 106, 0.13) 0 2px, transparent 3px),
    linear-gradient(135deg, #f5f0e5, #d8dde2 45%, #f9f5ea);
  background-size: 32px 32px, auto;
  font-family:
    "Noto Sans Telugu", Gautami, "Nirmala UI", "Noto Sans", Inter, ui-sans-serif,
    system-ui, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(49, 57, 68, 0.14) 39px 40px),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(215, 180, 106, 0.16) 39px 40px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 74px);
  border-bottom: 2px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.98), rgba(44, 51, 61, 0.96)),
    var(--dark);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(25, 7, 7, 0.34);
}

.site-header::after,
.section::before,
.contact-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 8px, var(--gold) 9px 12px, transparent 13px) 0 0 / 28px 10px repeat-x,
    linear-gradient(225deg, transparent 8px, var(--gold) 9px 12px, transparent 13px) 14px 0 / 28px 10px repeat-x;
}

.site-header::after {
  bottom: -10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: #2b080d;
  background:
    radial-gradient(circle, #fff7dd, var(--gold) 58%, #8a6a27);
  font-weight: 900;
  font-size: 25px;
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.17);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.15;
}

.brand small {
  color: #dbc58d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #e7d7af;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.mobile-nav a:hover {
  color: white;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.header-action,
.button.primary {
  color: #171b22;
  background: linear-gradient(135deg, #fff2b8, var(--gold) 54%, #b97818);
  box-shadow: 0 14px 34px rgba(217, 164, 65, 0.25);
}

.button.secondary {
  color: #fff2c2;
  background: rgba(64, 10, 16, 0.52);
  border: 1px solid rgba(255, 226, 151, 0.72);
}

.header-action:hover,
.button.primary:hover {
  filter: brightness(1.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(255, 245, 220, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #20242b;
  color: #e7d7af;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 6px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  padding: clamp(92px, 10vw, 150px) clamp(18px, 5vw, 74px) 34px;
  overflow: hidden;
  color: var(--ink);
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 11, 15, 0.86), rgba(36, 42, 51, 0.55) 48%, rgba(9, 11, 15, 0.08)),
    radial-gradient(circle at 18% 64%, rgba(215, 180, 106, 0.28), transparent 24%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 222, 133, 0.5);
  box-shadow: inset 0 0 0 8px rgba(65, 11, 18, 0.4);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.14) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding-bottom: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ruby);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 9px 15px;
  border: 1px solid rgba(255, 222, 133, 0.72);
  border-radius: 999px;
  color: #fff6d7;
  background: rgba(21, 25, 31, 0.62);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: #fff2c8;
  font-family: "Noto Serif Telugu", "Noto Sans Telugu", Gautami, "Nirmala UI", serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 9px 36px rgba(0, 0, 0, 0.45);
}

.ornament {
  display: flex;
  align-items: center;
  width: min(520px, 86vw);
  height: 28px;
  margin: 20px 0 0;
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament span {
  width: 26px;
  height: 26px;
  margin: 0 14px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  background: #2f3844;
  box-shadow: 0 0 0 6px rgba(217, 164, 65, 0.1);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 248, 222, 0.92);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(940px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 222, 133, 0.6);
  border-radius: 8px;
  background: rgba(215, 180, 106, 0.72);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 24px;
  color: #fff2c8;
  background: rgba(23, 27, 34, 0.78);
}

.hero-stats strong {
  display: block;
  font-size: 32px;
}

.hero-stats span {
  color: rgba(255, 245, 220, 0.8);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.quick-info,
.section,
.contact-section,
.entrance-showcase,
.dining-showcase,
.sangeet-showcase,
.reception-showcase,
.small-functions-showcase,
.trailer-section {
  padding-inline: clamp(18px, 5vw, 74px);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-block: 50px;
  background:
    linear-gradient(180deg, #171b22, #303844);
}

.quick-info article,
.space-card,
.enquiry-form {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.97), rgba(231, 234, 236, 0.92));
  box-shadow: 0 18px 52px rgba(17, 19, 24, 0.16);
}

.quick-info article::before,
.space-card::before,
.enquiry-form::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(155, 100, 26, 0.32);
  border-radius: 6px;
  pointer-events: none;
}

.quick-info article {
  padding: 28px;
}

.icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(155, 100, 26, 0.54);
  border-radius: 50%;
  color: #fff3c7;
  background:
    radial-gradient(circle, #526271, #1e242c);
  font-size: 22px;
  box-shadow: 0 0 0 6px rgba(217, 164, 65, 0.14);
}

.quick-info h2,
.space-card h3 {
  margin: 0 0 8px;
  color: #26303a;
  font-size: 23px;
}

.quick-info p,
.space-card p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
}

.quick-info p,
.space-card p {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.trailer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
  padding-block: 88px;
  color: #fff2c8;
  background:
    linear-gradient(135deg, #0f1115, #303844 52%, #14171c);
}

.trailer-copy h2 {
  margin: 0;
  color: #fff2c8;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

.trailer-copy p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 245, 220, 0.82);
  font-size: 18px;
  font-weight: 650;
}

.trailer-section .eyebrow {
  color: #f6cd70;
}

.trailer-frame {
  overflow: hidden;
  border: 1px solid rgba(215, 180, 106, 0.58);
  border-radius: 8px;
  background: #111318;
  box-shadow: var(--shadow);
}

.trailer-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111318;
  object-fit: cover;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
  padding: 92px clamp(18px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.96), rgba(221, 226, 230, 0.96)),
    radial-gradient(circle at 18% 24%, rgba(215, 180, 106, 0.22), transparent 25%);
}

.story-copy h2,
.plan-strip h2 {
  margin: 0;
  color: #26303a;
  font-family: "Noto Serif Telugu", "Noto Sans Telugu", Gautami, "Nirmala UI", serif;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.15;
  letter-spacing: 0;
}

.story-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #5e646b;
  font-size: 18px;
  font-weight: 650;
}

.story-photos {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
}

.story-photos figure {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 12, 18, 0.45);
  border-radius: 8px;
  background: #25070b;
  box-shadow: var(--shadow);
}

.story-photos figure:first-child {
  transform: translateY(-20px);
}

.story-photos figure:last-child {
  transform: translateY(22px);
}

.story-photos figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(25, 7, 7, 0.78));
}

.story-photos img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.story-photos span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: #fff2c8;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.story-photos span,
.entrance-photo span,
.gallery-item span {
  display: none;
}

.dining-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
  padding-block: 86px;
  background:
    linear-gradient(135deg, #fdf9ef, #dbe1e5 56%, #f8f3e8);
}

.dining-copy h2 {
  margin: 0;
  color: #26303a;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

.dining-copy p:last-child {
  margin: 16px 0 0;
  color: #5e646b;
  font-size: 18px;
  font-weight: 650;
}

.dining-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.dining-photos figure {
  margin: 0;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid rgba(38, 48, 58, 0.22);
  border-radius: 8px;
  background: #20242b;
  box-shadow: var(--shadow);
}

.dining-photos img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.small-functions-showcase {
  padding-block: 88px;
  background:
    linear-gradient(180deg, #f8f3e8, #dfe5e8);
}

.small-functions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.small-function-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 48, 58, 0.22);
  border-radius: 8px;
  background: #f8f3e8;
  box-shadow: var(--shadow);
}

.small-function-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.small-function-item:hover img {
  transform: scale(1.035);
}

.small-function-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.small-function-item.wide {
  grid-column: span 2;
}

.sangeet-showcase {
  padding-block: 88px;
  background:
    linear-gradient(180deg, #101217, #303844);
}

.sangeet-showcase .section-heading h2,
.sangeet-showcase .section-heading p,
.sangeet-showcase .eyebrow {
  color: #fff2c8;
}

.sangeet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.sangeet-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 180, 106, 0.5);
  border-radius: 8px;
  background: #111318;
  box-shadow: var(--shadow);
}

.sangeet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sangeet-item:hover img {
  transform: scale(1.035);
}

.sangeet-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.sangeet-item.wide {
  grid-column: span 2;
}

.sangeet-item.tall {
  grid-row: span 2;
}

.reception-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
  padding-block: 88px;
  color: #fff2c8;
  background:
    linear-gradient(135deg, rgba(8, 9, 12, 0.96), rgba(45, 38, 28, 0.9)),
    url("images/open-reception-dining.jpeg") center / cover;
}

.reception-copy h2 {
  margin: 0;
  color: #fff2c8;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

.reception-copy p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 245, 220, 0.82);
  font-size: 18px;
  font-weight: 650;
}

.reception-showcase .eyebrow {
  color: #f6cd70;
}

.reception-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.72fr);
  gap: 16px;
}

.reception-photos figure {
  margin: 0;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(215, 180, 106, 0.56);
  border-radius: 8px;
  background: #111318;
  box-shadow: var(--shadow);
}

.reception-photos figure:last-child {
  min-height: 640px;
}

.reception-photos img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.entrance-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: center;
  padding-block: 78px;
  background:
    linear-gradient(135deg, #101217, #2e3742 48%, #0f1115);
  color: var(--ink);
}

.entrance-copy h2 {
  margin: 0;
  color: #fff2c8;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.entrance-copy p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 245, 220, 0.82);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
}

.entrance-showcase .eyebrow {
  color: #f6cd70;
}

.entrance-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.6fr);
  gap: 16px;
}

.entrance-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 222, 133, 0.62);
  border-radius: 8px;
  background: #0c0506;
  box-shadow: var(--shadow);
}

.entrance-photo.main {
  min-height: 480px;
}

.entrance-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72));
}

.entrance-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.entrance-photo span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 20px;
  color: #fff2c8;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.section {
  position: relative;
  padding-block: 92px;
}

.section::before,
.contact-section::before {
  top: 0;
}

.section:nth-of-type(odd) {
  background:
    linear-gradient(180deg, #fffaf0, #dfe4e8);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: #26303a;
  font-family: "Noto Serif Telugu", "Noto Sans Telugu", Gautami, "Nirmala UI", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p:last-child,
.contact-copy > p {
  margin: 16px 0 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.space-card {
  padding: 30px;
}

.space-card strong {
  display: inline-block;
  margin-top: 22px;
  color: var(--leaf);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
}

.event-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, #111318, #303844 58%, #0f1115);
}

.event-section .section-heading h2,
.event-section .section-heading p,
.event-section .eyebrow {
  color: #fff1c6;
}

.event-photo {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 222, 133, 0.65);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 222, 133, 0.55);
}

.event-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.event-list {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.event-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 222, 133, 0.58);
  border-radius: 999px;
  color: #fff4cd;
  background: rgba(25, 7, 7, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.gallery-section {
  background:
    linear-gradient(180deg, #fbf8ef, #d9dee3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 12, 18, 0.48);
  border-radius: 8px;
  background: #20242b;
  box-shadow: 0 18px 50px rgba(44, 6, 9, 0.22);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(25, 7, 7, 0.82)),
    linear-gradient(90deg, rgba(65, 11, 18, 0.16), transparent);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  padding: 24px;
  color: #fff2c8;
  font-size: 25px;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.plan-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px clamp(18px, 5vw, 74px);
  color: #fff2c8;
  background:
    linear-gradient(90deg, rgba(25, 7, 7, 0.92), rgba(111, 16, 26, 0.9)),
    url("images/gallery/photo-25.jpeg") center / cover;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.plan-strip h2 {
  max-width: 900px;
  color: #fff2c8;
}

.plan-strip .eyebrow {
  color: #f6cd70;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 48px;
  padding-block: 92px;
  background:
    linear-gradient(135deg, #fbf8ef, #d8dde2 54%, #fffaf0);
}

.contact-copy {
  position: relative;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: #26303a;
}

.contact-list span {
  display: inline-block;
  width: 28px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
}

label {
  display: grid;
  gap: 7px;
  color: #4b2018;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(155, 100, 26, 0.55);
  border-radius: 8px;
  padding: 11px 12px;
  color: #2a1712;
  background: #fffdf5;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 74px);
  color: #fff0bf;
  background: #111318;
  border-top: 2px solid var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.site-footer p {
  margin: 0;
}

.credits {
  color: rgba(255, 240, 191, 0.68);
  font-size: 12px;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(25, 7, 7, 0.94), rgba(65, 11, 18, 0.68)),
      radial-gradient(circle at 15% 62%, rgba(217, 164, 65, 0.34), transparent 24%);
  }

  .hero-stats,
  .quick-info,
  .space-grid,
  .contact-section,
  .event-section,
  .entrance-showcase,
  .story-section,
  .dining-showcase,
  .reception-showcase,
  .trailer-section {
    grid-template-columns: 1fr 1fr;
  }

  .entrance-photos {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sangeet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .small-functions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-list {
    grid-column: 1 / -1;
  }

  .plan-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero::after {
    inset: 10px;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-stats,
  .quick-info,
  .space-grid,
  .contact-section,
  .event-section,
  .entrance-showcase,
  .story-section,
  .dining-showcase,
  .reception-showcase,
  .trailer-section,
  .enquiry-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .reception-photos {
    grid-template-columns: 1fr;
  }

  .reception-photos figure,
  .reception-photos figure:last-child {
    min-height: 360px;
  }

  .dining-photos figure {
    min-height: 250px;
  }

  .story-photos {
    grid-template-columns: 1fr;
  }

  .story-photos figure,
  .story-photos figure:first-child,
  .story-photos figure:last-child {
    min-height: 360px;
    transform: none;
  }

  .entrance-photo,
  .entrance-photo.main {
    min-height: 360px;
  }

  .event-photo,
  .event-photo img {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .sangeet-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .small-functions-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .sangeet-item.large,
  .sangeet-item.wide,
  .sangeet-item.tall,
  .small-function-item.large,
  .small-function-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
}
