:root {
  --navy-950: #081220;
  --navy-900: #0a1626;
  --navy-800: #0e1c33;
  --navy-700: #14263f;
  --navy-100: #e8ecf3;
  --gold: #c9a24b;
  --gold-light: #e3c887;
  --gold-dark: #a9832f;
  --ivory: #f7f5ef;
  --white: #ffffff;
  --text: #4a5568;
  --heading: #12233c;
  --border: #e8e3d8;
  --shadow-sm: 0 6px 18px rgba(10, 22, 38, 0.07);
  --shadow-md: 0 14px 34px rgba(10, 22, 38, 0.11);
  --shadow-lg: 0 24px 60px rgba(10, 22, 38, 0.16);
  --radius: 14px;
  --ff-head: "Playfair Display", Georgia, serif;
  --ff-body: "Jost", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(70px, 9vw, 110px) 0; }

.section-alt { background: var(--ivory); }

.center { text-align: center; margin-top: 48px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-900);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 75, 0.45);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy-800);
  transform: translateY(-3px);
}

.btn-outline-dark {
  border-color: var(--navy-800);
  color: var(--navy-800);
}

.btn-outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--navy-800);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-lg { padding: 17px 36px; }
.btn-full { width: 100%; justify-content: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-tag::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 18px;
}

.section-sub {
  max-width: 620px;
  font-size: 1.05rem;
}

.section-head { margin-bottom: clamp(44px, 6vw, 64px); }
.section-head.light .section-title { color: var(--white); }
.section-head.light .section-sub { color: rgba(255, 255, 255, 0.72); margin-inline: auto; }
.section-head.light { text-align: center; }
.section-head.light .section-tag::before { display: none; }
.section-head.light .section-sub { margin-left: auto; margin-right: auto; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.loader-mark {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 4px;
  animation: pulse 1.6s ease-in-out infinite;
}

.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  animation: slide 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  padding: 8px 0;
  transition: margin-top 0.35s ease, opacity 0.35s ease;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.topbar a { color: inherit; display: inline-flex; align-items: center; gap: 7px; transition: color 0.25s; }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .topbar { margin-top: -41px; opacity: 0; pointer-events: none; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(201, 162, 75, 0.4);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }

.brand-text strong {
  font-family: var(--ff-head);
  font-size: 1.22rem;
  color: var(--white);
  transition: color 0.3s;
}

.brand-text small {
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

.site-header.scrolled .nav-link { color: var(--heading); }
.site-header.scrolled .brand-text strong { color: var(--heading); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active { color: var(--gold-dark); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 162, 75, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(201, 162, 75, 0.08), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800) 55%, #16304f);
  padding: 150px 0 60px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
}

.shape-1 {
  width: 480px;
  height: 480px;
  background: rgba(201, 162, 75, 0.18);
  top: -140px;
  right: -120px;
}

.shape-2 {
  width: 380px;
  height: 380px;
  background: rgba(38, 84, 143, 0.4);
  bottom: -120px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 75, 0.4);
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 26px;
  background: rgba(201, 162, 75, 0.07);
}

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  color: var(--white);
  margin-bottom: 22px;
}

.hero-title span {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-subtitle strong { color: var(--white); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-badges i { color: var(--gold); }

.hero-figure {
  position: relative;
  justify-self: center;
}

.figure-frame {
  position: relative;
  width: min(360px, 78vw);
  aspect-ratio: 4 / 5;
  border-radius: 190px 190px 22px 22px;
  overflow: hidden;
  border: 3px solid rgba(201, 162, 75, 0.55);
  box-shadow: var(--shadow-lg);
}

.figure-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.figure-frame:hover img { transform: scale(1.05); }

.figure-card {
  position: absolute;
  left: -34px;
  bottom: 34px;
  background: var(--gold);
  color: var(--navy-900);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}

.figure-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.7rem;
}

.figure-card span { font-size: 0.8rem; font-weight: 600; }

.figure-ring {
  position: absolute;
  top: -26px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(201, 162, 75, 0.5);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: clamp(50px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px clamp(24px, 4vw, 54px);
}

.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.stat h3 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--gold);
}

.stat p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.about-media { position: relative; }

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-wrap:hover img { transform: scale(1.06); }

.about-exp {
  position: absolute;
  right: -18px;
  bottom: -28px;
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--gold);
}

.about-exp strong {
  font-family: var(--ff-head);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.about-exp strong span { color: var(--white); }
.about-exp p { font-size: 0.82rem; line-height: 1.45; opacity: 0.85; }

.about-content .lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: #37435a;
  margin-bottom: 14px;
}

