@charset "utf-8";

:root {
  --ink: #191817;
  --charcoal: #24211e;
  --leaf: #315a36;
  --leaf-dark: #203c25;
  --clay: #9a3f25;
  --toddy: #f0c765;
  --rain: #7aa8a6;
  --paper: #f6f1e7;
  --white: #ffffff;
  --muted: #6e675d;
  --line: rgba(25, 24, 23, 0.14);
  --shadow: 0 24px 70px rgba(25, 24, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.refresh-body {
  text-align: left;
}

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

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

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.refresh-body .container::before,
.refresh-body .container::after {
  display: none;
  content: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.94);
  border-bottom: 1px solid rgba(25, 24, 23, 0.08);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

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

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  text-transform: none;
}

.brand > span {
  margin-top: 0;
}

.brand > span > span {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clay);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: var(--leaf);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.icon-button,
.text-button,
.primary-button,
.secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.icon-button {
  width: 46px;
  color: var(--white);
  background: #25d366;
}

.text-button,
.primary-button {
  padding: 0 18px;
  color: var(--white);
  background: var(--clay);
}

.secondary-button {
  padding: 0 18px;
  color: var(--ink);
  background: var(--toddy);
}

.text-button:hover,
.primary-button:hover,
.secondary-button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.page-hero,
.home-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero {
  min-height: 58vh;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, 0.82), rgba(17, 16, 15, 0.36) 55%, rgba(17, 16, 15, 0.14)),
    linear-gradient(0deg, rgba(17, 16, 15, 0.72), rgba(17, 16, 15, 0.04) 45%);
}

.monsoon-rain::after {
  content: "";
  position: absolute;
  inset: -30px;
  opacity: 0.28;
  background-image: repeating-linear-gradient(105deg, transparent 0 24px, rgba(210, 238, 234, 0.5) 25px 26px);
  animation: rainDrift 9s linear infinite;
  pointer-events: none;
}

@keyframes rainDrift {
  from {
    transform: translate3d(-20px, -20px, 0);
  }
  to {
    transform: translate3d(20px, 20px, 0);
  }
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 78px;
}

.home-hero .hero-content {
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--toddy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: inherit;
}

h1 {
  max-width: 780px;
  font-size: 64px;
  line-height: 1.05;
}

h2 {
  font-size: 42px;
  line-height: 1.15;
}

h3 {
  font-size: 25px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto -1px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.hero-stat {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
}

.hero-stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

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

.section.white {
  background: var(--white);
}

.section.story-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(49, 90, 54, 0.07), rgba(49, 90, 54, 0) 42%),
    linear-gradient(180deg, var(--white), rgba(246, 241, 231, 0.9));
}

.section.story-section.light {
  background:
    linear-gradient(90deg, rgba(154, 63, 37, 0.08), rgba(154, 63, 37, 0) 44%),
    var(--paper);
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section.leaf {
  background: var(--leaf-dark);
  color: var(--white);
}

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

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-header.center .eyebrow::before {
  display: none;
}

.section-header p {
  margin-top: 18px;
  font-size: 17px;
}

.dark p,
.leaf p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.story-split {
  align-items: start;
}

.story-copy {
  padding-top: 4px;
}

.lead {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.75;
}

.dark .lead,
.leaf .lead {
  color: rgba(255, 255, 255, 0.88);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(16, 15, 14, 0.78), rgba(16, 15, 14, 0));
  opacity: 0;
  pointer-events: none;
}

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

.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(25, 24, 23, 0.68);
  border-left: 3px solid var(--toddy);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.55;
}

.photo-frame:has(.photo-caption)::before {
  opacity: 1;
}

.story-thread {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--clay);
  background: rgba(154, 63, 37, 0.08);
}

.story-thread p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.85;
}

.story-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.story-keywords span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--leaf-dark);
  background: rgba(49, 90, 54, 0.12);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-pair {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: end;
}

.photo-pair .photo-frame:first-child {
  margin-top: 70px;
}

.photo-pair .photo-frame img {
  min-height: 360px;
}

