/* =====================================================
   VeraStone - Premium Realty & Construction
   Palette: Dark navy • Antracite • Gold • Cream
   ===================================================== */

:root {
  --bg-0: #081018;
  --bg-1: #0d1520;
  --bg-2: #11161c;
  --bg-3: #1a1d21;
  --line: rgba(199, 163, 106, 0.14);
  --gold: #c7a36a;
  --gold-2: #d9ba82;
  --gold-soft: rgba(199, 163, 106, 0.12);
  --cream: #f4f0e8;
  --paper: #faf8f4;
  --ink: #10161e;
  --muted: #9ca3aa;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-lg: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 12px 32px -12px rgba(0, 0, 0, 0.4);
  --tr: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, .serif { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
p { color: #3b434b; }
a { color: inherit; text-decoration: none; transition: color .3s var(--tr); }

img { max-width: 100%; display: block; height: auto; }
.container { max-width: 1360px; margin: 0 auto; padding: 0 28px; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 10px 16px; z-index: 9999; border-radius: 8px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  padding: 22px 0;
  transition: all .35s var(--tr);
  background: transparent;
}
.site-header.solid, .no-hero .site-header {
  background: rgba(8, 16, 24, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; color: var(--white); }
.brand-mark { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; letter-spacing: 0.02em; font-weight: 500; }
.brand-mark::first-letter { color: var(--gold); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.42em; margin-top: 6px; color: var(--gold-2); text-transform: uppercase; font-weight: 600; }
.brand.large .brand-mark { font-size: 2.2rem; }
.brand.large .brand-sub { font-size: 0.7rem; }

.primary-nav ul { display: flex; list-style: none; gap: 6px; align-items: center; }
.primary-nav a {
  color: rgba(255,255,255,0.85);
  padding: 10px 18px; border-radius: 999px;
  font-size: 0.92rem; letter-spacing: 0.02em; font-weight: 500;
  position: relative;
}
.primary-nav a:hover { color: var(--gold-2); }
.primary-nav a.active { color: var(--gold); }
.primary-nav a.active::after {
  content: ''; position: absolute; left: 20px; right: 20px; bottom: 2px; height: 1px; background: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.02em; font-size: 0.92rem;
  cursor: pointer; border: 0;
  transition: transform .35s var(--tr), background .3s var(--tr), color .3s var(--tr), box-shadow .3s var(--tr);
}
.btn-gold { background: var(--gold); color: #14100a; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(199,163,106,.6); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: #14100a; color: var(--paper); }
.btn-dark:hover { background: #000; }
.btn-line { background: transparent; color: var(--ink); border: 1px solid rgba(20,16,10,.2); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 34px; font-size: 1rem; }

.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; position: relative; cursor: pointer; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--gold); transition: transform .3s var(--tr), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-close { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  display: flex; align-items: center;
  padding: 140px 0 60px;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--bg-0) center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s var(--tr) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 700px at 15% 30%, rgba(8,16,24,0.85), transparent 60%),
    linear-gradient(180deg, rgba(8,16,24,0.55) 0%, rgba(8,16,24,0.35) 40%, rgba(8,16,24,0.9) 100%);
}
.hero-inner { max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 700; margin-bottom: 26px;
}
.eyebrow::before, .eyebrow.center::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { font-size: 1.1rem; color: rgba(255,255,255,.86); max-width: 560px; margin-bottom: 40px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

/* Featured mini card on hero */
.hero-card {
  position: absolute; right: 60px; bottom: 180px;
  background: rgba(8, 16, 24, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  padding: 18px; border-radius: 18px;
  display: flex; align-items: center; gap: 16px;
  max-width: 380px;
  box-shadow: var(--shadow-md);
}
.hero-card img { width: 110px; height: 90px; object-fit: cover; border-radius: 12px; }
.hero-card .meta { color: rgba(255,255,255,.75); font-size: 0.8rem; margin-bottom: 4px; }
.hero-card h4 { font-family: 'Manrope', sans-serif; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.hero-card .price { color: var(--gold); font-weight: 700; font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: #6b7280; }
.section-eyebrow { display: inline-block; padding: 6px 14px; border: 1px solid rgba(199,163,106,.4); color: var(--gold); border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--bg-0); color: var(--white);
  padding: 60px 0;
  position: relative;
}
.stat-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 50%, rgba(199,163,106,0.12), transparent 60%);
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stat { text-align: center; padding: 18px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; color: var(--gold); line-height: 1; }
.stat .label { text-transform: uppercase; letter-spacing: 0.28em; font-size: 0.72rem; color: rgba(255,255,255,.7); margin-top: 12px; }

/* ---------- Project cards ---------- */
.card-grid { display: grid; gap: 26px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.project-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(20,16,10,0.06); box-shadow: 0 20px 40px -30px rgba(0,0,0,0.25);
  transition: transform .5s var(--tr), box-shadow .5s var(--tr);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35); }
.project-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--tr); }
.project-card:hover .thumb img { transform: scale(1.06); }
.project-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(8,16,24,.85); color: var(--gold-2);
  padding: 6px 12px; border-radius: 999px; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
}
.project-card .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.project-card .meta { color: #6b7280; font-size: 0.85rem; }
.project-card h3 { font-size: 1.4rem; }
.project-card .foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; margin-top: auto; border-top: 1px solid rgba(20,16,10,0.08); }
.project-card .price { font-weight: 700; color: var(--ink); }
.project-card .icon-btn { width: 36px; height: 36px; border-radius: 999px; background: var(--gold); color: #14100a; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- Two column section ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split .media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .body h2 { margin-bottom: 20px; }
.value-list { display: grid; gap: 18px; margin: 30px 0; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
  width: 48px; height: 48px; flex: 0 0 48px;
  background: var(--gold-soft); color: var(--gold); border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.value-item h4 { font-family: 'Manrope', sans-serif; font-size: 1.05rem; margin-bottom: 4px; }
.value-item p { color: #6b7280; font-size: 0.92rem; }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--bg-0); color: var(--white);
  padding: 34px 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .5s var(--tr);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: translateX(-100%); transition: transform .6s var(--tr);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(199,163,106,.35); }
.service-card:hover::after { transform: translateX(0); }
.service-card .ico { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 8px; }
.service-card h4 { font-family: 'Manrope', sans-serif; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.service-card p { color: rgba(255,255,255,.68); font-size: 0.9rem; }
.service-card a { color: var(--gold-2); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: auto; }

/* ---------- Progress ---------- */
.progress-card {
  background: var(--bg-0); color: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.progress-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.progress-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.progress-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.progress-card .stage { color: var(--gold-2); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; }
.progress-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.progress-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 999px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,.68); }

/* ---------- Dark section ---------- */
.dark {
  background: var(--bg-0);
  color: var(--white);
}
.dark p { color: rgba(255,255,255,.72); }
.dark .section-head p { color: rgba(255,255,255,.72); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--white); }

/* ---------- Testimonials ---------- */
.testimonial-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  padding: 30px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.testimonial .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 4px; }
.testimonial p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; line-height: 1.5; color: rgba(255,255,255,.88); }
.testimonial .who { display: flex; gap: 14px; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial .who img { width: 46px; height: 46px; border-radius: 999px; object-fit: cover; }
.testimonial .who .name { font-weight: 700; }
.testimonial .who .role { font-size: 0.78rem; color: rgba(255,255,255,.55); }

/* ---------- Contact + Map ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: stretch; }
.contact-card {
  background: var(--bg-0); color: var(--white);
  padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
}
.contact-card h3 { color: var(--white); }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; }
.contact-list i { color: var(--gold); width: 24px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; background: #eae5da; border: 1px solid rgba(20,16,10,.1); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- Forms ---------- */
form.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form.form-grid .full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; color: #4b5563; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(20,16,10,.14); background: #fff;
  border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  transition: border-color .3s var(--tr), box-shadow .3s var(--tr);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: #4b5563; }
.check-row input { margin-top: 4px; }

.dark form label { color: rgba(255,255,255,.7); }
.dark form input, .dark form select, .dark form textarea {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: var(--white);
}
.dark form input::placeholder, .dark form textarea::placeholder { color: rgba(255,255,255,.4); }
.dark .check-row { color: rgba(255,255,255,.72); }

/* ---------- Blog Cards ---------- */
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(20,16,10,0.06); transition: transform .4s var(--tr), box-shadow .4s var(--tr); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--tr); }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 24px; }
.blog-card .date { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.blog-card h4 { font-family: 'Manrope', sans-serif; font-size: 1.1rem; margin: 10px 0; line-height: 1.4; }
.blog-card p { color: #6b7280; font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #060b13; color: rgba(255,255,255,.7);
  padding: 80px 0 30px; margin-top: 0;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.site-footer h4 { color: var(--white); font-family: 'Manrope', sans-serif; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.24em; margin-bottom: 22px; font-weight: 700; }
.footer-list { list-style: none; display: grid; gap: 12px; }
.footer-list a { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.footer-list a:hover { color: var(--gold); }
.contact-list i { color: var(--gold); }
.social-list { display: flex; gap: 12px; margin-top: 24px; }
.social-list a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--gold-2); }
.social-list a:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.85rem; }
.legal-links { display: flex; gap: 22px; list-style: none; }
.legal-links a { color: rgba(255,255,255,.55); }
.legal-links a:hover { color: var(--gold); }

