/* ===================================
CSS RESET & BASE STYLES
=================================== */

/*
Font Stack:

- Headings: Playfair Display (elegant serif, similar to IvyPresto Headline)
- Body: Lora (readable serif)
- UI/CTA: Raleway (modern sans-serif)
  */

- {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

:root {
/* Color Palette - Saffron Gold Theme */
--bg-primary: #FFF8E7;
--bg-secondary: #FFF5DC;
--bg-accent: #FFFBF0;
--text-primary: #C4933F;
--text-secondary: #D4A347;
--text-dark: #B8813D;
--accent-gold: #C4933F;
--accent-deep: #B8813D;
--border-color: #E8D4B3;
--shadow-light: rgba(196, 147, 63, 0.08);
--shadow-medium: rgba(196, 147, 63, 0.15);

```
/* Typography - Updated Fonts */
--font-heading: 'IvyPresto Headline', 'Cormorant Garamond', serif;
--font-body: 'Lora', serif;
--font-ui: 'Raleway', sans-serif;

/* Spacing */
--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 2rem;
--spacing-lg: 4rem;
--spacing-xl: 6rem;

/* Transitions */
--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
```

}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
font-family: var(--font-body);
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.7;
overflow-x: hidden;
}

/* ===================================
TYPOGRAPHY
=================================== */

h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 600;
line-height: 1.3;
color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
margin-bottom: 1rem;
color: var(--text-primary);
}

.trademark {
font-size: 0.6em;
vertical-align: super;
font-weight: 400;
}

/* ===================================
LAYOUT CONTAINERS
=================================== */

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}

section {
padding: var(--spacing-xl) 0;
position: relative;
}

/* ===================================
BUTTONS
=================================== */

.btn-primary, .btn-secondary {
display: inline-block;
padding: 1rem 2.5rem;
font-family: var(--font-ui);
font-size: 1rem;
font-weight: 500;
text-decoration: none;
border-radius: 0;
transition: var(--transition-smooth);
cursor: pointer;
border: 2px solid transparent;
text-align: center;
}

.btn-primary {
background-color: var(--accent-gold);
color: var(--bg-primary);
border-color: var(--accent-gold);
}

.btn-primary:hover {
background-color: var(--text-dark);
border-color: var(--text-dark);
transform: translateY(-2px);
box-shadow: 0 8px 24px var(--shadow-medium);
}

.btn-secondary {
background-color: transparent;
color: var(--accent-gold);
border-color: var(--accent-gold);
}

.btn-secondary:hover {
background-color: var(--accent-gold);
color: var(--bg-primary);
transform: translateY(-2px);
}

/* ===================================
NAVIGATION
=================================== */

.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: rgba(255, 248, 231, 0.98);
backdrop-filter: blur(10px);
z-index: 1000;
border-bottom: 1px solid var(--border-color);
padding: 1rem 0;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
text-align: left;
}

.nav-brand {
display: flex;
align-items: center;
gap: 1rem;
}

.logo {
height: 2cm;
width: 2cm;
object-fit: contain;
}

.brand-name {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
}

.nav-links {
display: flex;
gap: 1.5rem;
align-items: center;
flex-wrap: wrap;
}

.nav-links a {
font-family: var(--font-ui);
font-size: 0.9rem;
font-weight: 500;
color: var(--text-primary);
text-decoration: none;
transition: var(--transition-smooth);
position: relative;
white-space: nowrap;
}

.nav-links a:not(.btn-primary):hover {
color: var(--text-dark);
}

.nav-links a:not(.btn-primary)::after {
content: ‘’;
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--text-primary);
transition: var(--transition-smooth);
}

.nav-links a:not(.btn-primary):hover::after {
width: 100%;
}

.nav-links .btn-primary {
padding: 0.65rem 1.25rem;
font-size: 0.85rem;
}

.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.mobile-menu-toggle span {
width: 25px;
height: 2px;
background-color: var(--text-primary);
transition: var(--transition-smooth);
}

/* ===================================
HERO SECTION
=================================== */

