/*
 * Shri Durga Band – Main Stylesheet
 * Version: 1.0.0
 *
 * Table of Contents:
 *  1.  CSS Custom Properties (Design Tokens)
 *  2.  Base Reset & Typography
 *  3.  Mobile Push Navigation (CSS Checkbox Technique)
 *  4.  Site Shell
 *  5.  Menu Brand
 *  6.  Topbar (Sticky Header)
 *  7.  Button Styles
 *  8.  Hero Section
 *  9.  Trust Strip
 * 10.  Generic Section Styles
 * 11.  About Section
 * 12.  Services Section
 * 13.  Gallery Preview Section
 * 14.  Testimonials Section
 * 15.  FAQ Section
 * 16.  Enquiry / Contact Form Section
 * 17.  Footer
 * 18.  Inner Page Hero
 * 19.  Gallery Article & Grid
 * 20.  Content Page (Privacy Policy, etc.)
 * 21.  Blog / Archive Layout
 * 22.  WordPress & Plugin Integration Styles
 * 23.  Widget Areas
 * 24.  Elementor Compatibility
 * 25.  Accessibility Utilities
 * 26.  Responsive – 1100px
 * 27.  Responsive – 860px
 * 28.  Responsive – 600px
 */

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  --maroon:  #280400;
  --maroon2: #3b0903;
  --gold:    #ce9c51;
  --gold2:   #f2d08c;
  --white:   #fff;
  --paper:   #fff8ed;
  --ink:     #220705;
  --muted:   #7a6254;
  --line:    rgba(206, 156, 81, 0.28);
  --shadow:  0 26px 80px rgba(40, 4, 0, 0.28);
}

/* ============================================================
   2. Base Reset & Typography
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--maroon);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

ul,
ol {
  padding-left: 1.5em;
}

/* ============================================================
   3. Mobile Push Navigation (CSS Checkbox Technique)
   ============================================================ */
.nav-state {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  /* Visually hidden but still functional via <label> */
}

.push-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  width: min(82vw, 340px);
  padding: 28px;
  background: #130100;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.32s ease;
  border-right: 1px solid var(--line);
  overflow-y: auto;
}

.nav-state:checked ~ .push-menu {
  transform: translateX(0);
}

/* ============================================================
   4. Site Shell
   ============================================================ */
.site-shell {
  min-height: 100vh;
  background: var(--paper);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.nav-state:checked ~ .site-shell {
  transform: translateX(min(82vw, 340px));
  filter: brightness(0.82);
  pointer-events: none; /* prevents clicks on site while menu is open */
}

/* ============================================================
   5. Menu Brand
   ============================================================ */
.menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: var(--gold2);
}

.menu-brand img,
.brand-mark img,
.footer-brand img {
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.menu-brand img {
  width: 56px;
  height: 56px;
}

/* Mobile nav list */
.push-menu nav,
.push-menu .push-nav-menu {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.push-menu nav a,
.push-menu .push-nav-menu a,
.menu-social {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(206, 156, 81, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.push-menu nav li,
.push-menu .push-nav-menu li {
  list-style: none;
}

.menu-social {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold2);
}

/* ============================================================
   6. Topbar (Sticky Header)
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(40, 4, 0, 0.94);
  color: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--gold2);
}

.brand-mark img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 500;
}

/* WordPress menu reset inside .desktop-nav */
.desktop-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
}

.desktop-nav .menu li {
  list-style: none;
  position: relative;
}

.desktop-nav .menu li a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.18s;
}

.desktop-nav .menu li a:hover,
.desktop-nav a:hover {
  color: var(--gold2);
}

/* Hamburger button */
.menu-button {
  display: grid;
  place-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold2);
  border-radius: 1px;
}

/* ============================================================
   7. Button Styles
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--gold);
  color: var(--maroon);
  box-shadow: 0 16px 34px rgba(206, 156, 81, 0.24);
}

.btn.secondary {
  color: var(--gold2);
  background: transparent;
}

/* ============================================================
   8. Hero Section
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  min-height: calc(100vh - 82px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(206, 156, 81, 0.2), transparent 28%),
    linear-gradient(135deg, #280400 0%, #3b0903 54%, #120100 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(206, 156, 81, 0.24);
  pointer-events: none;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7.4vw, 7rem);
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

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

.logo-halo {
  max-width: 520px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid rgba(206, 156, 81, 0.38);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.logo-halo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ============================================================
   9. Trust Strip
   ============================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
  color: var(--maroon);
}

.trust-strip div {
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(40, 4, 0, 0.18);
}

.trust-strip div:last-child {
  border-right: none;
}

.trust-strip strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.3vw, 2.15rem);
}

.trust-strip span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   10. Generic Section Styles
   ============================================================ */
