:root {
  --black: #090909;
  --soft-black: #151515;
  --gold: #d4af37;
  --light-gold: #f0d77a;
  --white: #ffffff;
  --cream: #f6f1e5;
  --gray: #b8b8b8;
  --line: rgba(255,255,255,.13);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 78px;
  padding: 10px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(9,9,9,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  width: 300px;
  height: 76px;
  margin-right: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.3);
  display: block;
}

.navigation { display: flex; gap: 24px; font-size: 14px; }
.navigation a:hover, footer a:hover { color: var(--gold); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
}

.button {
  display: inline-block;
  padding: 14px 21px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--light-gold);
  box-shadow: 0 10px 30px rgba(212,175,55,.18);
}

.button-secondary { background: transparent; color: var(--white); }

.hero {
  min-height: calc(100vh - 78px);
  padding: clamp(70px, 10vw, 130px) clamp(20px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(212,175,55,.17), transparent 30%),
    linear-gradient(135deg, #060606, #17140b);
}

.hero-content { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

h1 { font-size: clamp(46px, 7vw, 88px); }
h1 span { color: var(--gold); }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { margin: 8px 0; }

.hero-copy {
  max-width: 720px;
  color: #d5d5d5;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
}

.hero-stats div {
  min-width: 150px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.hero-stats strong { display: block; color: var(--gold); }
.hero-stats span { display: block; color: #cfcfcf; font-size: 13px; }

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 650px;
  height: 280px;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.08);
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(212,175,55,.16);
  filter: blur(85px);
}

.page-hero {
  padding: 110px clamp(20px, 7vw, 100px) 80px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(212,175,55,.15), transparent 35%),
    linear-gradient(135deg, #070707, #17140b);
}

.page-hero-content { max-width: 900px; margin: 0 auto; }

.trust-strip {
  padding: 18px clamp(20px, 7vw, 100px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 55px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  padding: clamp(75px, 10vw, 125px) clamp(20px, 7vw, 100px);
  background: var(--cream);
  color: var(--black);
}

.section-heading { max-width: 800px; margin-bottom: 45px; }
.section-heading > p:last-child { color: #5a5a5a; }

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

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

.service-card, .info-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d7d0bd;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.service-card:hover, .info-card:hover { transform: translateY(-7px); }
.service-card > span, .info-card > span { color: var(--gold); font-weight: 800; }
.service-card p, .info-card p { color: #555; }
.service-card strong { margin-top: auto; padding-top: 18px; }
.service-card a { margin-top: 15px; color: #806600; font-weight: 700; }

.popular-badge {
  display: inline-block;
  width: fit-content;
  margin: 10px 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dark-section { background: var(--soft-black); color: var(--white); }
.dark-section .section-heading > p:last-child { color: var(--gray); }

.dark-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: #101010;
}

.dark-card > span { color: var(--gold); font-weight: 800; }
.dark-card p { color: #c9c9c9; }

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

.project {
  border: 1px solid var(--line);
  background: #101010;
  transition: .25s ease;
}

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

.project-image {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,.35), transparent), #1d1d1d;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(27px, 4vw, 50px);
  letter-spacing: 4px;
}

.project > div:last-child { padding: 24px; }
.project p { margin: 0; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }
.project span { color: #c9c9c9; }

.resource-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.resource-layout p { color: #555; max-width: 650px; }
.resource-list { display: grid; gap: 15px; }
.resource-list div { padding: 20px; background: white; border: 1px solid #d7d0bd; font-weight: 600; }
.resource-list span { color: #897000; margin-right: 10px; }

.process-section { background: #ece5d3; }

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

.process-grid strong {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 50px;
}

.process-grid p { color: #565656; }

.faq-section { background: #f8f5ed; }
.faq-list { display: grid; gap: 14px; max-width: 900px; }

.faq-list details {
  padding: 20px 22px;
  border: 1px solid #d7d0bd;
  background: var(--white);
}

.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { color: #555; }

.contact-section,
.consultation-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
  background: #0e0e0e;
  color: white;
}

.consultation-section { background: var(--cream); color: var(--black); }
.consultation-info h2 { color: var(--black); }

.consultation-benefits { display: grid; gap: 20px; }

.consultation-benefits div {
  padding: 22px;
  background: var(--white);
  border: 1px solid #d7d0bd;
  box-shadow: var(--shadow);
}

.consultation-benefits strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
}

.contact-form {
  padding: 32px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(212,175,55,.4);
  background: #161616;
  color: var(--white);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px;
  border: 1px solid #444;
  border-radius: 0;
  background: #0d0d0d;
  color: white;
}

.form-note { margin: 0; color: #aaa; font-size: 12px; }

.facebook-button {
  margin-top: 24px;
  background: transparent;
  color: var(--gold);
}

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

.pricing-card {
  position: relative;
  min-height: 520px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d7d0bd;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured { border: 2px solid var(--gold); }

.pricing-label {
  margin: 0 0 8px;
  color: #9a7a00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  color: #111;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
}

.price span {
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card ul {
  margin: 0 0 28px;
  padding-left: 20px;
  color: #555;
}

.pricing-card li { margin-bottom: 10px; }
.pricing-card .button { margin-top: auto; text-align: center; }

.pricing-card .payment-button {
  margin-top: 12px;
  background: var(--black);
  color: var(--white);
}

.pricing-card .payment-button:hover {
  background: #242424;
}

.payment-note {
  margin: 12px 0 0;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.payment-note a {
  color: #806600;
  font-weight: 700;
  text-decoration: underline;
}

.policy-section { background: var(--cream); }

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid #d7d0bd;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-content h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(25px, 3vw, 34px);
}

.policy-content p { color: #4e4e4e; }

.policy-content a {
  color: #806600;
  font-weight: 700;
  text-decoration: underline;
}

.policy-notice {
  margin-top: 40px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: #f4eedf;
  font-size: 13px;
}

.cta-section {
  padding: 85px clamp(20px, 7vw, 100px);
  text-align: center;
  background: linear-gradient(135deg, #101010, #211b08);
}

.cta-section .container { max-width: 850px; margin: 0 auto; }
.cta-section p:not(.eyebrow) { color: #d3d3d3; }

footer {
  padding: 45px clamp(20px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 50px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-logo {
  width: 310px;
  height: 105px;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.2);
}

footer p { color: #999; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer > p { grid-column: 1 / -1; font-size: 12px; }

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

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

@media (max-width: 1050px) {
  .header-button { display: none; }
  .hero, .resource-layout, .contact-section, .consultation-section { grid-template-columns: 1fr; }
  .hero-visual { min-height: 300px; }
  .card-grid, .process-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid, .three-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .brand { width: 230px; height: 68px; }
  .brand-logo { transform: scale(1.35); }
  .menu-button { display: block; }

  .navigation {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 25px;
    flex-direction: column;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
  }

  .navigation.open { display: flex; }

  .hero {
    min-height: auto;
    padding: 65px 24px;
    text-align: center;
  }

  .hero-actions, .hero-stats { justify-content: center; }
  .hero-stats div { text-align: left; }
  .hero-logo { width: 340px; height: 160px; transform: scale(1.12); }
  .hero-visual { min-height: 220px; }
  .hero-glow { width: 250px; height: 250px; }

  .card-grid,
  .portfolio-grid,
  .process-grid,
  .pricing-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .service-card, .pricing-card { min-height: auto; }
  footer { grid-template-columns: 1fr; }
}
