:root {
  --saffron: #e8620a;
  --gold: #d4a017;
  --light-gold: #f5d778;
  --deep-red: #8b1a1a;
  --cream: #fdf6e3;
  --ash: #f9f2e8;
  --dark-brown: #2c1a0e;
  --warm-brown: #4a2b19;
  --green: #174c43;
  --ink: #2c1a0e;
  --muted: #735946;
  --line: rgba(139, 26, 26, 0.16);
  --shadow: 0 18px 48px rgba(44, 26, 14, 0.16);
  font-family: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(245, 215, 120, 0.2), transparent 24%),
    radial-gradient(circle at 92% 34%, rgba(232, 98, 10, 0.12), transparent 28%);
}

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

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

code {
  border-radius: 5px;
  padding: 2px 5px;
  background: rgba(232, 98, 10, 0.08);
  font-size: 0.9em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong,
.button,
.price,
legend,
label,
.result-label,
.quick-strip strong,
.gallery-meta span {
  font-family: "Yatra One", "Trebuchet MS", sans-serif;
  font-weight: 400;
}

h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 1.04;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.42);
}

h1 span {
  color: var(--light-gold);
}

h2 {
  margin-bottom: 12px;
  color: var(--dark-brown);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  text-align: center;
}

h3 {
  margin-bottom: 8px;
  color: var(--dark-brown);
  font-size: 1.24rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--gold);
  padding: 13px clamp(20px, 4vw, 40px);
  color: var(--cream);
  background: rgba(44, 26, 14, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 215, 120, 0.58);
  border-radius: 50%;
  color: var(--light-gold);
  background: rgba(245, 215, 120, 0.1);
  font-family: "Yatra One", sans-serif;
}

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

.brand strong {
  color: var(--light-gold);
  font-size: 1.18rem;
}

.brand strong::first-letter {
  color: var(--saffron);
}

.brand small {
  color: rgba(253, 246, 227, 0.72);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  font-weight: 700;
}

.nav-links a {
  color: rgba(253, 246, 227, 0.9);
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--light-gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

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

.hero-media {
  background-image: url("assets/arunachala-hill.jpg");
  background-position: center 32%;
  background-size: cover;
  filter: brightness(0.62) saturate(0.94);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(139, 26, 26, 0.3) 0%,
      rgba(44, 26, 14, 0.57) 48%,
      rgba(44, 26, 14, 0.92) 100%
    ),
    radial-gradient(circle at center, rgba(245, 215, 120, 0.15), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  padding: 132px 0 70px;
}

.om-symbol {
  display: block;
  margin-bottom: 10px;
  color: var(--light-gold);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  text-shadow: 0 0 34px rgba(245, 215, 120, 0.82);
  animation: glow 3.5s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 22px rgba(245, 215, 120, 0.62);
  }
  50% {
    text-shadow: 0 0 52px rgba(232, 98, 10, 0.88), 0 0 86px rgba(245, 215, 120, 0.44);
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--saffron);
  font-family: "Tiro Tamil", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-tagline {
  color: var(--light-gold);
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.7;
}

.hero-location {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 23, 0.62);
  border-radius: 999px;
  padding: 8px 22px;
  color: var(--light-gold);
  background: rgba(212, 160, 23, 0.16);
  font-size: 0.98rem;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1.02rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), #c0392b);
  box-shadow: 0 10px 30px rgba(232, 98, 10, 0.36);
}

.button.secondary {
  color: var(--light-gold);
  border-color: rgba(212, 160, 23, 0.55);
  background: rgba(212, 160, 23, 0.12);
}

