/* ==========================================================================
   R.G Designs — CAD/CAM/CASTING — trending luxury-dark theme
   ========================================================================== */

:root {
  --bg: #08070a;
  --bg-alt: #0f0d10;
  --bg-card: rgba(255, 255, 255, 0.045);
  --border: rgba(212, 175, 96, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --gold: #d4af60;
  --gold-light: #f3dfa0;
  --gold-dark: #9c793a;
  --text: #f3efe7;
  --text-muted: #a89e91;
  --text-dim: #6f665c;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --ff-display: "Cormorant Garamond", serif;
  --ff-body: "Poppins", sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 15% 10%, rgba(212, 175, 96, 0.09), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(212, 175, 96, 0.07), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 96, 0.06), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: 110px 0; position: relative; z-index: 1; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(212,175,96,0.035), transparent); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); color: #fff; }
.section-head p { color: var(--text-muted); margin-top: 16px; font-size: 16px; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: #1a1406;
  box-shadow: 0 10px 30px rgba(212, 175, 96, 0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(212, 175, 96, 0.4); }
.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,96,0.06); }
.btn-sm { padding: 11px 22px; font-size: 12.5px; }

/* ---------------- Topbar ---------------- */
.topbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-soft);
  font-size: 12.5px;
  color: var(--text-dim);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-left span { display: inline-flex; align-items: center; gap: 6px; }
.tb-social { display: flex; gap: 14px; }
.tb-social a {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: 0.25s;
}
.tb-social a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------------- Header ---------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: padding 0.3s ease;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.3s ease;
}
header.shrink .nav-wrap { padding: 12px 0; }

.logo { display: flex; align-items: center; gap: 12px; font-family: var(--ff-display); }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1406;
  font-weight: 700;
  font-size: 18px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-size: 21px; letter-spacing: 1px; color: #fff; }
.logo-text span { font-family: var(--ff-body); font-size: 9.5px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 42px; }
.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
}
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 24px;
  border-top: 1px solid var(--border-soft);
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a:hover { color: var(--gold); }
body.nav-open .mobile-nav { display: flex; }

/* ---------------- Hero (photo banner) ---------------- */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(0.08) sepia(0.42) hue-rotate(-12deg) saturate(1.25) brightness(0.78) contrast(1.06);
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8,7,10,0.05) 0%, rgba(8,7,10,0.3) 32%, var(--bg) 54%, var(--bg) 100%),
    linear-gradient(0deg, rgba(8,7,10,0.6), transparent 30%),
    linear-gradient(180deg, rgba(8,7,10,0.5), transparent 22%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 150px 24px 110px;
}
.hero-inner {
  max-width: 560px;
  margin-left: auto;
  margin-right: 2%;
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 500px;
  margin: 22px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats div b {
  display: block;
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--gold);
}
.hero-stats div span { font-size: 12.5px; color: var(--text-dim); letter-spacing: 0.6px; text-transform: uppercase; }

