/* ==========================================================================
   RG Casting — Radha Govind Casting — Jaipur — gold & silver metal theme
   ========================================================================== */

:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece3;
  --bg-card: #ffffff;
  --border: rgba(102, 109, 118, 0.25);
  --border-soft: rgba(43, 47, 52, 0.10);
  --gold: #c9a227;
  --gold-light: #f0d68a;
  --gold-dark: #96791c;
  --silver: #9aa1ab;
  --silver-light: #e2e5e9;
  --silver-dark: #666d76;
  --ink: #2b2f34;
  --ink-light: #40454c;
  --text: #2b2320;
  --text-muted: #665f58;
  --text-dim: #9a938c;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 46px rgba(43, 47, 52, 0.16);
  --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(201, 162, 39, 0.08), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(154, 161, 171, 0.10), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(201, 162, 39, 0.05), 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;
  color: var(--text);
}

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

.section { padding: 110px 0; position: relative; z-index: 1; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(102,109,118,0.05), 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: var(--text); }
.section-head p { color: var(--text-muted); margin-top: 16px; font-size: 16px; }

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

.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) 55%, var(--silver-dark));
  color: #1f1a08;
  box-shadow: 0 10px 26px rgba(201, 162, 39, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 39, 0.42); }
.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(102,109,118,0.04);
}
.btn-outline:hover { border-color: var(--silver-dark); color: var(--ink); background: rgba(102,109,118,0.08); }
.btn-sm { padding: 11px 22px; font-size: 12.5px; }

/* ---------------- Topbar ---------------- */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px;
  color: var(--silver-light);
}
.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-light); }
.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 rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-light);
  transition: 0.25s;
}
.tb-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.tb-social svg { width: 14px; height: 14px; }
.tb-social a.fb-icon { background: #1877F2; border-color: #1877F2; color: #fff; }
.tb-social a.ig-icon {
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  border-color: transparent;
  color: #fff;
}
.tb-social a.fb-icon:hover,
.tb-social a.ig-icon:hover { opacity: 0.85; color: #fff; }

/* ---------------- Header ---------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  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; font-family: var(--ff-display); }
.logo-img { height: 40px; width: auto; }

.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: var(--ink); }
.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-dark); }
header.nav-open .mobile-nav { display: flex; }

/* ---------------- Hero (full-bleed illustrated banner) ---------------- */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(120deg, #f7ecd4 0%, #faf8f4 32%, #f3ede2 62%, #ece6d9 100%);
}
.hero-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-art svg { width: 100%; height: 100%; display: block; }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: sepia(0.35) saturate(1.4) brightness(0.98) contrast(1.05) hue-rotate(-6deg);
  z-index: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-photo.is-active { opacity: 1; }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(43,47,52,0.35) 0%, rgba(43,47,52,0.1) 30%, transparent 55%),
    linear-gradient(180deg, rgba(43,47,52,0.12) 0%, transparent 24%, transparent 68%, rgba(43,47,52,0.2) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 78px 24px 36px;
}
.hero-inner {
  max-width: 560px;
  margin-left: auto;
  margin-right: 2%;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: 0 24px 60px rgba(43,47,52,0.12);
}
.hero h1 {
  font-size: clamp(26px, 3.2vw, 42px);
  color: var(--text);
}
.hero h1 em { font-style: normal; color: var(--gold-dark); }
.hero p.lead {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 500px;
  margin: 12px 0 20px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

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

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(43,47,52,0.35);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: 0.25s;
}
.hero-dot.is-active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  width: 26px;
  border-radius: 6px;
}

