/* ============================================================
   UTKARSH HALL — Global Stylesheet
   Design System: Espresso Brown + Gold + Cream
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Noto+Serif+Devanagari:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --brown:       #3B2A21;
  --brown-dark:  #261A12;
  --brown-mid:   #4e3828;
  --gold:        #C79A3D;
  --gold-light:  #e2b96a;
  --gold-pale:   #f0d89c;
  --cream:       #F5F0E8;
  --cream-dark:  #ede5d5;
  --white:       #FFFFFF;
  --text-dark:   #1A1008;
  --text-mid:    #4A3728;
  --text-light:  #8B6F5E;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --font-dev:     'Noto Serif Devanagari', serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(59,42,33,0.10);
  --shadow-md:  0 6px 24px rgba(59,42,33,0.14);
  --shadow-lg:  0 16px 48px rgba(59,42,33,0.18);
  --shadow-gold: 0 4px 20px rgba(199,154,61,0.25);

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }

.text-gold   { color: var(--gold); }
.text-brown  { color: var(--brown); }
.text-cream  { color: var(--cream); }
.text-center { text-align: center; }
.bg-brown    { background-color: var(--brown); }
.bg-cream    { background-color: var(--cream); }
.bg-dark     { background-color: var(--brown-dark); }

/* ---------- Section Label ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---------- Ornamental Divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 1.75rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #a87c28);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199,154,61,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-call {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-call:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: var(--brown-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
#navbar.scrolled .nav-logo img { width: 44px; height: 44px; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav-logo-tag {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(199,154,61,0.12);
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brown-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 42vh;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(199,154,61,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(199,154,61,0.06) 0%, transparent 40%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 0 3rem;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-content p  { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.card-body { padding: 1.75rem; }

/* ---------- GRID HELPERS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---------- STAT BAR ---------- */
.stats-bar {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { 
  padding: 1rem; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FEF6F0; /* Soft peach/cream */
  color: #D48C6B; /* Warm copper/orange */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.stat-number {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 800;
  color: #2D2D2D;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #665D58; /* Warm gray */
}

/* ---------- SECTION HEADER ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- SERVICE CARD ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(199,154,61,0.15);
  box-shadow: 0 4px 15px rgba(59,42,33,0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(59,42,33,0.1);
  transform: translateY(-8px);
}
.service-card:hover .service-icon { 
  background: var(--gold); 
  color: var(--white); 
  transform: scale(1.1);
}
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(199,154,61,0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--brown-dark);
}
.service-card p { 
  font-size: 0.92rem; 
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ---------- FACILITY CARD ---------- */
.facility-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.facility-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.facility-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), #a87c28);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.facility-info h4 { color: var(--brown); margin-bottom: 0.25rem; }
.facility-info p  { font-size: 0.87rem; }

/* ---------- TESTIMONIAL CARD ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}
.star { color: #F5A623; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--brown); }
.author-event { font-size: 0.78rem; color: var(--text-light); }

/* ---------- HOW WE WORK ---------- */
.hww-wrapper {
  position: relative;
  margin-top: 3rem;
  padding-bottom: 2rem;
}
.hww-line {
  position: absolute;
  top: 45px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #E3A87C;
  z-index: 0;
  opacity: 0.5;
}
.hww-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.hww-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hww-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.hww-icon-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem auto;
}
.hww-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #E3A87C;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(227, 168, 124, 0.4);
}
.hww-step {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C48E67;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.hww-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 1rem;
}
.hww-card p {
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .hww-grid { grid-template-columns: repeat(3, 1fr); }
  .hww-line { display: none; }
}
@media (max-width: 768px) {
  .hww-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .hww-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 60%, #5c3d28 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(199,154,61,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(199,154,61,0.08) 0%, transparent 45%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown-dark);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(199,154,61,0.2);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.footer-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text .tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(199,154,61,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); }

/* ---------- FLOATING BUTTONS ---------- */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.02); }
.float-call { background: var(--brown); }
.float-call:hover { background: var(--brown-mid); }
.float-wa   { background: #25D366; }
.float-wa:hover { background: #1ebe5a; }
.float-btn i { font-size: 1.1rem; }

/* ---------- GALLERY ---------- */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  border: 2px solid var(--cream-dark);
  background: transparent;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.gallery-grid {
  position: relative;
  width: 100%;
  min-height: 400px;
  /* Grid properties removed; handled by GSAP Masonry */
}
.gallery-item {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  /* Removed static aspect-ratio; height will be dynamic */
  will-change: transform, width, height, opacity, filter;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,26,18,0.95) 0%, rgba(38,26,18,0.4) 40%, transparent 100%);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .color-overlay {
  position: absolute;
  inset: 0;
  background: rgba(199,154,61,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  mix-blend-mode: overlay;
}
.gallery-item:hover .color-overlay { opacity: 1; }
.gallery-overlay span { 
  color: var(--white); 
  font-family: var(--font-heading);
  font-size: 1.5rem; 
  font-weight: 600; 
  letter-spacing: 0.02em;
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
  opacity: 1;
}

/* Gallery Preview Grid */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}
.gallery-preview .gallery-item {
  position: relative; /* override absolute */
  height: 100%;
  width: 100%;
}
.gallery-preview .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-preview .gallery-item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-preview .gallery-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-preview .gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 900px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-preview .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-preview .gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
  .gallery-preview .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 600px) {
  .gallery-preview {
    display: flex;
    flex-direction: column;
  }
  .gallery-preview .gallery-item {
    height: 250px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

@media (max-width: 600px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-nav.prev { left: 1rem; }
  .lightbox-nav.next { right: 1rem; }
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), #a87c28);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--brown); font-size: 1rem; margin-bottom: 0.3rem; }
.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-info-card a:hover { color: var(--gold); }

/* Form */
.inquiry-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.form-subtitle { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(199,154,61,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  padding: 1rem;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  color: #2e7d32;
  font-size: 0.88rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}
.map-wrapper iframe { display: block; width: 100%; height: 380px; border: none; }

/* ---------- PRICING CARDS ---------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a87c28);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.pricing-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.pricing-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(199,154,61,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- ABOUT SECTION ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-block { position: relative; }
.about-image-block img {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  max-height: 520px;
}
.about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--gold), #a87c28);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-image-badge .big { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-image-badge .small { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.about-text h2 { margin-bottom: 0.5rem; }
.about-text p { margin-bottom: 1.25rem; font-size: 0.95rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}
.highlight-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(199,154,61,0.12);
  color: var(--gold);
  border: 1px solid rgba(199,154,61,0.35);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ---------- RESPONSIVE STYLES MOVED TO mobile.css ---------- */
