/* ==========================================================================
   Beautiful Planet - Main Stylesheet
   ========================================================================== */

/* Google Fonts: Cairo + Tajawal */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
  /* Colors */
  --color-gold: #C9A961;
  --color-gold-dark: #A8893E;
  --color-gold-light: #E5D4A1;
  --color-gold-soft: #F5EDD8;

  --color-black: #1A1A1A;
  --color-black-soft: #2D2D2D;

  --color-white: #FFFFFF;
  --color-bg: #FAFAF7;
  --color-bg-alt: #F5F2EC;

  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-text-light: #9B9B9B;

  --color-border: #E8E5DD;
  --color-border-light: #F0EDE6;

  /* Typography */
  --font-primary: 'Cairo', system-ui, sans-serif;
  --font-secondary: 'Tajawal', system-ui, sans-serif;

  /* Spacing & Layout */
  --container-max: 1280px;
  --header-height: 92px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 12px 32px rgba(26, 26, 26, 0.12);
  --shadow-gold: 0 8px 24px rgba(201, 169, 97, 0.25);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.text-gold { color: var(--color-gold); }
.text-gold-dark { color: var(--color-gold-dark); }
.text-black { color: var(--color-black); }
.text-muted { color: var(--color-text-muted); }

/* ==========================================================================
   Layout: Container
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ==========================================================================
   Section Spacing
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2.5rem;
}

.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.section-title .eyebrow::before { right: 0; }
.section-title .eyebrow::after { left: 0; }

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 169, 97, 0.35);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-black-soft);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-black);
}

.btn-ghost:hover {
  color: var(--color-gold-dark);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-secondary);
  transition: opacity var(--transition);
}

.site-logo:hover { opacity: 0.85; }

.site-logo-mark {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.site-logo:hover .site-logo-mark {
  transform: scale(1.04);
}

.site-logo-mark img {
  width: 100%;
  height: auto;
}

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

.site-logo-text .name {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -0.5px;
}

.site-logo-text .tagline {
  font-size: 0.78rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 500px) {
  .site-logo-mark { width: 60px; height: 60px; }
  .site-logo-text .name { font-size: 1rem; }
  .site-logo-text .tagline { font-size: 0.7rem; }
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-cta-mobile { display: none; }

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-black);
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--color-gold-dark);
}

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

/* Dropdown menu */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.has-dropdown:hover > a > .dropdown-arrow,
.has-dropdown.open > a > .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%) translateY(8px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 0.625rem;
  min-width: 240px;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
  border: 1px solid var(--color-border-light);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s, transform 0.25s ease;
  z-index: 110;
  margin: 0;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 50%;
  transform: translateX(50%);
  width: 16px;
  height: 8px;
  background: var(--color-white);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 -2px 2px rgba(26, 26, 26, 0.05));
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(2px);
  transition: opacity 0.25s ease, visibility 0s, transform 0.25s ease;
}

.dropdown li {
  margin: 0;
  border: none;
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.7rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-black);
  text-align: right;
  transition: all var(--transition);
}

.dropdown li a::after { display: none; }

.dropdown li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition);
}

.dropdown li a:hover {
  background: var(--color-gold-soft);
  color: var(--color-gold-dark);
  padding-right: 1.25rem;
}

.dropdown li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.dropdown li.divider {
  height: 1px;
  background: var(--color-border-light);
  margin: 0.375rem 0.5rem;
  list-style: none;
}

