/*
Theme Name: Vistara
Theme URI: https://bd.linkedin.com/in/jahidulwd/en
Author: Jahidul Islam
Author URI: https://linkedin.com/in/jahidulwd/
Description: Vistara is a luxury interior design WordPress theme featuring an elegant gold and warm-white aesthetic. Built for architects, interior designers, and creative studios. Includes responsive layouts, smooth animations, portfolio grids, services sections, and Vastu-inspired philosophy sections.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vistara
Tags: blog, portfolio, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, responsive-layout, rtl-language-support, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks, luxury, interior-design
*/

/* ─── RESET & TOKENS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:         #B8922A;
  --gold-light:   #D4A94A;
  --gold-pale:    rgba(184,146,42,0.12);
  --dark:         #1C1814;
  --cream:        #F5F0E8;
  --warm-white:   #FDFBF7;
  --muted:        #7A6E60;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Jost', sans-serif;
  --nav-h:        72px;
  --px:           clamp(1.25rem, 5vw, 5rem);
  --py:           clamp(4rem, 8vw, 8rem);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ─────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.18; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: clamp(0.85rem, 1vw, 0.95rem); line-height: 1.85;
  color: var(--muted); font-weight: 300; max-width: 560px; margin: 0 auto;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; padding: 14px 32px;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-dark         { background: var(--dark); color: var(--warm-white); }
.btn-dark:hover   { background: var(--gold); }
.btn-outline      { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-outline:hover{ background: var(--dark); color: var(--warm-white); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--warm-white); }
.btn-gold         { background: var(--gold); color: var(--dark); font-weight: 600; }
.btn-gold:hover   { background: var(--gold-light); }
.btn-woutline     { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); }
.btn-woutline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── NAV ─────────────────────────── */
#masthead {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253,251,247,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(184,146,42,0.13);
    transition: box-shadow 0.3s;
    padding: 0;
    padding-right: 30px;
	padding-left: 30px
}

/* Site Logo / Branding */
.site-branding { display: flex; align-items: center; }
.site-branding a { display: flex; align-items: center; }

.logo-icon {
  width: 34px; height: 34px; background: var(--dark);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon::after {
  content: ''; width: 13px; height: 13px; background: var(--gold);
}
.logo-text .logo-name {
  font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: block;
}
.logo-text .logo-tag {
  font-size: 0.52rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); display: block;
}

/* Custom logo image */
.custom-logo-link img.custom-logo {
  max-height: 54px; width: auto;
}

/* Primary Navigation */
#site-navigation { display: flex; align-items: center; }
#primary-menu {
  display: flex; align-items: center; gap: 2.5rem;
  margin: 0; padding: 0; list-style: none;
}
#primary-menu > li > a {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.72; position: relative; transition: opacity 0.2s, color 0.2s;
}
#primary-menu > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a { opacity: 1; color: var(--gold); }
#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after { width: 100%; }

/* Dropdown */
#primary-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--warm-white);
  border: 1px solid rgba(184,146,42,0.15);
  min-width: 180px; padding: 0.5rem 0;
  display: none; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  list-style: none; z-index: 300;
}
#primary-menu li:hover > .sub-menu { display: flex; }
#primary-menu .sub-menu li a {
  display: block; padding: 0.6rem 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.8;
  transition: color 0.2s, background 0.2s;
}
#primary-menu .sub-menu li a:hover { color: var(--gold); background: var(--cream); }
#primary-menu li { position: relative; }

/* Nav CTA Button */
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 10px 22px; font-size: 0.7rem; letter-spacing: 0.12em;
  font-weight: 600; transition: background 0.2s; white-space: nowrap;
  margin-left: 2rem;
}
.nav-cta:hover { background: var(--gold-light); color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--dark); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white); border-bottom: 1px solid rgba(184,146,42,0.15);
  padding: 2rem var(--px); z-index: 190;
  flex-direction: column; gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu ul li a {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  display: block; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,146,42,0.12);
}
.mobile-menu ul li:last-child a { border-bottom: none; }