.story-media-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.story-media-column .photo-frame:first-child {
  margin-top: 0;
}

.story-media-column .photo-frame {
  aspect-ratio: 4 / 3;
}

.story-media-column .wide-scene {
  aspect-ratio: 16 / 9;
}

.story-media-column .photo-frame img {
  height: 100%;
  min-height: 0;
  object-position: center;
}

.aanavandi-journey {
  margin: 26px 0;
  padding: 24px 26px;
  color: var(--white);
  background: var(--leaf-dark);
  border-left: 4px solid var(--toddy);
}

.aanavandi-journey h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.aanavandi-journey p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
}

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

.tile-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-tile,
.dish-card,
.gallery-card,
.contact-card,
.page-link-card {
  border-radius: 6px;
  overflow: hidden;
}

.experience-tile,
.contact-card,
.page-link-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.light .experience-tile,
.white .experience-tile,
.light .contact-card,
.white .contact-card,
.light .page-link-card,
.white .page-link-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.experience-tile i,
.contact-card i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--ink);
  background: var(--toddy);
  border-radius: 4px;
  font-size: 20px;
}

.experience-tile h3,
.contact-card h3,
.page-link-card h3 {
  margin-bottom: 12px;
}

.dish-card,
.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
}

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

.dish-card-content,
.gallery-card-content {
  padding: 24px;
}

.dish-card .tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.wide-band {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.wide-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 16, 15, 0.84), rgba(17, 16, 15, 0.26));
}

.wide-band-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
  padding: 88px 0;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.page-link-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-link-card span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.gallery-mosaic .gallery-card:nth-child(1),
.gallery-mosaic .gallery-card:nth-child(6) {
  grid-column: span 2;
}

.gallery-mosaic .gallery-card:nth-child(1) img,
.gallery-mosaic .gallery-card:nth-child(6) img {
  height: 360px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card {
  color: var(--white);
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 10px 4px 0;
  color: var(--toddy);
  font-weight: 800;
}

.map-frame {
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.site-footer {
  background: #151413;
  color: var(--white);
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--toddy);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social-links a:hover {
  color: var(--ink);
  background: var(--toddy);
  border-color: var(--toddy);
}

.contact-card .footer-social-links {
  margin-top: 14px;
}

.contact-card .footer-social-links a {
  margin: 0;
  color: var(--white);
}

.contact-card .footer-social-links a:hover {
  color: var(--ink);
}

.contact-card .footer-social-links i {
  width: auto;
  height: auto;
  margin-bottom: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  font-size: 26px;
}

@media (max-width: 1040px) {
  .site-header-inner {
    align-items: flex-start;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }

  h1 {
    font-size: 52px;
  }

  .hero-stats,
  .tile-grid.four,
  .page-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-copy {
    padding-top: 0;
  }

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

@media (max-width: 680px) {
  .container,
  .hero-content,
  .page-hero-content {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    min-width: 0;
  }

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

  .site-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .header-actions .text-button {
    display: none;
  }

  .home-hero,
  .page-hero {
    min-height: 74vh;
  }

  .hero-content,
  .page-hero-content {
    padding: 118px 0 48px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy,
  .lead {
    font-size: 16px;
  }

  .hero-stats,
  .tile-grid,
  .tile-grid.four,
  .gallery-mosaic,
  .page-link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .photo-pair {
    grid-template-columns: 1fr;
  }

  .photo-pair .photo-frame:first-child {
    margin-top: 0;
  }

  .photo-frame img,
  .photo-pair .photo-frame img {
    min-height: 280px;
  }

  .story-media-column .wide-scene {
    aspect-ratio: 4 / 3;
  }

  .photo-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    border-left: 0;
    border-top: 3px solid var(--toddy);
    border-radius: 0;
  }

  .gallery-mosaic .gallery-card:nth-child(1),
  .gallery-mosaic .gallery-card:nth-child(6) {
    grid-column: auto;
  }

  .gallery-mosaic .gallery-card:nth-child(1) img,
  .gallery-mosaic .gallery-card:nth-child(6) img,
  .dish-card img,
  .gallery-card img {
    height: 260px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