@media (max-width: 1024px) {
  /* Mobile: dropdown becomes inline expandable */
  .dropdown {
    position: static;
    transform: none;
    background: rgba(201, 169, 97, 0.06);
    box-shadow: none;
    border: none;
    border-radius: var(--radius-md);
    padding: 0 0.75rem;
    margin-top: 0;
    width: auto;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.35s ease, padding 0.35s ease, margin 0.35s ease;
  }

  .dropdown::before { display: none; }

  .has-dropdown.open .dropdown {
    max-height: 400px;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .dropdown li a {
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem;
  }

  .dropdown li a:hover { padding-right: 0.75rem; }

  /* Tighten the trailing dotted underline on mobile inline links */
  .has-dropdown > a {
    justify-content: space-between;
    width: 100%;
  }
}

.nav-cta-desktop {
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  margin-inline-start: auto;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 1024px) {
  .mobile-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 1.5rem; width: 100%; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-white);
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0.3s;
    overflow-y: auto;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--transition), transform var(--transition), visibility 0s;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   Page Hero (smaller hero for inner pages) — dark architectural background
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(
      135deg,
      rgba(15, 15, 15, 0.82) 0%,
      rgba(26, 26, 26, 0.70) 50%,
      rgba(26, 26, 26, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1762337009787-bad651efb880?w=1920&auto=format&fit=crop&q=85') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

@media (max-width: 900px) {
  .page-hero { background-attachment: scroll; }
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.16) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .breadcrumb a:hover {
  color: var(--color-gold);
}

.page-hero .breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero h1 .gold-line {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-gold);
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(201, 169, 97, 0.5);
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Contact Cards
   ========================================================================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}

.contact-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(1);
  transition: transform var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.contact-card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.30);
  transition: all var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--color-gold-dark);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(168, 137, 62, 0.40);
}

.contact-card-icon svg {
  width: 30px;
  height: 30px;
}

.contact-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: block;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--color-gold-dark);
}

.contact-card .label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Form + Map Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.form-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-card .form-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .form-card { padding: 1.75rem 1.25rem; }
}

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

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

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.form-label .required {
  color: var(--color-gold-dark);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-black);
  transition: all var(--transition);
  font-family: var(--font-primary);
}

.form-control::placeholder {
  color: var(--color-text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-actions {
  margin-top: 1.5rem;
}

.form-actions .btn {
  width: 100%;
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

/* Shimmer button — animated gold gradient.
   Apply to any .btn that should have the moving-gold effect. */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--color-white);
  background: linear-gradient(
    90deg,
    #A8893E 0%,
    #C9A961 20%,
    #E5D4A1 40%,
    #F5EDD8 50%,
    #E5D4A1 60%,
    #C9A961 80%,
    #A8893E 100%
  ) !important;
  background-size: 220% 100% !important;
  animation: gold-flow 4s linear infinite;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
  border: none;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: gold-shine 3.5s ease-in-out infinite;
  z-index: -1;
}

.btn-shimmer:hover {
  animation-duration: 1.8s;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 169, 97, 0.45);
  color: var(--color-white);
}

.btn-shimmer:disabled {
  animation-play-state: paused;
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@keyframes gold-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes gold-shine {
  0% { right: -100%; }
  60%, 100% { right: 200%; }
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.form-feedback.error {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* Map */
.map-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

.map-info {
  padding: 1.75rem;
  border-bottom: 1px solid var(--color-border-light);
}

.map-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-info h3 svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold-dark);
}

.map-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.map-info .map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold-dark);
}

.map-info .map-link:hover {
  color: var(--color-gold);
  gap: 0.6rem;
}

.map-info .map-link svg {
  width: 16px;
  height: 16px;
}

.map-frame {
  flex: 1;
  min-height: 320px;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.2);
}

/* ==========================================================================
   CTA Strip (Phone / WhatsApp)
   ========================================================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-soft) 100%);
  color: var(--color-white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
}

.cta-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip h3 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.cta-strip-actions .btn {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .cta-strip-actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
}

/* Outline button inside dark CTA strip becomes light */
.cta-strip .btn-outline {
  color: var(--color-white);
  border-color: var(--color-gold);
}

.cta-strip .btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

@media (max-width: 700px) {
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-brand .footer-logo-mark {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5EDD8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.30);
  border: 2px solid var(--color-gold);
}

.footer-brand .footer-logo-mark img {
  width: 88%;
  height: auto;
}

.footer-brand .footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-brand .footer-logo-text .name {
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.footer-brand .footer-logo-text .tagline {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '←';
  color: var(--color-gold);
  opacity: 0;
  transition: all var(--transition);
  margin-right: -0.5rem;
}

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

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 0;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .heart {
  color: var(--color-gold);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Services Page
   ========================================================================== */

/* Quick overview cards (4 categories) */
.services-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}

.overview-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.overview-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 169, 97, 0.04) 100%);
  z-index: 0;
  pointer-events: none;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.overview-card-icon {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 24px rgba(201, 169, 97, 0.30);
  transition: all var(--transition);
}