/* ─── HERO ────────────────────────── */
.hero {
  position: relative; min-height: 100svh; padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(3rem,6vw,7rem) var(--px);
  position: relative; z-index: 2;
}
.hero-eyebrow { margin-bottom: 1.8rem; animation: fadeUp 0.7s 0.1s both; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.6rem;
  animation: fadeUp 0.7s 0.25s both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title strong { font-weight: 600; }
.hero-body {
  font-size: clamp(0.88rem, 1.1vw, 1rem); line-height: 1.85;
  color: var(--muted); font-weight: 300; max-width: auto; margin-bottom: 2.4rem;
  animation: fadeUp 0.7s 0.4s both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: fadeUp 0.7s 0.55s both; }

.hero-image { position: relative; overflow: hidden; }
.hero-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  animation: kenBurns 12s ease forwards;
}
.hero-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, rgba(253,251,247,0) 40%);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.7s 1s both;
}
.hero-scroll-label { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2.2s ease infinite; }

/* ─── DARK SERVICES STRIP ─────────── */
.strip {
  background: var(--dark); padding: 1.4rem var(--px);
  display: flex;
}
.strip-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 2.5rem; flex: 1;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child  { border-right: none; }
.strip-icon {
  width: 28px; height: 28px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem; flex-shrink: 0;
}
.strip-txt { font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.62); }

/* ─── PHILOSOPHY ──────────────────── */
.sec-philosophy { padding: var(--py) var(--px); text-align: center; }
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.sec-head .eyebrow { margin-bottom: 1.2rem; }

.elements {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: rgba(184,146,42,0.12);
  border: 1px solid rgba(184,146,42,0.15);
}
.el-card {
  background: var(--warm-white); padding: clamp(1.5rem,3vw,2.5rem) 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  transition: background 0.3s, transform 0.2s; cursor: default;
}
.el-card:hover { background: var(--cream); transform: translateY(-4px); }
.el-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(184,146,42,0.3);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold);
}
.el-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.el-sk   { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.el-desc { font-size: 0.99rem; line-height: 1.65; color: var(--muted); text-align: center; font-weight: 300; }

/* ─── APPROACH ────────────────────── */
.sec-approach { padding: var(--py) var(--px); background: var(--cream); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem);}

.framed-img { position: relative; overflow: hidden; }

.framed-img img {
    width: 100%;
    object-fit: cover;
    height: clamp(300px, 44vw, 560px);
    transition: transform 0.6s ease;
    border-radius: 5px;
}

.framed-img:hover img { transform: scale(1.04); }
.framed-img::before {
  content: ''; position: absolute; inset: 14px;
  border: 1px solid rgba(184,146,42,0.35); z-index: 1; pointer-events: none;
}

.txt-block .eyebrow { margin-bottom: 1.2rem; }
.txt-block .section-title { text-align: left; margin-bottom: 1.4rem; }
.body-p {
    font-size: clamp(0.85rem,1vw,0.99rem);
    line-height: 1.9;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 1rem;
}

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin-top: 1.5rem; }
.feat { display: flex; gap: 12px; align-items: flex-start; }
.feat-icon {
  width: 30px; height: 30px;
  background: var(--gold-pale); border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gold); flex-shrink: 0; margin-top: 2px;
}
.feat-name { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.3rem; }
.feat-desc { font-size: 0.90rem; line-height: 1.65; color: var(--muted); font-weight: 300; }

