@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  /* Main Colors */
  --ink: #3b0d14;
  --forest: #6d1120;
  --deep: #2b050d;
  --ivy: #9a4b5d;

  /* Backgrounds */
  --cream: #f8f1f2;
  --paper: #fff9fa;
  --stone: #dcc4c9;

  /* Accent */
  --brass: #d4af37;

  /* White */
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(20px, 4vw, 56px);

  background: #ffffff;
  color: #6d1120;

}

.page-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #ffffff;
  color: #6d1120;

  /* Accent border-bottom: 1px solid #e5d3d7;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);*/
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--deep);
  background: var(--brass);
  border: 1px solid var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 38px;
  padding: 0 18px;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 241, 0.75);
}

.button-outline:hover,
.button-outline-light:hover {
  color: var(--deep);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 241, 0.7);
}

.button-outline-dark {
  color: var(--forest);
  background: transparent;
  border-color: var(--forest);
}

.button-outline-dark:hover {
  color: var(--white);
  background: var(--forest);
}

/*.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 96px) 86px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(17, 24, 18, 0.92),
      rgba(17, 24, 18, 0.55) 45%,
      rgba(17, 24, 18, 0.15)
    ),
    url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1800&q=84")
      center / cover;
}*/
.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 96px) 86px;
  color: var(--white);
  /* The background image and gradient have been removed here 
     because .hero-bg and .hero-overlay handle them now */
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: 1.55rem;
}

.hero p:not(.eyebrow),
.section-copy p,
.feature-copy p,
.details p,
.site-footer p {
  font-size: 1rem;
  line-height: 1.8;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 241, 0.84);
}

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

.booking-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1px;
  max-width: 1180px;
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  padding: 10px;
  background: var(--deep);
  box-shadow: 0 24px 70px rgba(17, 24, 18, 0.24);
}

.booking-strip div {
  padding: 22px;
  background: var(--white);
}

.booking-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--ivy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-strip strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
  padding: 110px clamp(20px, 7vw, 96px);
  background: var(--paper);
}

.reserve-copy {
  position: sticky;
  top: 110px;
}

.reserve-copy p:not(.eyebrow) {
  color: #62675f;
  line-height: 1.8;
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: 0 24px 70px rgba(31, 37, 32, 0.1);
}

.reserve-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 0;
  font: inherit;
  letter-spacing: 0;
  outline: none;
}

.reserve-form textarea {
  resize: vertical;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(182, 146, 82, 0.18);
}

.form-wide {
  grid-column: 1 / -1;
}

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reserve-actions button {
  cursor: pointer;
}

.reserve-page-section {
  padding-top: 96px;
}

.admin-page {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.admin-page .reserve-copy {
  position: static;
  top: auto;
  max-width: 1100px;
}

.admin-panel {
  display: grid;
  gap: 24px;
  width: 100%;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tab {
  min-height: 42px;
  padding: 0 18px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--stone);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-tab.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: grid;
  gap: 24px;
}

.admin-form-block {
  display: grid;
  gap: 18px;
  width: 100%;
}

.admin-edit-form[hidden] {
  display: none;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border: 1px solid var(--stone);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--forest);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-inline-button {
  min-height: 32px;
  margin: 0 6px 6px 0;
  padding: 0 12px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--forest);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-inline-button:hover {
  color: var(--white);
  background: var(--forest);
}

.admin-note-input {
  width: 100%;
  margin-bottom: 8px;
  padding: 8px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--stone);
  font: inherit;
}

.booking-status {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid var(--stone);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-status-pending {
  color: #7a5a00;
  background: #fff6d8;
}

.booking-status-approved {
  color: #1d6b35;
  background: #e4f7e9;
}

.booking-status-rejected {
  color: #8a1d1d;
  background: #fde7e7;
}

.admin-post-summary {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--stone);
}

.admin-post-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.admin-post-list button {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--stone);
  cursor: pointer;
  text-align: left;
}

.admin-post-list span {
  color: var(--forest);
  font-weight: 800;
}

.admin-post-list small {
  color: #62675f;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-posts-list {
  display: grid;
  gap: 18px;
}

.admin-post-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--stone);
}