/* ---------- Floating action buttons ---------- */
.floating-actions { position: fixed; right: 20px; bottom: 22px; z-index: 800; display: grid; gap: 12px; }
.fab-btn { width: 56px; height: 56px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; box-shadow: var(--shadow-md); transition: transform .3s var(--tr); }
.fab-btn.wa { background: #25d366; }
.fab-btn.tel { background: var(--gold); color: #14100a; }
.fab-btn:hover { transform: scale(1.06); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 950;
  background: rgba(8,16,24,.94); color: var(--white); padding: 18px 22px;
  border: 1px solid var(--line); border-radius: 16px;
  display: flex; align-items: center; gap: 18px; justify-content: space-between;
  backdrop-filter: blur(18px); box-shadow: var(--shadow-lg);
}
.cookie-banner p { color: rgba(255,255,255,.75); font-size: 0.9rem; margin: 0; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }

/* ---------- Utilities ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s var(--tr); }
.reveal.on { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; } .mt-4 { margin-top: 40px; } .mt-6 { margin-top: 60px; }
.gold { color: var(--gold); }
.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--gold-soft); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; }

/* ---------- Detail pages ---------- */
.page-header {
  padding: 200px 0 100px;
  background: var(--bg-0); color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 20% 40%, rgba(199,163,106,0.14), transparent 60%);
}
.page-header h1 { color: var(--white); position: relative; }
.breadcrumb { color: rgba(255,255,255,.55); font-size: 0.85rem; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold-2); }

