/* ===== NATYABHOOMI — SHARED STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Cinzel:wght@400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: #FDFAF5;
  color: #2A1A0E;
  line-height: 1.7;
  min-height: 100vh;
}

/* ---- Colour tokens ---- */
:root {
  --red:    #8C1C13;
  --red2:   #6A1410;
  --gold:   #C8922A;
  --gold2:  #E8C97A;
  --cream:  #FDFAF5;
  --offwhite: #F5F0E8;
  --dark:   #2A1A0E;
  --mid:    #5C3D2A;
  --light:  #9C7B5C;
  --border: rgba(200,146,42,0.22);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- Typography helpers ---- */
.cinzel   { font-family: 'Cinzel', serif; }
.playfair { font-family: 'Playfair Display', Georgia, serif; }

/* ---- Utility ---- */
.center { text-align: center; }
.gold-line {
  display: block;
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 0 auto 20px;
}
.label {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-sub {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--light);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-solid {
  background: var(--red);
  color: #FDFAF5;
}
.btn-solid:hover { background: var(--red2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: #FDFAF5; }
.btn-ghost {
  background: transparent;
  color: var(--gold2);
  border: 1px solid rgba(200,146,42,.35);
}
.btn-ghost:hover { border-color: var(--gold2); background: rgba(200,146,42,.08); }

/* ---- Nav ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(253,250,245,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  cursor: pointer;
}
.nav-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .04em;
}
.nav-brand-tag {
  font-family: 'EB Garamond', serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 6px 12px;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links .nav-cta {
  background: var(--red);
  color: #FDFAF5 !important;
  padding: 8px 18px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--red2); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--mid); transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 24px 32px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ---- Page wrapper ---- */
.page-wrapper { padding-top: 68px; }

/* ---- Page hero banner ---- */
.page-banner {
  background: linear-gradient(135deg, var(--red) 0%, #4A0E0A 100%);
  padding: 72px 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(200,146,42,.12) 0%, transparent 70%);
}
.page-banner .label { color: rgba(200,146,42,.7); position: relative; }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold2);
  line-height: 1.1;
  position: relative;
  margin-bottom: 12px;
}
.page-banner p {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(253,250,245,.6);
  position: relative;
}

/* ---- Section containers ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }

/* ---- Divider ornament ---- */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .6em;
  margin: 0 auto 20px;
  opacity: .7;
}

/* ---- Footer ---- */
.site-footer {
  background: #1A0C06;
  color: rgba(253,250,245,.55);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,250,245,.08);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold2);
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-family: 'EB Garamond', serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(200,146,42,.5);
  font-style: italic;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .92rem;
  line-height: 1.85;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .9rem;
  color: rgba(253,250,245,.45);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold2); }
.footer-col address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.9;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(253,250,245,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: rgba(253,250,245,.4);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-banner { padding: 60px 24px 48px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
