/* =========================================================
   SHIVA PRINTERS — Premium dark/editorial theme (v3)
   Replicates the look & feel of shivaprinters.com
   ========================================================= */

:root {
  --bg:        #ffffff;
  --bg-cream:  #f6f3ec;
  --bg-light:  #fafafa;
  --bg-dark:   #0d0d0d;
  --bg-darker: #050505;
  --ink:       #0d0d0d;
  --ink-soft:  #2a2a2a;
  --muted:     #6b6b6b;
  --line:      #e7e3da;
  --line-dark: #1f1f1f;
  --accent:    #c9a66b;       /* warm gold */
  --accent-2:  #e8d6a8;
  --max:       1280px;
  --pad:       clamp(20px, 4vw, 56px);
  --radius:    16px;
  --serif:     'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, -apple-system, sans-serif;
  --shadow-1:  0 8px 30px rgba(0,0,0,.08);
  --shadow-2:  0 30px 80px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.shiva-body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); padding: 0 var(--pad); margin: 0 auto; }
.narrow    { max-width: 820px; }

/* Typography */
.h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: .25em 0 .4em;
}
.h2.light { color: #fff; }
.lead     { font-size: 1.06rem; color: #2f2f2f; max-width: 60ch; text-align: justify !important;}
.muted    { color: var(--muted); max-width: 60ch; }
.muted-light { color: rgba(255,255,255,.65); max-width: 60ch; margin-bottom: 30px;}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(201,166,107,.12);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,166,107,.4);
}
.pill::before { content: '✦'; }
.pill-light { background: rgba(255,255,255,.07); color: var(--accent-2); border-color: rgba(232,214,168,.3); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; letter-spacing: .04em;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { background: var(--accent-2); }
.btn-dark   { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2a2a; }
.btn-ghost  { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn.full   { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar {
  background: #000; color: rgba(255,255,255,.8);
  font-size: 12.5px; letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px var(--pad); flex-wrap: wrap; gap: 12px;
}
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar a { color: inherit; transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--accent); }
.topbar .ic { color: var(--accent); }
.topbar-right a {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.topbar-right a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 78px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; }
.logo-mark {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #000; border-radius: 8px;
  font-family: var(--serif); font-weight: 700; font-size: 18px;
}
.logo-text {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
.custom-logo, .custom-logo-link img { max-height: 44px; width: auto; }

.nav-end { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  background: var(--accent); color: #000;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--accent-2); transform: translateY(-1px); }

/* Primary nav (desktop) */
.nav-links { flex: 1; display: flex; justify-content: center; }
.shiva-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 4px;
}
.shiva-menu > li { position: relative; }
.shiva-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 16px; font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85); border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.shiva-menu > li > a:hover,
.shiva-menu > li.current-menu-item > a { color: var(--accent); }
.shiva-menu .caret { font-style: normal; font-size: 10px; opacity: .7; }

/* Submenus (desktop dropdowns + flyouts) */
.shiva-menu .submenu {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: #161616;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 20;
}
.shiva-menu li:hover > .submenu,
.shiva-menu li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.shiva-menu .submenu li { position: relative; }
.shiva-menu .submenu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; font-size: 13px;
  color: rgba(255,255,255,.85); border-radius: 8px;
  text-transform: none; letter-spacing: .02em;
}
.shiva-menu .submenu a:hover { background: rgba(201,166,107,.1); color: var(--accent); }

/* Levels 2+ open as side flyouts */
.shiva-menu .submenu .submenu {
  top: -8px; left: 100%;
  margin-left: 4px;
}

/* Hide the mobile-only toggle on desktop */
.submenu-toggle { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none; width: 40px; height: 40px; border: 0; background: transparent;
  flex-direction: column; gap: 4px; padding: 10px; cursor: pointer; border-radius: 8px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  background: #0d0d0d; border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px var(--pad);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile .shiva-menu { flex-direction: column; align-items: stretch; gap: 0; }
.nav-mobile .shiva-menu > li { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile .shiva-menu a { padding: 14px 0; flex: 1; }
.nav-mobile .shiva-menu li { display: flex; flex-wrap: wrap; align-items: center; }
.nav-mobile .submenu {
  position: static; opacity: 1; visibility: visible; transform: none;
  width: 100%; box-shadow: none; border: 0; background: transparent;
  padding: 0 0 8px 16px; max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.nav-mobile li.is-open > .submenu { max-height: 1500px; }
.nav-mobile .submenu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; background: rgba(255,255,255,.06);
  color: #fff; border: 0; border-radius: 8px; cursor: pointer; font-size: 18px;
  margin-left: auto;
}
.nav-mobile li.is-open > .submenu-toggle { transform: rotate(45deg); }
.mobile-extra { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.mobile-cta {
  padding: 12px 16px; border-radius: 10px;
  background: var(--accent); color: #000; font-weight: 600; text-align: center;
}
.mobile-cta.light { background: rgba(255,255,255,.08); color: #fff; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ===== HERO SLIDER ===== */
.hero { position: relative; }
.hero-slider {
  position: relative; height: clamp(560px, 90vh, 880px); overflow: hidden;
  background: #000;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: flex-end;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.85) 100%),
    radial-gradient(60% 80% at 30% 70%, rgba(0,0,0,.4), transparent);
}
.hero-content {
  position: relative; z-index: 3; color: #fff;
  padding-bottom: clamp(60px, 10vh, 120px);
  width: 100%;
}
.hero-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
  padding: 8px 16px; border: 1px solid rgba(201,166,107,.5); border-radius: 999px;
  background: rgba(0,0,0,.3); backdrop-filter: blur(6px);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(48px, 9vw, 130px); line-height: .95;
  letter-spacing: -.03em; margin: 0 0 .25em;
  text-transform: uppercase;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px); color: rgba(255,255,255,.85);
  letter-spacing: .03em; margin: 0 0 28px; max-width: 60ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 30px; cursor: pointer; z-index: 5;
  backdrop-filter: blur(8px); transition: background .25s, transform .25s;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.slider-nav:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.slider-nav.prev { left: clamp(16px, 3vw, 40px); }
.slider-nav.next { right: clamp(16px, 3vw, 40px); }

.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.slider-dots .dot {
  width: 28px; height: 3px; background: rgba(255,255,255,.3);
  border: 0; cursor: pointer; transition: background .25s, width .25s;
}
.slider-dots .dot.active { background: var(--accent); width: 48px; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--accent); color: #111;
  overflow: hidden; padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap; animation: marq 30s linear infinite;
  font-weight: 600; font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
}
.brands-marquee {
  background: var(--bg-dark); color: #fff;
  overflow: hidden; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.brands-track {
  display: flex; gap: 80px; white-space: nowrap; animation: marq 3s linear infinite;
  font-family: var(--serif); font-size: clamp(28px, 4vw, 56px); font-weight: 600;
  letter-spacing: .04em;
}
.brands-track span { display: inline-flex; align-items: center; gap: 80px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section {
/*   padding: clamp(70px, 9vw, 65px) 0 ; */
	padding: clamp(29px, 2vw, 47px) 0px;
}
.section-light { background: var(--bg); }
.section-cream { background: var(--bg-cream); }
.section-dark  { background: var(--bg-dark); color: #fff; }
.section-about { background: var(--bg-cream); }

/*.section-head { text-align: center; max-width: 780px; margin: 0 auto 60px; }*/
.section-head .pill { margin-bottom: 18px; }
.section-head .muted, .section-head .muted-light { margin: 0 auto; }

/* ===== ABOUT ===== */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-grid .pill { margin-bottom: 16px; }
.about-img-wrap {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-2);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--ink); color: #fff;
  padding: 18px 22px; border-radius: 14px;
  border-left: 4px solid var(--accent);
  display: flex; flex-direction: column; gap: 2px; min-width: 130px;
}
.about-badge .badge-num { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--accent); }
.about-badge .badge-lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }

.about-stats { display: flex; gap: 16px; margin: 32px 0; flex-wrap: wrap; }
.stat-card {
  flex: 1 1 140px;
  background: #fff; border: 1px solid var(--line);
  padding: 18px 22px; border-radius: 14px;
}
.section-dark .stat-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); color: #fff; }
.stat-val { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--accent); margin: 0; line-height: 1; }
.stat-lbl { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin: 6px 0 0; }
.section-dark .stat-lbl { color: rgba(255,255,255,.6); }