/* ─── SERVICES ────────────────────── */
.sec-services { padding: var(--py) var(--px); text-align: center; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(184,146,42,0.1);
  margin-top: clamp(2.5rem,4vw,4rem);
}
.svc-card {
  background: var(--warm-white);
  padding: clamp(2rem,4vw,3.5rem) clamp(1.5rem,3vw,2.5rem);
  text-align: left; transition: background 0.3s;
}
.svc-card:hover { background: var(--cream); }
.svc-icon {
  width: 46px; height: 46px; background: var(--gold-pale);
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--gold); margin-bottom: 1.4rem;
}
.svc-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.85rem; }
.svc-desc { font-size: 0.99rem; line-height: 1.8; color: var(--muted); font-weight: 300; margin-bottom: 1.4rem; }
.svc-list { display: flex; flex-direction: column; gap: 0.45rem; }
.svc-list li {
  font-size: 0.99rem; color: var(--muted); font-weight: 300;
  display: flex; align-items: center; gap: 8px;
}
.svc-list li::before { content: ''; width: 16px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ─── PROCESS ─────────────────────── */
.sec-process { padding: var(--py) var(--px); background: var(--cream); }
.proc-body { font-size: clamp(0.85rem,1vw,0.92rem); line-height: 1.9; color: var(--muted); font-weight: 300; margin-bottom: 1rem; }

.proc-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 3px; margin-top: clamp(2.5rem,4vw,4rem);
}
.ps {
  background: var(--gold); padding: 1.8rem 1rem 2rem;
  text-align: center; position: relative;
  transition: background 0.3s, transform 0.25s; cursor: default;
}
.ps:hover { background: var(--dark); transform: translateY(-5px); }
.ps-n { position: absolute; top: 8px; left: 10px; font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.5); }
.ps-ico { font-size: 1.7rem; margin-bottom: 0.7rem; display: block; }
.ps-lbl { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.92); font-weight: 500; line-height: 1.5; }

.proc-cta { text-align: center; margin-top: 3rem; }

/* ─── PORTFOLIO ───────────────────── */
.sec-portfolio { padding: var(--py) var(--px); text-align: center; }
.port-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: clamp(340px,50vw,540px);
  margin-top: clamp(2.5rem,4vw,4rem);
}
.port-item { position: relative; overflow: hidden; }
.port-item:first-child { grid-row: span 2; }
.port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.port-item:hover img { transform: scale(1.07); }
.port-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem 1.4rem;
}
.port-item:hover .port-over { opacity: 1; }
.port-lbl { font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.port-cta { margin-top: 3rem; }

/* ─── VASTU ───────────────────────── */
.sec-vastu { padding: var(--py) var(--px); background: var(--cream); }
.vastu-dia { position: relative; overflow: hidden; }
.vastu-dia img { width: 100%; background: #fff; padding: 1rem; }
.vastu-dia-lbl {
  background: var(--gold); color: var(--dark);
  text-align: center; font-size: 0.62rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 8px; font-weight: 500;
}
.vastu-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.vastu-pill { border-left: 2px solid var(--gold); padding: 1rem 1.25rem; background: var(--warm-white); }
.pill-name { font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.35rem; }
.pill-desc { font-size: 0.77rem; line-height: 1.65; color: var(--muted); font-weight: 300; }

/* ─── 3D VIZ ──────────────────────── */
.sec-viz { padding: var(--py) var(--px); }
.viz-img { position: relative; overflow: hidden; }
.viz-img img { width: 100%; height: clamp(320px,46vw,580px); object-fit: cover; transition: transform 0.6s ease; }
.viz-img:hover img { transform: scale(1.04); }
.viz-badge {
  position: absolute; top: 2rem; right: 2rem;
  background: rgba(28,24,20,0.9); color: var(--gold);
  padding: 1.2rem 1.6rem; text-align: center;
}
.viz-badge-n { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; line-height: 1; }
.viz-badge-l { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 5px; }
.viz-feats { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.viz-feat { display: flex; gap: 1rem; align-items: flex-start; }
.viz-feat-ico {
  width: 30px; height: 30px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--dark); flex-shrink: 0; margin-top: 2px;
}
.viz-feat-name { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.25rem; }
.viz-feat-desc { font-size: 0.99rem; line-height: 1.65; color: var(--muted); font-weight: 300; }

/* ─── FOOTER CTA ──────────────────── */
.foot-cta {
  background: var(--dark); padding: clamp(4rem,8vw,4rem) var(--px);
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.foot-cta-title { font-family: var(--serif); font-size: clamp(1.8rem,3vw,3rem); font-weight: 300; color: var(--warm-white); line-height: 1.2; }
.foot-cta-title em { font-style: italic; color: var(--gold); }
.foot-cta-acts { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }

/* ─── FOOTER ──────────────────────── */
#colophon {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem var(--px);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
#colophon .site-info { font-size: 0.67rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.27); }
.footer-nav ul { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.footer-nav ul li a {
    font-size: 0.70rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 50%);
    transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--gold); }

/* ─── INNER PAGE ──────────────────── */
.page-header {
  padding: 25px;
  background: var(--cream); text-align: center;
  border-bottom: 1px solid rgba(184,146,42,0.15);
}
.page-header h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,4rem); font-weight: 300; }
.page-content {
    padding-top: 55px;
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 55px;
}
.page-content p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.4rem; }
.page-content h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; margin: 2rem 0 1rem; }
.page-content h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin: 1.5rem 0 0.8rem; }

