/* =====================================================
   CREATIVE CROCKERY RENTAL — MASTER STYLESHEET
   Gold & White Premium Event Design
   ===================================================== */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #a8893a;
  --gold-soft: #f5edcf;
  --white: #ffffff;
  --off-white: #fdfaf4;
  --cream: #f8f3e8;
  --text-dark: #1a1209;
  --text-mid: #4a3f28;
  --text-light: #8a7a60;
  --border: rgba(201, 168, 76, 0.25);
  --shadow-sm: 0 2px 12px rgba(26,18,9,0.06);
  --shadow-md: 0 8px 32px rgba(26,18,9,0.10);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.22);
  --nav-height: 72px;
  --nav-height-scrolled: 58px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.22s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

/* ---- RESET / BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }

/* =====================================================
   KEYFRAME ANIMATIONS
   ===================================================== */
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1%, -0.5%); }
  100% { transform: scale(1) translate(0, 0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5), var(--shadow-gold); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0), var(--shadow-gold); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

/* Scroll-triggered animation classes */
.animate-fade-up  { animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.animate-fade-in  { animation: fadeIn 0.7s ease both; }
.animate-slide-left  { animation: slideLeft 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.animate-slide-right { animation: slideRight 0.7s cubic-bezier(0.4,0,0.2,1) both; }

/* Reveal on scroll — JS will add .revealed */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed { opacity: 1; transform: none; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--white);
  transition: all var(--transition-fast);
}
.btn-white:hover {
  background: var(--gold-soft);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px) scale(1.03);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-full { width: 100%; }
.btn-pulse { animation: pulse 4s ease-in-out infinite; }

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,18,9,0.10);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: height var(--transition);
}
.site-header.scrolled .nav-container { height: var(--nav-height-scrolled); }
/* Logo image styles */
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
  transition: opacity 0.2s ease;
}
.nav-logo-img:hover { opacity: 0.85; }

.site-header.scrolled .nav-logo-img {
  height: 48px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 1rem;
  position: relative;
  transition: color var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition), left var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 70%; left: 15%; }
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-cta { margin-left: 1rem; }

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(26,18,9,0.10);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu ul { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold-dark); }
.mobile-cta { margin-top: 0.75rem; text-align: center; }

/* =====================================================
   TYPOGRAPHY HELPERS
   ===================================================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background-image:
    url('https://c.animaapp.com/mne79mzoscJtBT/img/uploaded-asset-1774940570582-0.jpeg');
  background-size: cover;
  background-position: center top;
  animation: kenBurns 20s ease-in-out infinite;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(20,14,4,0.80) 0%,
    rgba(30,20,5,0.65) 50%,
    rgba(180,140,40,0.22) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 3rem 2rem;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px; height: 1px;
  background: var(--gold-light);
  opacity: 0.7;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: scrollHint 2s ease-in-out infinite;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 700px;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* =====================================================
   ABOUT (HOME)
   ===================================================== */
.section-about-home,
.section-about-detail {
  padding: 6rem 0;
  background: var(--white);
}
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-home-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-home-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 2px;
  background: var(--cream);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.about-home-image:hover img { transform: scale(1.03); }
.about-home-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow-gold);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  opacity: 0.9;
}
.about-home-text .section-label { justify-content: flex-start; }
.check-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.check-icon { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.section-services {
  padding: 6rem 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-light);
}
.service-card-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.service-card:hover .service-card-icon { transform: scale(1.15); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.section-cta { text-align: center; margin-top: 3rem; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.section-why {
  padding: 6rem 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-5deg); }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* =====================================================
   GALLERY PREVIEW (HOME)
   ===================================================== */
.section-gallery-preview {
  padding: 6rem 0;
  background: var(--cream);
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  display: block;
}
.gallery-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-preview-item:hover img { transform: scale(1.08); }
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,14,4,0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-preview-item:hover .gallery-preview-overlay { opacity: 1; }
.gallery-preview-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.section-testimonials {
  padding: 6rem 0;
  background: var(--text-dark);
}
.section-testimonials .section-label { color: var(--gold-light); }
.section-testimonials .section-heading { color: var(--white); }
.section-testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-slider-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 2.5rem;
}
.testimonial-slide.active { display: block; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.author-event { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.testimonial-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.testimonial-dots { display: flex; gap: 8px; align-items: center; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.35);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.35); }

/* =====================================================
   CTA BANNER
   ===================================================== */
.section-cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--gold);
}
.cta-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, var(--gold), var(--gold-light), var(--gold-dark), var(--gold));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  opacity: 0.6;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(26,14,2,0.18);
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================================================
   ABOUT PAGE — COUNTERS
   ===================================================== */
.section-counters {
  padding: 5rem 0;
  background: var(--text-dark);
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.counter-item { text-align: center; }
.counter-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.counter-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0.75rem auto;
  opacity: 0.5;
}
.counter-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* =====================================================
   ABOUT VALUES
   ===================================================== */
.section-values { padding: 6rem 0; background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* =====================================================
   SERVICES PAGE — DETAIL BLOCKS
   ===================================================== */
.section-service-blocks { padding: 5rem 0; background: var(--white); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block-reverse { direction: rtl; }
.service-block-reverse > * { direction: ltr; }
.service-block-image {
  border-radius: 4px;
  overflow: hidden;
}
.service-block-image img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  transition: transform 0.6s ease;
  background: var(--cream);
}
.service-block:hover .service-block-image img { transform: scale(1.04); }
.service-block-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-block-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.service-block-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.35em;
}

/* =====================================================
   GALLERY PAGE
   ===================================================== */
.section-gallery-full { padding: 5rem 0 6rem; background: var(--white); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  background: var(--cream);
}
.gallery-item.hidden-item { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(180,140,40,0.72) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  opacity: 0.9;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,7,2,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 88vw;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-caption {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 1rem;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.section-contact { padding: 5rem 0 6rem; background: var(--white); }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.contact-info-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.contact-info-card address,
.contact-info-card a,
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-info-card a:hover { color: var(--gold-dark); }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}
.form-error.visible { display: block; }
.form-success {
  background: #f0faf0;
  border: 1.5px solid #27ae60;
  color: #1e8449;
  border-radius: 3px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Map */
.contact-map-wrap {}
.map-container {
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.8s ease 0.3s both;
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-address-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.map-address-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }
.map-address-card a { color: var(--gold-dark); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding: 5rem 0 0; }
.footer-top-line { height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 3rem 0 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.footer-logo .logo-icon { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; max-width: 300px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px) scale(1.1); }
.footer-col-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.footer-links-col ul, .footer-contact-col address { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a, .footer-contact-col a, .footer-contact-col p {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
  line-height: 1.6;
}
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); }

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 5.5rem; right: 1.5rem;
  z-index: 200;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  animation: pulse 4s ease-in-out infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.float-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  animation-play-state: paused;
}
.float-call {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  background: var(--gold);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.15), var(--shadow-gold);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 200;
  background: var(--white);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition-fast);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

/* =====================================================
   VIDEOS PAGE
   ===================================================== */
.section-videos {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.video-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: var(--text-dark);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-card-body {
  padding: 1.5rem;
}
.video-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.video-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-home-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-home-badge { right: 1rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .service-block-reverse { direction: ltr; }
  .service-block-image img { max-height: 260px; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .float-whatsapp span { display: none; }
  .float-whatsapp { padding: 0.9rem; border-radius: 50%; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .cta-actions { flex-direction: column; gap: 0.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