.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-top: 70px;
overflow: hidden;
}

.swastika-symbol {
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
opacity: 1;
z-index: 10;
}

@keyframes rotate-slow {
from { transform: translateX(-50%) rotate(0deg); }
to { transform: translateX(-50%) rotate(360deg); }
}

.hero-content {
text-align: center;
position: relative;
z-index: 2;
max-width: 900px;
margin-top: 100px;
}

.hero-title {
font-size: 4.5rem;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 1rem;
letter-spacing: -1px;
}

.hero-subtitle {
font-family: var(--font-body);
font-size: 1.5rem;
font-weight: 300;
color: var(--text-primary);
margin-bottom: 2rem;
letter-spacing: 2px;
text-transform: uppercase;
}

.hero-description {
font-size: 1.25rem;
color: var(--text-primary);
margin-bottom: 3rem;
line-height: 1.8;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-actions {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.hero-background {
position: absolute;
inset: 0;
background:
radial-gradient(circle at 20% 30%, rgba(212, 168, 79, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 70%, rgba(196, 147, 63, 0.08) 0%, transparent 50%);
z-index: 0;
}

/* Fade-in animations */
.fade-in {
animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.fade-in-delay-2 {
animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.fade-in-delay-3 {
animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* ===================================
FOUNDER SECTION
=================================== */

.founder-section {
background-color: var(--bg-secondary);
padding: 3rem 0;
text-align: center;
border-top: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
}

.founder-label {
font-family: var(--font-ui);
font-size: 0.9rem;
font-weight: 500;
color: var(--text-primary);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 0.5rem;
}

.founder-name {
font-size: 2.5rem;
color: var(--text-primary);
margin-bottom: 0.5rem;
}

.founder-title {
font-size: 1.1rem;
color: var(--text-primary);
font-weight: 400;
}

/* ===================================
FEATURES SECTION
=================================== */

.features {
background-color: var(--bg-primary);
}

.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
margin-top: 4rem;
}

.feature-card {
text-align: center;
padding: 2.5rem 2rem;
background-color: var(--bg-accent);
border: 1px solid var(--border-color);
transition: var(--transition-smooth);
position: relative;
overflow: hidden;
}

.feature-card::before {
content: ‘’;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: linear-gradient(90deg, var(--text-primary), var(--accent-gold));
transform: scaleX(0);
transform-origin: left;
transition: var(--transition-smooth);
}

.feature-card:hover::before {
transform: scaleX(1);
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px var(--shadow-medium);
}

.feature-icon {
color: var(--text-primary);
margin-bottom: 1.5rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.feature-card p {
color: var(--text-primary);
line-height: 1.7;
}

/* ===================================
SECTION HEADERS
=================================== */

.section-header {
text-align: center;
max-width: 800px;
margin: 0 auto 4rem;
}

.section-header h2 {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--text-primary);
}

.section-header p {
font-size: 1.15rem;
color: var(--text-primary);
line-height: 1.8;
}

/* ===================================
METHODOLOGY SECTION
=================================== */

.methodology {
background-color: var(--bg-secondary);
}

.methodology-steps {
display: flex;
flex-direction: column;
gap: 3rem;
}

.methodology-step {
display: grid;
grid-template-columns: 80px 1fr;
gap: 2rem;
padding: 2.5rem;
background-color: var(--bg-primary);
border-left: 3px solid var(--text-primary);
transition: var(--transition-smooth);
}

.methodology-step:hover {
box-shadow: 0 8px 24px var(--shadow-light);
transform: translateX(8px);
}

.step-number {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
color: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-size: 2.5rem;
font-weight: 600;
border-radius: 50%;
flex-shrink: 0;
}

.step-content h3 {
font-size: 1.75rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.step-content p {
margin-bottom: 1.5rem;
font-size: 1.05rem;
}

.step-features {
list-style: none;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 0.75rem;
}

.step-features li {
padding: 0.5rem 0;
color: var(--text-primary);
position: relative;
padding-left: 1.5rem;
}

.step-features li::before {
content: ‘→’;
position: absolute;
left: 0;
color: var(--text-primary);
font-weight: bold;
}

/* ===================================
EXPERTISE SECTION
=================================== */

.expertise {
background-color: var(--bg-primary);
}

.expertise-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 4rem;
margin-top: 4rem;
}

.expertise-column h3 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--text-primary);
text-align: center;
padding-bottom: 1rem;
border-bottom: 2px solid var(--border-color);
}

.expertise-card {
background-color: var(--bg-accent);
padding: 2rem;
margin-bottom: 2rem;
border-left: 4px solid var(--text-primary);
}

.expertise-card h4 {
font-size: 1.35rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.expertise-card p {
color: var(--text-primary);
line-height: 1.7;
}

.expertise-list {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.expertise-item {
display: flex;
gap: 1.5rem;
padding: 1.5rem;
background-color: var(--bg-accent);
border: 1px solid var(--border-color);
transition: var(--transition-smooth);
}

.expertise-item:hover {
transform: translateX(8px);
box-shadow: 0 4px 16px var(--shadow-light);
}

.item-number {
width: 40px;
height: 40px;
background-color: var(--accent-gold);
color: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-size: 1.25rem;
font-weight: 600;
border-radius: 50%;
flex-shrink: 0;
}

.expertise-item h5 {
font-size: 1.15rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
}

.expertise-item p {
font-size: 0.95rem;
color: var(--text-primary);
margin-bottom: 0;
}

.vastu-principles {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}

.principle-item {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1rem;
background-color: var(--bg-accent);
}

.principle-icon {
width: 30px;
height: 30px;
background-color: var(--accent-gold);
color: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
border-radius: 50%;
flex-shrink: 0;
}

.principle-item p {
margin-bottom: 0;
color: var(--text-primary);
}

/* ===================================
GALLERY SECTION
=================================== */

.gallery {
background-color: var(--bg-secondary);
}

.gallery-disclaimer {
font-size: 0.9rem;
font-style: italic;
color: var(--text-primary);
margin-top: 1rem;
opacity: 0.8;
}

.gallery-intro {
max-width: 900px;
margin: 0 auto 4rem;
text-align: center;
}

.gallery-intro h3 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--text-primary);
}

.gallery-intro p {
font-size: 1.05rem;
color: var(--text-primary);
margin-bottom: 2.5rem;
}

.gallery-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.stat-item {
padding: 2rem;
background-color: var(--bg-primary);
border: 1px solid var(--border-color);
text-align: center;
}

.stat-item h4 {
font-size: 1.35rem;
margin-bottom: 0.75rem;
color: var(--text-primary);
}

.stat-item p {
color: var(--text-primary);
margin-bottom: 0;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2.5rem;
margin-top: 4rem;
}

.gallery-item {
background-color: var(--bg-primary);
border: 1px solid var(--border-color);
overflow: hidden;
transition: var(--transition-smooth);
}

.gallery-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px var(--shadow-medium);
}

.gallery-image {
width: 100%;
height: 350px;
overflow: hidden;
background-color: var(--bg-accent);
border-bottom: 2px solid var(--border-color);
}

.placeholder-blueprint {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--bg-accent);
position: relative;
}

.placeholder-blueprint::before {
content: ‘’;
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(196, 147, 63, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(196, 147, 63, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
}

.gallery-info {
padding: 2rem;
}

.gallery-tag {
display: inline-block;
padding: 0.4rem 1rem;
background-color: var(--accent-gold);
color: var(--bg-primary);
font-size: 0.85rem;
font-weight: 500;
font-family: var(--font-ui);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}

.gallery-info h4 {
font-size: 1.35rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.gallery-info p {
margin-bottom: 1.5rem;
color: var(--text-primary);
}

.gallery-features {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}

.gallery-features span {
font-size: 0.85rem;
color: var(--text-primary);
padding: 0.4rem 0.8rem;
background-color: var(--bg-accent);
border: 1px solid var(--border-color);
}

/* ===================================
CONSULTATION PROCESS
=================================== */

.consultation-process {
background-color: var(--bg-primary);
}

.process-timeline {
display: flex;
flex-direction: column;
gap: 2rem;
max-width: 800px;
margin: 4rem auto;
position: relative;
}

.process-timeline::before {
content: ‘’;
position: absolute;
left: 30px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, var(--text-primary), var(--accent-gold));
}

.timeline-item {
display: flex;
gap: 2rem;
position: relative;
}

.timeline-marker {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold));
color: var(--bg-primary);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 600;
border-radius: 50%;
flex-shrink: 0;
z-index: 2;
border: 4px solid var(--bg-primary);
}

.timeline-content {
flex: 1;
padding: 1rem 0;
}

.timeline-content h4 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
}