/* ─── BLOG ────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; padding: var(--py) var(--px);
}
.blog-card { background: var(--warm-white); border: 1px solid rgba(184,146,42,0.12); }
.blog-card-img { overflow: hidden; }
.blog-card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-cat { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.blog-card-body h2 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card-body h2 a { color: var(--dark); transition: color 0.2s; }
.blog-card-body h2 a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.82rem; line-height: 1.75; color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; }
.blog-meta { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ─── SINGLE POST ─────────────────── */
.single-post-wrap { padding: calc(var(--nav-h) + 3rem) var(--px) var(--py); max-width: 800px; margin: 0 auto; }
.single-post-wrap .post-title { font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.2; }
.single-post-wrap .post-meta { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-bottom: 2rem; }
.single-post-wrap .post-thumbnail { margin-bottom: 2.5rem; }
.single-post-wrap .post-thumbnail img { width: 100%; max-height: 480px; object-fit: cover; }
.single-post-wrap .entry-content p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.4rem; }

/* ─── WP ALIGNMENT CLASSES ───────── */
.aligncenter { display: block; margin: 0 auto 1.5rem; }
.alignleft   { float: left; margin: 0 1.5rem 1rem 0; }
.alignright  { float: right; margin: 0 0 1rem 1.5rem; }
.wp-caption  { max-width: 100%; }

/* ─── SCROLL REVEAL ───────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ANIMATIONS ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.01); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════ */
@media (max-width: 1024px) {
  #primary-menu { gap: 1.5rem; }
  .hero { grid-template-columns: 55% 1fr; }
  .elements { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid .svc-card:last-child { grid-column: span 2; }
  .proc-steps { grid-template-columns: repeat(3,1fr); }
  .port-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: clamp(280px, 55vw, 460px);
  }
  .port-item:first-child { grid-row: span 2; }
  .foot-cta { grid-template-columns: 1fr; }
  .foot-cta-acts { align-items: flex-start; flex-direction: row; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  #site-navigation, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { order: 2; padding: 2.5rem var(--px) 3rem; }
  .hero-image  { order: 1; min-height: 55vw; }
  .hero-img-bg { animation: none; transform: scale(1.02); }
  .hero-img-fade { background: linear-gradient(to bottom, rgba(253,251,247,0.15), rgba(253,251,247,0.7)); }
  .hero-scroll { display: none; }
  .elements {
    grid-template-columns: repeat(5, 160px);
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .elements::-webkit-scrollbar { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col .framed-img { order: -1; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid .svc-card:last-child { grid-column: span 1; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .port-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
    height: auto;
  }
  .port-item:first-child { grid-column: span 2; grid-row: span 1; }
  .vastu-pillars { grid-template-columns: 1fr; }
  .viz-img img  { height: clamp(250px, 60vw, 400px); }
  .strip { flex-direction: column; gap: 1rem; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 0 0 1rem; }
  .strip-item:last-child { border-bottom: none; padding-bottom: 0; }
  .foot-cta { grid-template-columns: 1fr; }
  .foot-cta-acts { flex-direction: column; align-items: stretch; }
  .foot-cta-acts .btn { text-align: center; justify-content: center; }
  #colophon { flex-direction: column; text-align: center; }
  .footer-nav ul { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; padding: var(--py) var(--px); }
  .hero-title strong {
    font-weight: 600;
    font-size: 36px;
}
.hero {
	padding-top: 0 !important
}	
}

.hero {
	padding-top: 0 !important
}

/* ════════════════════════════════════
   RESPONSIVE — SMALL (≤480px)
════════════════════════════════════ */
@media (max-width: 480px) {
  .proc-steps { grid-template-columns: 1fr; }
  .feat-grid   { grid-template-columns: 1fr; }
  .port-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
    height: auto;
  }
  .port-item:first-child { grid-column: span 1; }
}


/* design process css  */

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before,
.eyebrow-center::after {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}




/* ════════════════════════════════════
   DESIGN PROCESS SECTION
════════════════════════════════════ */
.sec-process {
  position: relative;
  padding: var(--py) var(--px);
  background: var(--warm-white);
  overflow: hidden;
}

/* Diamond lattice background */
.sec-process::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(184,146,42,0.05) 34px, rgba(184,146,42,0.05) 35px),
    repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(184,146,42,0.05) 34px, rgba(184,146,42,0.05) 35px);
  pointer-events: none;
  z-index: 0;
}