.section .button.secondary,
.location-section .button.secondary {
  color: var(--dark-brown);
  border-color: rgba(212, 160, 23, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

.button.full {
  width: 100%;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(212, 160, 23, 0.38);
  background: var(--dark-brown);
}

.quick-strip div {
  padding: 24px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(212, 160, 23, 0.24);
  text-align: center;
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--light-gold);
  font-size: 1.15rem;
}

.quick-strip span {
  color: rgba(253, 246, 227, 0.68);
  font-size: 0.98rem;
}

.section {
  position: relative;
  scroll-margin-top: 96px;
  padding: 90px clamp(20px, 4vw, 56px);
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--saffron), var(--gold));
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.menu-section {
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a02 0%, #2c1a0e 44%, #3d1515 100%);
}

.menu-section::before,
.estimator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(212, 160, 23, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
}

.menu-section .section-heading,
.menu-grid,
.estimator-section .section-heading,
.estimator-layout {
  position: relative;
}

.menu-section h2 {
  color: var(--light-gold);
}

.menu-section .section-heading p:not(.eyebrow) {
  color: rgba(253, 246, 227, 0.72);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 190px 1fr;
  gap: 0;
  border: 1px solid rgba(212, 160, 23, 0.28);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  color: rgba(253, 246, 227, 0.78);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card div {
  padding: 22px;
}

.menu-card h3 {
  color: var(--light-gold);
}

.price {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--deep-red));
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(232, 98, 10, 0.25);
}

.menu-card p {
  margin-bottom: 0;
  color: rgba(253, 246, 227, 0.68);
}

.estimator-section {
  overflow: hidden;
  background: var(--ash);
}

.estimator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: 24px;
  align-items: start;
}

.estimate-form,
.estimate-result,
.location-panel,
.gallery-card,
.occasion-list article {
  border: 1px solid rgba(212, 160, 23, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.estimate-form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  display: block;
  margin-bottom: 9px;
  color: var(--dark-brown);
  font-size: 1.03rem;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.food-option {
  position: relative;
}

.food-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.food-option span {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 12px;
  padding: 14px;
  background: #fffaf0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.food-option strong,
.food-option small {
  display: block;
}

.food-option strong {
  font-family: "Yatra One", sans-serif;
  font-size: 1rem;
}

.food-option small {
  color: var(--muted);
  font-weight: 700;
}

.food-option input:checked + span {
  color: #fff;
  border-color: var(--saffron);
  background: linear-gradient(135deg, var(--saffron), var(--deep-red));
}

.food-option input:checked + span small {
  color: rgba(255, 255, 255, 0.78);
}

.food-option input:focus-visible + span {
  outline: 3px solid rgba(212, 160, 23, 0.72);
  outline-offset: 3px;
}

.form-row {
  display: grid;
}

.customer-fieldset {
  border: 1px solid rgba(212, 160, 23, 0.32);
  border-radius: 14px;
  padding: 16px;
  background: #fffaf0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.profile-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(44, 26, 14, 0.16);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--dark-brown);
  background: #fff;
  font: 600 1rem Inter, ui-sans-serif, system-ui, sans-serif;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.estimate-result {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.result-label {
  display: block;
  color: var(--muted);
  font-size: 1rem;
}

#total-cost {
  display: block;
  margin: 6px 0 10px;
  color: var(--deep-red);
  font-family: "Yatra One", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}

#estimate-summary {
  color: var(--muted);
  font-size: 1.05rem;
}

.payment-note {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid rgba(212, 160, 23, 0.36);
  border-radius: 14px;
  padding: 14px;
  background: #fffaf0;
}

.payment-note span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-note strong {
  color: var(--deep-red);
  font-family: "Yatra One", sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.payment-note p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1rem;
}

.payment-note .button.secondary,
.modal-panel .button.secondary {
  color: var(--deep-red);
  border-color: rgba(212, 160, 23, 0.52);
  background: #fff7dc;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(44, 26, 14, 0.76);
  backdrop-filter: blur(8px);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(430px, 100%);
  border: 1px solid rgba(212, 160, 23, 0.42);
  border-radius: 18px;
  padding: 26px;
  background: var(--cream);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.modal-panel h2 {
  margin-bottom: 16px;
}

.modal-panel img {
  width: 260px;
  height: 260px;
  margin: 0 auto 14px;
  border: 10px solid #fff;
  border-radius: 14px;
  background: #fff;
}

.modal-panel p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(44, 26, 14, 0.16);
  border-radius: 50%;
  color: var(--dark-brown);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.occasions-section {
  background: var(--cream);
}

.occasions-section::before {
  content: "\0950";
  position: absolute;
  right: 5%;
  top: 24%;
  color: rgba(212, 160, 23, 0.08);
  font-size: 16rem;
  line-height: 1;
  pointer-events: none;
}

.occasion-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.occasion-list article {
  min-height: 206px;
  padding: 24px;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.occasion-list article::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 22%, transparent 23%),
    linear-gradient(135deg, rgba(245, 215, 120, 0.95), rgba(232, 98, 10, 0.8));
}

.occasion-list article:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: 0 20px 46px rgba(44, 26, 14, 0.18);
}

.occasion-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.gallery-section {
  background: var(--ash);
}

.gallery-tools {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
  width: min(420px, 100%);
  margin: 0 auto 22px;
}

.gallery-tools label {
  flex: 0 0 auto;
  margin: 0;
}

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

.gallery-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(44, 26, 14, 0.2);
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery-body {
  padding: 18px;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.gallery-meta span {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--deep-red);
  background: rgba(245, 215, 120, 0.34);
  font-size: 0.82rem;
}

.gallery-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.empty-gallery {
  grid-column: 1 / -1;
  border: 1px dashed rgba(139, 26, 26, 0.35);
  border-radius: 12px;
  padding: 30px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(44, 26, 14, 0.88), rgba(139, 26, 26, 0.78)),
    url("assets/arunachala-hill.jpg") center / cover;
  color: #fff;
}

.location-section h2 {
  color: var(--light-gold);
  text-align: left;
}

.location-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(253, 246, 227, 0.82);
  font-size: 1.18rem;
}

