:root {
  --color-bg: #050507;
  --color-bg-alt: #f5f5f5;
  --color-bg-dark: #111111;
  --color-gold: #d4af37;
  --color-gold-soft: #e3c96a;
  --color-text: #f7f7f7;
  --color-text-dark: #16161a;
  --color-muted: #b3b3b3;
  --max-width: 1100px;
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius-card: 14px;
  --transition-fast: 0.2s ease;
}

/* Global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(5, 5, 7, 0.98), rgba(5, 5, 7, 0.85), transparent);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--color-gold-soft);
  color: var(--color-gold);
  font-size: 0.75rem;
  margin-right: 0.35rem;
}

.logo-text {
  font-size: 1.1rem;
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-gold-soft);
  color: var(--color-gold-soft);
}

.nav-cta:hover {
  background: var(--color-gold-soft);
  color: #111111;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
  transition: var(--transition-fast);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 90px 0 70px;
  background: radial-gradient(circle at top left, #2b2b32 0, #050507 45%, #000000 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--color-gold-soft);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #dedede;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--color-gold);
  color: #111111;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-block {
  width: 100%;
}

/* Sections */

.section {
  padding: 80px 0;
}

.section-light {
  background-color: var(--color-bg-alt);
  color: var(--color-text-dark);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text);
}

.section-title-center {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 0.4rem 0 2rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  color: var(--color-gold);
}

.kicker-center {
  text-align: center;
}

/* Split layout */

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.split-text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.split-text p {
  margin-bottom: 0.8rem;
}

.split-media {
  position: relative;
}

/* Image card */

.image-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.image-card-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(212, 175, 55, 0.45);
  mix-blend-mode: screen;
  pointer-events: none;
}

.image-placeholder {
  min-height: 260px;
  background: linear-gradient(135deg, #2a2520, #101010);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.3rem;
  color: #f5f5f5;
  font-size: 0.9rem;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: #19191e;
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem 1.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 55%);
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.service-card p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: #d8d8d8;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.87rem;
  color: #c2c2c2;
}

.service-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold-soft);
}

.package-highlight {
  margin-top: 3rem;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.package-highlight h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.package-highlight p {
  font-size: 0.95rem;
  color: #e1e1e1;
}

.package-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 1.4rem;
}

/* Timeline / Experience */

.timeline {
  margin-top: 2.2rem;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  padding-left: 1.8rem;
}

.section-dark .timeline {
  border-left-color: rgba(255, 255, 255, 0.08);
}

.timeline-step {
  position: relative;
  margin-bottom: 1.8rem;
}

.timeline-marker {
  position: absolute;
  width: 10px;
  height: 10px;
  left: -5px;
  top: 0.3rem;
  border-radius: 999px;
  background: var(--color-gold);
}

.timeline-content h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #3b3b3b;
}

.section-dark .timeline-content p {
  color: #d3d3d3;
}

/* Testimonials */

.testimonial-slider {
  position: relative;
  margin-top: 2rem;
}

.testimonial-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial {
  min-width: 100%;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-card);
  background: #181820;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 0.9rem;
  color: var(--color-gold-soft);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.testimonial-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.testimonial-nav.prev {
  left: -10px;
}

.testimonial-nav.next {
  right: -10px;
}

/* Contact */

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1rem;
  font-size: 0.92rem;
}

.contact-details li {
  margin-bottom: 0.3rem;
}

.external-link {
  margin-top: 0.5rem;
}

.contact-note {
  font-size: 0.85rem;
  color: #555555;
  margin-top: 0.6rem;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555555;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d0d0d0;
  padding: 0.6rem 0.7rem;
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #888888;
}

/* Footer */

.site-footer {
  padding: 26px 0;
  background: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.2rem; /* tightened gap */
}

/* Normalize footer logo spacing */
.footer-brand .logo-mark,
.footer-brand .logo-text {
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* Match header letter-spacing */
.footer-brand .logo-text {
  letter-spacing: 0.12em;
}

.footer-tagline {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.footer-copy {
  margin-top: 0.1rem;
}

/* Responsive */

@media (max-width: 900px) {
  .header-inner {
    height: 64px;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(5, 5, 7, 0.97);
    padding: 0.9rem 1.5rem 1.3rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .split-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-nav.prev {
    left: 4px;
  }

  .testimonial-nav.next {
    right: 4px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: 60px 0;
  }

  .testimonial {
    padding: 1.4rem 1.2rem;
  }
}