/* ---------------- Marquee ---------------- */
.marquee {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-alt);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 48px; animation: scroll-left 26s linear infinite; }
.marquee-track span {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.marquee-track span b { color: var(--gold); font-weight: 600; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Process ---------------- */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-item.in-view { opacity: 1; transform: translateY(0); }
.process-item:first-child { padding-top: 0; }
.process-num {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--gold);
  opacity: 0.55;
}
.process-body { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.process-icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: rgba(212,175,96,0.06);
}
.process-icon svg { width: 26px; height: 26px; }
.process-text { flex: 1; min-width: 240px; }
.process-text h3 { font-size: 23px; color: #fff; margin-bottom: 8px; }
.process-text p { color: var(--text-muted); font-size: 15px; max-width: 640px; }

/* ---------------- Benefits (bento) ---------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.bento-card {
  grid-column: span 2;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
}
.bento-card.in-view { opacity: 1; transform: translateY(0); }
.bento-card:hover { border-color: var(--border); background: rgba(212,175,96,0.05); transform: translateY(-6px); }
.bento-card.wide { grid-column: span 4; }
.bento-card .bicon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: #1a1406;
  margin-bottom: 18px;
}
.bento-card .bicon svg { width: 22px; height: 22px; }
.bento-card h4 { font-size: 18px; color: #fff; font-family: var(--ff-body); font-weight: 600; margin-bottom: 6px; }
.bento-card p { color: var(--text-muted); font-size: 14px; }
.bento-card.wide { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.bento-card.wide h3 { font-size: 26px; color: #fff; max-width: 620px; }

/* ---------------- CTA strip ---------------- */
.cta-strip {
  background: linear-gradient(120deg, #16130c, #1d1710 60%, #16130c);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(26px, 3.4vw, 38px); color: #fff; max-width: 560px; }
.cta-strip .phones { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  padding: 80px 0 0;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-grid h4 {
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-about p { color: var(--text-muted); font-size: 14.5px; margin: 18px 0 22px; max-width: 340px; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul a { color: var(--text-muted); font-size: 14.5px; transition: 0.25s; }
.footer-grid ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; color: var(--text-muted); font-size: 14.5px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------------- Reveal utility ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.page-hero .hero-art svg { width: 100%; height: 100%; }
.page-hero .hero-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.03) sepia(0.2) hue-rotate(-6deg) saturate(1.1) brightness(0.98) contrast(1.02);
  z-index: 0;
}
.page-hero .hero-photo-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,7,10,0.08) 0%, rgba(8,7,10,0.26) 62%, var(--bg) 100%),
    radial-gradient(ellipse 58% 52% at 50% 40%, rgba(8,7,10,0.05), rgba(8,7,10,0.32) 78%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.55); }
.page-hero .eyebrow { text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.breadcrumb { margin-top: 16px; font-size: 13px; color: var(--text-dim); text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------------- Banner strip (decorative jewelry banner) ---------------- */
.banner-strip {
  position: relative;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--bg-alt), var(--bg) 60%);
  overflow: hidden;
}
.banner-strip .banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner-strip svg { width: 100%; height: auto; display: block; }
.banner-strip .banner-tag {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-strip .banner-tag::before,
.banner-strip .banner-tag::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
}

@media (max-width: 760px) {
  .page-hero { padding: 84px 0 60px; }
}

/* ---------------- About page ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(212,175,96,0.12), rgba(212,175,96,0.02));
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual svg { width: 55%; height: 55%; color: var(--gold); opacity: 0.85; }
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.03) sepia(0.2) hue-rotate(-6deg) saturate(1.1) brightness(0.92) contrast(1.05);
}
.about-visual::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
}
.who-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.who-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-muted); font-size: 15px; }
.who-list li svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.split p { color: var(--text-muted); margin-bottom: 16px; font-size: 15.5px; }
.split h3 { color: #fff; font-size: 26px; margin-bottom: 18px; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.pillar {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--bg-card);
  text-align: center;
}
.pillar svg { width: 30px; height: 30px; color: var(--gold); margin: 0 auto 14px; }
.pillar h4 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.pillar p { color: var(--text-muted); font-size: 13.5px; }

/* ---------------- Gallery page ---------------- */
.filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #1a1406; border-color: transparent; }

.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-soft);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.in-view { opacity: 1; transform: translateY(0) scale(1); }
.gallery-item .g-tile {
  width: 100%;
  aspect-ratio: var(--ar, 1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.g-tile.t1 { background: linear-gradient(150deg, #3a2e12, #1a1508); }
.g-tile.t2 { background: linear-gradient(150deg, #2b2216, #14100a); }
.g-tile.t3 { background: linear-gradient(150deg, #423418, #1c1608); }
.g-tile.t4 { background: linear-gradient(150deg, #1f1a10, #0d0b06); }
.g-tile.t5 { background: linear-gradient(150deg, #362a10, #171208); }
.g-tile.t6 { background: linear-gradient(150deg, #2f2712, #120e07); }
.g-tile::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 30% 20%, rgba(212,175,96,0.25), transparent 55%);
  pointer-events: none;
}
.gallery-item .g-tile svg { width: 34%; height: 34%; color: rgba(255,255,255,0.85); position: relative; z-index: 1; }
.g-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) sepia(0.28) hue-rotate(-8deg) saturate(1.2) brightness(0.88) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover .g-tile img {
  transform: scale(1.06);
  filter: grayscale(0) sepia(0.15) hue-rotate(-6deg) saturate(1.15) brightness(0.95) contrast(1.05);
}
.gallery-item .g-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}
.gallery-item:hover .g-caption { opacity: 1; transform: translateY(0); }
.gallery-item .g-caption b { font-family: var(--ff-display); font-size: 17px; color: #fff; display: block; }
.gallery-item .g-caption span { font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* ---------------- Contact page ---------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; }
.info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.info-card .bicon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center; color: #1a1406;
}
.info-card .bicon svg { width: 20px; height: 20px; }
.info-card h4 { color: #fff; font-size: 15px; margin-bottom: 5px; }
.info-card p, .info-card a { color: var(--text-muted); font-size: 14px; display: block; }
.info-card a:hover { color: var(--gold); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

.contact-form {
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.contact-form > p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  transition: 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(212,175,96,0.05); }
.field select option { color: #1a1406; background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-msg { margin-top: 16px; font-size: 13.5px; color: var(--gold); display: none; }
.form-msg.show { display: block; }

/* ---------------- Back to top ---------------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1406;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 90;
  border: none;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento-card { grid-column: span 4; }
  .gallery-grid { columns: 3 220px; }
}
@media (max-width: 760px) {
  .main-nav ul, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .topbar .tb-left span:nth-child(3) { display: none; }
  .section { padding: 74px 0; }
  .hero { min-height: 620px; }
  .hero .container { padding: 260px 20px 50px; }
  .hero-inner { max-width: 100%; margin-right: 0; }
  .hero-photo { width: 100%; object-position: center 14%; }
  .hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(8,7,10,0.15) 0%, rgba(8,7,10,0.55) 34%, var(--bg) 46%, var(--bg) 100%);
  }
  .process-item { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; }
  .pillars { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 160px; }
}