.admin-post-card h3,
.admin-form-block h3 {
  grid-column: 1 / -1;
  color: var(--forest);
  font-size: 1.25rem;
}

.admin-post-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.admin-status {
  align-self: center;
  color: #62675f;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.admin-status a,
.admin-upload-link {
  color: var(--forest);
  border-bottom: 1px solid var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.admin-image-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.admin-image-choice {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 60px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--stone);
  cursor: pointer;
  text-align: left;
}

.admin-image-choice.is-selected {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(109, 17, 32, 0.14);
}

.admin-image-choice img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid var(--stone);
}

.admin-image-choice span {
  overflow-wrap: anywhere;
  color: #62675f;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}

.reserve-contact {
  margin-top: 32px;
  border-top: 1px solid var(--stone);
}

.booking-message {
  padding: 14px 16px;
  border: 1px solid var(--stone);
  line-height: 1.5;
}

.booking-message-success {
  color: #1d6b35;
  background: #e4f7e9;
}

.booking-message-error {
  color: #8a1d1d;
  background: #fde7e7;
}

.reserve-contact p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
}

.reserve-contact strong {
  color: var(--forest);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reserve-contact span {
  color: #62675f;
}

.contact-map {
  margin-top: 22px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.voucher-section {
  align-items: center;
}

.voucher-card {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 53, 43, 0.96), rgba(17, 24, 18, 0.96)),
    radial-gradient(circle at top right, rgba(182, 146, 82, 0.3), transparent 42%);
  border: 1px solid rgba(182, 146, 82, 0.55);
  box-shadow: 0 24px 70px rgba(31, 37, 32, 0.18);
}

.voucher-card span {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.voucher-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.voucher-card p {
  max-width: 420px;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.8;
}

.voucher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: 120px clamp(20px, 7vw, 96px);
}

.section-copy {
  max-width: 680px;
}

.section-copy p {
  color: #5f655d;
}

.image-panel,
.feature-image {
  min-height: 500px;
  background-position: center;
  background-size: cover;
  border: 12px solid var(--cream);
  box-shadow: 0 30px 90px rgba(31, 37, 32, 0.18);
}

.image-panel-tall {
  background-image: url("image/Monsoon+Ingredients-1920w.png");
}

.founders-panel {
  background-image: url("image/Monsoon+Alok+and+Arun-653w.png");
}

.menus {
  padding: 100px clamp(20px, 7vw, 96px);
  background: var(--cream);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.menu-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: rgba(255, 250, 241, 0.52);
}

.menu-card span {
  color: var(--brass);
  font-weight: 800;
}

.menu-card p {
  color: #62675f;
  line-height: 1.7;
}

.menu-card a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid var(--brass);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.homepage-update-card {
  color: inherit;
  text-decoration: none;
}

.homepage-update-card:hover h3 {
  color: var(--forest);
}

.article-image {
  width: calc(100% + (clamp(26px, 4vw, 46px) * 2));
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: calc(clamp(26px, 4vw, 46px) * -1) calc(clamp(26px, 4vw, 46px) * -1) 24px;
}

.whats-new-list {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.whats-new-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
}

.whats-new-post-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.whats-new-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(24, 22, 21, 0.08);
}

.whats-new-post-card:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.whats-new-copy {
  display: grid;
  align-content: start;
  padding: 18px 18px 20px;
}

.whats-new-date {
  color: var(--brass);
  font-weight: 800;
}

