/* ============================================
   AHS RUMAH — LIGHT THEME
   Style Sheet
============================================ */

/* ===== VARIABLES ===== */
:root {
  --gold: #b8883a;
  --gold-light: #d4a855;
  --gold-dark: #8a6220;
  --gold-pale: #fdf6ec;
  --gold-border: rgba(184,136,58,0.2);

  /* Light theme backgrounds */
  --bg:     #fafaf8;
  --bg-2:   #f5f3ef;
  --bg-3:   #edeae4;
  --bg-4:   #e5e1da;
  --white:  #ffffff;

  /* Dark text */
  --text:         #1c1b2e;
  --text-2:       #3d3c52;
  --text-muted:   #8b8a9e;

  /* Dark sections stay dark */
  --dark:   #0f0f17;
  --dark-2: #16161f;
  --dark-3: #1e1e2a;
  --dark-4: #252534;

  --green:  #3d9e6b;
  --brown:  #8b6f47;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  --shadow:    0 8px 40px rgba(0,0,0,0.08);
  --shadow-md: 0 16px 60px rgba(0,0,0,0.12);
  --shadow-lg: 0 32px 80px rgba(0,0,0,0.16);
  --shadow-gold: 0 8px 32px rgba(184,136,58,0.25);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: none; border: none; background: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(184,136,58,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
}
.cursor.active { transform: translate(-50%,-50%) scale(2); background: transparent; border: 1.5px solid var(--gold); }
.cursor-follower.active { transform: translate(-50%,-50%) scale(0.5); }

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
  color: var(--text); margin-bottom: 24px; letter-spacing: 2px;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 2px;
  background: var(--bg-3);
  border-radius: 999px; overflow: hidden; margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 999px; width: 0%;
  animation: loadProgress 1.8s ease forwards;
}
@keyframes loadProgress { to { width: 100%; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 20px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--white); letter-spacing: 1px;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: var(--text); }
.nav-logo span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85); border-radius: 999px;
  transition: all 0.3s; position: relative;
}
.navbar.scrolled .nav-link { color: var(--text-2); }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white) !important;
  font-weight: 600; padding: 10px 22px;
}
.nav-link.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.navbar.scrolled .nav-hamburger span { background: var(--text); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  cursor: none; border: none; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-secondary {
  background: var(--text); color: var(--white);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }
.btn-outline-dark {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--bg-3);
}
.btn-outline-dark:hover { background: var(--bg-3); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  color: var(--gold-dark); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 16px;
}
.section-title .accent { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-desc {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.18) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 28px;
  animation: fadeInDown 0.8s ease 0.2s both;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold-light); }
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 28px;
  max-width: 800px; color: var(--white);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line:nth-child(1) { animation: slideUp 0.9s ease 0.3s both; }
.hero-title .line:nth-child(2) { animation: slideUp 0.9s ease 0.5s both; color: var(--gold-light); }
.hero-title .line:nth-child(3) { animation: slideUp 0.9s ease 0.7s both; }
.hero-title em { font-style: italic; color: #f0d080; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 480px; line-height: 1.7; margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.9s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 1.1s both;
}
.hero-indicators {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; gap: 8px;
}
.indicator {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s; border: none;
}
.indicator.active { width: 28px; background: var(--gold-light); }
.hero-scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ===== STATS ===== */
.stats {
  padding: 64px 0; background: var(--white);
  border-bottom: 1px solid var(--bg-3);
  box-shadow: inset 0 -1px 0 var(--bg-3);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); width: 1px; height: 60%;
  background: var(--bg-3);
}
.stat-number {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: var(--gold-dark); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ===== CATALOG ===== */
.catalog { background: var(--bg-2); }
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 24px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 999px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); background: var(--white);
  border: 1.5px solid var(--bg-3);
  transition: all 0.3s; cursor: none;
}
.filter-btn:hover { color: var(--gold-dark); border-color: var(--gold-border); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white); font-weight: 600;
  border-color: transparent; box-shadow: var(--shadow-gold);
}
.search-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1.5px solid var(--bg-3);
  border-radius: var(--radius); padding: 14px 20px;
  margin-bottom: 48px; max-width: 600px;
  margin-left: auto; margin-right: auto;
  transition: border-color 0.3s; box-shadow: var(--shadow);
}
.search-bar:focus-within { border-color: var(--gold); }
.search-bar i { color: var(--text-muted); }
.search-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 0.95rem; font-family: var(--font-body); cursor: text;
}
.search-bar input::placeholder { color: var(--text-muted); }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* Property Card */
.property-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--bg-3);
  transition: all var(--transition); position: relative;
  box-shadow: var(--shadow);
}
.property-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
}
.property-card.hidden { display: none; }
.card-image { position: relative; height: 240px; overflow: hidden; }
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .card-image img { transform: scale(1.07); }
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  gap: 12px; opacity: 0; transition: opacity 0.3s;
}
.property-card:hover .card-overlay { opacity: 1; }
.card-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 0.9rem; transition: all 0.3s;
  border: none;
}
.card-btn:hover { background: var(--gold); color: var(--white); transform: scale(1.1); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); color: var(--text);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 999px; border: 1px solid rgba(0,0,0,0.06);
}
.card-badge.badge-gold { background: var(--gold); color: var(--white); border-color: transparent; }
.card-badge.badge-green { background: var(--green); color: var(--white); border-color: transparent; }
.card-badge.badge-brown { background: var(--brown); color: var(--white); border-color: transparent; }
.card-price {
  position: absolute; bottom: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white); font-size: 0.85rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
}
.card-body { padding: 22px; }
.card-meta {
  display: flex; gap: 16px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px;
}
.card-meta span { display: flex; align-items: center; gap: 5px; }
.card-meta i { color: var(--gold); font-size: 0.7rem; }
.card-title {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  color: var(--text); margin-bottom: 8px; transition: color 0.3s;
}
.property-card:hover .card-title { color: var(--gold-dark); }
.card-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.card-specs {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--bg-3);
  border-bottom: 1px solid var(--bg-3);
  margin-bottom: 16px;
}
.card-specs span { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-muted); }
.card-specs i { color: var(--gold); font-size: 0.72rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--gold-dark); transition: gap 0.3s;
}
.card-link:hover { gap: 14px; }