.about-list { margin: 24px 0 30px; display: grid; gap: 12px; }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: #37435a;
}

.about-list i {
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-sign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.sign-info strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--heading);
}

.sign-info span { font-size: 0.85rem; }

.services.section-dark {
  background:
    radial-gradient(800px 400px at 110% 0%, rgba(201, 162, 75, 0.09), transparent 60%),
    linear-gradient(165deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 34px 26px;
  overflow: hidden;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -70% -40%;
  height: 65%;
  background: radial-gradient(closest-side, rgba(201, 162, 75, 0.22), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 162, 75, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before { opacity: 1; }

.service-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(201, 162, 75, 0.35); }

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 16px;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy-900);
  transform: rotateY(180deg);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.service-link i { transition: transform 0.3s; }
.service-link:hover i { transform: translateX(6px); }

.services-note {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  background: rgba(201, 162, 75, 0.08);
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-radius: var(--radius);
  padding: 24px 32px;
}

.services-note p {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.services-note i { color: var(--gold); font-size: 1.2rem; }

.skill { margin-bottom: 20px; }

.skill-head {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.skill-bar {
  height: 9px;
  background: #ece7da;
  border-radius: 99px;
  overflow: hidden;
}

.skill-bar span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform-origin: left;
  animation: growBar 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes growBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.exp-side { display: grid; gap: 24px; align-self: start; }

.spec-card,
.insure-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.spec-card h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.spec-card h3 i { color: var(--gold-dark); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }

.chips span {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ivory);
  border: 1px solid var(--border);
  color: #37435a;
  transition: all 0.3s ease;
  cursor: default;
}

.chips span:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.insure-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-color: transparent;
}

.insure-card i {
  font-size: 1.9rem;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
  padding: 18px;
  border-radius: 14px;
  flex-shrink: 0;
}

.insure-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.45rem;
  color: var(--white);
}

.insure-card span { color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; }

.resume-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--white);
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.tab-btn {
  font-family: var(--ff-body);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn i { font-size: 0.85rem; }

.tab-btn:hover { color: var(--navy-800); }

.tab-btn.active {
  background: var(--navy-800);
  color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.tab-panel {
  display: none;
  animation: fadeUp 0.55s ease both;
}

.tab-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.timeline {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gold) 0 6px, transparent 6px 12px);
  opacity: 0.5;
}

.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.15);
}

.tl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tl-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.tl-card.current { border-left-color: var(--navy-800); }

.tl-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 162, 75, 0.1);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.tl-card h3 { font-size: 1.25rem; margin-bottom: 6px; }

.tl-card h4 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.tl-card h4 i { color: var(--gold-dark); font-size: 0.8rem; transform: translateY(1px); }

.tl-card p { margin-top: 10px; font-size: 0.93rem; }

.cta-band {
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(201, 162, 75, 0.25), transparent 60%),
    linear-gradient(120deg, var(--gold-dark), var(--gold));
  padding: clamp(44px, 6vw, 70px) 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.cta-band h2 { color: var(--navy-900); font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { color: rgba(10, 22, 38, 0.75); font-weight: 500; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}

.filter-btn {
  font-family: var(--ff-body);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

.filter-btn.active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--gold-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.g-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 22px 18px;
  background: linear-gradient(to top, rgba(8, 18, 32, 0.92), transparent);
  transform: translateY(calc(100% - 74px));
  transition: transform 0.45s ease;
}

.g-item h3 {
  color: var(--white);
  font-size: 1.02rem;
}

.g-item figcaption span {
  font-size: 0.76rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.g-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 75, 0.92);
  color: var(--navy-900);
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.35s ease;
  cursor: pointer;
}

.g-item:hover img { transform: scale(1.08); }
.g-item:hover figcaption { transform: translateY(0); }
.g-item:hover .g-zoom, .g-zoom:focus-visible { opacity: 1; transform: scale(1); }

.g-item.hide { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 18, 32, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(920px, 90vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  border: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: scale(1.08);
}

.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-thumb img { transform: scale(1.07); }

.news-date {
  position: absolute;
  left: 18px;
  bottom: -22px;
  background: var(--gold);
  color: var(--navy-900);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.news-date b {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.3rem;
}

.news-body { padding: 34px 24px 26px; }

.news-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.news-body h3 {
  font-size: 1.22rem;
  margin: 10px 0 10px;
}

.news-body h3 a { color: var(--heading); transition: color 0.3s; }
.news-body h3 a:hover { color: var(--gold-dark); }

.news-body p {
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.contact-info {
  background:
    radial-gradient(400px 260px at 110% 0%, rgba(201, 162, 75, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  position: sticky;
  top: 120px;
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.contact-info ul { display: grid; gap: 24px; }

.contact-info li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 75, 0.14);
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.05rem;
}

.contact-info strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.contact-info a { color: inherit; transition: color 0.25s; }
.contact-info a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 44px);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 26px;
}

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

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--heading);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--heading);
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.16);
  background: var(--white);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d64545;
  background: #fdf4f4;
}