.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section h2 {
  color: var(--maroon);
  font-size: clamp(2rem, 4.5vw, 4.35rem);
}

/* ============================================================
   11. About Section
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
}

.signature-panel {
  padding: 30px;
  background: var(--maroon);
  color: #fff;
  border: 1px solid var(--gold);
}

.signature-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.signature-panel p {
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   12. Services Section
   ============================================================ */
.services,
.faq {
  background: #fff;
}

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

.service-grid article {
  min-height: 214px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid rgba(40, 4, 0, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: #fffdf8;
}

.service-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.service-grid h3 {
  color: var(--maroon);
  font-size: 1.3rem;
}

.service-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ============================================================
   13. Gallery Preview Section
   ============================================================ */
.gallery-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(rgba(40, 4, 0, 0.84), rgba(40, 4, 0, 0.88)),
    repeating-linear-gradient(90deg, #3b0903 0 1px, #280400 1px 18px);
  color: #fff;
}

.gallery-preview h2 {
  color: #fff;
  max-width: 900px;
}

.gallery-preview p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   14. Testimonials Section
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 28px;
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: 0 16px 40px rgba(40, 4, 0, 0.08);
}

blockquote p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   15. FAQ Section
   ============================================================ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

details {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid rgba(40, 4, 0, 0.08);
}

summary {
  color: var(--maroon);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

details[open] summary::after {
  content: "−";
}

details p,
details div {
  margin-top: 12px;
  color: var(--muted);
}

/* ============================================================
   16. Enquiry / Contact Form Section
   ============================================================ */
.enquiry {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
  background: var(--maroon);
  color: #fff;
}

.enquiry h2 {
  color: #fff;
}

.enquiry-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  color: var(--ink);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.9rem;
}

.enquiry-form .full {
  grid-column: 1 / -1;
}

/* Shared input styles */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="url"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(40, 4, 0, 0.16);
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.95rem;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-form button,
.enquiry-form [type="submit"] {
  justify-self: start;
}

/* CF7 / WPForms wrapper inherits the enquiry background */
.enquiry-form-wrapper {
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  color: var(--ink);
}

/* ============================================================
   17. Footer
   ============================================================ */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 44px clamp(18px, 5vw, 70px);
  background: #130100;
  color: #fff;
}

.footer-brand img {
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
}

.footer-brand h2 {
  color: var(--gold2);
  font-size: 1.8rem;
}

.footer-brand p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
}

.footer-phone a,
.footer-whatsapp a {
  color: var(--gold);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 18px;
  color: var(--gold2);
  font-weight: 700;
}

.footer-links .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links .footer-menu li {
  list-style: none;
}

.footer-links .footer-menu li a {
  color: var(--gold2);
  font-weight: 700;
}

.footer-links .footer-menu li a:hover {
  text-decoration: underline;
}

.footer-bar {
  padding: 14px clamp(18px, 5vw, 70px);
  background: #0a0000;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  text-align: center;
}

.footer-bar p {
  margin: 0;
}

.footer-bar a {
  color: var(--gold);
}

/* ============================================================
   18. Inner Page Hero
   ============================================================ */
.page-hero {
  padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(rgba(40, 4, 0, 0.82), rgba(40, 4, 0, 0.9)),
    url("../images/shri-durga-band-logo.png") center 34% / min(620px, 90vw) auto no-repeat,
    var(--maroon);
  color: #fff;
  min-height: 58vh;
  display: grid;
  align-items: end;
}

.gallery-page .page-hero,
.privacy-page .page-hero {
  background-image:
    linear-gradient(rgba(40, 4, 0, 0.82), rgba(40, 4, 0, 0.9)),
    url("../images/shri-durga-band-logo.png");
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

/* Featured-image override on single posts */
.single-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   19. Gallery Article & Grid
   ============================================================ */
.gallery-article {
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 70px);
  background: var(--paper);
}