.catalog-empty {
  text-align: center; padding: 80px 0;
  color: var(--text-muted); grid-column: 1/-1;
}
.catalog-empty i { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; display: block; }
.catalog-more { text-align: center; margin-top: 48px; }
.hidden { display: none !important; }

/* ===== VIRTUAL TOUR SECTION (homepage) ===== */
.virtual-tour {
  position: relative; padding: 120px 0; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1028 100%);
}
.virtual-tour::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,136,58,0.1) 0%, transparent 70%);
  top: -100px; left: -100px; pointer-events: none;
}
.virtual-tour::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,80,180,0.06) 0%, transparent 70%);
  bottom: -50px; right: -50px; pointer-events: none;
}
.vt-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.vt-content .section-title { text-align: left; color: var(--white); }
.vt-content .section-tag { margin-bottom: 20px; }
.vt-desc {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 28px;
}
.vt-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.vt-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: rgba(255,255,255,0.8);
}
.vt-features i { color: var(--gold-light); }

.vt-mockup {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.vt-phone {
  width: 300px; background: var(--dark-4); border-radius: 32px;
  padding: 12px; border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6); position: relative; z-index: 2;
}
.vt-screen { border-radius: 22px; overflow: hidden; position: relative; aspect-ratio: 9/16; }
.vt-screen img { width: 100%; height: 100%; object-fit: cover; }
.vt-overlay-ui {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
  display: flex; flex-direction: column; justify-content: space-between; padding: 16px;
}
.vt-ui-top { display: flex; justify-content: flex-end; }
.vt-live {
  background: rgba(220,50,50,0.9); color: white;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 999px;
  display: flex; align-items: center; gap: 5px;
}
.vt-live i { font-size: 0.45rem; animation: blink 1.2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.vt-compass {
  align-self: flex-end; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.1rem;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.vt-badge-float {
  position: absolute; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 3;
}
.vt-badge-float i { color: var(--gold-light); }
.vt-badge-1 { top: 20px; right: -20px; animation: floatBadge 3s ease infinite; }
.vt-badge-2 { bottom: 60px; left: -30px; animation: floatBadge 3s ease 1.5s infinite; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ===== PROCESS ===== */
.process { background: var(--white); }
.process-timeline {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; position: relative;
}
.process-timeline::before {
  content: ''; position: absolute;
  top: 40px; left: calc(16.66% - 1px); right: calc(16.66% - 1px);
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.process-step { text-align: center; position: relative; padding-top: 20px; }
.process-step[data-step]::before {
  content: attr(data-step); position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: 5rem; font-weight: 700;
  color: rgba(184,136,58,0.06); line-height: 1; z-index: 0;
}
.step-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold-dark);
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white); border-color: transparent;
  transform: scale(1.1); box-shadow: var(--shadow-gold);
}
.step-content h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
}
.step-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-2); overflow: hidden; }
.testimonial-slider { margin-bottom: 40px; position: relative; }