/* ---------------- 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-dark); 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);
}
.process-item:first-child { padding-top: 0; }
.process-num {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--silver-dark);
  opacity: 0.5;
}
.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-dark);
  background: rgba(201,162,39,0.06);
}
.process-icon svg { width: 26px; height: 26px; }
.process-text { flex: 1; min-width: 240px; }
.process-text h3 { font-size: 23px; color: var(--text); margin-bottom: 8px; }
.process-text p { color: var(--text-muted); font-size: 15px; max-width: 640px; }

/* ---------------- Benefits / Services (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;
  box-shadow: 0 8px 24px rgba(43,47,52,0.06);
  transition: 0.35s ease;
}
.bento-card:hover { border-color: var(--border); box-shadow: var(--shadow); 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: #1f1a08;
  margin-bottom: 18px;
}
.bento-card:nth-child(even) .bicon {
  background: linear-gradient(135deg, var(--silver-light), var(--silver-dark));
  color: #202327;
}
.bento-card .bicon svg { width: 22px; height: 22px; }
.bento-card h4 { font-size: 18px; color: var(--text); 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: var(--text); max-width: 620px; }

/* ---------------- CTA strip ---------------- */
.cta-strip {
  background: linear-gradient(120deg, var(--ink), var(--ink-light) 60%, var(--ink));
  border-top: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  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: #f7f4ee; max-width: 560px; }
.cta-strip .phones { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-strip .btn-outline { border-color: rgba(255,255,255,0.35); color: #f7f4ee; }
.cta-strip .btn-outline:hover { border-color: var(--gold-light); background: rgba(255,255,255,0.08); color: var(--gold-light); }

/* ---------------- Footer ---------------- */
footer.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
  position: relative; z-index: 1;
  color: var(--silver-light);
}
.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-light);
  margin-bottom: 22px;
}
.footer-about p { color: var(--silver-light); font-size: 14.5px; margin: 18px 0 22px; max-width: 340px; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul a { color: var(--silver-light); font-size: 14.5px; transition: 0.25s; }
.footer-grid ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; color: var(--silver-light); font-size: 14.5px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--silver);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------------- 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;
  background: var(--bg-alt);
}
.page-hero .hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
  background: none;
}
.page-hero .hero-art svg { width: 100%; height: 100%; display: block; }
.page-hero .hero-photo-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(240,236,227,0.1) 0%, rgba(240,236,227,0.3) 62%, var(--bg-alt) 100%);
}
.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: var(--text); }
.breadcrumb { margin-top: 16px; font-size: 13px; color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ---------------- 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(201,162,39,0.08), rgba(154,161,171,0.10));
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-visual svg { width: 60%; height: 60%; opacity: 0.95; position: relative; z-index: 1; }
.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-dark); 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: var(--text); 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;
  box-shadow: 0 8px 24px rgba(43,47,52,0.06);
}
.pillar svg { width: 30px; height: 30px; color: var(--gold-dark); margin: 0 auto 14px; }
.pillar:nth-child(even) svg { color: var(--silver-dark); }
.pillar h4 { color: var(--text); font-size: 16px; margin-bottom: 8px; }
.pillar p { color: var(--text-muted); font-size: 13.5px; }

/* ---------------- Team / Founders ---------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.team-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px 26px;
  background: var(--bg-card);
  text-align: center;
  box-shadow: 0 8px 24px rgba(43,47,52,0.06);
  transition: 0.35s ease;
}
.team-card:hover { border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 30px;
  color: #1f1a08;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}
.team-card:nth-child(even) .team-avatar {
  background: linear-gradient(135deg, var(--silver-light), var(--silver-dark));
  color: #202327;
}
.team-card h4 { color: var(--text); font-size: 19px; margin-bottom: 4px; }
.team-card span { color: var(--gold-dark); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---------------- Services page ---------------- */
.service-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-item:first-child { padding-top: 0; }
.service-num {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--silver-dark);
  opacity: 0.5;
}
.service-body { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.service-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-dark);
  background: rgba(201,162,39,0.06);
}
.service-item:nth-child(even) .service-icon { color: var(--silver-dark); background: rgba(102,109,118,0.08); }
.service-icon svg { width: 26px; height: 26px; }
.service-text { flex: 1; min-width: 240px; }
.service-text h3 { font-size: 23px; color: var(--text); margin-bottom: 8px; }
.service-text p { color: var(--text-muted); font-size: 15px; max-width: 640px; }

/* ---------------- 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;
  box-shadow: 0 8px 24px rgba(43,47,52,0.06);
}
.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: #1f1a08;
}
.info-card:nth-child(even) .bicon {
  background: linear-gradient(135deg, var(--silver-light), var(--silver-dark));
  color: #202327;
}
.info-card .bicon svg { width: 20px; height: 20px; }
.info-card h4 { color: var(--text); 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-dark); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(43,47,52,0.06);
}
.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;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--text); 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: var(--bg);
  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: #fff; }
.field select { color-scheme: light; }
.field select option { color: var(--text); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-msg { margin-top: 16px; font-size: 13.5px; color: var(--gold-dark); 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) 55%, var(--silver-dark));
  color: #1f1a08;
  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; }
  .team-grid { grid-template-columns: 1fr; }
}
@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; }
  .page-hero { padding: 84px 0 60px; }
  .hero { min-height: 360px; }
  .hero .container { padding: 140px 20px 28px; }
  .hero-inner { max-width: 100%; margin-right: 0; }
  .hero-art { width: 100%; }
  .hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(250,248,244,0.2) 0%, rgba(250,248,244,0.7) 34%, var(--bg) 46%, var(--bg) 100%);
  }
  .process-item, .service-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; }
}