.overview-card-icon svg {
  width: 36px;
  height: 36px;
}

.overview-card:hover .overview-card-icon {
  background: var(--color-gold-dark);
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 32px rgba(168, 137, 62, 0.45);
}

.overview-card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-secondary);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--color-gold-soft);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.overview-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

.overview-card p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.overview-card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  transition: gap var(--transition);
}

.overview-card-link:hover {
  gap: 0.7rem;
  color: var(--color-gold);
}

.overview-card-link svg {
  width: 16px;
  height: 16px;
}

/* Service Category Section */
.service-category {
  padding: 5rem 0;
  position: relative;
  scroll-margin-top: 100px;
}

.service-category.alt-bg {
  background: var(--color-bg-alt);
}

.category-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  max-width: 900px;
}

@media (max-width: 700px) {
  .category-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }
}

.category-icon {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .category-icon { margin: 0 auto; }
}

.category-icon svg {
  width: 44px;
  height: 44px;
}

.category-icon-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: var(--color-gold);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-bg);
}

.alt-bg .category-icon-number {
  border-color: var(--color-bg-alt);
}

.category-text .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.category-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

.category-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 700px;
}

/* "Read more" CTA at end of category section */
.section-more {
  margin-top: 3rem;
  text-align: center;
}

/* Service items grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.alt-bg .service-item {
  border-color: var(--color-border);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-light);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-gold-soft);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.service-item:hover .service-item-icon {
  background: var(--color-gold);
  color: var(--color-white);
  transform: rotate(-8deg);
}

.service-item-icon svg {
  width: 22px;
  height: 22px;
}

.service-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--color-black);
}

.service-item-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Why Choose Us */
.why-us {
  padding: 5rem 0;
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.10) 0%, transparent 70%);
}

.why-us .container { position: relative; z-index: 1; }

.why-us .section-title h2 { color: var(--color-white); }
.why-us .section-title p { color: rgba(255, 255, 255, 0.7); }

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

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.why-card:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--color-gold);
  transform: translateY(-6px);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Home Page
   ========================================================================== */

/* Home Hero — split layout with architectural background image */
.home-hero {
  position: relative;
  padding: 5rem 0 6rem;
  background:
    linear-gradient(
      135deg,
      rgba(15, 15, 15, 0.82) 0%,
      rgba(26, 26, 26, 0.70) 50%,
      rgba(26, 26, 26, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1762337009787-bad651efb880?w=1920&auto=format&fit=crop&q=85') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

@media (max-width: 900px) {
  .home-hero { background-attachment: scroll; }
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.25) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.18) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 169, 97, 0.18) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* Adjust text colors for dark hero background */
.home-hero .hero-eyebrow {
  background: rgba(201, 169, 97, 0.15);
  border-color: rgba(201, 169, 97, 0.5);
  color: var(--color-gold-light);
}

.home-hero .hero-title {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.home-hero .hero-description {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.home-hero .btn-outline {
  color: var(--color-white);
  border-color: var(--color-gold);
}

.home-hero .btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.home-hero .hero-trust {
  border-top-color: rgba(201, 169, 97, 0.35);
}

.home-hero .trust-item {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero .trust-item svg {
  background: rgba(201, 169, 97, 0.18);
  color: var(--color-gold);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 1.15rem;
  background: rgba(201, 169, 97, 0.10);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #E5D4A1 0%, #C9A961 50%, #A8893E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 560px;
}

@media (max-width: 900px) {
  .hero-description { margin-left: auto; margin-right: auto; }
}

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

@media (max-width: 900px) {
  .hero-actions { justify-content: center; }
}

.hero-actions .btn {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
}

@media (max-width: 900px) {
  .hero-trust { justify-content: center; gap: 1.25rem; }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold-dark);
  background: var(--color-gold-soft);
  border-radius: var(--radius-full);
  padding: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.hero-visual-main {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-soft) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(201, 169, 97, 0.25);
  overflow: hidden;
  z-index: 2;
}

.hero-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 169, 97, 0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.7;
}

.hero-visual-main img {
  width: 70%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(201, 169, 97, 0.25));
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  z-index: 3;
  animation: float-gentle 7s ease-in-out infinite;
}

.hero-float-card.float-1 {
  top: 30px;
  left: -25px;
  animation-delay: 0s;
}

.hero-float-card.float-2 {
  bottom: 40px;
  right: -25px;
  animation-delay: 1.5s;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(201, 169, 97, 0.30);
}

.hero-float-icon svg { width: 22px; height: 22px; }

.hero-float-text strong {
  display: block;
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-gold-dark);
  line-height: 1;
}

