:root {
  --bg-1: #030508;
  --bg-2: #0a0f1e;
  --bg-3: #121a32;
  --gold-1: #b8922e;
  --gold-2: #d4af5a;
  --gold-3: #f0dfa0;
  --gold-glow: rgba(212, 175, 90, 0.35);
  --text: #f8f9fc;
  --muted: #9aa3be;
  --border: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.04);
  --header-h: 80px;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg-1);
  overflow-x: hidden;
  line-height: 1.6;
}

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  stroke: currentColor;
}

.icon-brand { width: 1.6rem; height: 1.6rem; color: var(--gold-2); }
.icon-check { width: 1rem; height: 1rem; color: var(--gold-2); }

.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.scrolled,
.site-header.over-light {
  background: rgba(3, 5, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  margin-right: auto;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: "Cinzel", serif; font-size: 0.92rem; color: var(--gold-3); }
.brand-text small { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-2);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(212, 175, 90, 0.35);
  border-radius: 999px;
  transition: background 0.3s var(--ease);
}

.nav-phone:hover { background: rgba(212, 175, 90, 0.12); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-2); background: rgba(212, 175, 90, 0.08); }

.nav-cta {
  border: 1px solid rgba(212, 175, 90, 0.4) !important;
  color: var(--gold-2) !important;
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-2);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, #d4af5a, #a8842f);
  color: #1a1205;
  box-shadow: 0 10px 30px rgba(212, 175, 90, 0.35);
}

.btn-gold:hover { box-shadow: 0 14px 40px rgba(212, 175, 90, 0.5); }

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-glass:hover { background: rgba(255, 255, 255, 0.14); }

.btn-lg { padding: 1rem 1.75rem; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ══════════════════════════════════════
   HERO BANNER
══════════════════════════════════════ */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: banner-zoom 20s ease-in-out infinite alternate;
}

@keyframes banner-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.14); }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3, 5, 8, 0.97) 0%, rgba(3, 5, 8, 0.82) 42%, rgba(3, 5, 8, 0.55) 68%, rgba(3, 5, 8, 0.75) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.3) 0%, transparent 30%, rgba(3, 5, 8, 0.85) 100%);
}

.banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(90deg, var(--gold-2) 0, var(--gold-2) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, var(--gold-2) 0, var(--gold-2) 1px, transparent 1px, transparent 80px);
}

.banner-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 2rem;
}

.banner-content { max-width: 640px; }

.banner-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
  margin-bottom: 1.5rem;
  transform-origin: left;
  animation: line-grow 1.2s ease 0.3s both;
}

@keyframes line-grow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 12px var(--gold-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.banner-name {
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.01em;
}

.name-prefix {
  display: block;
  font-size: 0.45em;
  font-weight: 500;
  color: var(--gold-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.15em;
}

.banner-name em {
  display: block;
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold-1) 60%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-title {
  margin-top: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-2);
  letter-spacing: 0.04em;
}

.banner-tagline {
  margin-top: 1.1rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 520px;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Portrait frame */
.banner-portrait { display: flex; justify-content: flex-end; }

.portrait-frame {
  position: relative;
  width: min(380px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 90, 0.3);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 60px rgba(212, 175, 90, 0.12);
  transform-style: preserve-3d;
  will-change: transform;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 175, 90, 0.2);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.portrait-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.portrait-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(3, 5, 8, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: 12px;
  z-index: 3;
}

.portrait-badge .icon { color: var(--gold-2); width: 1.5rem; height: 1.5rem; }
.portrait-badge strong { display: block; font-size: 0.88rem; color: var(--gold-3); }
.portrait-badge span { font-size: 0.75rem; color: var(--muted); }

/* Stats bar */
.banner-stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 90, 0.15);
  background: rgba(3, 5, 8, 0.6);
  backdrop-filter: blur(16px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold-2);
  line-height: 1;
}

.stat-suffix {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  color: var(--gold-2);
}