.whats-new-post h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.whats-new-post-card h3 {
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.whats-new-summary,
.whats-new-extra p {
  color: #62675f;
  line-height: 1.75;
}

.whats-new-post-card .whats-new-summary {
  margin-top: 10px;
  font-size: 0.95rem;
}

.whats-new-extra {
  margin-top: 4px;
}

.whats-new-extra a {
  display: inline-block;
  margin-top: 8px;
  color: var(--forest);
  border-bottom: 1px solid var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whats-new-read-more {
  width: fit-content;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whats-new-post-card .whats-new-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 14px;
  padding-inline: 0;
  color: var(--forest);
  background: transparent;
  border: 0;
}

.whats-new-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.whats-new-post-card .whats-new-image {
  min-height: 210px;
}

.whats-new-post.media-quote {
  background: var(--forest);
}

.whats-new-post.media-quote .whats-new-image {
  object-fit: contain;
  background: #fffaf1;
  padding: 12px;
}

.whats-new-post.media-quote .whats-new-summary,
.whats-new-post.media-quote .whats-new-extra p {
  color: rgba(255, 250, 241, 0.85);
}

.whats-new-post.media-quote .whats-new-read-more {
  color: var(--deep);
  background: var(--brass);
  border-color: var(--brass);
}

.whats-new-modal {
  padding: 22px;
  overflow-y: auto;
}

.whats-new-modal-box {
  width: min(92vw, 900px);
  max-width: 900px;
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  text-align: left;
}

.whats-new-modal-media {
  margin-bottom: 18px;
}

.whats-new-modal-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fffaf1;
  padding: 12px;
  display: block;
}

.whats-new-modal-date {
  margin: 0 0 8px;
  color: var(--brass);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whats-new-modal-box h2 {
  margin: 0 0 8px;
}

.whats-new-modal-summary {
  margin: 16px 0 22px;
  color: #4f554d;
  line-height: 1.8;
}

.whats-new-modal-link {
  display: inline-flex;
  text-decoration: none;
}

.whats-new-modal-box .popup-close {
  top: 14px;
  right: 16px;
}

@media (max-width: 720px) {
  .whats-new-modal {
    padding: 14px;
  }

  .whats-new-modal-box {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 22px 18px;
  }
}

.whats-new-footer {
  margin-top: 18px;
}

.whats-new-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--forest);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .whats-new-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .whats-new-list {
    grid-template-columns: 1fr;
  }

  .whats-new-image,
  .whats-new-post-card .whats-new-image {
    height: 220px;
    min-height: 220px;
  }
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  background: var(--forest);
  color: var(--white);
}

.feature-image {
  min-height: 400px;
  border: 0;
  box-shadow: none;
  background-image: url("image/monsoon-tailor-you-special.jpg");
}

.feature-copy {
  align-self: center;
  max-width: 620px;
  padding: clamp(44px, 7vw, 92px);
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.78);
}

.details {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  padding: 110px clamp(20px, 7vw, 96px);
}

.hours-list {
  border-top: 1px solid var(--stone);
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--stone);
}

.hours-list strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.18rem;
}

.hours-list span {
  color: #62675f;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 56px clamp(20px, 7vw, 96px);
  color: var(--white);
  background: var(--deep);
}

.social-section {
  padding: 96px clamp(20px, 7vw, 96px);
  background: var(--cream);
}

.social-section h2 {
  max-width: 860px;
}

.social-section p:not(.eyebrow) {
  max-width: 500px;
  color: #62675f;
  line-height: 1.8;
}

.social-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.social-post-card {
  display: grid;
  gap: 12px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--stone);
  text-decoration: none;
}

.social-post-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.social-post-card span {
  padding: 0 18px;
  color: var(--forest);
  font-weight: 800;
}

.social-post-card p {
  margin: 0;
  padding: 0 18px 18px;
  color: #62675f;
  line-height: 1.55;
}

.social-more-link {
  margin-top: 24px;
}

.why-section {
  background: var(--paper);
}

.updates-section {
  background: var(--paper);
}

.testimonials-section {
  padding: 96px clamp(20px, 7vw, 96px);
  background: var(--forest);
  color: var(--white);
}

.testimonials-section h2 {
  max-width: 900px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: rgba(255, 250, 241, 0.18);
}

.testimonial-grid blockquote {
  min-height: 250px;
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(17, 24, 18, 0.32);
}