.hero-float-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Decorative shapes */
.hero-deco {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 1;
}

.hero-deco-1 {
  top: -25px;
  right: -25px;
  width: 130px;
  height: 130px;
  border: 2px dashed var(--color-gold);
  opacity: 0.5;
  animation: spin-slow 30s linear infinite;
}

.hero-deco-2 {
  bottom: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  opacity: 0.85;
  box-shadow: var(--shadow-gold);
}

@media (max-width: 600px) {
  .hero-float-card.float-1 { left: -10px; top: 20px; }
  .hero-float-card.float-2 { right: -10px; bottom: 30px; }
  .hero-deco-1 { width: 90px; height: 90px; top: -15px; right: -15px; }
  .hero-deco-2 { width: 60px; height: 60px; bottom: -20px; left: -20px; }
}

/* About Preview */
.about-preview {
  padding: 6rem 0;
  background: var(--color-bg);
}

/* Home services preview - dense 4-col grid */
.home-services {
  padding: 5rem 0;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */

/* Story Section: 2-column split */
.about-story {
  padding: 6rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Story Visual */
.story-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.story-visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.story-visual-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 169, 97, 0.10) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.7;
}

.story-visual-frame img {
  width: 65%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(201, 169, 97, 0.20));
}

.story-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-black);
  color: var(--color-gold);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.story-visual-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Decorative circles */
.story-visual::before,
.story-visual::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 1;
}

.story-visual::before {
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border: 2px dashed var(--color-gold);
  opacity: 0.5;
  animation: spin-slow 30s linear infinite;
}

.story-visual::after {
  bottom: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  opacity: 0.85;
  box-shadow: var(--shadow-gold);
}

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

/* Story Content */
.story-content .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  padding-right: 2.5rem;
}

.story-content .eyebrow::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.story-content h2 .accent {
  color: var(--color-gold-dark);
}

.story-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.85;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 500px) {
  .story-features { grid-template-columns: 1fr; }
}

.story-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.story-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(201, 169, 97, 0.30);
}

.story-feature-icon svg {
  width: 20px;
  height: 20px;
}

.story-feature-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-black);
}

.story-feature-text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Vision & Mission */
.vision-mission {
  padding: 5rem 0;
  background: var(--color-bg-alt);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.vm-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-gold-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.vm-card::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.vm-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.vm-card-icon svg {
  width: 30px;
  height: 30px;
}

.vm-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  color: var(--color-black);
  position: relative;
  z-index: 1;
}

.vm-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* Values */
.values-section {
  padding: 5rem 0;
}

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

.value-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-gold-soft);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.value-card:hover .value-card-icon {
  background: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.08) rotate(-6deg);
}

.value-card-icon svg {
  width: 32px;
  height: 32px;
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Stats Strip */
.stats-strip {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-soft) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
}

.stats-strip::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.10) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

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

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}

@media (max-width: 768px) {
  .stat-item::after { display: none; }
}

.stat-number {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.stat-number .suffix {
  font-size: 0.6em;
  margin-right: 0.15em;
  color: var(--color-gold-light);
}

.stat-label {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
}

/* Process Steps */
.process-section {
  padding: 5rem 0;
  background: var(--color-bg-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-gold-light) 0,
    var(--color-gold-light) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .process-grid::before { display: none; }
}

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

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-step-number {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-gold-dark);
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 6px 18px rgba(201, 169, 97, 0.20);
}

.process-step:hover .process-step-number {
  background: var(--color-gold);
  color: var(--color-white);
  transform: scale(1.08);
}

.process-step-icon {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-bg-alt);
}

