/* ============================================
   OCHRE HOUSE – LUXURY HERITAGE INTERIORS
   Style System: style.css
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Lato:wght@300;400;700;900&family=Tiro+Devanagari+Hindi&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Color Palette */
  --terracotta:    #C85B2A;
  --terracotta-light: #D97040;
  --terracotta-dark:  #A8491F;
  --parchment:     #FDF6EC;
  --dark-brown:    #3B2314;
  --dark-brown-90: rgba(59,35,20,0.90);
  --marigold:      #D4A017;
  --marigold-light:#E8B520;
  --warm-beige:    #E8D9C4;
  --white:         #FFFFFF;
  --off-white:     #FAF7F2;
  --text-dark:     #2A1A0E;
  --text-mid:      #6B4C35;
  --text-light:    #A88870;
  --overlay-dark:  rgba(30,15,5,0.60);
  --overlay-deeper:rgba(30,15,5,0.75);

  /* Typography */
  --font-heading:  'Yeseva One', Georgia, serif;
  --font-body:     'Lato', sans-serif;
  --font-hindi:    'Tiro Devanagari Hindi', serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-xxl:  6rem;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(59,35,20,0.08);
  --shadow-md:  0 8px 32px rgba(59,35,20,0.12);
  --shadow-lg:  0 20px 60px rgba(59,35,20,0.18);
  --shadow-xl:  0 32px 80px rgba(59,35,20,0.24);

  /* Transitions */
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast:  0.2s var(--ease-luxury);
  --trans-mid:   0.4s var(--ease-luxury);
  --trans-slow:  0.7s var(--ease-luxury);

  /* Layout */
  --container:   1280px;
  --gap-grid:    1.5rem;
  --header-h:    72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--parchment);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section-pad {
  padding-block: var(--space-xl);
}

.section-pad-sm {
  padding-block: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-grid);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-grid);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   ARCH SHAPES – MUGHAL / RAJASTHANI DOORWAY
   ============================================ */

/* Basic arch clip – 50% top circle + rect bottom */
.arch {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

/* Full Mughal arch – pointed top */
.arch-mughal {
  position: relative;
  overflow: hidden;
  clip-path: polygon(
    50% 0%,
    100% 18%,
    100% 100%,
    0% 100%,
    0% 18%
  );
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
}

/* Rounded arch for cards */
.arch-card {
  position: relative;
  overflow: hidden;
  border-radius: 200px 200px 16px 16px;
}

/* Narrow tall arch for portraits / testimonials */
.arch-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 120px 120px 12px 12px;
  aspect-ratio: 3 / 4;
}

/* Wide arch for service cards */
.arch-service {
  position: relative;
  overflow: hidden;
  border-radius: 160px 160px 0 0;
  aspect-ratio: 4 / 5;
}

/* Gallery arch */
.arch-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 100% 100% 0 0 / 40% 40% 0 0;
  aspect-ratio: 1 / 1;
}

.arch img,
.arch-mughal img,
.arch-card img,
.arch-portrait img,
.arch-service img,
.arch-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.arch:hover img,
.arch-card:hover img,
.arch-service:hover img,
.arch-gallery:hover img,
.arch-portrait:hover img {
  transform: scale(1.07);
}

/* Arch frame decorative border */
.arch-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 3px rgba(212,160,23,0.25);
  pointer-events: none;
  z-index: 2;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.h-display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.3;
}

.h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-mid);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
}

.caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--terracotta);
}

.hindi-accent {
  font-family: var(--font-hindi);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--marigold);
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .caption {
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.section-header .h2 {
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.section-header p {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Decorative divider line */
.divider-ornate {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-block: var(--space-md);
}

.divider-ornate::before,
.divider-ornate::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--marigold));
}

.divider-ornate::after {
  background: linear-gradient(90deg, var(--marigold), transparent);
}

.divider-ornate span {
  color: var(--marigold);
  font-size: 1.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--trans-mid);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,91,42,0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 8px 30px rgba(200,91,42,0.45);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--marigold);
  color: var(--dark-brown);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}

.btn-gold:hover {
  background: var(--marigold-light);
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark-brown);
  border: 1.5px solid var(--dark-brown);
}

