/* ═══ RISHIKA SHARMA — Website Stylesheet ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:#1A0E07; --dark2:#231309; --brown:#3E2110;
  --gold:#C9A86C; --gold-l:#E2CFA0; --gold-d:#9A7A3E;
  --cream:#F7F0E6; --cream2:#EDE1CE; --cream3:#FAF5EC;
  --taupe:#8C7355; --taupe-d:#5C4A35;
  --white:#FFFDF8; --rose:#C2848E; --rose-d:#9E5F6A;
  --green:#4A7A5A;
  --serif:'Cormorant Garamond','Palatino Linotype',Georgia,serif;
  --sans:'Jost','Segoe UI',Arial,sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--dark); background: var(--cream3); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--gold-d); text-decoration: none; }
a:hover { color: var(--rose-d); }

/* ── NAV ────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(247,240,230,.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(201,168,108,.25);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; font-weight: 400; color: var(--gold-d);
  letter-spacing: 0.5px;
}
.nav-logo small {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 9px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--taupe); margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brown); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-d); }
.nav-cta {
  background: var(--gold-d); color: var(--white) !important;
  padding: 10px 22px; letter-spacing: 1.5px !important;
}
.nav-cta:hover { background: var(--rose-d); color: var(--white) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--brown); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 64px; right: 0; flex-direction: column; background: var(--cream); padding: 24px; gap: 18px; border-left: 1px solid rgba(201,168,108,.3); transform: translateX(100%); transition: transform .25s; min-height: calc(100vh - 64px); width: min(280px, 80vw); }
  .nav-links.open { transform: translateX(0); }
}

/* ── HERO ───────────────────────── */
.hero {
  background: var(--dark);
  color: var(--cream);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 32px;
  position: relative; overflow: hidden;
}
.hero-eye {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 24px;
}
.hero-title {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(48px, 9vw, 96px);
  color: var(--gold); line-height: 1; margin-bottom: 24px;
  font-weight: 300;
}
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--gold-l); max-width: 720px; margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 32px; border: 1px solid transparent;
  cursor: pointer; transition: all .25s;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-l); color: var(--dark); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold-d); }
.btn-outline:hover { background: var(--gold-d); color: var(--white); }
.btn-dark { background: var(--brown); color: var(--cream); }
.btn-dark:hover { background: var(--dark); color: var(--gold); }

/* ── SECTIONS ────────────────────── */
.section { padding: 100px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eye {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--rose-d); margin-bottom: 16px; text-align: center;
}
.section-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--dark); text-align: center;
  line-height: 1.1; margin-bottom: 18px;
}
.section-rule {
  width: 80px; height: 2px; margin: 0 auto 40px;
  background: linear-gradient(to right, var(--rose), var(--gold));
}
.section-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 20px; color: var(--taupe-d);
  text-align: center; max-width: 700px;
  margin: 0 auto 60px; line-height: 1.6;
}

/* ── SERVICE GRID ────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: var(--white); padding: 36px 28px;
  border: 1px solid rgba(201,168,108,.3);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(62,33,16,.12);
}
.service-icon {
  font-family: var(--serif); font-style: italic;
  font-size: 36px; color: var(--gold-d); margin-bottom: 14px;
}
.service-name {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; color: var(--brown); margin-bottom: 14px;
  line-height: 1.2;
}
.service-desc {
  font-family: var(--sans); font-size: 14px;
  color: var(--taupe-d); line-height: 1.7;
}

/* ── PHOTO GRID ────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream2), var(--taupe));
  position: relative;
  border: 1px solid rgba(62,33,16,.12);
  transition: transform .25s, box-shadow .25s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(62,33,16,.18);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.gallery-item .placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  color: var(--gold-d); padding: 24px; text-align: center;
}
.gallery-item .placeholder .ph-icon {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  font-style: italic; line-height: 1;
}
.gallery-item .placeholder .ph-lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--taupe);
}
.gallery-item input[type=file] { display: none; }

/* ── HERO PHOTO ────────────── */
.hero-photo {
  width: 100%; max-width: 360px; aspect-ratio: 3/4;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, var(--brown), var(--dark));
  border: 1px solid rgba(201,168,108,.3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .placeholder {
  text-align: center; color: var(--gold-l);
}
.hero-photo .placeholder .ph-icon { font-family: var(--serif); font-size: 64px; opacity: .5; }
.hero-photo .placeholder .ph-lbl { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-top: 8px; opacity: .7; }

/* ── ABOUT BLOCK ────────────── */
.about-block {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: center;
}
.about-photo {
  aspect-ratio: 3/4; background: linear-gradient(135deg, var(--cream2), var(--taupe));
  border: 1px solid rgba(62,33,16,.15);
  cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo input[type=file] { display: none; }
.about-text h3 {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--rose-d); margin-bottom: 14px;
}
.about-text h2 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 44px; color: var(--dark);
  line-height: 1.1; margin-bottom: 20px;
}
.about-text p {
  font-family: var(--sans); font-size: 16px;
  color: var(--taupe-d); line-height: 1.85; margin-bottom: 20px;
}
.about-cred {
  margin-top: 24px; padding: 20px 24px;
  background: var(--dark); color: var(--gold-l);
}
.about-cred-lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 8px;
}
.about-cred-val {
  font-family: var(--serif); font-size: 22px; font-style: italic;
  color: var(--gold); line-height: 1.4;
}