.stat-text {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scroll-hint {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-hint i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold-2), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ── Sections ── */
.section { position: relative; z-index: 2; padding: 5.5rem 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  color: var(--gold-3);
  line-height: 1.3;
}

.section-desc { margin-top: 0.8rem; color: var(--muted); font-size: 0.92rem; }

/* ── About ── */
.about { background: var(--bg-2); }

.about-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid rgba(212, 175, 90, 0.25);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-copy .section-label,
.about-copy .section-title { text-align: left; }

.about-copy .lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--gold-2);
  line-height: 1.65;
  margin: 1rem 0;
}

.about-copy p { color: var(--muted); margin-bottom: 0.9rem; font-size: 0.93rem; }
.about-copy strong { color: var(--text); }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.highlight-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 90, 0.25);
}

.highlight-card .icon { color: var(--gold-2); margin-bottom: 0.6rem; width: 1.5rem; height: 1.5rem; }
.highlight-card h3 { font-family: "Cinzel", serif; font-size: 0.88rem; color: var(--gold-2); margin-bottom: 0.3rem; }
.highlight-card p { font-size: 0.8rem; color: var(--muted); }

/* ── Timeline ── */
.education { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }

.timeline { position: relative; max-width: 720px; margin: 0 auto; }

.timeline-track {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-1), transparent);
  transform-origin: top;
  transform: scaleY(0);
}

.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker { flex-shrink: 0; width: 58px; display: flex; justify-content: center; }

.timeline-year {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid rgba(212, 175, 90, 0.4);
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
  color: var(--gold-2);
  transition: box-shadow 0.35s, border-color 0.35s;
}

.timeline-item:hover .timeline-year {
  border-color: var(--gold-2);
  box-shadow: 0 0 24px var(--gold-glow);
}

.timeline-content {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: transform 0.35s, border-color 0.35s;
}

.timeline-item:hover .timeline-content { transform: translateX(6px); border-color: rgba(212, 175, 90, 0.2); }

.timeline-content.featured {
  border-color: rgba(212, 175, 90, 0.3);
  background: linear-gradient(135deg, rgba(212, 175, 90, 0.07), var(--glass));
}

.degree-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.55rem;
  border-radius: 5px;
  background: rgba(212, 175, 90, 0.12);
  color: var(--gold-2);
  margin-bottom: 0.45rem;
}

.degree-badge.phd { border: 1px solid rgba(212, 175, 90, 0.35); }

.timeline-content h3 { font-family: "Cinzel", serif; font-size: 1rem; margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.86rem; color: var(--muted); }

/* ── Services ── */
.services { background: var(--bg-2); }

.services-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.75rem; }

.service-tabs { display: flex; flex-direction: column; gap: 0.35rem; }

.service-tab {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease);
}

.service-tab .icon { color: inherit; }

.service-tab:hover { background: var(--glass); color: var(--text); }

.service-tab.active {
  background: linear-gradient(135deg, rgba(212, 175, 90, 0.14), rgba(212, 175, 90, 0.04));
  border-color: rgba(212, 175, 90, 0.3);
  color: var(--gold-2);
}

.service-tab.active .icon { color: var(--gold-2); }

.service-panel {
  display: none;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--glass);
  min-height: 340px;
}

.service-panel.active { display: grid; animation: panel-in 0.4s ease both; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-visual img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }

.panel-body { padding: 2rem; }

.panel-body h3 { font-family: "Cinzel", serif; font-size: 1.2rem; color: var(--gold-2); margin-bottom: 0.4rem; }
.panel-body > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

.service-list { list-style: none; display: grid; gap: 0.6rem; }

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.45rem 0;
}

/* ── Projects ── */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }

.project-bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-bg { transform: scale(1.06); }

.project-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(3, 5, 8, 0.75) 0%, rgba(3, 5, 8, 0.92) 100%);
}

.project-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-content .icon { color: var(--gold-2); width: 1.6rem; height: 1.6rem; margin-bottom: 0.85rem; }
.project-content h3 { font-family: "Cinzel", serif; font-size: 1.05rem; color: var(--gold-3); margin-bottom: 0.5rem; }
.project-content p { font-size: 0.85rem; color: var(--muted); flex: 1; line-height: 1.6; }