.btn-outline-dark:hover {
  background: var(--dark-brown);
  color: var(--parchment);
}

/* Arrow button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap var(--trans-fast);
}

.btn-arrow .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-mid);
}

.btn-arrow:hover {
  gap: 0.75rem;
}

.btn-arrow:hover .arrow {
  background: var(--terracotta-dark);
  transform: rotate(-45deg);
}

/* ============================================
   JALI PATTERN (SVG Background)
   ============================================ */
.jali-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23C85B2A' stroke-width='0.6' opacity='0.25'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.jali-bg-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A017' stroke-width='0.5' opacity='0.15'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* Block print pattern */
.blockprint-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23C85B2A' stroke-width='0.5' opacity='0.12'%3E%3Crect x='10' y='10' width='60' height='60' rx='4'/%3E%3Crect x='20' y='20' width='40' height='40' rx='2'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Cline x1='40' y1='10' x2='40' y2='30'/%3E%3Cline x1='40' y1='50' x2='40' y2='70'/%3E%3Cline x1='10' y1='40' x2='30' y2='40'/%3E%3Cline x1='50' y1='40' x2='70' y2='40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

/* Mandala outline */
.mandala-bg {
  position: relative;
}

.mandala-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23D4A017' stroke-width='0.8' opacity='0.07'%3E%3Ccircle cx='150' cy='150' r='140'/%3E%3Ccircle cx='150' cy='150' r='110'/%3E%3Ccircle cx='150' cy='150' r='80'/%3E%3Ccircle cx='150' cy='150' r='50'/%3E%3Ccircle cx='150' cy='150' r='20'/%3E%3Cline x1='150' y1='10' x2='150' y2='290'/%3E%3Cline x1='10' y1='150' x2='290' y2='150'/%3E%3Cline x1='51' y1='51' x2='249' y2='249'/%3E%3Cline x1='249' y1='51' x2='51' y2='249'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px 400px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans-mid), box-shadow var(--trans-mid);
}

.site-header.scrolled {
  background: var(--parchment);
  box-shadow: 0 2px 24px rgba(59,35,20,0.10);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans-mid);
}

.site-header.scrolled .logo-mark {
  box-shadow: 0 4px 12px rgba(200,91,42,0.3);
}

.logo-mark span {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--trans-mid);
  letter-spacing: 0.02em;
}

.site-header.scrolled .logo-name {
  color: var(--dark-brown);
}

.logo-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  transition: color var(--trans-mid);
}

.site-header.scrolled .logo-tag {
  color: var(--text-light);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--trans-fast);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--marigold);
  transition: width var(--trans-mid);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.site-header.scrolled .nav-desktop a {
  color: var(--dark-brown);
}

.nav-desktop .btn-primary {
  padding: 0.6rem 1.5rem;
  font-size: 0.8125rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-mid);
  transform-origin: center;
}

.site-header.scrolled .nav-toggle span {
  background: var(--dark-brown);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile fullscreen nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--dark-brown);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-luxury);
  padding: var(--space-xl);
}

.nav-mobile.open {
  transform: translateX(0);
}

/* Jali pattern on mobile nav */
.nav-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A017' stroke-width='0.5' opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.nav-mobile-links a {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--parchment);
  letter-spacing: 0.03em;
  transition: color var(--trans-fast);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}

.nav-mobile.open .nav-mobile-links a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open .nav-mobile-links a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.open .nav-mobile-links a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.open .nav-mobile-links a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.open .nav-mobile-links a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.open .nav-mobile-links a:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile.open .nav-mobile-links a:nth-child(6) { transition-delay: 0.35s; }

.nav-mobile-links a:hover {
  color: var(--marigold);
}

.nav-mobile-footer {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  text-align: center;
}

.nav-mobile-footer p {
  color: rgba(253,246,236,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s var(--ease-luxury) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deeper);
  z-index: 1;
}

/* Jali overlay on hero */
.hero-jali {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.15'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  z-index: 2;
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-inline: 1.25rem;
  padding-top: var(--header-h);
}

.hero-inner {
  max-width: 800px;
}