.err {
  display: none;
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 5px;
}

.field.invalid .err { display: block; }

.form-status {
  margin-top: 16px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-status.ok { display: block; color: #1e7e46; }
.form-status.fail { display: block; color: #c0392b; }

.site-footer {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(201, 162, 75, 0.07), transparent 55%),
    linear-gradient(165deg, var(--navy-950), var(--navy-900));
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: clamp(30px, 4vw, 56px);
  padding: clamp(54px, 7vw, 80px) 0 50px;
}

.brand.light .brand-text strong { color: var(--white); }

.f-brand > p {
  margin: 20px 0 22px;
  font-size: 0.94rem;
  max-width: 320px;
}

.socials { display: flex; gap: 12px; }

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-4px);
}

.f-links h4,
.f-contact h4 {
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.f-links h4::after,
.f-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.f-links ul { display: grid; gap: 11px; }

.f-links a {
  font-size: 0.93rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.f-links a::before {
  content: "›";
  color: var(--gold);
  font-weight: 700;
}

.f-links a:hover { color: var(--gold-light); padding-left: 6px; }

.f-contact p {
  display: flex;
  gap: 12px;
  font-size: 0.93rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.f-contact i { color: var(--gold); margin-top: 5px; }

.f-contact a { color: inherit; transition: color 0.25s; }
.f-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 20px 0;
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.fb-inner a {
  color: var(--gold-light);
  font-weight: 600;
}

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-900);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.35s ease;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover { transform: translateY(-5px); }

.page-banner {
  position: relative;
  padding: clamp(150px, 18vw, 210px) 0 clamp(56px, 8vw, 80px);
  background:
    radial-gradient(700px 340px at 88% -10%, rgba(201, 162, 75, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800) 60%, #16304f);
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: var(--white);
  clip-path: ellipse(75% 100% at 50% 100%);
}

.banner-title {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
}

.breadcrumb li { display: flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before { content: "/"; color: rgba(201, 162, 75, 0.7); }
.breadcrumb a { color: var(--gold-light); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

.intro-block {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.intro-block p { margin-bottom: 12px; }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 8px;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 60;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--heading);
  transition: all 0.25s ease;
}

.dropdown a:hover, .dropdown a.active {
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold-dark);
  padding-left: 22px;
}

.site-header.scrolled .dropdown .nav-link-color { color: var(--heading); }

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 20px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.feature-list i { color: var(--gold); font-size: 1rem; }

.event-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.event-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.event-img-wrap img { width: 100%; object-fit: cover; }

.event-price-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }

.event-head {
  padding: 26px 28px 22px;
  border-bottom: 1px dashed var(--border);
  position: relative;
}

.event-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--gold-dark);
  background: rgba(201, 162, 75, 0.12);
  border-radius: 14px;
  margin-bottom: 16px;
}

.event-head h3 { font-size: 1.25rem; padding-right: 70px; }

.event-price {
  position: absolute;
  top: 24px;
  right: 24px;
  text-align: center;
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.event-price small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 16px 28px;
  font-size: 0.86rem;
  color: var(--text);
}

.event-meta span { display: inline-flex; align-items: center; gap: 8px; }
.event-meta i { color: var(--gold-dark); }

.event-body { padding: 0 28px 26px; }
.event-body p { font-size: 0.93rem; margin-bottom: 20px; }

.book-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

.book-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.book-cover {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.book-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.book-card:hover .book-cover img { transform: scale(1.06); }

.book-offer {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #b23b3b;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
}

.book-info { padding: 22px 20px 26px; }

.book-info h3 { font-size: 1.08rem; margin-bottom: 6px; }

.book-author {
  font-size: 0.82rem;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}

.book-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 800;
  color: var(--gold-dark);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.book-price del {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: #9aa2af;
}

.doc-list { display: grid; gap: 22px; max-width: 860px; margin-inline: auto; }

.doc-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doc-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.doc-thumb {
  width: 74px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.doc-thumb img { width: 100%; height: 100%; object-fit: cover; }

.doc-info { flex: 1; min-width: 200px; }

.doc-info h3 { font-size: 1.15rem; margin-bottom: 8px; }

.doc-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.82rem; color: var(--text); }

.doc-meta span { display: inline-flex; align-items: center; gap: 7px; }
.doc-meta i { color: var(--gold-dark); }

.pub-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pub-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
}