.timeline-content p {
color: var(--text-primary);
margin-bottom: 0.5rem;
}

.timeline-day {
display: inline-block;
font-size: 0.85rem;
color: var(--text-primary);
font-weight: 600;
padding: 0.3rem 0.8rem;
background-color: var(--bg-accent);
border: 1px solid var(--border-color);
margin-top: 0.5rem;
}

.timeline-connector {
display: none;
}

.process-cta {
text-align: center;
margin-top: 4rem;
padding: 3rem;
background-color: var(--bg-accent);
border: 2px solid var(--border-color);
}

.process-cta h3 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.process-cta p {
font-size: 1.1rem;
margin-bottom: 2rem;
color: var(--text-primary);
}

/* ===================================
CONTACT FORM
=================================== */

.contact-section {
background-color: var(--bg-secondary);
}

.consultation-form {
max-width: 900px;
margin: 0 auto;
background-color: var(--bg-primary);
padding: 3rem;
border: 1px solid var(--border-color);
}

.form-section-header {
margin: 2.5rem 0 1.5rem;
padding-top: 2rem;
border-top: 2px solid var(--border-color);
}

.form-section-header h4 {
font-size: 1.35rem;
color: var(--text-primary);
}

.form-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-family: var(--font-ui);
font-size: 0.95rem;
font-weight: 500;
color: var(--text-primary);
margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 1rem;
font-family: var(--font-body);
font-size: 1rem;
color: var(--text-primary);
background-color: var(--bg-accent);
border: 1px solid var(--border-color);
transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--text-primary);
box-shadow: 0 0 0 3px var(--shadow-light);
}

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