.detail-hero { position: relative; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gallery-thumbs img { aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.75; transition: opacity .3s; }
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; outline: 2px solid var(--gold); }

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0; }
.spec { padding: 18px; border-radius: 12px; background: #fff; border: 1px solid rgba(20,16,10,.08); }
.spec .k { font-size: 0.72rem; letter-spacing: 0.24em; color: #6b7280; text-transform: uppercase; margin-bottom: 6px; }
.spec .v { font-weight: 700; color: var(--ink); }

.detail-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; margin-top: 40px; }
.side-actions { position: sticky; top: 100px; background: var(--bg-0); color: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); display: grid; gap: 12px; }
.side-actions h4 { color: var(--white); }
.side-actions .price { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; line-height: 1; }
.side-actions .btn { width: 100%; justify-content: center; }

.timeline { position: relative; margin-top: 30px; padding-left: 30px; border-left: 2px solid var(--line); display: grid; gap: 30px; }
.timeline-item { position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 6px; width: 12px; height: 12px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.timeline-item .date { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.timeline-item h5 { font-family: 'Manrope', sans-serif; margin: 6px 0; }

/* ---------- Filter chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip { padding: 8px 18px; border-radius: 999px; border: 1px solid rgba(20,16,10,.12); font-size: 0.85rem; cursor: pointer; background: #fff; transition: all .3s var(--tr); }
.chip:hover, .chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.pagination a { padding: 10px 15px; border-radius: 8px; border: 1px solid rgba(20,16,10,.12); font-weight: 600; font-size: 0.9rem; }
.pagination a.active, .pagination a:hover { background: var(--gold); color: #14100a; border-color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-card { right: 30px; }
}

@media (max-width: 960px) {
  section { padding: 70px 0; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(90vw, 380px);
    background: rgba(8,16,24,.98); padding: 90px 32px 40px;
    transform: translateX(105%); transition: transform .45s var(--tr);
    display: flex; flex-direction: column; z-index: 1000;
    backdrop-filter: blur(30px);
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .primary-nav a { display: block; padding: 14px 18px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-close { display: inline-flex; align-items: center; justify-content: center; position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; background: transparent; border: 1px solid var(--line); color: var(--gold); border-radius: 999px; }
  .header-actions .btn-gold { display: none; }

  .hero { padding: 130px 0 40px; min-height: auto; }
  .hero h1 { font-size: 2.4rem; }
  .hero-card { position: static; margin-top: 40px; max-width: 100%; }
  .grid-4, .grid-3, .grid-2, .service-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .split, .split.reverse, .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .media { order: -1; }
  .split .media { aspect-ratio: 16/10; }
  .detail-layout { grid-template-columns: 1fr; }
  .side-actions { position: static; }
  .testimonial-slider { grid-template-columns: 1fr; }
  form.form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .legal-links { flex-wrap: wrap; justify-content: center; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .spec-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* ============================================
   Premium Search Panel (Homepage)
   ============================================ */
.search-panel {
  position: relative;
  margin: -80px auto 100px;
  max-width: 1280px;
  background: linear-gradient(180deg, rgba(13,21,32,0.94) 0%, rgba(8,16,24,0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(199,163,106,0.18);
  border-radius: 24px;
  padding: 32px 34px 26px;
  color: var(--white);
  z-index: 5;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
}
.search-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 260px at 15% 0%, rgba(199,163,106,0.10), transparent 60%);
  pointer-events: none;
}

/* --- Head --- */
.search-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-bottom: 24px; margin-bottom: 24px;
  border-bottom: 1px solid rgba(199,163,106,0.12);
  position: relative;
}
.search-panel__title {
  display: flex; align-items: center; gap: 18px;
}
.search-panel__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(199,163,106,0.22), rgba(199,163,106,0.06));
  border: 1px solid rgba(199,163,106,0.32);
  color: var(--gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px -12px rgba(199,163,106,0.4);
}
.search-panel__title h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white); font-size: 1.65rem; font-weight: 500;
  line-height: 1.1; margin: 0;
}
.search-panel__title p {
  color: rgba(255,255,255,0.55); font-size: 0.92rem; margin: 4px 0 0;
}
.search-panel__advanced {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,163,106,0.28);
  color: var(--gold-2); font-weight: 600; font-size: 0.9rem;
  transition: all .3s var(--tr);
}
.search-panel__advanced:hover {
  background: var(--gold-soft); border-color: var(--gold); color: var(--gold);
  transform: translateX(2px);
}
.search-panel__advanced .fa-chevron-right { font-size: 0.72rem; opacity: 0.7; }