.process-step-icon svg {
  width: 14px;
  height: 14px;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 0 0.5rem;
}

/* ==========================================================================
   Service Detail Pages
   ========================================================================== */

/* Detail Hero — same dark concept as page-hero with category-specific images */
.detail-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(
      135deg,
      rgba(15, 15, 15, 0.82) 0%,
      rgba(26, 26, 26, 0.70) 50%,
      rgba(26, 26, 26, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1762337009787-bad651efb880?w=1920&auto=format&fit=crop&q=85') center/cover no-repeat;
  background-attachment: fixed;
  color: var(--color-white);
  overflow: hidden;
}

@media (max-width: 900px) {
  .detail-hero { background-attachment: scroll; }
}

/* Per-service hero backgrounds (relevant imagery for each category) */
.detail-hero.hero-general {
  background-image:
    linear-gradient(135deg, rgba(15,15,15,0.82) 0%, rgba(26,26,26,0.70) 50%, rgba(26,26,26,0.88) 100%),
    url('https://images.unsplash.com/photo-1622015663381-d2e05ae91b72?w=1920&auto=format&fit=crop&q=85');
}

.detail-hero.hero-construction {
  background-image:
    linear-gradient(135deg, rgba(15,15,15,0.82) 0%, rgba(26,26,26,0.70) 50%, rgba(26,26,26,0.88) 100%),
    url('https://images.unsplash.com/photo-1599995903128-531fc7fb694b?w=1920&auto=format&fit=crop&q=85');
}

.detail-hero.hero-commercial {
  background-image:
    linear-gradient(135deg, rgba(15,15,15,0.82) 0%, rgba(26,26,26,0.70) 50%, rgba(26,26,26,0.88) 100%),
    url('https://images.unsplash.com/photo-1672541298906-4aeb3edd3520?w=1920&auto=format&fit=crop&q=85');
}

.detail-hero.hero-extra {
  background-image:
    linear-gradient(135deg, rgba(15,15,15,0.82) 0%, rgba(26,26,26,0.70) 50%, rgba(26,26,26,0.88) 100%),
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&auto=format&fit=crop&q=85');
}

.detail-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.detail-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.16) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.detail-hero .container {
  position: relative;
  z-index: 1;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.detail-hero-icon {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold), 0 20px 40px rgba(201, 169, 97, 0.30);
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .detail-hero-icon { margin: 0 auto; }
}

.detail-hero-icon svg {
  width: 56px;
  height: 56px;
}

.detail-hero-icon-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: var(--color-gold);
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(201, 169, 97, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.detail-hero-text .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.detail-hero-text .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.detail-hero-text .breadcrumb a:hover {
  color: var(--color-gold);
}

.detail-hero-text .breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.detail-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.detail-hero-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  max-width: 700px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 700px) {
  .detail-hero-text p { margin: 0 auto; }
}

/* Service Detail Body */
.detail-body {
  padding: 5rem 0;
}

.detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.detail-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.detail-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.detail-intro p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* ==========================================================================
   Image Gallery
   ========================================================================== */
.gallery-section {
  padding: 5rem 0;
  background: var(--color-bg-alt);
  position: relative;
}

.gallery-section .section-title {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 700px) {
  .gallery-grid { gap: 0.75rem; }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--color-bg);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.gallery-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.6) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

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

.gallery-item-zoom {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item-zoom svg { width: 22px; height: 22px; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.10);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.lightbox-close { top: 1.5rem; left: 1.5rem; }
.lightbox-prev  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover, .lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

.lightbox-counter {
  position: absolute;
  top: 1.5rem;
  right: 50%;
  transform: translateX(50%);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .lightbox-close { width: 44px; height: 44px; top: 1rem; left: 1rem; }
  .lightbox-prev,
  .lightbox-next { width: 44px; height: 44px; }
  .lightbox-prev { right: 0.75rem; }
  .lightbox-next { left: 0.75rem; }
}

/* ==========================================================================
   Animations / Reveal on Scroll
   - Visible by default; only hidden when JS adds .js-reveal-ready to <html>
   - Falls back gracefully if JS is disabled or slow to initialize
   ========================================================================== */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