@media (max-width: 800px) {
  .about-block { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 70px 24px; }
}

/* ── TESTIMONIALS ────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--white); padding: 36px 32px;
  border: 1px solid rgba(201,168,108,.3);
  border-left: 3px solid var(--gold);
}
.testimonial-text {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--brown);
  line-height: 1.7; margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-d);
}
.testimonial-event {
  font-family: var(--sans); font-size: 12px;
  color: var(--taupe); margin-top: 4px;
}

/* ── CONTACT ────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1000px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  font-size: 22px; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,108,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-d);
}
.contact-lbl {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--rose-d); margin-bottom: 4px;
}
.contact-val {
  font-family: var(--serif); font-size: 18px;
  color: var(--brown); font-style: italic;
}
.contact-val a { color: var(--brown); border-bottom: 1px dashed var(--gold-d); }
.contact-val a:hover { color: var(--gold-d); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--taupe-d); margin-bottom: 6px; display: block;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px;
  background: var(--white); border: 1px solid rgba(201,168,108,.4);
  font-family: var(--sans); font-size: 15px; color: var(--dark);
  outline: none; transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--gold-d);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── LEGAL/POLICY PAGES ────────────── */
.legal-content {
  max-width: 820px; margin: 0 auto; padding: 64px 32px;
  background: var(--white);
}
.legal-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 48px; color: var(--dark); line-height: 1.1;
  margin-bottom: 12px;
}
.legal-updated {
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--taupe);
  margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,108,.3);
}
.legal-content h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; color: var(--brown); margin: 32px 0 14px;
}
.legal-content h3 {
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-d); margin: 24px 0 10px;
}
.legal-content p, .legal-content li {
  font-family: var(--sans); font-size: 15px;
  color: var(--taupe-d); line-height: 1.8; margin-bottom: 14px;
}
.legal-content ul { padding-left: 24px; margin-bottom: 18px; }
.legal-content strong { color: var(--brown); font-weight: 600; }

/* ── FOOTER ────────────── */
.footer {
  background: var(--dark); color: var(--cream);
  padding: 60px 32px 30px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; color: var(--gold); margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--sans); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-l);
  margin-bottom: 24px; opacity: .9;
}
.footer-text {
  font-family: var(--sans); font-size: 13px;
  color: var(--taupe); line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col a {
  display: block; padding: 5px 0;
  font-family: var(--sans); font-size: 13px;
  color: var(--gold-l); opacity: .8; transition: opacity .2s;
}
.footer-col a:hover { opacity: 1; color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,108,.2);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom small {
  font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px;
  color: var(--taupe);
}
.payment-badges { display: flex; gap: 12px; align-items: center; }
.pay-badge {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-l); background: rgba(201,168,108,.1);
  border: 1px solid rgba(201,168,108,.3); padding: 4px 10px;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── PAGE HEADERS (interior pages) ────────────── */
.page-banner {
  background: var(--dark);
  color: var(--cream); padding: 80px 32px;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 6vw, 64px); color: var(--gold);
  line-height: 1.1; margin-bottom: 12px;
}
.page-banner p {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold-l); opacity: .9;
  max-width: 600px; margin: 0 auto;
}

/* ── NOTICES ────────────── */
.notice-box {
  background: rgba(201,168,108,.08);
  border-left: 3px solid var(--gold);
  padding: 20px 24px; margin: 24px 0;
}
.notice-box strong { color: var(--brown); }