.hero-caption {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--marigold);
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.hero-title span {
  color: var(--marigold);
}

.hero-hindi {
  font-family: var(--font-hindi);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(253,246,236,0.7);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: rgba(253,246,236,0.8);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--marigold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   ABOUT SECTION (Home page teaser)
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.about-image-badge .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.about-content .caption {
  display: block;
  margin-bottom: var(--space-xs);
}

.about-content .h2 {
  color: var(--dark-brown);
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block: var(--space-md);
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-highlight-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(200,91,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--terracotta);
}

.about-highlight-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--dark-brown);
  margin-bottom: 0.2rem;
}

.about-highlight-item p {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  border-radius: 160px 160px 0 0;
  overflow: hidden;
  height: 260px;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.service-card:hover .service-card-image img {
  transform: scale(1.07);
}

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(59,35,20,0.4) 100%);
  transition: opacity var(--trans-mid);
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,91,42,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: background var(--trans-fast);
}

.service-card:hover .service-card-icon {
  background: var(--terracotta);
}

.service-card:hover .service-card-icon svg {
  filter: brightness(10);
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap var(--trans-fast);
}

.service-card:hover .service-card-arrow {
  gap: 0.65rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--dark-brown);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A017' stroke-width='0.5' opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(253,246,236,0.05);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: background var(--trans-mid), transform var(--trans-mid);
}

.why-card:hover {
  background: rgba(253,246,236,0.08);
  transform: translateY(-4px);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,91,42,0.2);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background var(--trans-mid);
}

.why-card:hover .why-card-icon {
  background: var(--terracotta);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(253,246,236,0.6);
  line-height: 1.65;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--warm-beige);
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 100px 100px 8px 8px;
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,35,20,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--trans-mid);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-tag {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--marigold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.portfolio-overlay h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.portfolio-overlay-city {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
}

.portfolio-overlay-view {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--dark-brown);
  transform: scale(0);
  transition: transform var(--trans-mid);
}

.portfolio-item:hover .portfolio-overlay-view {
  transform: scale(1);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--warm-beige);
  position: relative;
  overflow: hidden;
}

.rajasthan-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--marigold), var(--terracotta));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-brown);
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-section {
  background: var(--parchment);
  overflow: hidden;
}

.process-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-inline: 1.25rem;
  margin-inline: -1.25rem;
}

.process-scroll::-webkit-scrollbar {
  display: none;
}

.process-step {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 40px);
  width: calc(100% - 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta), transparent);
}

.process-circle {
  width: 80px;
  height: 80px;
  background: var(--terracotta);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1.25rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(200,91,42,0.3);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--marigold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.process-icon {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(340px, 85vw);
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--marigold);
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--warm-beige);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-brown);
  line-height: 1.2;
}

.testimonial-city {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Testimonial dots */
.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-beige);
  border: none;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--terracotta);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.team-avatar-wrap {
  border-radius: 120px 120px 12px 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.25rem;
  position: relative;
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.team-card:hover .team-avatar-wrap img {
  transform: scale(1.06);
}

.team-avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,35,20,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity var(--trans-mid);
  border-radius: inherit;
}

.team-card:hover .team-avatar-overlay {
  opacity: 1;
}

.team-social {
  width: 36px;
  height: 36px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-brown);
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform var(--trans-fast);
}

.team-social:hover {
  transform: scale(1.1);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--dark-brown);
  margin-bottom: 0.2rem;
}

.team-card .role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  font-weight: 700;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark-brown);
  padding-block: var(--space-xxl);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta-banner-content .caption {
  color: var(--marigold);
  margin-bottom: var(--space-sm);
  display: block;
}

.cta-banner-content .h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner-content p {
  color: rgba(253,246,236,0.7);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-brown);
  color: var(--parchment);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A017' stroke-width='0.5' opacity='0.07'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.footer-top-border {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--terracotta), var(--marigold), var(--terracotta), transparent);
  margin-bottom: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--parchment);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-brand .logo-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,246,236,0.45);
  font-weight: 700;
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(253,246,236,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,246,236,0.6);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.footer-social-link:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--parchment);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--marigold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(253,246,236,0.55);
  transition: color var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '→';
  color: var(--terracotta);
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: var(--marigold);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--terracotta);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(253,246,236,0.55);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--marigold);
}