/* --- Grid --- */
.search-panel__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  position: relative;
}
.sp-field { display: flex; flex-direction: column; gap: 10px; }
.sp-field label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-2); margin: 0;
}
.sp-field label .dot {
  width: 5px; height: 5px; border-radius: 999px; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,163,106,0.18);
}
.sp-select {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all .3s var(--tr);
}
.sp-select:hover, .sp-select:focus-within {
  border-color: rgba(199,163,106,0.5);
  background: rgba(199,163,106,0.05);
  box-shadow: 0 0 0 3px rgba(199,163,106,0.08);
}
.sp-select > i:first-child {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 0.95rem; pointer-events: none;
}
.sp-select .chev {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.72rem; pointer-events: none;
  transition: transform .3s var(--tr);
}
.sp-select:hover .chev { color: var(--gold-2); transform: translateY(-50%) translateY(2px); }
.sp-select select {
  width: 100%;
  background: transparent !important;
  border: 0 !important;
  padding: 15px 40px 15px 44px;
  color: var(--white) !important;
  font-family: inherit; font-size: 0.95rem;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer;
}
.sp-select select:focus { outline: 0; box-shadow: none; }
.sp-select select option { background: #0d1520; color: var(--white); padding: 8px; }

/* --- Foot --- */
.search-panel__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 26px; padding-top: 22px;
  border-top: 1px solid rgba(199,163,106,0.12);
}
.search-panel__clear {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 0; color: rgba(255,255,255,0.6);
  font-family: inherit; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; padding: 8px 0;
  transition: color .3s var(--tr);
}
.search-panel__clear i { color: var(--gold); font-size: 0.85rem; }
.search-panel__clear:hover { color: var(--gold-2); }
.search-panel__submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 42px; border-radius: 14px; border: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #14100a; font-family: inherit; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.02em; cursor: pointer;
  box-shadow: 0 20px 40px -14px rgba(199,163,106,0.5);
  transition: transform .3s var(--tr), box-shadow .3s var(--tr), filter .3s var(--tr);
}
.search-panel__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -12px rgba(199,163,106,0.7);
  filter: brightness(1.06);
}
.search-panel__submit i { font-size: 0.95rem; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .search-panel__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .search-panel { margin: -40px 20px 60px; padding: 22px 20px 20px; border-radius: 20px; }
  .search-panel__head { flex-direction: column; align-items: stretch; gap: 16px; padding-bottom: 18px; margin-bottom: 20px; }
  .search-panel__title h3 { font-size: 1.35rem; }
  .search-panel__advanced { justify-content: center; }
  .search-panel__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .search-panel__foot { flex-direction: column-reverse; gap: 14px; align-items: stretch; }
  .search-panel__submit { justify-content: center; width: 100%; }
  .search-panel__clear { justify-content: center; }
}
@media (max-width: 480px) {
  .search-panel__grid { grid-template-columns: 1fr; }
  .search-panel__icon { width: 46px; height: 46px; font-size: 1.15rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .hero-bg { animation: none; }
}