/* Page-based: setiap .testi-page berisi 2 kartu dalam grid */
.testi-page {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testi-page.active {
  display: grid;
  animation: fadeInUp 0.45s ease both;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--bg-3);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;           /* pastikan konten tidak overflow */
  display: flex;
  flex-direction: column;
}
.testimonial-card::after {
  content: '\201C';
  position: absolute; top: 12px; right: 24px;
  font-family: var(--font-head); font-size: 7rem;
  color: var(--gold-pale); line-height: 1; pointer-events: none;
}
.testi-quote {
  color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; opacity: 0.7;
}
.testi-rating {
  display: flex; gap: 4px; color: var(--gold); font-size: 0.8rem; margin-bottom: 16px;
}
.testi-text {
  font-size: 0.97rem; color: var(--text-2); line-height: 1.85;
  margin-bottom: 24px; font-style: italic; flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--bg-3); padding-top: 20px; margin-top: auto;
}
.testi-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold-border); flex-shrink: 0;
}
.testi-author strong { display: block; font-weight: 600; color: var(--text); font-size: 0.93rem; margin-bottom: 3px; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: nowrap;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--bg-3);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: none; box-shadow: var(--shadow);
}
.testi-btn:hover { background: var(--gold); color: var(--white); border-color: transparent; }
.testi-dots { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--bg-3); transition: all 0.3s;
  cursor: none; border: none; flex-shrink: 0;
}
.testi-dot.active { width: 28px; background: var(--gold); }

/* ===== CTA ===== */
.cta { position: relative; padding: 120px 0; text-align: center; }
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82), rgba(0,0,0,0.65));
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.2;
}
.cta-content p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-info > p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-pale); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); flex-shrink: 0; font-size: 0.9rem;
}
.contact-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-item span { font-size: 0.875rem; color: var(--text-muted); }
.contact-socials { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: all 0.3s; box-shadow: var(--shadow);
}
.social-btn:hover { background: var(--gold); color: var(--white); border-color: transparent; transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--bg-3);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1.5px solid var(--bg-3);
  border-radius: var(--radius-sm); padding: 13px 16px;
  color: var(--text); font-size: 0.95rem;
  font-family: var(--font-body); transition: border-color 0.3s;
  outline: none; cursor: text;
}
.form-group select { cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.footer-logo span { color: var(--gold-light); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.9rem; transition: all 0.3s;
}
.footer-socials a:hover { background: var(--gold-light); color: var(--dark); border-color: transparent; }
.footer-col h4 {
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 16px; }
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 10px 14px;
  color: var(--white); font-size: 0.875rem;
  font-family: var(--font-body); outline: none; cursor: text;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter input:focus { border-color: var(--gold-light); }
.footer-newsletter button {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.3s; cursor: none;
}
.footer-newsletter button:hover { transform: scale(1.05); box-shadow: var(--shadow-gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem; color: rgba(255,255,255,0.3);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--gold-light); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; box-shadow: var(--shadow-gold);
  transition: all 0.4s; opacity: 0; visibility: hidden;
  transform: translateY(16px); z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(184,136,58,0.45); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--white); border: 1px solid var(--bg-3);
  color: var(--text); padding: 14px 24px;
  border-radius: var(--radius-sm); display: flex;
  align-items: center; gap: 10px; font-size: 0.9rem;
  box-shadow: var(--shadow-md); transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0; z-index: 999;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: var(--green); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes slideUp { from{opacity:0;transform:translateY(60px)} to{opacity:1;transform:translateY(0)} }

[data-animate] { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate="fadeLeft"] { transform: translateX(-40px); }
[data-animate="fadeRight"] { transform: translateX(40px); }
[data-animate="fadeUp"] { transform: translateY(40px); }
[data-animate].animated { opacity: 1; transform: none; }

/* ===========================
   DETAIL PAGE STYLES
=========================== */

/* Hero Detail */
.detail-hero {
  position: relative; height: 55vh; min-height: 420px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
}
.detail-hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 0 24px 48px;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; }
.detail-hero-title {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.detail-hero-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.detail-hero-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
}
.detail-hero-meta i { color: var(--gold-light); }

/* Detail Layout */
.detail-main { padding: 60px 0 100px; background: var(--bg-2); }
.detail-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
}

/* Gallery */
.gallery-section { margin-bottom: 40px; }
.gallery-main {
  border-radius: var(--radius); overflow: hidden;
  height: 420px; position: relative; margin-bottom: 12px;
  background: var(--bg-3); cursor: zoom-in;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-main-overlay {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  color: white; padding: 8px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  pointer-events: none;
}
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 10px;
}
.gallery-thumb {
  border-radius: var(--radius-sm); overflow: hidden;
  height: 80px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.3s;
  position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover { border-color: var(--gold-border); }
.gallery-thumb-more {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; font-weight: 700;
}

/* Tour Section in Detail */
.tour-section {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--bg-3); overflow: hidden;
  margin-bottom: 40px; box-shadow: var(--shadow);
}
.tour-header {
  padding: 20px 24px; border-bottom: 1px solid var(--bg-3);
  display: flex; align-items: center; justify-content: space-between;
}
.tour-header h3 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.tour-header h3 i { color: var(--gold-dark); }
.tour-badge {
  background: var(--gold-pale); color: var(--gold-dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
  border: 1px solid var(--gold-border);
}
.tour-container {
  position: relative; width: 100%; height: 460px;
  background: var(--dark);
}
#panorama { width: 100%; height: 100%; }
.tour-controls {
  padding: 16px 24px; border-top: 1px solid var(--bg-3);
  display: flex; align-items: center; gap: 12px;
  background: var(--bg);
}
.tour-ctrl-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1.5px solid var(--bg-3);
  color: var(--text-muted); font-size: 0.82rem; font-weight: 500;
  transition: all 0.2s; cursor: none;
}
.tour-ctrl-btn:hover,
.tour-ctrl-btn.active { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold-dark); }
.tour-ctrl-btn i { font-size: 0.75rem; }
.tour-hint {
  margin-left: auto; font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}