.footer-bottom {
  border-top: 1px solid rgba(253,246,236,0.08);
  margin-top: var(--space-lg);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(253,246,236,0.35);
  letter-spacing: 0.05em;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,160,23,0.5);
  text-decoration: none;
  color: var(--dark-brown);
  font-size: 1.6rem;
  animation: pulseBubble 2.5s ease-in-out infinite;
  transition: transform var(--trans-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes pulseBubble {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,160,23,0.5); }
  50% { box-shadow: 0 4px 20px rgba(212,160,23,0.5), 0 0 0 12px rgba(212,160,23,0.15); }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 0.75rem 1.25rem;
  background: var(--dark-brown);
  display: flex;
  gap: 0.75rem;
  box-shadow: 0 -4px 24px rgba(59,35,20,0.3);
}

.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.8125rem;
  padding: 0.75rem 1rem;
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deeper);
}

.page-hero-jali {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='0' y1='0' x2='60' y2='60'/%3E%3Cline x1='60' y1='0' x2='0' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.12;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: 1.25rem;
  max-width: var(--container);
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--marigold);
}

.breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-hero-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  max-width: 600px;
}

/* ============================================
   CARDS / GENERIC
   ============================================ */
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--terracotta);
}

.feature-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15,8,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-mid);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  border: none;
  transition: background var(--trans-fast);
}

.lightbox-close:hover {
  background: var(--terracotta);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--warm-beige);
  border-radius: 12px;
  background: var(--parchment);
  color: var(--text-dark);
  font-size: 0.9375rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200,91,42,0.1);
  background: var(--white);
}

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

.contact-info-card {
  background: var(--dark-brown);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23D4A017' stroke-width='0.5' opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='12'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--parchment);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.contact-info-card > p {
  color: rgba(253,246,236,0.55);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,91,42,0.25);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--marigold);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--marigold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.9rem;
  color: rgba(253,246,236,0.7);
  line-height: 1.5;
}

.contact-detail-text a:hover {
  color: var(--marigold);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terracotta), var(--marigold));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  border: 3px solid var(--parchment);
  box-shadow: 0 0 0 2px var(--terracotta);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Awards section */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.award-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.award-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,160,23,0.15);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.award-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--dark-brown);
  margin-bottom: 0.15rem;
}

.award-item p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
   SERVICE INNER PAGE
   ============================================ */
.service-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.service-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--terracotta);
}

.benefit-item .num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1;
  min-width: 36px;
}

.benefit-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-brown);
  gap: 1rem;
  transition: color var(--trans-fast);
  border: none;
  width: 100%;
  text-align: left;
  background: none;
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(200,91,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans-mid);
  font-size: 1rem;
  color: var(--terracotta);
}

.faq-item.open .faq-icon {
  background: var(--terracotta);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury), padding 0.3s;
  padding-inline: 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */
.project-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-block: var(--space-md);
}

.project-info-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--terracotta);
}

.project-info-item .label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.project-info-item .value {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-brown);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.material-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.material-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.material-item span {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 700;
}

/* Service page gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 80px 80px 8px 8px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,35,20,0.5);
  opacity: 0;
  transition: opacity var(--trans-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  width: 44px;
  height: 44px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--dark-brown);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-terracotta { color: var(--terracotta); }
.text-marigold   { color: var(--marigold); }
.text-dark-brown { color: var(--dark-brown); }
.text-parchment  { color: var(--parchment); }

.bg-parchment  { background-color: var(--parchment); }
.bg-warm-beige { background-color: var(--warm-beige); }
.bg-dark-brown { background-color: var(--dark-brown); }
.bg-white      { background-color: var(--white); }
.bg-off-white  { background-color: var(--off-white); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-parchment { background-color: var(--parchment); }
.section-beige     { background-color: var(--warm-beige); }
.section-off-white { background-color: var(--off-white); }
.section-dark      { background-color: var(--dark-brown); }
.section-white     { background-color: var(--white); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--trans-mid);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--terracotta-dark);
}
