:root {
  --leaf: #16382a;
  --leaf-deep: #0f241c;
  --leaf-mid: #2c5a43;
  --cream: #f4efe4;
  --paper: #fbf8f1;
  --ink: #1b1712;
  --muted: #5f584e;
  --gold: #c9a227;
  --gold-soft: #e8d59a;
  --laterite: #b85c38;
  --banana: #e8c547;
  --line: rgba(27, 23, 18, 0.12);
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(15, 36, 28, 0.12);
  --radius: 18px;
  --header: 76px;
  --max: 1180px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-ml: "Noto Sans Malayalam", "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--leaf);
  color: var(--cream);
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus {
  top: 12px;
}

.ml {
  font-family: var(--font-ml);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--laterite);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.announce {
  background: var(--leaf-deep);
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 36, 28, 0.06);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-ml {
  display: block;
  margin-top: 3px;
  font-family: var(--font-ml);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--leaf-mid);
}

.nav-cta {
  background: var(--leaf);
  color: var(--cream) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  color: var(--cream);
  isolation: isolate;
  display: grid;
  align-items: end;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 36, 28, 0.15) 0%, rgba(15, 36, 28, 0.22) 38%, rgba(15, 36, 28, 0.86) 100%);
}

.hero-copy {
  padding: 72px 0 56px;
  max-width: 760px;
}

.hero .kicker {
  color: var(--gold-soft);
}

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 500;
  margin: 14px 0 18px;
}

.hero p.lede {
  font-size: 1.15rem;
  max-width: 52ch;
  color: rgba(244, 239, 228, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--leaf-deep);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(244, 239, 228, 0.35);
}

.btn-leaf {
  background: var(--leaf);
  color: var(--cream);
}

.btn-line {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.12);
  border: 1px solid rgba(244, 239, 228, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d3c4;
}

.status-pill.is-open::before {
  background: #8fde6e;
}

.status-pill.is-closed::before {
  background: #e07a5f;
}

.status-pill.is-dark {
  background: var(--leaf);
  color: var(--cream);
  border-color: transparent;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 680px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-head p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
}

.prose {
  display: grid;
  gap: 16px;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.aisle-card {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
  isolation: isolate;
}

.aisle-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s ease;
}

.aisle-card:hover img {
  transform: scale(1.05);
}

.aisle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 36, 28, 0.05), rgba(15, 36, 28, 0.82));
}

.aisle-card span,
.aisle-card strong {
  position: relative;
  z-index: 1;
}

.aisle-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  padding: 180px 22px 8px;
}

.aisle-card span {
  display: block;
  padding: 0 22px 22px;
  color: rgba(244, 239, 228, 0.82);
  font-size: 0.92rem;
}

.board {
  background: #20352c;
  color: #efe7c8;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.board h3 {
  font-size: 2rem;
  color: var(--gold-soft);
}

.board-meta {
  color: #c9c0a0;
  margin: 8px 0 24px;
  font-size: 0.92rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(239, 231, 200, 0.2);
  font-family: var(--font-display);
}

.price-row b {
  font-weight: 600;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.stat {
  padding: 28px;
  background: var(--leaf);
  color: var(--cream);
  border-radius: 22px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
}

.stat span {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.area-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.1), rgba(22, 56, 42, 0.9)),
    url("../images/bridge.jpg") center/cover;
  color: var(--cream);
  border: 0;
}

.area-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.1), rgba(22, 56, 42, 0.9)),
    url("../images/storefront-bridge.jpg") center/cover;
}

.area-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(244, 239, 228, 0.1), rgba(22, 56, 42, 0.9)),
    url("../images/delivery.jpg") center/cover;
}

.area-card h3 {
  font-size: 1.5rem;
}

.visit-band {
  background: var(--leaf-deep);
  color: var(--cream);
}

.visit-band .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.12);
}

.card .hours-table th,
.card .hours-table td {
  border-bottom-color: var(--line);
}

.prose ul {
  margin: 0;
  padding-left: 1.15em;
  color: var(--muted);
}

.prose li + li {
  margin-top: 6px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page-hero {
  padding: 64px 0 28px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.page-hero p {
  max-width: 60ch;
  color: var(--muted);
  margin-top: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 32px;
}

.filters button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}

.filters button.is-active {
  background: var(--leaf);
  color: var(--cream);
  border-color: var(--leaf);
}

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

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--cream);
}

.product-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 6px;
}

.product h3 {
  font-size: 1.15rem;
}

.product .ml-name {
  color: var(--muted);
  font-size: 0.86rem;
}

.product .price {
  font-weight: 800;
  color: var(--leaf);
  margin-top: 6px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--laterite);
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  filter: saturate(0.85) contrast(1.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
}

input,
textarea,
select {
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

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

.form-status {
  min-height: 1.4em;
  font-size: 0.92rem;
  margin-top: 10px;
}

.form-status.is-ok {
  color: var(--leaf-mid);
}

.form-status.is-error {
  color: var(--laterite);
}

.site-footer {
  background: #101915;
  color: #d7d0c2;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244, 239, 228, 0.08);
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

.site-footer .brand-name {
  color: var(--cream);
}

.legal {
  padding-top: 18px;
  font-size: 0.82rem;
  color: #9d978b;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
}

.gallery img:first-child {
  height: 100%;
  min-height: 420px;
  grid-row: span 2;
}

@media (max-width: 980px) {
  .split,
  .visit-band .wrap,
  .contact-grid,
  .footer-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .aisle-grid,
  .why-grid,
  .area-grid,
  .stat-grid,
  .product-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img,
  .gallery img:first-child {
    min-height: 240px;
    height: 260px;
    grid-row: auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header) + 34px) 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .aisle-grid,
  .why-grid,
  .area-grid,
  .stat-grid,
  .product-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .section {
    padding: 64px 0;
  }

  .legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .aisle-card img {
    transition: none;
  }
}