.testimonial-grid p {
  margin: 0 0 28px;
  color: rgba(255, 250, 241, 0.82);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.testimonial-grid cite {
  color: var(--brass);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-hero {
  padding: 150px clamp(20px, 7vw, 96px) 80px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(43, 5, 13, 0.95),
      rgba(109, 17, 32, 0.65)
    ),
    url("https://images.unsplash.com/photo-1585937421612-70a008356fbe?auto=format&fit=crop&w=1800&q=84")
      center / cover;
}

.reserve-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 18, 0.92), rgba(17, 24, 18, 0.46)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.voucher-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 18, 0.92), rgba(17, 24, 18, 0.42)),
    url("https://images.unsplash.com/photo-1604908176997-125f25cc6f3d?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.menu-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.menu-hero p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 250, 241, 0.8);
  line-height: 1.8;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.menu-tabs a {
  padding: 13px 18px;
  border: 1px solid rgba(255, 250, 241, 0.54);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-page {
  padding: 90px clamp(20px, 7vw, 96px);
}

.drinks-page {
  background: var(--cream);
}

.menu-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.menu-intro.compact {
  margin-top: 70px;
}

.menu-intro h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.dish {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 250, 241, 0.56);
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.dish h3 {
  font-size: 1.25rem;
  line-height: 1.22;
}

.dish strong {
  color: var(--brass);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.dish p {
  margin: 0;
  color: #62675f;
  line-height: 1.65;
}

.small-dishes .dish,
.wine-list .dish {
  min-height: 170px;
}

.allergen-panel {
  padding: 90px clamp(20px, 7vw, 96px);
  color: var(--white);
  background: var(--forest);
}

.allergen-panel h2 {
  max-width: 760px;
}

.allergen-panel p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.8;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 250, 241, 0.2);
}

.allergen-grid span {
  padding: 16px;
  background: rgba(17, 24, 18, 0.3);
  font-weight: 700;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 250, 241, 0.7);
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: end;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 16px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .button-small {
    justify-self: start;
  }

  .booking-strip,
  .reserve-section,
  .split-section,
  .menu-grid,
  .admin-post-card,
  .whats-new-post,
  .social-post-grid,
  .dish-grid,
  .allergen-grid,
  .testimonial-grid,
  .feature-band,
  .details,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-strip {
    margin: 0;
    max-width: none;
  }

  .image-panel,
  .feature-image {
    min-height: 420px;
  }

  .split-section,
  .menus,
  .reserve-section,
  .social-section,
  .testimonials-section,
  .menu-page,
  .allergen-panel,
  .details {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
  }

  .button-small {
    display: none;
  }

  .nav-links {
    gap: 8px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 86vh;
    padding: 112px 18px 48px;
  }

  .menu-hero {
    padding: 110px 18px 54px;
  }

  .dish {
    min-height: 0;
    padding: 22px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .booking-strip {
    padding: 0;
  }

  .booking-strip div {
    padding: 18px;
  }

  .reserve-copy {
    position: static;
  }

  .reserve-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .reserve-contact p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hours-list p {
    display: block;
  }

  .hours-list span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }
}
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 5, 13, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  width: 90%;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  background: #ffffff;
  border: 3px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.popup-box h2 {
  color: #6d1120;
  margin: 0 0 15px;
}

.popup-box .popup-subheading {
  margin: -4px 0 14px;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.popup-box .popup-allergen {
  margin: -4px 0 14px;
  color: #800000;
  font-weight: 700;
  font-size: 0.95rem;
}

.popup-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 30px;
  cursor: pointer;
  color: #6d1120;
}
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
/* =========================
   IMMERSIVE HERO SECTION
========================= */
.immersive-hero {
  position: relative;
  min-height: 90vh; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px 40px;
}

/* Update this URL to a high-quality photo of Monsoon's interior */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1f1719;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- BRANDING --- */
.brand-wrap {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  width: 100%;
}