/* Ghost Sanskrit watermark */
.bg-word {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 190px);
  font-weight: 300;
  font-style: italic;
  color: rgba(184,146,42,0.055);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.process-inner {
  position: relative;
  z-index: 1;
  max-width: auto;
  margin: 0 auto;
}

/* Top layout: text + image */
.process-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    margin-bottom: clamp(56px, 8vw, 88px);
}

.process-text-block .eyebrow { margin-bottom: 24px; }

.process-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 28px;
}
.process-title em { font-style: italic; color: var(--gold); }

.process-body {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
}
.process-body p + p { margin-top: 16px; }
.process-body strong {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.08em;
}

/* Image with gold corner brackets */
.process-image-wrap {
  position: relative;
  flex-shrink: 0;
}
.process-image-wrap::before,
.process-image-wrap::after,
.process-image-wrap .c-tr,
.process-image-wrap .c-bl {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  z-index: 2;
  pointer-events: none;
}
.process-image-wrap::before { top: -10px; left: -10px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.process-image-wrap::after  { bottom: -10px; right: -10px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.process-image-wrap .c-tr   { top: -10px; right: -10px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.process-image-wrap .c-bl   { bottom: -10px; left: -10px; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }

.process-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: sepia(8%) saturate(88%);
  transition: filter 0.5s;
}
.process-image-wrap:hover img { filter: sepia(0%) saturate(105%); }

.img-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(28,24,20,0.72);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  z-index: 3;
}

/* Steps timeline */
.process-steps-label {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

/* Horizontal connector line */
.steps-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  cursor: default;
}

.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
  transition: background 0.35s, transform 0.35s;
  flex-shrink: 0;
}
.step-num .roman {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: color 0.35s;
}
.step-item:hover .step-num { background: var(--gold); transform: scale(1.08); }
.step-item:hover .step-num .roman { color: var(--dark); }

.step-icon {
  width: 28px; height: 28px;
  margin-bottom: 13px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.step-item:hover .step-icon { opacity: 1; }

.step-name {
  font-size: 0.90rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.step-bar {
  width: 0; height: 1.5px;
  background: var(--gold);
  margin: 0 auto 10px;
  transition: width 0.4s ease;
}
.step-item:hover .step-bar { width: 30px; }

.step-desc {
  font-size: 0.90rem;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300;
  max-width: 150px;
}

/* CTA */
.process-cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 68px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 36px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--dark); }
.btn-gold-outline:hover svg { transform: translateX(4px); }
.btn-gold-outline svg { transition: transform 0.3s; }


/* ════════════════════════════════════
   FIVE ELEMENTS SECTION
════════════════════════════════════ */
.sec-philosophy {
  position: relative;
  padding: var(--py) var(--px);
  background: var(--dark);
  overflow: hidden;
}