.location-actions {
  justify-content: flex-start;
}

.location-panel {
  display: grid;
  gap: 9px;
  padding: 26px;
  color: var(--dark-brown);
  background: rgba(253, 246, 227, 0.94);
}

.location-panel span {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-panel strong {
  margin-bottom: 13px;
  font-family: "Yatra One", sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.site-footer {
  display: grid;
  gap: 8px;
  border-top: 2px solid var(--gold);
  padding: 30px clamp(20px, 4vw, 56px);
  color: rgba(253, 246, 227, 0.72);
  background: var(--dark-brown);
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
}

.credit {
  font-size: 0.9rem;
  opacity: 0.74;
}

.petal {
  position: fixed;
  top: -28px;
  z-index: 1;
  width: 9px;
  height: 13px;
  border-radius: 50% 0 50% 0;
  background: radial-gradient(ellipse, #f97316 0%, #dc2626 100%);
  opacity: 0;
  pointer-events: none;
  animation: petal-fall linear infinite;
}

@keyframes petal-fall {
  0% {
    transform: translateY(-40px) rotate(0deg);
    opacity: 0.55;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1100px) {
  .menu-grid,
  .occasion-list,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.6vw, 3rem);
    line-height: 1.12;
  }

  .quick-strip,
  .estimator-layout,
  .location-section {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.22);
  }

  .estimate-result {
    position: static;
  }

  .location-section h2,
  .location-copy {
    text-align: center;
  }

  .location-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 64px 18px;
  }

  .menu-grid,
  .occasion-list,
  .gallery-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-location {
    border-radius: 18px;
    padding: 9px 16px;
    line-height: 1.35;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .gallery-tools {
    display: grid;
    width: 100%;
  }

  .estimate-form,
  .estimate-result,
  .location-panel {
    padding: 18px;
  }

  .modal-panel {
    padding: 22px 18px;
  }
}