.brand-line {
  height: 2px;
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.brand-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 10px 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.brand-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(10px, 2vw, 14px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 15px;
  opacity: 0.9;
}

/* --- BOOKING BAR --- */
.booking-wrap {
  width: 100%;
  max-width: 850px;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  background: rgba(255, 250, 241, 0.76);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
  overflow: hidden;
}

.field-shell {
  position: relative;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(78, 56, 39, 0.14);
  padding: 0 15px;
  background: transparent;
}

.field-shell svg {
  width: 18px;
  height: 18px;
  color: #555;
  flex-shrink: 0;
}

.booking-select {
  width: 100%;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 18px 20px 18px 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #333;
  cursor: pointer;
  outline: none;
}

input.booking-select[type="date"] {
  min-width: 0;
  appearance: auto;
  -webkit-appearance: auto;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.02;
  color-scheme: light;
  color: transparent;
  -webkit-text-fill-color: transparent;
  caret-color: transparent;
}

input.booking-select[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

input.booking-select[type="date"]::-webkit-datetime-edit,
input.booking-select[type="date"]::-webkit-datetime-edit-fields-wrapper,
input.booking-select[type="date"]::-webkit-datetime-edit-text,
input.booking-select[type="date"]::-webkit-datetime-edit-month-field,
input.booking-select[type="date"]::-webkit-datetime-edit-day-field,
input.booking-select[type="date"]::-webkit-datetime-edit-year-field {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Custom dropdown arrow */
.field-shell::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.field-shell:has(input[type="date"])::after {
  content: none;
}

.field-shell:has(input[type="text"])::after {
  content: none;
}

.booking-date-display {
  flex: 1;
  min-width: 0;
  padding: 18px 20px 18px 10px;
  color: #333 !important;
  font-size: 15px;
  line-height: 1.2;
  pointer-events: none;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.booking-select::placeholder {
  color: rgba(51, 51, 51, 0.65);
}

.find-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9383e; /* The specific red from your image */
  color: #ffffff;
  border: none;
  padding: 0 35px;
  min-height: 100%;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.find-button:hover {
  background: #bf2b30;
}

/* --- ACTION LINKS (The Boxed Buttons) --- */
.hero-action-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.outline-box-link {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  padding: 12px 30px;
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2); /* Slight dark tint for readability */
}

.outline-box-link:hover {
  background: #ffffff;
  color: #000000;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1280px) {
  .reserve-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reserve-copy {
    position: static;
    top: auto;
  }

  .reserve-page-section {
    padding-top: 72px;
  }

  .contact-map iframe {
    height: 190px;
  }
}

@media (max-width: 560px) {
  .booking-panel {
    grid-template-columns: 1fr;
  }
  .field-shell {
    border-right: none;
    border-bottom: 1px solid rgba(78, 56, 39, 0.14);
  }
  .field-shell:last-of-type {
    border-bottom: none;
  }
  .field-shell svg {
    margin-right: 2px;
  }
  .booking-select {
    min-height: 58px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
  }
  .booking-date-display {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
  }
  .find-button {
    grid-column: 1;
    min-height: 54px;
    width: 100%;
    padding: 16px 0;
  }
  .hero-action-links {
    flex-direction: column;
    gap: 12px;
  }
}
/* --- HERO LOGO --- */
.hero-logo {
  max-width: 100%;
  height: auto;
  max-height: 160px; /* Adjust this number to make the logo larger or smaller */
  object-fit: contain;
  margin-bottom: 10px;
  /* Adds a soft shadow behind the image so it pops against the background */
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); 
}

@media (max-width: 500px) {
  .hero-logo {
    max-height: 110px; /* Shrinks the logo slightly on mobile */
  }
}
/* =========================
   OUR SERVICES SECTION (CIRCLES)
========================= */
.services-section {
  padding: 90px clamp(20px, 7vw, 96px);
  background-color: #f4f3f1; /* Soft off-white background */
  text-align: center;
}

.services-main-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circular Image Styling */
.service-image-wrapper {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 4px solid #630505; /* The deep red Monsoon color */
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  background: #ffffff;
}

.service-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
}

.service-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: #4a4845;
  text-align: center;
  margin-bottom: auto; /* Pushes the button to the bottom evenly across all columns */
  padding-bottom: 35px;
}

/* The small list under Catering */
.service-subtext {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #333333;
  margin-top: -20px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Deep Red Pill Buttons */
.service-pill-btn {
  background-color: #630505;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 45px;
  border-radius: 50px; /* Makes it a pill shape */
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.service-pill-btn:hover {
  background-color: #4a0303;
  transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.site-footer {
  background-color: #333333;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* This forces 4 columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.footer-column h4 {
  margin: 0 0 16px;
  color: var(--brass);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.15rem;
}

.footer-column p {
  margin: 0 0 16px;
  max-width: none;
}

.footer-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.social-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.app-promo {
  margin: 18px 0 0;
  color: var(--brass);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  background-color: #4a0303;
  width: 100%;
  text-align: center;
  padding: 20px 0;

}

/* Mobile responsive fix */
@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
}
main {
  flex: 1; 
}