/* Radial ambient glow */
.sec-philosophy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(184,146,42,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Mandala rings */
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ring-1 { width: 720px; height: 720px; border: 1px solid rgba(184,146,42,0.06); }
.ring-2 { width: 530px; height: 530px; border: 1px solid rgba(184,146,42,0.09); }
.ring-3 { width: 350px; height: 350px; border: 1px solid rgba(184,146,42,0.11); }

.bg-sk {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 300;
  color: rgba(184,146,42,0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.15em;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.phil-head {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 76px);
}
.phil-head .eyebrow { margin-bottom: 24px; }

.phil-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: rgba(253,251,247,0.92);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.phil-title em { font-style: italic; color: var(--gold-light); }

.phil-sub {
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.9;
  color: rgba(122,110,96,0.88);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* Elements grid */
.elements {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  position: relative;
}
.elements::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(184,146,42,0.28) 10%, rgba(184,146,42,0.28) 90%, transparent);
}

.el-card {
  position: relative;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(184,146,42,0.1);
  padding: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
  overflow: hidden;
}
.el-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.el-card:hover {
  background: rgba(184,146,42,0.07);
  border-color: rgba(184,146,42,0.28);
  transform: translateY(-5px);
}
.el-card:hover::after { transform: scaleX(1); }

.el-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--serif);
  font-size: 0.62rem;
  color: rgba(184,146,42,0.28);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.el-card:hover .el-num { color: rgba(184,146,42,0.65); }

.el-symbol {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.4s, background 0.4s;
  flex-shrink: 0;
}
.el-card:hover .el-symbol { border-color: var(--gold); background: rgba(184,146,42,0.1); }
.el-symbol svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
  transition: opacity 0.3s;
}
.el-card:hover .el-symbol svg { opacity: 1; }

.el-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(253,251,247,0.88);
  margin-bottom: 4px;
}

.el-sk {
  font-family: var(--serif);
  font-size: 0.7rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 15px;
  opacity: 0.82;
}

.el-divider {
  width: 20px; height: 1px;
  background: rgba(184,146,42,0.32);
  margin: 0 auto 15px;
}

.el-desc {
  font-size: 0.74rem;
  line-height: 1.78;
  color: rgba(122,110,96,0.82);
  font-weight: 300;
}

/* Decorative footer */
.vastu-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(40px, 5vw, 58px);
  opacity: 0.45;
}
.vastu-strip span {
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.vastu-strip .vline {
  flex: 1;
  max-width: 110px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.vastu-strip .vline.rev { background: linear-gradient(to left, transparent, var(--gold)); }

/* ════ ANIMATIONS ════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; animation: fadeUp 0.72s ease forwards; }
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.3s;  }
.d4 { animation-delay: 0.42s; }
.d5 { animation-delay: 0.54s; }
.d6 { animation-delay: 0.66s; }

.step-item { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.step-item:nth-child(1) { animation-delay: 0.12s; }
.step-item:nth-child(2) { animation-delay: 0.24s; }
.step-item:nth-child(3) { animation-delay: 0.36s; }
.step-item:nth-child(4) { animation-delay: 0.48s; }
.step-item:nth-child(5) { animation-delay: 0.60s; }

.el-card { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.el-card:nth-child(1) { animation-delay: 0.08s; }
.el-card:nth-child(2) { animation-delay: 0.2s;  }
.el-card:nth-child(3) { animation-delay: 0.32s; }
.el-card:nth-child(4) { animation-delay: 0.44s; }
.el-card:nth-child(5) { animation-delay: 0.56s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .process-top { grid-template-columns: 1fr; }
  .process-image-wrap { max-width: 480px; }
  .steps-track { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .steps-track::before { display: none; }
  .elements { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .steps-track { grid-template-columns: 1fr 1fr; }
  .elements { grid-template-columns: 1fr 1fr; }
  .elements .el-card:last-child { grid-column: span 2; }
}

section#services {
    padding-bottom: 0 !important;
}