/* ===== SERVICES (dark, circular tiles) ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-tile {
  position: relative;
  background: #161616; border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  color: #fff; transition: transform .35s ease, border-color .35s ease, background .35s ease;
  overflow: hidden;
}
.service-tile::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(201,166,107,.15), transparent);
  opacity: 0; transition: opacity .35s;
}
.service-tile:hover { transform: translateY(-6px); border-color: rgba(201,166,107,.45); background: #1d1d1d; }
.service-tile:hover::after { opacity: 1; }
.service-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--serif); font-size: 14px; color: var(--accent); letter-spacing: .15em;
}
.service-ico {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(201,166,107,.25);
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 22px;
}
.service-ico img { width: 100%; height: 100%; object-fit: contain; filter: brightness(1.1); }
.service-ico-fallback { font-family: var(--serif); font-size: 42px; color: var(--accent); }
.service-tile h3 {
  font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: .04em;
  text-transform: uppercase; margin: 4px 0 0;
}
.service-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 6px; transition: transform .3s ease;
  font-weight: 700;
}
.service-tile:hover .service-arrow { transform: translate(2px, -2px) rotate(-45deg); }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.product-image { aspect-ratio: 4/5; overflow: hidden; background: #f0eee8; }
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-meta {
  padding: 22px 22px 24px; position: relative;
  display: flex; flex-direction: column; gap: 4px;
}
.product-meta h3 {
  font-family: var(--serif); font-weight: 600; font-size: 20px; margin: 0;
  letter-spacing: .01em;
}
.product-meta p { font-size: 13px; color: var(--muted); margin: 0; }
.product-arrow {
  position: absolute; top: 18px; right: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transform: translateY(-46px);
  opacity: 0; transition: opacity .3s, transform .3s;
}
.product-card:hover .product-arrow { opacity: 1; transform: translateY(-46px) rotate(45deg); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px; gap: 18px;
}
.gallery-tile {
  position: relative; overflow: hidden; border-radius: 16px;
  background: #ddd;
}
.gallery-tile:nth-child(5n+1) { grid-row: span 2; }
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  color: #fff;
  display: flex; justify-content: space-between; align-items: flex-end;
  transform: translateY(20%); opacity: 0;
  transition: opacity .35s, transform .35s;
}
.gallery-tile:hover .gallery-tile-caption { opacity: 1; transform: translateY(0); }
.gallery-tile-caption h4 {
  margin: 0; font-family: var(--serif); font-size: 18px; font-weight: 600;
}
.gallery-tile-caption span {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.testimonial {
  position: relative;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 36px 30px;
  color: #fff;
}
.quote-mark {
    position: absolute;
    top: 8px;
    left: 15px;
    font-family: var(--serif);
    font-size: 90px;
    line-height: 1;
    color: var(--accent);
    opacity: .25;
}
.t-text { font-style: italic; font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.85); }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--serif); font-size: 16px;
}
.t-name { margin: 0; font-weight: 600; }
.t-loc  { margin: 2px 0 0; font-size: 12px; color: rgba(255,255,255,.55); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.contact-item:hover { transform: translateX(4px); border-color: var(--accent); box-shadow: var(--shadow-1); }
.ci-ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.ci-lbl { margin: 0; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.ci-val { margin: 4px 0 0; font-weight: 600; }

.contact-form {
  background: var(--ink); color: #fff;
  padding: 36px 32px; border-radius: 22px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--line-dark);
}
.form-title { margin: 0 0 6px; font-family: var(--serif); font-size: 26px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; border-radius: 10px;
  font-family: inherit; font-size: 14px;
  transition: border-color .2s, background .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.45); }
.contact-form input:focus, .contact-form textarea:focus {
  outline: 0; border-color: var(--accent); background: rgba(255,255,255,.08);
}
.grid-2-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn-dark { background: var(--accent); color: #000; margin-top: 6px; }
.contact-form .btn-dark:hover { background: var(--accent-2); }

/* ===== SOCIAL / INSTAGRAM ===== */
.section-social { padding: clamp(50px, 7vw, 90px) 0 0; background: var(--bg); }
.social-head {
  display: flex; align-items: end; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; padding-bottom: 30px;
}
.social-head .h2 { margin: .25em 0 0; }
.social-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.social-tile {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
}
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.social-tile:hover img { transform: scale(1.08); }
.social-overlay {
  position: absolute; inset: 0; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(13,13,13,.75); color: var(--accent); font-weight: 700; letter-spacing: .2em;
  opacity: 0; transition: opacity .3s;
}
.social-tile:hover .social-overlay { opacity: 1; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker); color: rgba(255,255,255,.75);
  padding-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px; padding-bottom: 60px;
}
.footer-brand .footer-logo {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 32ch; margin: 0 0 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.footer-col h4 {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: #fff; margin: 0 0 18px; letter-spacing: .04em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .ic { color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px var(--pad); font-size: 13px;
}
.footer-bottom .muted { color: rgba(255,255,255,.45); }

.footer-menu {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.footer-menu a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-menu a:hover { color: var(--accent); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in   { opacity: 1; transform: none;}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 4/3; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .social-grid       { grid-template-columns: repeat(3, 1fr); }
  .grid-2-form       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 36px; }
  .topbar-left       { font-size: 12px; }
}
@media (max-width: 540px) {
  .products-grid     { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: 1fr; }
  .gallery-tile:nth-child(5n+1) { grid-row: auto; }
  .social-grid       { grid-template-columns: repeat(2, 1fr); }
  .topbar-left a:nth-child(2) { display: none; }
}

/* Single product / gallery pages */
.single-product, .single-gallery, .archive-products, .archive-gallery { padding: 80px 0; }
.single-product .container.narrow, .single-gallery .container.narrow { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--gold, #c9a961); text-decoration: none; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.back-link:hover { color: #fff; }
.single-product-image, .single-gallery-image { margin: 32px 0; border-radius: 12px; overflow: hidden; }
.single-product-image img, .single-gallery-image img { width: 100%; height: auto; display: block; }
.single-product-article .lead { font-size: 18px; margin: 8px 0 24px; }
.single-product-article .content, .single-gallery-article .content { font-size: 16px; line-height: 1.7; }

/* ===== Shiva Slider ===== */
.shiva-slider{position:relative;margin-top:2rem}
.shiva-slider .slider-viewport{overflow:hidden;margin:0 3rem}
.shiva-slider .slider-track{display:flex;transition:transform .5s cubic-bezier(.22,.61,.36,1);will-change:transform}
.shiva-slider .slider-slide{flex:0 0 auto;box-sizing:border-box;padding:0 12px}
.shiva-slider .slider-arrow{position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;border:1px solid rgba(0,0,0,.15);background:#fff;color:#111;font-size:28px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:3;box-shadow:0 6px 20px rgba(0,0,0,.08);transition:all .25s ease}
.shiva-slider .slider-arrow:hover{background:#111;color:#fff;border-color:#111}
.shiva-slider .slider-arrow:disabled{opacity:.35;cursor:not-allowed}
.shiva-slider .slider-prev{left:0}
.shiva-slider .slider-next{right:0}
.shiva-slider-dark .slider-arrow{background:transparent;color:#fff;border-color:rgba(255,255,255,.3)}
.shiva-slider-dark .slider-arrow:hover{background:#fff;color:#111;border-color:#fff}
@media (max-width: 1024px){.shiva-slider .slider-viewport{margin:0 2.5rem}}
@media (max-width: 640px){.shiva-slider .slider-viewport{margin:0 2rem}.shiva-slider .slider-arrow{width:38px;height:38px;font-size:22px}}

/* ===== CONTACT FORM 7 SUPPORT ===== */
/* Generic CF7 styling that works on any page */
.wpcf7 { width: 100%; }
.wpcf7-form p { margin: 0 0 14px; }
.wpcf7-form label { display: block; font-weight: 500; margin-bottom: 6px; color: inherit; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 input[type="search"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.wpcf7 textarea { min-height: 120px; resize: vertical; }
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--accent, #d4a017);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent, #d4a017) 25%, transparent);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: rgba(0,0,0,.45); }
.wpcf7 .wpcf7-submit,
.wpcf7 input[type="submit"] {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent, #d4a017);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.wpcf7 .wpcf7-submit:hover,
.wpcf7 input[type="submit"]:hover { background: var(--accent-2, #b8860b); transform: translateY(-1px); }
.wpcf7-not-valid-tip { color: #e74c3c; font-size: 13px; margin-top: 4px; }
.wpcf7 .wpcf7-not-valid { border-color: #e74c3c !important; }
.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 16px !important;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.15) !important;
  font-size: 14px;
}
.wpcf7 form.sent .wpcf7-response-output { border-color: #2ecc71 !important; background: rgba(46,204,113,.08); color: #1e8449; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-color: #e74c3c !important; background: rgba(231,76,60,.08); color: #c0392b; }
.wpcf7-spinner { background-color: var(--accent, #d4a017) !important; }

/* CF7 inside the dark contact section on home page */
.contact-form-cf7 .wpcf7 input[type="text"],
.contact-form-cf7 .wpcf7 input[type="email"],
.contact-form-cf7 .wpcf7 input[type="tel"],
.contact-form-cf7 .wpcf7 input[type="url"],
.contact-form-cf7 .wpcf7 input[type="number"],
.contact-form-cf7 .wpcf7 select,
.contact-form-cf7 .wpcf7 textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.contact-form-cf7 .wpcf7 input::placeholder,
.contact-form-cf7 .wpcf7 textarea::placeholder { color: rgba(255,255,255,.45); }
.contact-form-cf7 .wpcf7 input:focus,
.contact-form-cf7 .wpcf7 select:focus,
.contact-form-cf7 .wpcf7 textarea:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--accent, #d4a017);
}
.contact-form-cf7 .wpcf7-form label { color: rgba(255,255,255,.85); }
.contact-form-cf7 .wpcf7-response-output { color: #fff; border-color: rgba(255,255,255,.2) !important; }

/* Two-column layout for CF7 when using .grid-2-form wrapper inside CF7 markup */
.wpcf7 .grid-2-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .wpcf7 .grid-2-form { grid-template-columns: 1fr; } }

/* ===== PAGE HERO (services & inner pages) ===== */
.page-hero {
  position: relative;
  padding: 120px 0 110px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: #fff;
}
.page-hero-bg { background-size: cover; background-position: center; }
.page-hero-inner { max-width: 880px; margin: 0 auto; }
.page-hero .h1, .page-hero .h2 {
  font-size: clamp(36px, 5vw, 69px);
  line-height: 1.05;
  margin: 18px 0 14px;
  color: #fff;
  letter-spacing: -.02em;
}
.page-hero-desc { max-width: 680px; margin: 0 auto; font-size: 17px; }

/* ===== ZIGZAG ROWS (services archive) ===== */
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.zigzag-row:last-child { border-bottom: 0; }
.zigzag-row.zigzag-reverse .zigzag-media { order: 2; }
.zigzag-row.zigzag-reverse .zigzag-content { order: 1; }
.zigzag-media {
  border-radius: 22px;
  overflow: hidden;
  background: #f0eee8;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-2, 0 20px 50px rgba(0,0,0,.08));
}
.zigzag-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.zigzag-media:hover img { transform: scale(1.04); }
.zigzag-media-fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; font-size: 80px; color: #c9b99a;
}
.zigzag-content .pill { margin-bottom: 14px; }
.zigzag-content .h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 10px 0 16px;
  letter-spacing: -.02em;
}

.zigzag-content .lead {font-size: 17px; color: #555; margin-bottom: 16px; }
.zigzag-text { font-size: 16px; line-height: 1.75; color: #333; }
.zigzag-text p { margin: 0 0 14px; }

@media (max-width: 860px) {
  .zigzag-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .zigzag-row.zigzag-reverse .zigzag-media { order: 0; }
  .zigzag-row.zigzag-reverse .zigzag-content { order: 0; }
  .page-hero { padding: 80px 0 70px; }
}

/* ===== FAQ Accordion (zigzag template) ===== */
.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item.is-open {
  border-color: #d8c7a6;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: inherit;
}
.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3ecdd;
  font-size: 20px;
  line-height: 1;
  color: #8a6d3b;
  transition: transform .3s ease, background .3s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: #e3d3ad; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}
.faq-answer-inner p { margin: 0 0 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ===== Content Section (zigzag/grid templates) ===== */
.content-section { padding: 60px 0; }
.content-section-body { font-size: 16px; line-height: 1.8; color: #333; }
.content-section-body p { margin: 0 0 14px; }

/* ===== Shiva 4-column grid (grid template) ===== */
.shiva-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.shiva-grid-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.shiva-grid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.shiva-grid-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-cream);
}
.shiva-grid-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.shiva-grid-card:hover .shiva-grid-card-media img { transform: scale(1.05); }
.shiva-grid-card-body {
  padding: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}
.shiva-grid-card-body p { margin: 0 0 10px; }
.shiva-grid-card-body p:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  .shiva-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px) {
  .shiva-grid-4 { grid-template-columns: 1fr; }
}

/* ===== Append the following to assets/style.css ===== */

/* Blog index grid */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
}
@media (max-width: 980px){ .blog-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width: 620px){ .blog-grid{ grid-template-columns:1fr; } }

.blog-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease;
}
.blog-card:hover{ transform:translateY(-4px); box-shadow:0 18px 40px -20px rgba(0,0,0,.25); }

.blog-card-media{
  display:block;
  aspect-ratio: 16/10;
  overflow:hidden;
  background:#f2ede4;
}
.blog-card-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s ease;
}
.blog-card:hover .blog-card-media img{ transform:scale(1.05); }
.blog-card-fallback{
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:44px; color:#c8a15a; background:#faf6ef;
}

.blog-card-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; }
.blog-card-meta{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:#8a8a8a; display:flex; gap:8px; align-items:center;
}
.blog-card-meta .dot{ opacity:.6; }
.blog-card-cat{ color:#c8a15a; font-weight:600; }

.blog-card-title{
  font-family: var(--font-serif, Georgia, serif);
  font-size:22px; line-height:1.25; margin:2px 0 4px;
}
.blog-card-title a{ color:inherit; text-decoration:none; }
.blog-card-title a:hover{ color:#c8a15a; }

.blog-card-excerpt{ color:#555; margin:0; }
.blog-card-more{
  margin-top:6px; font-weight:600; color:#111; text-decoration:none;
  align-self:flex-start; border-bottom:1px solid #c8a15a; padding-bottom:2px;
}
.blog-card-more:hover{ color:#c8a15a; }

/* Pagination */
.blog-pagination{
  margin-top:48px;
  display:flex; justify-content:center; flex-wrap:wrap; gap:8px;
}
.blog-pagination .page-numbers{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:40px; height:40px; padding:0 12px;
  border:1px solid rgba(0,0,0,.12); border-radius:999px;
  color:#111; text-decoration:none; font-weight:600;
  transition:all .2s ease;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current{
  background:#111; color:#fff; border-color:#111;
}

/* Single post */
.post-content .content{
  font-size:17px; line-height:1.8; color:#222;
}
.post-content .content h2,
.post-content .content h3{
  font-family: var(--font-serif, Georgia, serif);
  margin-top:1.6em;
}
.post-content .content img{ border-radius:12px; height:auto; max-width:100%; }
.post-content .content blockquote{
  border-left:3px solid #c8a15a;
  padding:6px 0 6px 18px;
  color:#444; font-style:italic; margin:1.4em 0;
}

.post-tags{ margin-top:28px; display:flex; flex-wrap:wrap; gap:8px; }
.post-tags .pill{ text-decoration:none; }

.post-nav{
  display:flex; justify-content:space-between; gap:20px;
  margin-top:40px; padding-top:24px; border-top:1px solid rgba(0,0,0,.08);
  font-weight:600;
}
.post-nav a{ color:#111; text-decoration:none; }
.post-nav a:hover{ color:#c8a15a; }
.post-nav-next{ text-align:right; }

.post-pages{ margin-top:20px; font-weight:600; }

/* ---------- Comments ---------- */
.comments-area{
  margin-top:60px;
  padding-top:32px;
  border-top:1px solid rgba(0,0,0,.08);
}
.comments-title,
.comment-reply-title{
  font-family: var(--font-serif, Georgia, serif);
  font-size:26px;
  font-weight:700;
  color:#111;
  margin:0 0 24px;
}
.comment-reply-title small{ font-size:14px; margin-left:10px; font-weight:400; }
.comment-reply-title small a{ color:#c8a15a; text-decoration:none; }

.comment-list{
  list-style:none;
  margin:0 0 40px;
  padding:0;
}
.comment-list .children{
  list-style:none;
  margin:20px 0 0;
  padding-left:28px;
  border-left:2px solid rgba(200,161,90,.25);
}
.comment-list li.comment,
.comment-list li.pingback,
.comment-list li.trackback{ margin-bottom:22px; }

.comment-body{
  background:#faf7f2;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:20px 22px;
  position:relative;
}
.comment-author{
  display:flex; align-items:center; gap:12px;
  margin-bottom:10px;
}
.comment-author .avatar{
  border-radius:50%;
  width:44px; height:44px;
}
.comment-author .fn{
  font-weight:700; color:#111; font-style:normal;
}
.comment-author .says{ display:none; }
.comment-metadata{
  font-size:13px; color:#777;
  margin-bottom:10px;
}
.comment-metadata a{ color:#777; text-decoration:none; }
.comment-metadata a:hover{ color:#c8a15a; }

.comment-content{
  color:#333; font-size:16px; line-height:1.7;
}
.comment-content p{ margin:0 0 10px; }
.comment-content p:last-child{ margin-bottom:0; }

.reply{ margin-top:10px; }
.comment-reply-link{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:#111; color:#fff;
  font-size:13px; font-weight:600;
  text-decoration:none;
  transition:background .2s ease;
}
.comment-reply-link:hover{ background:#c8a15a; color:#111; }

.bypostauthor > .comment-body{
  border-color:rgba(200,161,90,.5);
  box-shadow:0 0 0 1px rgba(200,161,90,.25) inset;
}

.no-comments{
  color:#666; font-style:italic; margin:20px 0 40px;
}

/* Comment form */
.comment-respond{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:28px;
  margin-top:20px;
}
.comment-notes,
.logged-in-as{
  color:#666; font-size:14px; margin:0 0 18px;
}
.logged-in-as a{ color:#c8a15a; text-decoration:none; }

.comment-form{
  display:grid;
  gap:16px;
}
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url{ margin:0; }

.comment-form label{
  display:block;
  font-weight:600;
  color:#111;
  margin-bottom:6px;
  font-size:14px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  font:inherit;
  font-size:15px;
  color:#111;
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
  box-sizing:border-box;
}
.comment-form textarea{ min-height:140px; resize:vertical; }
.comment-form input:focus,
.comment-form textarea:focus{
  outline:none;
  border-color:#c8a15a;
  box-shadow:0 0 0 3px rgba(200,161,90,.2);
}

.comment-form-cookies-consent{
  display:flex; align-items:center; gap:10px;
  font-size:14px; color:#555;
}
.comment-form-cookies-consent input{ margin:0; }
.comment-form-cookies-consent label{ margin:0; font-weight:400; }

.form-submit{ margin:0; }
.form-submit .submit{
  display:inline-block;
  background:#c8a15a;
  color:#111;
  padding:12px 28px;
  border:none;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.form-submit .submit:hover{
  background:#111; color:#fff; transform:translateY(-1px);
}

/* Pagination for comments */
.comment-navigation{
  display:flex; justify-content:space-between;
  margin:20px 0; font-weight:600;
}
.comment-navigation a{ color:#111; text-decoration:none; }
.comment-navigation a:hover{ color:#c8a15a; }

@media (max-width:640px){
  .comment-list .children{ padding-left:16px; }
  .comment-body{ padding:16px; }
  .comment-respond{ padding:20px; }
}
