@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Manrope:wght@400;500;600;700&family=Noto+Serif+Tamil:wght@500;600&display=swap");

:root {
  --ivory: #fbf7f1;
  --ivory-deep: #f1e8dd;
  --paper: #fffdf8;
  --ink: #392f27;
  --muted: #756b62;
  --olive: #7f881f;
  --olive-deep: #596013;
  --saffron: #df813c;
  --peach: #f0c8aa;
  --rose: #be806e;
  --line: rgba(67, 51, 38, 0.14);
  --line-strong: rgba(67, 51, 38, 0.24);
  --shadow-sm: 0 14px 35px rgba(60, 43, 29, 0.08);
  --shadow: 0 26px 70px rgba(60, 43, 29, 0.13);
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;
  --tamil: "Noto Serif Tamil", serif;
  --radius: 30px;
  --container: min(1200px, calc(100% - 44px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.72;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(
    rgba(77, 59, 42, 0.07) 0.55px,
    transparent 0.55px
  );
  background-size: 6px 6px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
::selection {
  background: rgba(223, 129, 60, 0.22);
}

.container {
  width: var(--container);
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--olive-deep);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--saffron);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.4vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.042em;
  margin: 0.48rem 0 1.1rem;
  font-weight: 600;
}
.section-copy {
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.82rem 1.28rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(57, 47, 39, 0.18);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: #211a15;
  box-shadow: 0 18px 38px rgba(57, 47, 39, 0.22);
}
.btn-soft {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.btn-soft:hover {
  border-color: rgba(127, 136, 31, 0.46);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.btn-arrow::after {
  content: "↗";
  font-size: 1.05rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -70px;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 3000;
  border-radius: 10px;
}
.skip-link:focus {
  top: 12px;
}

/* Shared navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1500;
  padding: 12px 0;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    padding 0.28s ease;
}
.site-header.scrolled {
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
  padding: 7px 0;
}
.nav-shell {
  width: var(--container);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
  position: relative;
  z-index: 2;
}
.brand img {
  width: 58px;
  height: 66px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-word {
  display: grid;
  line-height: 0.94;
}
.brand-word strong {
  font: 600 1.72rem var(--serif);
  letter-spacing: 0.015em;
}
.brand-word span {
  font: 0.72rem var(--tamil);
  color: var(--olive-deep);
  margin-top: 0.3rem;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.desktop-nav a:not(.btn) {
  position: relative;
  color: #51463c;
  padding: 0.35rem 0;
}
.desktop-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -4px;
  height: 1px;
  background: var(--saffron);
  transition: 0.25s;
}
.desktop-nav a:not(.btn):hover::after,
.desktop-nav a.active::after {
  left: 0;
  right: 0;
}
.nav-cta {
  min-height: 44px;
  padding: 0.58rem 1.02rem;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1601;
  box-shadow: 0 10px 24px rgba(57, 47, 39, 0.07);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 1.7px;
  border-radius: 4px;
  background: var(--ink);
  transition: 0.25s;
}
.menu-toggle::before {
  transform: translateY(-6px);
}
.menu-toggle::after {
  transform: translateY(6px);
}
.menu-toggle.is-open span {
  opacity: 0;
}
.menu-toggle.is-open::before {
  transform: rotate(45deg);
}
.menu-toggle.is-open::after {
  transform: rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(30, 24, 19, 0.48);
  backdrop-filter: blur(11px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-panel {
  margin-left: auto;
  width: min(430px, 94vw);
  height: 100dvh;
  background: linear-gradient(160deg, #fffdf9 0%, #f7efe6 100%);
  padding: 22px 24px 24px;
  transform: translateX(103%);
  transition: transform 0.38s cubic-bezier(0.22, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -28px 0 75px rgba(33, 25, 19, 0.22);
  position: relative;
}
.mobile-panel::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(127, 136, 31, 0.14);
  border-radius: 50%;
  right: -120px;
  top: 120px;
  pointer-events: none;
}
.mobile-menu.is-open .mobile-panel {
  transform: none;
}
.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.mobile-panel .brand img {
  width: 62px;
  height: 70px;
}
.mobile-panel .brand-word {
  display: grid;
}
.mobile-panel .brand-word strong {
  font-size: 1.8rem;
}
.mobile-panel .brand-word span {
  font-size: 0.72rem;
}
.mobile-close {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0;
  position: relative;
}
.mobile-close::before,
.mobile-close::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: 23px;
  height: 1.7px;
  background: var(--ink);
  border-radius: 4px;
}
.mobile-close::before {
  transform: rotate(45deg);
}
.mobile-close::after {
  transform: rotate(-45deg);
}
.mobile-links {
  display: grid;
  gap: 0;
  padding: 22px 0 18px;
  position: relative;
  z-index: 1;
}
.mobile-links a {
  font: 600 clamp(1.55rem, 7vw, 2rem)/1.05 var(--serif);
  padding: 0.72rem 0.1rem;
  border-bottom: 1px solid rgba(72, 54, 38, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-links a::after {
  content: "↗";
  font: 500 0.92rem var(--sans);
  color: var(--saffron);
  opacity: 0.8;
}
.mobile-links a:hover {
  color: var(--olive-deep);
  padding-left: 0.35rem;
}
.mobile-panel > .btn {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.mobile-caption {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 16px 0 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Shared premium footer */
.site-footer {
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.14),
      transparent 31%
    ),
    linear-gradient(145deg, #879677 0%, #6f7e63 100%);
  color: rgba(255, 255, 255, 0.86);
  padding: 86px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  right: -230px;
  top: -310px;
}
.site-footer::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  left: 8%;
  top: 18%;
  box-shadow:
    0 24px 0 rgba(255, 255, 255, 0.36),
    0 48px 0 rgba(255, 255, 255, 0.18);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-identity {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.footer-identity img{
  width:110px;
  height:auto;
  max-height:120px;
  object-fit:contain;
  filter:none;
  opacity:1;
}
.footer-brand h2 {
  font: 600 clamp(3rem, 6vw, 5.7rem)/0.82 var(--serif);
  margin: 0.2rem 0 0.75rem;
  letter-spacing: -0.04em;
}
.footer-brand .tamil {
  font-family: var(--tamil);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.86);
  font: italic 1.22rem var(--serif);
}
.footer-nav-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.footer-column strong {
  display: block;
  color: #ffffff;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
}
.footer-links a {
  transition: 0.22s;
}
.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-journey {
  margin-top: 52px;
  padding: 26px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.footer-journey p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}
.footer-journey strong {
  display: block;
  color: #fff;
  font: 600 1.65rem var(--serif);
  margin-bottom: 3px;
}
.footer-journey .btn {
  background: #fff;
  color: #344038;
  white-space: nowrap;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  z-index: 1;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .footer-nav-area {
    max-width: 520px;
  }
}
@media (max-width: 680px) {
  :root {
    --container: min(calc(100% - 28px), 1200px);
    --radius: 23px;
  }
  html {
    scroll-padding-top: 88px;
  }
  .site-header {
    padding: 6px 0;
  }
  .site-header.scrolled {
    padding: 4px 0;
  }
  .nav-shell {
    min-height: 68px;
  }
  .brand img {
    width: 52px;
    height: 58px;
  }
  .brand-word {
    display: grid;
  }
  .brand-word strong {
    font-size: 1.45rem;
  }
  .brand-word span {
    font-size: 0.62rem;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
  }
  .mobile-panel {
    width: 100%;
    padding: 18px 20px 22px;
  }
  .mobile-panel .brand img {
    width: 58px;
    height: 66px;
  }
  .mobile-panel .brand-word strong {
    font-size: 1.65rem;
  }
  .section-title {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }
  .footer-top {
    gap: 36px;
  }
  .footer-identity {
    gap: 14px;
  }
  .footer-identity img {
    width: 65px;
    height: 82px;
  }
  .footer-nav-area {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .footer-journey {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-journey .btn {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .site-footer {
    padding-top: 68px;
  }
}
@media (max-width: 390px) {
  .nav-shell {
    gap: 0.55rem;
  }
  .brand {
    gap: 0.48rem;
  }
  .brand img {
    width: 46px;
    height: 52px;
  }
  .brand-word strong {
    font-size: 1.3rem;
  }
  .brand-word span {
    font-size: 0.58rem;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .mobile-panel .brand img {
    width: 54px;
    height: 62px;
  }
  .mobile-panel .brand-word strong {
    font-size: 1.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
