*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --gold: #c7a542;
  --white: #ffffff;
  --slate: #0f0f0f;
  --grey: #9ea3ab;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Roboto', 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--slate);
  color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  margin: 0 0 1rem;
  color: var(--white);
}

.site-header {
  background: var(--black);
  border-bottom: 1px solid rgba(199, 165, 66, 0.2);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(199, 165, 66, 0.2);
}

.brand {
  display: flex;
  /* align-items: center; */
  gap: 1rem;
}
.brand div{
  margin:8px 0px;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(199, 165, 66, 0.3));
}

.brand-name {
  margin: 0px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--grey);
  /* display: none; */
}

.top-bar-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0.75rem 0;
}

.site-nav a {
  color: var(--grey);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 6vw, 5rem) 4rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-cta-card {
  border: 1px solid rgba(199, 165, 66, 0.4);
  padding: 2rem;
  align-self: center;
  background: rgba(5, 5, 5, 0.7);
}

.hero-cta-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-cta-card a {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-cta-card .small {
  color: var(--grey);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: #e9ca6f;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-intro[data-icon] {
  position: relative;
  padding-left: 4.5rem;
}

.section-intro[data-icon]::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(199, 165, 66, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold);
  background: rgba(5, 5, 5, 0.7);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card-grid article {
  border: 1px solid rgba(199, 165, 66, 0.2);
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.55);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(199, 165, 66, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(199, 165, 66, 0.2);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  padding: 1.5rem;
  isolation: isolate;
  background: #0a0a0a;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(0.3);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 30%, rgba(5, 5, 5, 0.9));
  z-index: -1;
}

.service-card h3 {
  margin-bottom: 0.25rem;
}

.service-card p {
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.service-card a {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.badge {
  border: 1px solid rgba(199, 165, 66, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.insight-list li {
  border: 1px solid rgba(199, 165, 66, 0.2);
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.6);
}

.insight-list a {
  color: var(--gold);
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step {
  border: 1px solid rgba(199, 165, 66, 0.2);
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.65);
  border-radius: 6px;
}

.process-step span {
  display: inline-block;
  background: rgba(199, 165, 66, 0.15);
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.data-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.data-card {
  padding: 1.5rem;
  border: 1px solid rgba(199, 165, 66, 0.2);
  background: rgba(5, 5, 5, 0.6);
  text-align: center;
}

.data-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.quote-card {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(5, 5, 5, 0.55);
  font-style: italic;
  margin-top: 1.5rem;
}

.contact-panel {
  border: 1px solid rgba(199, 165, 66, 0.25);
  padding: 1.75rem;
  background: rgba(5, 5, 5, 0.7);
  margin-top: 2rem;
}

.contact-panel a {
  color: var(--gold);
  font-weight: 600;
}

.legal-panel {
  border: 1px solid rgba(199, 165, 66, 0.3);
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.65);
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--grey);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.timeline-card {
  border: 1px solid rgba(199, 165, 66, 0.2);
  padding: 1.5rem;
  background: rgba(5, 5, 5, 0.6);
}

.timeline-card span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.service-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.service-list li {
  margin-bottom: 0.5rem;
  color: var(--grey);
}

.service-list strong {
  color: var(--gold);
  display: block;
}

.card-grid a {
  color: var(--gold);
  font-weight: 500;
}

.stats {
  background: rgba(5, 5, 5, 0.85);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stats span {
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(199, 165, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  background: rgba(5, 5, 5, 0.5);
}

.stats .icon-circle {
  margin: 0 auto 0.5rem;
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  background: linear-gradient(110deg, rgba(5, 5, 5, 0.8), rgba(199, 165, 66, 0.08));
  border-top: 1px solid rgba(199, 165, 66, 0.2);
  border-bottom: 1px solid rgba(199, 165, 66, 0.2);
}

.highlight ul {
  padding-left: 1.2rem;
  color: var(--grey);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

blockquote {
  margin: 0;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(5, 5, 5, 0.55);
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(199, 165, 66, 0.2);
  background: rgba(5, 5, 5, 0.7);
}

.site-footer {
  padding: 3rem 1.5rem 2rem;
  background: #030303;
  border-top: 1px solid rgba(199, 165, 66, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid img {
  width: 96px;
  filter: grayscale(0.2);
}

.copyright {
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
}

main.page-content {
  min-height: 60vh;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.5));
}

.page-hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(199, 165, 66, 0.2);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

.content-card {
  border: 1px solid rgba(199, 165, 66, 0.15);
  padding: 1.75rem;
  background: rgba(5, 5, 5, 0.6);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(199, 165, 66, 0.3);
}

.timeline li {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: -6px;
  top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(199, 165, 66, 0.3);
  background: #0d0d0d;
  color: var(--white);
  font-family: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success-message {
  border: 2px solid var(--gold);
  background: rgba(5, 5, 5, 0.9);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.5s ease-in;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.form-success-message h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0;
}

.form-success-message p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.office-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-list li {
  border-bottom: 1px solid rgba(199, 165, 66, 0.15);
  padding: 1rem 0;
}

.office-list strong {
  display: block;
  color: var(--gold);
  letter-spacing: 1px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th,
td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(199, 165, 66, 0.15);
}

th {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  color: var(--gold);
}

.list-columns {
  columns: 2;
  gap: 2rem;
}

.service-detail {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 6vw, 5rem);
}

.service-detail h2 {
  margin-top: 2rem;
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-left: 2px solid rgba(199, 165, 66, 0.3);
}

.service-detail li {
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(199, 165, 66, 0.15);
}

#page-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 5rem);
  border-bottom: 1px solid rgba(199, 165, 66, 0.2);
  background: rgba(5, 5, 5, 0.7);
}

#page-nav a {
  border: 1px solid rgba(199, 165, 66, 0.4);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .top-bar-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
  }

  .top-bar-meta > * {
    white-space: nowrap;
  }

  .top-bar-meta .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
  }

  .site-nav {
    flex-direction: column;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    left: clamp(1.5rem, 6vw, 5rem);
    top: 1rem;
    z-index: 10;
  }

  .site-nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
    padding-top: 3rem;
  }

  .site-nav ul.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .list-columns {
    columns: 1;
  }

  .service-list {
    columns: 1;
  }
}