.project-tag {
  display: inline-block;
  margin-top: 1rem;
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 5px;
  background: rgba(212, 175, 90, 0.15);
  color: var(--gold-2);
  border: 1px solid rgba(212, 175, 90, 0.25);
}

.project-card.featured { border-color: rgba(212, 175, 90, 0.35); }

/* ── Why Us ── */
.why-us { background: linear-gradient(180deg, var(--bg-1), var(--bg-2)); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }

.why-card {
  padding: 1.75rem 1.4rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: transform 0.35s, border-color 0.35s;
}

.why-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 90, 0.2); }

.why-num { font-family: "Cinzel", serif; font-size: 2rem; color: rgba(212, 175, 90, 0.2); line-height: 1; margin-bottom: 0.7rem; }
.why-card h3 { font-family: "Cinzel", serif; font-size: 0.92rem; color: var(--gold-2); margin-bottom: 0.45rem; }
.why-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ── Contact ── */
.contact { background: var(--bg-2); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
}

.contact-info .section-label { display: block; text-align: left; }
.contact-info .section-title { text-align: left; font-size: clamp(1.35rem, 2.8vw, 1.9rem); margin-bottom: 0.85rem; }
.contact-info > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1.75rem; }

.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-item .icon { color: var(--gold-2); margin-top: 0.15rem; }
.contact-item strong { display: block; font-size: 0.9rem; }
.contact-item span,
.contact-item a { font-size: 0.84rem; color: var(--muted); text-decoration: none; }
.contact-item a:hover { color: var(--gold-2); }

.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--muted); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 90, 0.4);
  box-shadow: 0 0 0 3px rgba(212, 175, 90, 0.08);
}

.form-group select option { background: var(--bg-2); }
.form-note { text-align: center; font-size: 0.84rem; min-height: 1.2rem; }
.form-note.success { color: #6fcf6f; }

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand strong { display: block; font-family: "Cinzel", serif; color: var(--gold-2); font-size: 0.92rem; }
.footer-brand span { font-size: 0.76rem; color: var(--muted); }

.footer-phone {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 175, 90, 0.3);
  border-radius: 999px;
  transition: background 0.3s;
}

.footer-phone:hover { background: rgba(212, 175, 90, 0.1); }

.footer-tagline {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(154, 163, 190, 0.7);
  line-height: 1.7;
}

.footer-copy a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.footer-copy a:hover { opacity: 0.8; text-decoration: underline; }

/* ── Floating call button ── */
.fab-call {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d4af5a, #a8842f);
  color: #1a1205;
  box-shadow: 0 8px 28px rgba(212, 175, 90, 0.45);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fab-pulse 3s ease-in-out infinite;
}

.fab-call .icon { width: 1.4rem; height: 1.4rem; }
.fab-call:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(212, 175, 90, 0.6); }

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(212, 175, 90, 0.45); }
  50% { box-shadow: 0 8px 28px rgba(212, 175, 90, 0.45), 0 0 0 10px rgba(212, 175, 90, 0.1); }
}

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(28px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .banner-body { grid-template-columns: 1fr; text-align: center; }
  .banner-content { max-width: 100%; margin-inline: auto; }
  .banner-line { margin-inline: auto; }
  .banner-tagline { margin-inline: auto; }
  .banner-actions { justify-content: center; }
  .banner-portrait { justify-content: center; }
  .scroll-hint { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-image { max-width: 420px; margin-inline: auto; }
  .services-layout { grid-template-columns: 1fr; }
  .service-panel { grid-template-columns: 1fr; }
  .panel-visual img { min-height: 200px; max-height: 220px; }
}

@media (max-width: 768px) {
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(3, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
  }

  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; width: 100%; padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .service-tabs { flex-direction: row; flex-wrap: wrap; }
  .service-tab { flex: 1 1 calc(50% - 0.35rem); font-size: 0.78rem; padding: 0.7rem; }
  .service-tab span:not(.icon) { display: none; }

  .projects-grid,
  .why-grid,
  .about-highlights { grid-template-columns: 1fr; }

  .contact-wrapper { grid-template-columns: 1fr; padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}