.pub-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pub-feature:hover img { transform: scale(1.07); }

.pub-feature figcaption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 110px 28px 28px;
  background: linear-gradient(to top, rgba(8, 18, 32, 0.95) 30%, transparent);
}

.pub-feature h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 8px; }
.pub-feature p { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; margin-bottom: 14px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 64px);
}

.cat-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 75, 0.6);
  box-shadow: var(--shadow-md);
}

.cat-card .ci-icon { width: 46px; height: 46px; font-size: 1rem; }

.cat-card h3 { font-size: 1.05rem; margin-bottom: 5px; }
.cat-card p { font-size: 0.84rem; }

.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.cp-card .service-icon { background: rgba(201, 162, 75, 0.12); border-color: rgba(201, 162, 75, 0.35); color: var(--gold-dark); }

.fact-band {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(201, 162, 75, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 50px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fact {
  text-align: center;
  padding: 10px;
  border-radius: 12px;
}

.fact i { font-size: 1.5rem; color: var(--gold); margin-bottom: 12px; }

.fact strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.fact span { font-size: 0.84rem; color: rgba(255, 255, 255, 0.68); }

.profile-dl {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
  background: var(--ivory);
  border: 1px dashed rgba(201, 162, 75, 0.7);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}

.profile-thumb {
  width: 190px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.step-card:hover { transform: translateY(-6px); }

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -20px;
  left: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(201, 162, 75, 0.4);
}

.step-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; }

.service-detail {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 38px);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover { border-color: rgba(201, 162, 75, 0.65); box-shadow: var(--shadow-md); }

.sd-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold-dark);
  background: rgba(201, 162, 75, 0.12);
  border-radius: 16px;
  flex-shrink: 0;
}

.service-detail h3 { font-size: 1.35rem; margin-bottom: 6px; }
.service-detail h3 small {
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  display: block;
  margin-bottom: 4px;
}

.service-detail p { font-size: 0.95rem; max-width: 760px; }

.sd-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sd-points span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #37435a;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}

.consult-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .book-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .f-contact { grid-column: 2 / -1; }
  .nav-cta { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
}

@media (max-width: 900px) {
  .topbar-right span { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-figure { order: -1; }
  .figure-card { left: -6px; }
  .grid-2 { grid-template-columns: 1fr; }
  .event-intro { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid, .news-grid, .pub-features, .cp-grid, .cat-grid, .consult-types { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .fact-band { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .stat + .stat::before { display: none; }
  .about-exp { right: 6px; bottom: -22px; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    height: 100vh;
    width: min(320px, 84vw);
    background: var(--navy-950);
    flex-direction: column;
    gap: 4px;
    padding: 96px 28px 40px;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    z-index: 998;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.open { right: 0; }

  .nav-link { color: var(--white) !important; padding: 13px 4px; font-size: 1.02rem; }
  .nav-link::after { display: none; }
  .nav-link.active { color: var(--gold) !important; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: none;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .dropdown a { color: rgba(255, 255, 255, 0.75); padding-left: 16px; }
  .dropdown a:hover, .dropdown a.active { color: var(--gold-light); background: transparent; }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 32, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 997;
  }

  .nav-backdrop.show { opacity: 1; visibility: visible; }

  .site-header.scrolled .topbar { margin-top: 0; opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid, .news-grid, .pub-features, .cp-grid, .cat-grid, .consult-types { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-contact { grid-column: auto; }
  .cta-band-inner { justify-content: center; text-align: center; }
  .fb-inner { justify-content: center; text-align: center; }
  .resume-topbar { justify-content: center; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; justify-content: center; padding: 10px 12px; font-size: 0.82rem; }
  .tl-card { padding: 20px; }
  .doc-card { flex-direction: column; align-items: flex-start; }
  .service-detail { grid-template-columns: 1fr; }
  .sd-icon { margin-inline: auto; }
  .text-center-sm { text-align: center; }
  .profile-thumb { margin-inline: auto; }
  .profile-dl { justify-content: center; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; padding: 22px; }
  .about-sign { justify-content: center; text-align: center; }
  .event-head h3 { padding-right: 0; }
  .event-price { position: static; margin-top: 10px; text-align: left; }
  .event-price small { display: inline-block; margin-left: 6px; }
}

@media (max-width: 420px) {
  .book-grid { grid-template-columns: 1fr; }
  .fact-band { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