.consultation-form button[type=“submit”] {
margin-top: 2rem;
width: 100%;
padding: 1.25rem;
font-size: 1.1rem;
}

/* ===================================
FOOTER
=================================== */

.footer {
background-color: var(--text-primary);
color: var(--bg-primary);
padding: 4rem 0 2rem;
}

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(255, 248, 231, 0.3);
}

.footer-brand {
display: flex;
align-items: center;
gap: 1rem;
}

.footer-logo {
height: 40px;
width: auto;
filter: brightness(0) invert(1);
}

.footer-brand-name {
font-family: var(--font-heading);
font-size: 1.35rem;
font-weight: 600;
color: var(--bg-primary);
}

.footer-info p {
color: rgba(255, 248, 231, 0.9);
margin-bottom: 0.5rem;
text-align: right;
}

.footer-tagline {
font-size: 0.95rem;
font-style: italic;
}

.footer-disclaimer {
background-color: rgba(255, 248, 231, 0.1);
padding: 1.5rem;
margin-bottom: 2rem;
border-left: 3px solid var(--bg-primary);
}

.footer-disclaimer p {
color: rgba(255, 248, 231, 0.95);
font-size: 0.9rem;
line-height: 1.7;
margin-bottom: 0;
}

.footer-credit {
text-align: center;
padding-top: 2rem;
}

.footer-credit p {
color: rgba(255, 248, 231, 0.7);
font-size: 0.9rem;
}

/* ===================================
RESPONSIVE DESIGN
=================================== */

@media (max-width: 1024px) {
.expertise-grid {
grid-template-columns: 1fr;
}

```
.gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}
```

}