/* Tabs */
.detail-tabs { margin-bottom: 40px; }
.tab-nav {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--bg-3);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 12px 24px; font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.3s; cursor: none;
  background: none;
}
.tab-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.tab-btn:hover:not(.active) { color: var(--text); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.overview-content p {
  font-size: 0.975rem; color: var(--text-2); line-height: 1.8; margin-bottom: 16px;
}
.overview-highlights {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px;
}
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--bg-3);
  padding: 12px 16px; border-radius: var(--radius-sm);
}
.highlight-item i { color: var(--gold); font-size: 0.9rem; width: 18px; text-align: center; }
.highlight-item span { font-size: 0.875rem; color: var(--text-2); }

.features-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg-2);
}
.feature-item i { color: var(--green); font-size: 0.8rem; }
.feature-item span { font-size: 0.875rem; color: var(--text-2); }

.floorplan-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--bg-3);
}
.floorplan-img img { width: 100%; }
.floorplan-note {
  margin-top: 12px; font-size: 0.82rem;
  color: var(--text-muted); text-align: center;
}

/* Sticky Sidebar */
.detail-sidebar { position: sticky; top: 100px; }

.price-card {
  background: var(--white); border: 1px solid var(--bg-3);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-md); margin-bottom: 16px;
}
.price-main {
  font-family: var(--font-head); font-size: 2.2rem;
  font-weight: 700; color: var(--gold-dark); line-height: 1;
  margin-bottom: 6px;
}
.price-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.price-specs {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 12px; padding: 20px 0;
  border-top: 1px solid var(--bg-3);
  border-bottom: 1px solid var(--bg-3);
  margin-bottom: 20px;
}
.spec-item { text-align: center; }
.spec-val {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 600; color: var(--text); display: block;
}
.spec-key { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.price-actions { display: flex; flex-direction: column; gap: 10px; }

.inquiry-card {
  background: var(--white); border: 1px solid var(--bg-3);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
}
.inquiry-card h4 {
  font-family: var(--font-head); font-size: 1.05rem;
  font-weight: 600; color: var(--text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.inquiry-card h4 i { color: var(--gold-dark); font-size: 0.9rem; }
.inquiry-form { display: flex; flex-direction: column; gap: 12px; }
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  background: var(--bg); border: 1.5px solid var(--bg-3);
  border-radius: var(--radius-sm); padding: 11px 14px;
  color: var(--text); font-size: 0.875rem;
  font-family: var(--font-body); outline: none;
  transition: border-color 0.3s; cursor: text;
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: var(--text-muted); }
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus { border-color: var(--gold); }
.inquiry-form textarea { resize: none; }
.inquiry-agent {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); margin-bottom: 4px;
}
.inquiry-agent img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold-border);
}
.inquiry-agent-info strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); }
.inquiry-agent-info span { font-size: 0.78rem; color: var(--text-muted); }

/* Related */
.detail-related { background: var(--white); padding: 80px 0; }
.detail-related .catalog-grid { grid-template-columns: repeat(3,1fr); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: none; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all 0.2s;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vt-inner { grid-template-columns: 1fr; gap: 60px; }
  .vt-mockup { justify-content: center; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .detail-related .catalog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white); flex-direction: column;
    padding: 100px 32px 40px; gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1);
    border-left: 1px solid var(--bg-3);
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: var(--text-2) !important; width: 100%; }
  .navbar.scrolled .nav-link { color: var(--text-2) !important; }
  .nav-hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .catalog-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .process-timeline::before { display: none; }
  .testi-page { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .vt-phone { width: 240px; }
  .gallery-thumbs { grid-template-columns: repeat(4,1fr); }
  .gallery-main { height: 280px; }
  .tour-container { height: 320px; }
  .overview-highlights, .features-grid { grid-template-columns: 1fr; }
  .detail-related .catalog-grid { grid-template-columns: 1fr; }
  .lightbox-prev { left: -20px; }
  .lightbox-next { right: -20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .contact-form-wrap { padding: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(3,1fr); }
}
