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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4efe4;
  color: #111827;
  line-height: 1.6;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 14px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #06101f;
  border-bottom: 1px solid rgba(205, 158, 70, 0.22);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.home-navbar {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(6, 16, 31, 0.86);
  border-bottom: 1px solid rgba(205, 158, 70, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
  min-width: 270px;
}

.brand,
.brand:hover,
.brand:visited,
.brand:active {
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 0;
  background: #06101f;
  padding: 0;
  box-shadow: none;
  filter: none;
}

.brand-text span {
  display: block;
  font-weight: 800;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  display: block;
  color: #d6b46c;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #f8fafc;
  font-size: 0.94rem;
  font-weight: 700;
  position: relative;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #d6b46c;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #d6b46c;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: #d6b46c;
}

nav a.active::after {
  width: 100%;
}

/* HOME HERO */

.home-hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 13, 27, 0.18) 0%, rgba(5, 13, 27, 0.28) 42%, rgba(5, 13, 27, 0.14) 100%),
    url("assets/background.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 135px 7% 125px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 27, 0.04), rgba(5, 13, 27, 0.24));
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.clean-hero-content {
  margin-top: 60px;
}

.home-tagline {
  color: #ffffff;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.7;
  margin-bottom: 58px;
}

.home-description {
  max-width: 940px;
  color: #f3f4f6;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 0;
  font-weight: 500;
}

.moved-down-description {
  margin-top: 120px;
}

/* HERO BUTTON */

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 28px;
  border: 1px solid #d6b46c;
  color: #d6b46c;
  background: rgba(5, 13, 27, 0.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.hero-outline-btn:hover {
  background: #d6b46c;
  color: #07142a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(214, 180, 108, 0.24);
}

.hero-outline-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(214, 180, 108, 0.18);
}

.hero-outline-btn span {
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.hero-outline-btn:hover span {
  transform: translateX(6px);
}

.hero-button-lower {
  margin-top: 48px;
}

.extra-lower-button {
  margin-top: 70px;
}

/* STANDARD HERO FOR OTHER PAGES */

.page-hero {
  padding: 100px 7%;
  background:
    linear-gradient(90deg, rgba(5, 13, 27, 0.96), rgba(5, 13, 27, 0.86)),
    url("assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #050d1b;
  color: white;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 780px;
  color: #e5e7eb;
  font-size: 1.1rem;
}

/* BUTTONS */

.hero-buttons,
.contact-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: #c99a42;
  color: #ffffff;
}

.btn.primary:hover {
  background: #d6b46c;
  color: #07142a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 154, 66, 0.24);
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn.secondary {
  border: 1px solid #d6b46c;
  color: #ffffff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn.dark {
  background: #07142a;
  color: white;
}

.btn.dark:hover {
  background: #13213d;
  transform: translateY(-2px);
}

/* SECTIONS */

.section {
  padding: 90px 7%;
}

.section h2 {
  font-size: 2.15rem;
  line-height: 1.2;
  color: #07142a;
  max-width: 900px;
  margin-bottom: 20px;
}

.section p {
  max-width: 880px;
  color: #4b5563;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.white {
  background: #ffffff;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: #b88735;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-label.light {
  color: #d6b46c;
}

/* CARDS */

.cards {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #ded5c5;
  box-shadow: 0 12px 30px rgba(7, 20, 42, 0.08);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(7, 20, 42, 0.12);
}

.card-number {
  display: inline-block;
  color: #b88735;
  font-weight: 900;
  margin-bottom: 12px;
}

.card h3 {
  color: #07142a;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* SERVICE BLOCKS */

.service-block {
  padding: 42px 0;
  border-bottom: 1px solid #ded5c5;
  scroll-margin-top: 120px;
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h2 {
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.check-list li {
  color: #374151;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  color: #b88735;
  font-weight: 900;
  margin-right: 10px;
}

/* CTA */

.dark-cta {
  background: #050d1b;
  color: white;
}

.dark-cta h2 {
  color: white;
}

.dark-cta p {
  color: #e5e7eb;
  margin-bottom: 26px;
}

/* DELIVERABLE GRID */

.deliverable-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deliverable-grid div {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(214, 180, 108, 0.35);
  font-weight: 700;
  transition: all 0.25s ease;
}

.deliverable-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 180, 108, 0.65);
  background: rgba(255, 255, 255, 0.09);
}

.light-grid div {
  background: #f6f2e9;
  color: #07142a;
  border: 1px solid #ded5c5;
}

/* PRICING */

.pricing {
  background: #ffffff;
}

.pricing-note {
  margin-top: 28px;
  padding: 20px;
  background: #f6f2e9;
  border-left: 4px solid #b88735;
  border-radius: 8px;
  font-weight: 600;
}

/* CONTACT FORM */

.contact-page {
  min-height: 50vh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  max-width: 760px;
  padding: 40px;
  background: #f6f2e9;
  border: 1px solid #ded5c5;
  border-radius: 16px;
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-weight: 700;
  color: #07142a;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d6cabb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  color: #111827;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b88735;
  box-shadow: 0 0 0 3px rgba(184, 135, 53, 0.18);
}

.form-button {
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: fit-content;
}

.contact-info {
  background: #07142a;
  color: #ffffff;
  padding: 32px;
  border-radius: 16px;
}

.contact-info h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.contact-info p {
  color: #d1d5db;
  margin-bottom: 16px;
}

.contact-info ul {
  margin-left: 18px;
  margin-bottom: 24px;
}

.contact-info li {
  margin-bottom: 8px;
  color: #e5e7eb;
}

.info-box {
  padding: 18px;
  border: 1px solid rgba(214, 180, 108, 0.35);
  border-radius: 12px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.info-box strong {
  color: #d6b46c;
}

.info-box p {
  font-size: 0.95rem;
  margin-top: 8px;
  margin-bottom: 0;
}

.text-link {
  color: #d6b46c;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* LEGAL TEXT */

.legal-text h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.legal-text h2:first-child {
  margin-top: 0;
}

/* FOOTER */

footer {
  padding: 28px 7%;
  background: #030b19;
  color: #cbd5e1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer strong {
  color: #ffffff;
}

footer span {
  color: #d6b46c;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d6b46c;
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .cards.three,
  .cards.two,
  .deliverable-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .home-navbar {
    position: sticky;
    background: rgba(7, 20, 42, 0.96);
  }

  nav a {
    margin-left: 0;
    margin-right: 18px;
  }

  .home-hero {
    min-height: 92vh;
    padding: 110px 6% 70px;
    background-size: cover;
    background-position: center;
  }

  .clean-hero-content {
    margin-top: 40px;
  }

  .moved-down-description {
    margin-top: 70px;
  }

  .extra-lower-button {
    margin-top: 50px;
  }

  .home-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
  }

  .home-description {
    font-size: 0.98rem;
  }

  .section,
  .page-hero {
    padding: 70px 6%;
  }

  .page-hero h1 {
    font-size: 2.1rem;
  }

  .cards.three,
  .cards.two,
  .deliverable-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: auto;
  }

  .brand-text small {
    display: none;
  }

  .nav-logo {
    width: 56px;
    height: 56px;
  }

  .contact-card {
    padding: 28px;
  }
}