@media (max-width: 768px) {
html {
font-size: 14px;
}

```
.logo {
    height: 1.5cm;
    width: 1.5cm;
}

.brand-name {
    font-size: 1.2rem;
}

.nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 248, 231, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    display: none;
    border-bottom: 1px solid var(--border-color);
}

.nav-links.active {
    display: flex;
}

.mobile-menu-toggle {
    display: flex;
}

.swastika-symbol svg {
    width: 80px;
    height: 80px;
}

.hero-content {
    margin-top: 60px;
}

.hero-title {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1rem;
}

.hero-description {
    font-size: 1rem;
}

.hero-actions {
    flex-direction: column;
    width: 100%;
}

.hero-actions a {
    width: 100%;
}

.section-header h2 {
    font-size: 2.25rem;
}

.methodology-step {
    grid-template-columns: 1fr;
    text-align: center;
}

.step-number {
    margin: 0 auto;
}

.step-features {
    grid-template-columns: 1fr;
}

.expertise-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.process-timeline::before {
    display: none;
}

.timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-row {
    grid-template-columns: 1fr;
}

.footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-info p {
    text-align: center;
}

.consultation-form {
    padding: 2rem 1.5rem;
}
```

}

@media (max-width: 480px) {
.container {
padding: 0 1rem;
}

```
section {
    padding: var(--spacing-lg) 0;
}

.hero-title {
    font-size: 2.5rem;
}

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

.gallery-grid {
    gap: 2rem;
}
```

}

/* ===================================
UTILITY CLASSES
=================================== */

.text-center {
text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

/* ===================================
PRINT STYLES
=================================== */

@media print {
.navbar,
.hero-actions,
.contact-section,
.footer {
display: none;
}

```
body {
    background-color: white;
    color: black;
}
```

}

body, section, header, footer {
  text-align: center;
}

button, .btn-primary, .btn-secondary {
  background-color: var(--accent-gold) !important;
  color: var(--bg-primary) !important;
  border-color: var(--accent-gold) !important;
}

@media (max-width: 768px) {
  .nav-links {
    justify-content: center;
    row-gap: 0.75rem;
  }
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.swastika-top {
  width: 48px;
  height: auto;
  margin-bottom: 0.75rem;
}

.logo-top {
  width: 2cm;
  height: 2cm;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* === SACRED HERO STACK (FINAL) === */
.hero-sacred-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sacred-swastika,
.sacred-logo {
  width: 2cm;
  height: 2cm;
  object-fit: contain;
  display: block;
}

.sacred-swastika {
  margin-bottom: 0.75rem;
}


/* === HERO BRANDING STACK === */
.hero-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.swastika-main {
    width: 2cm;
    height: 2cm;
    object-fit: contain;
    margin-bottom: 1rem;
}

.logo-main {
    width: 2cm;
    height: 2cm;
    object-fit: contain;
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
}

/* === FOOTER === */
.site-footer {
    padding: 2rem 1rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 48px;
    height: auto;
}

.footer-text {
    font-family: 'Playfair Display', serif;
    color: #C4933F;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo-main,
    .swastika-main {
        width: 2cm;
        height: 2cm;
    }
}

/* === OPTION B FINAL FIX === */
.hero-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-swastika {
  width: 2cm;
  height: 2cm;
  margin-bottom: 1rem;
}

.hero-logo {
  width: 2.5cm;
  height: 2.5cm;
  margin-bottom: 2rem;
}

.hero .decorative,
.hero .icon,
.hero .side,
.hero .floating {
  display: none !important;
}

.footer-logo {
  width: 2cm;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}


/* Precision updates – NO structural changes */
.hero-branding { margin-bottom: 12px; }
.hero-title, .hero-subtitle { margin-top: 0; }

body {
  background:
    radial-gradient(circle at 20% 25%, rgba(210,160,90,0.14), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(180,120,60,0.12), transparent 55%),
    linear-gradient(180deg, #fff8e7 0%, #fff5dc 100%);
}

.footer-contact {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.6;
}