.gallery-article > h2 {
  color: var(--maroon);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.gallery-card {
  min-height: 260px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(rgba(40, 4, 0, 0.12), rgba(40, 4, 0, 0.82)), var(--maroon);
  background-size: cover;
  background-position: center;
  color: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.22s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card:nth-child(even) {
  background-image: linear-gradient(rgba(206, 156, 81, 0.2), rgba(40, 4, 0, 0.84));
  background-color: #3b0903;
}

.gallery-card h2 {
  color: #fff;
  font-size: 1.65rem;
}

.gallery-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

/* Card thumb image (blog cards) */
.card-thumb {
  display: block;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover .card-thumb img {
  transform: scale(1.04);
}

.card-body {
  padding: 16px 0 0;
}

/* ============================================================
   20. Content Page (Privacy Policy, Generic Pages)
   ============================================================ */
.content-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) 18px;
  background: var(--paper);
}

.content-page h1 {
  color: var(--maroon);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.content-page h2 {
  margin-top: 32px;
  color: var(--maroon);
  font-size: 1.65rem;
}

.content-page h3 {
  margin-top: 24px;
  color: var(--maroon2);
  font-size: 1.3rem;
}

.content-page p,
.content-page li {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.content-page a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================================
   21. Blog / Archive Layout
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 5vw, 70px);
}

.blog-grid {
  margin-top: 0;
}

.blog-card {
  background: var(--paper);
  border: 1px solid rgba(40, 4, 0, 0.08);
  min-height: auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.blog-card .card-body {
  padding: 22px;
  flex: 1;
}

.blog-card h2 {
  color: var(--maroon);
  font-size: 1.45rem;
  margin-top: 6px;
}

.blog-card h2 a:hover {
  color: var(--gold);
}

.blog-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-card .btn {
  margin-top: 18px;
  min-height: 42px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* Post navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 0;
}

.post-navigation a {
  color: var(--gold);
  font-weight: 700;
}

/* Pagination */
.page-links,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
}

.page-numbers,
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--gold);
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.9rem;
}

.page-numbers.current {
  background: var(--gold);
  color: var(--maroon);
}

/* ============================================================
   22. WordPress & Plugin Integration Styles
   ============================================================ */

/* Contact Form 7 */
.wpcf7 {
  width: 100%;
}

.wpcf7-form p {
  margin: 0 0 12px;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(40, 4, 0, 0.16);
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  font-size: 0.95rem;
  border-radius: 0;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--maroon);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(206, 156, 81, 0.24);
  border-radius: 0;
  transition: opacity 0.18s;
}

.wpcf7-submit:hover {
  opacity: 0.88;
}

.wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 4px;
}

.wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(206, 156, 81, 0.08);
  font-size: 0.9rem;
}

/* WPForms */
.wpforms-container {
  width: 100%;
}

.wpforms-form .wpforms-field input,
.wpforms-form .wpforms-field select,
.wpforms-form .wpforms-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(40, 4, 0, 0.16);
  background: var(--paper);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  border-radius: 0;
}

.wpforms-form .wpforms-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--maroon);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
}

.wpforms-form .wpforms-field-label {
  color: var(--maroon);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* WordPress alignments (Gutenberg) */
.alignfull,
.alignwide {
  width: 100%;
}

.wp-block-image img {
  height: auto;
}

/* ============================================================
   23. Widget Areas
   ============================================================ */
.widget-area {
  padding: 30px;
}

.widget {
  margin-bottom: 34px;
}

.widget-title {
  color: var(--maroon);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}

.widget ul li a {
  color: var(--maroon);
}

.widget ul li a:hover {
  color: var(--gold);
}

.footer-widget-area {
  background: #1a0100;
  padding: 40px clamp(18px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  color: #fff;
}

.footer-widget-area .widget-title {
  color: var(--gold2);
  border-bottom-color: rgba(206, 156, 81, 0.3);
}

.footer-widget-area .widget ul li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(206, 156, 81, 0.12);
}

.footer-widget-area .widget ul li a {
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   24. Elementor Compatibility
   ============================================================ */
.elementor-section,
.elementor-container,
.elementor-widget-wrap {
  width: 100%;
}

.elementor-section.hero {
  min-height: calc(100vh - 82px);
}

/* ============================================================
   25. Accessibility Utilities
   ============================================================ */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
  background: var(--gold);
  color: var(--maroon);
  padding: 8px 16px;
  font-weight: 700;
  z-index: 999;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   26. Responsive – 1100px and below
   ============================================================ */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ============================================================
   27. Responsive – 860px and below
   ============================================================ */
@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .about-grid,
  .enquiry,
  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .hero-visual {
    order: -1;
  }

  .trust-strip,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-preview .btn {
    justify-self: start;
  }

  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-links .footer-menu {
    justify-content: flex-start;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .post-navigation {
    flex-direction: column;
  }
}

/* ============================================================
   28. Responsive – 600px and below
   ============================================================ */
@media (max-width: 600px) {
  .topbar {
    min-height: 72px;
  }

  .brand-mark span {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero::before {
    inset: 12px;
  }

  .service-grid,
  .gallery-grid,
  .trust-strip,
  .testimonial-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .enquiry-form .full {
    grid-column: auto;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .logo-halo {
    max-width: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}
