:root {
  --bg: #09090b;
  --bg-soft: #111216;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.07);
  --gold: #d4af37;
  --gold-light: #f3d67c;
  --gold-dark: #9e7819;
  --text: #f5f1e8;
  --muted: #b8b1a4;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --success: #25d366;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max-width: 1220px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 25%),
    radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.08), transparent 20%),
    linear-gradient(180deg, #060607 0%, #0b0c10 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 95px 0;
}

.center {
  text-align: center;
}

.center .section-subtitle {
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 14px;
  color: var(--white);
}

.section-subtitle {
  color: var(--muted);
  max-width: 760px;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.96rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), #f6df90);
  color: #161616;
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn-outline:hover,
.card-link:hover,
.footer-nav a:hover,
.footer-contact a:hover,
.topbar a:hover,
.nav-links a:hover,
.wa-footer:hover {
  color: var(--gold-light);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  position: relative;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow: var(--shadow);
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--text);
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-links a.active {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
}

.hero {
  position: relative;
  padding: 96px 0 74px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.55), rgba(6, 6, 7, 0.7)),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.16), transparent 20%),
    linear-gradient(135deg, #13151a, #0a0b0d 65%);
  z-index: -1;
}

.hero-grid,
.about-grid,
.contact-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.16);
  color: var(--gold-light);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.hero-title,
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--white);
}

.gold {
  color: var(--gold);
}

.hero-text,
.page-hero p,
.about-copy p,
.content-copy p,
.card p,
.contact-card p,
.faq-answer,
.gallery-content p,
.testimonial-card p,
.service-card p,
.process-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-brand-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow);
  max-width: 520px;
}

.hero-brand-strip .brand-mark {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.hero-brand-copy strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-brand-copy span {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  transition: var(--transition);
}

.social-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.24);
  color: var(--gold-light);
}

.social-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-stats,
.stats-strip,
.about-mini,
.services-grid,
.gallery-grid,
.testimonials-grid,
.process-grid,
.project-grid {
  display: grid;
  gap: 20px;
}

.hero-stats {
  grid-template-columns: repeat(3, 1fr);
}

.hero-stat,
.stat-card,
.service-card,
.gallery-card,
.testimonial-card,
.process-card,
.project-card,
.card,
.contact-card,
.glass-card,
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stat,
.stat-card,
.process-card {
  padding: 20px;
}

.hero-stat strong,
.stat-card strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.hero-panel,
.glass-card,
.contact-card,
.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-panel-stack {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: rgba(10, 10, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px;
}

.hero-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-line:first-child {
  padding-top: 0;
}

.hero-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-line span,
.mini-metric small {
  color: var(--muted);
}

.hero-line strong,
.mini-metric strong,
.footer-contact strong {
  color: var(--white);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.page-hero {
  padding: 80px 0 50px;
}

.page-hero.small {
  padding-bottom: 20px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.about-grid,
.contact-grid,
.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.about-note,
.what-we-do-note,
.highlight-box,
.notice-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.about-mini,
.stats-strip {
  grid-template-columns: repeat(2, 1fr);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

.service-card,
.gallery-content,
.testimonial-card,
.process-card,
.project-card .project-content {
  padding: 24px;
}

.service-card {
  transition: var(--transition);
}

.service-card:hover,
.gallery-card:hover,
.project-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
}

.service-icon,
.project-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-card h3,
.gallery-label h3,
.testimonial-author strong,
.process-card h3,
.project-content h3,
.contact-card h3,
.card h3,
.faq-item h3,
.glass-card h3 {
  color: var(--white);
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-light);
  font-weight: 600;
}

.gallery-grid,
.testimonials-grid,
.project-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.gallery-card,
.project-card {
  overflow: hidden;
}

.gallery-visual,
.project-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-visual::before,
.project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.45) 100%);
}

.gallery-visual::after,
.project-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.g1, .p1 {
  background: radial-gradient(circle at top right, rgba(255, 215, 128, 0.45), transparent 30%), linear-gradient(135deg, #20232a, #0f1115), linear-gradient(45deg, #1f1610, #111);
}
.g2, .p2 {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.28), transparent 35%), linear-gradient(135deg, #1a1d22, #0b0c10);
}
.g3, .p3 {
  background: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.35), transparent 28%), linear-gradient(135deg, #191919, #0e1116);
}
.g4, .p4 {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.3), transparent 30%), linear-gradient(135deg, #1c2026, #0c0d11);
}
.g5, .p5 {
  background: radial-gradient(circle at right, rgba(240, 215, 122, 0.22), transparent 28%), linear-gradient(135deg, #181a1e, #0b0c10);
}
.g6, .p6 {
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.25), transparent 28%), linear-gradient(135deg, #21252b, #0c0d11);
}

.gallery-label,
.project-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
}

.gallery-tag,
.project-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 999px;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.12);
  font-family: serif;
}

.stars {
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--gold-light);
  font-size: 0.86rem;
}

.testimonial-note {
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 0.92rem;
}

.process-card h3,
.project-content h3,
.service-card h3,
.contact-card h3,
.card h3,
.glass-card h3 {
  margin-bottom: 10px;
}

.process-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.project-content {
  padding: 24px;
}

.cta-band {
  margin-top: 46px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.04)), linear-gradient(180deg, #121317, #0b0b0d);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-band h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: var(--muted);
  max-width: 700px;
}

.feature-list,
.contact-list,
.check-list,
.faq-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.feature-list li,
.check-list li {
  list-style: none;
  position: relative;
  padding-left: 22px;
}

.feature-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
}

.contact-item a {
  color: var(--white);
}

.contact-item a:hover {
  color: var(--gold-light);
}

.contact-item small {
  display: block;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.input-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 15px 16px;
  border-radius: 14px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
  font-size: 0.96rem;
}

input::placeholder,
textarea::placeholder {
  color: #a69d90;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.small-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.site-footer {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 26px;
  padding-bottom: 24px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand strong,
.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
}

.footer-brand p,
.footer-contact p {
  color: var(--muted);
}

.footer-nav ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0 32px;
  color: var(--muted);
  text-align: center;
}

.wa-footer {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold-light);
}

.footer-social {
  margin-top: 18px;
}

.footer-social h4 {
  margin-bottom: 10px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social .social-pill {
  margin-bottom: 0;
}

.map-section {
  padding-top: 0;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.inquiry-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1001;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), #f6df90);
  color: #161616;
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.24);
  font-weight: 700;
  transition: var(--transition);
}

.inquiry-float:hover {
  transform: translateY(-4px);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 18px 35px rgba(18, 140, 126, 0.35);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.modal-open {
  overflow: hidden;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inquiry-modal.active {
  display: flex;
}

.inquiry-modal-card {
  width: min(100%, 720px);
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(19, 20, 24, 0.96), rgba(11, 11, 13, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
}

.inquiry-modal-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.inquiry-modal-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}

.modal-close:hover {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .testimonials-grid,
  .project-grid,
  .process-grid,
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 4%;
    right: 4%;
    background: rgba(10, 10, 12, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .footer-grid {
    gap: 16px;
  }

  .hero,
  .page-hero {
    padding: 74px 0 56px;
  }

  .hero-title,
  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero-stats,
  .hero-mini-grid,
  .about-mini,
  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .project-grid,
  .process-grid,
  .form-row,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .hero-brand-strip {
    max-width: 100%;
  }

  .social-row,
  .footer-social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 78px 0;
  }

  .glass-card,
  .contact-card,
  .hero-panel,
  .cta-band,
  .card {
    padding: 22px;
  }

  .inquiry-float {
    left: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .inquiry-modal-card {
    padding: 22px;
  }
}
