:root {
  --maroon: #79130e;
  --maroon-deep: #6c0806;
  --maroon-dark: #3d0705;
  --gold: #c9a227;
  --gold-light: #e5d2a0;
  --cream: #fff8e7;
  --warm-white: #fffdf7;
  --text: #3a2018;
  --text-muted: #5c4036;
  --wa: #1e8e54;
  --wa-hover: #187a48;
  --header-h: 76px;
  --mobile-cta-h: 72px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(108, 8, 6, 0.12);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  padding-bottom: calc(var(--mobile-cta-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--maroon);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.h-serif,
h1,
h2,
h3,
.display-title {
  font-family: var(--font-serif);
  color: var(--maroon);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--maroon);
  color: #fff;
  padding: 8px 14px;
  z-index: 2000;
}

.skip-link:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-light);
  box-shadow: 0 1px 0 var(--gold-light), 0 8px 20px rgba(121, 19, 14, 0.04);
}

.site-header .navbar {
  min-height: var(--header-h);
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.brand-logo img {
  height: 58px;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 8px rgba(121, 19, 14, 0.15);
}

.nav-link {
  font-weight: 600;
  color: var(--maroon) !important;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon-deep) !important;
}

.navbar-toggler {
  border: 1px solid var(--gold);
  color: var(--maroon);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--gold-light);
}

.btn-wa {
  background: var(--wa);
  color: #fff !important;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(30, 142, 84, 0.28);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-wa:hover {
  background: var(--wa-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-wa-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.08rem;
}

.btn-call {
  background: transparent;
  color: var(--maroon) !important;
  border: 1.5px solid var(--maroon);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-call:hover {
  background: var(--maroon);
  color: var(--gold-light) !important;
}

.btn-call-light {
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
}

.btn-call-light:hover {
  background: var(--gold-light);
  color: var(--maroon-deep) !important;
}

.header-wa {
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(229, 210, 160, 0.45), transparent 50%),
    linear-gradient(180deg, #fff8e7 0%, #fffdf7 100%);
  overflow: hidden;
  padding: 1.5rem 0 2.5rem;
  border-bottom: 3px solid var(--maroon);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold-light);
  pointer-events: none;
  z-index: 0;
}

.peacock {
  position: absolute;
  width: 160px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.peacock-left {
  left: -30px;
  top: 40px;
  transform: scaleX(-1) rotate(-12deg);
}

.peacock-right {
  right: -20px;
  bottom: 20px;
  transform: rotate(8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem 2rem;
  align-items: center;
  grid-template-areas:
    "heading"
    "visual"
    "cta";
}

.hero-heading { grid-area: heading; }
.hero-visual { grid-area: visual; }
.hero-cta { grid-area: cta; }

@media (min-width: 992px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "heading visual"
      "cta visual";
    align-items: center;
  }

  .peacock {
    width: 220px;
    opacity: 0.28;
  }
}

.emblem {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

.badge-advance {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--maroon);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  margin: 0 0 0.35rem;
}

.hero .subhead {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero-copy {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-frame {
  position: relative;
  border: 8px solid var(--maroon);
  outline: 2px solid var(--gold);
  outline-offset: -14px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}

.hero-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.35rem;
}

.section-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.divider-emblem {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0 1.25rem;
}

.divider-emblem img {
  height: 36px;
  opacity: 0.9;
}

.products {
  background:
    linear-gradient(180deg, #fffdf7, #fff8e7 40%, #fffdf7);
  position: relative;
}

.products::after {
  content: "";
  position: absolute;
  right: 0;
  top: 80px;
  width: 140px;
  height: 280px;
  background: url("../images/decor/peacock-feather.webp") no-repeat right top / contain;
  opacity: 0.18;
  pointer-events: none;
}

.category-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--maroon);
  color: var(--gold-light);
  padding: 0.7rem 1rem;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1.1rem;
  border: 1px solid var(--gold);
}

.category-head h3 {
  color: var(--gold-light);
  margin: 0;
  font-size: 1.45rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 16px rgba(58, 32, 24, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.9rem 0.95rem 1.05rem;
  flex: 1;
}

.product-card h4 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
  flex: 1;
}

.product-card .btn-wa {
  width: 100%;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
}

@media (max-width: 575.98px) {
  .products .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Festival trust */
.festival {
  background:
    linear-gradient(180deg, var(--maroon-deep), var(--maroon));
  color: var(--cream);
  position: relative;
}

.festival h2,
.festival h3 {
  color: var(--gold-light);
}

.festival .section-kicker {
  color: var(--gold);
}

.trust-card {
  background: rgba(255, 248, 231, 0.08);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.35rem 1.1rem;
  height: 100%;
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.trust-card p {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.95rem;
}

/* About */
.about {
  background: var(--warm-white);
}

.about p {
  max-width: 46rem;
  font-size: 1.05rem;
}

/* Services secondary */
.services {
  background: #f8f1e2;
}

.service-card {
  background: var(--warm-white);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.2rem;
  height: 100%;
  box-shadow: 0 4px 12px rgba(58, 32, 24, 0.05);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Main CTA */
.order-cta {
  background: var(--maroon-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-cta::before,
.order-cta::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 280px;
  background: url("../images/decor/peacock-feather.webp") no-repeat center / contain;
  opacity: 0.16;
  pointer-events: none;
}

.order-cta::before {
  left: -20px;
  top: -20px;
  transform: scaleX(-1);
}

.order-cta::after {
  right: -20px;
  bottom: -40px;
}

.order-cta h2 {
  color: var(--gold-light);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.order-cta p {
  font-size: 1.15rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.order-cta .hero-actions {
  justify-content: center;
}

/* Social */
.social {
  background: var(--cream);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  min-height: 48px;
}

.social-btn.fb {
  background: #1877f2;
  color: #fff;
}

.social-btn.ig {
  background: #c13584;
  color: #fff;
}

.social-btn:hover {
  filter: brightness(1.05);
  color: #fff;
}

/* Contact */
.contact {
  background: var(--warm-white);
}

.contact-card {
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.contact-list li {
  display: flex;
  gap: 0.7rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f0e6d2;
}

.contact-list i {
  color: var(--maroon);
  width: 1.2rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-maps {
  background: var(--maroon);
  color: var(--gold-light) !important;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-maps:hover {
  background: var(--maroon-deep);
  color: #fff !important;
}

/* Footer */
.site-footer {
  background: var(--maroon-dark);
  color: var(--gold-light);
  padding: 2.5rem 0 1.4rem;
}

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

.site-footer a:hover {
  color: #fff;
}

.site-footer .brand-logo img {
  height: 72px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0.8rem 0 1rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 210, 160, 0.25);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Floating WhatsApp (desktop) */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1030;
  display: none;
}

@media (min-width: 992px) {
  .float-wa {
    display: flex;
  }
}

/* Mobile CTA bar */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr;
  gap: 6px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(61, 7, 5, 0.97);
  border-top: 1px solid var(--gold);
}

@media (min-width: 992px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta a {
  min-height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  color: #fff;
}

.mobile-cta .m-call,
.mobile-cta .m-wa {
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
}

.mobile-cta .m-order {
  background: var(--wa);
  color: #fff;
}

/* Offcanvas */
.offcanvas,
.offcanvas-lg {
  background: var(--cream);
}

@media (min-width: 992px) {
  .offcanvas-lg {
    background: transparent;
  }
}

.offcanvas .nav-link {
  font-size: 1.1rem;
  padding: 0.7rem 0 !important;
}

/* Small helpers */
.gold-rule {
  width: 72px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem 0 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-card,
  .btn-wa { transition: none; }
}
