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

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: #fff;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  padding: 22px 10%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: #c9a96e;
  text-decoration: none;
  justify-self: center;
  text-align: center;
  letter-spacing: 0.2px;
}

.nav-spacer {
  width: 52px;
  height: 52px;
  justify-self: end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.nav-links a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s ease;
  font-size: 0.98rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #c9a96e;
}

.nav-btn {
  border: 1px solid #c9a96e;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  justify-self: start;
}

.menu-toggle:hover {
  border-color: rgba(201, 169, 110, 0.7);
  background: rgba(201, 169, 110, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #c9a96e;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero-short {
  min-height: 72vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.58),
    rgba(0, 0, 0, 0.88)
  );
  z-index: -1;
}

.hero-content {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  color: #c9a96e;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-subtext {
  color: #ccc;
  margin-bottom: 30px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-number {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.proof-label {
  color: #aaa;
  font-size: 0.85rem;
}

/* ===== BUTTONS ===== */
.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a96e, #e6c88c);
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  transition: 0.3s;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  border: 1px solid #c9a96e;
  padding: 15px 30px;
  color: #c9a96e;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.08);
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 10%;
}

.section-shell {
  max-width: 1200px;
  margin: auto;
}

.section-shell.narrow {
  max-width: 760px;
  text-align: center;
}

.section-kicker {
  color: #c9a96e;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading p {
  color: #aaa;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

h3 {
  line-height: 1.25;
}

p {
  color: #b8b8b8;
}

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

/* ===== CARDS / GRIDS ===== */
.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 280px;
  min-width: 280px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card:hover,
.pricing-card:hover,
.work-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.35);
}

.card-label {
  color: #c9a96e;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.feature-list,
.mini-list {
  margin-top: 15px;
  padding-left: 18px;
  color: #bbb;
}

.feature-list li,
.mini-list li {
  margin-bottom: 8px;
}

.pricing-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: #111;
  padding: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pricing-card.featured {
  border-color: rgba(201,169,110,0.45);
  box-shadow: 0 0 35px rgba(201,169,110,0.1);
}

.pricing-price {
  font-size: 2rem;
  color: #c9a96e;
  margin: 18px 0;
  font-weight: 700;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.work-tile {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.work-image {
  min-height: 220px;
  background: #222;
}

.work-meta {
  padding: 20px;
}

.work-category {
  color: #c9a96e;
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.placeholder-one {
  background: linear-gradient(135deg, #1a1a1a, #2d2217);
}

.placeholder-two {
  background: linear-gradient(135deg, #141414, #1d2a2a);
}

.placeholder-three {
  background: linear-gradient(135deg, #121212, #2b1f2f);
}

.placeholder-four {
  background: linear-gradient(135deg, #161616, #2a2418);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #c9a96e;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}

.text-link:hover {
  opacity: 0.82;
}

/* ===== FORMS ===== */
.contact .section-heading {
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 10px;
  outline: none;
  transition: 0.25s ease;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(201, 169, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form button {
  width: 100%;
  margin-top: 6px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #c9a96e, #e6c88c);
  color: #000;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.18);
}

.contact-support {
  margin-top: 28px;
  text-align: center;
}

.contact-email-display {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-note-display {
  font-size: 14px;
  color: #aaa;
}

.contact-secondary-buttons {
  margin-top: 14px;
}

.response-time-display {
  color: #777;
  font-size: 13px;
  margin-top: 12px;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  background: radial-gradient(circle at top, rgba(201, 169, 110, 0.08), transparent 35%), #0d0d0d;
}

.cta-content {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.cta-content p {
  color: #bbb;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 36px 10%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0c0c0c;
  text-align: center;
}

.trust-strip p {
  color: #b8b8b8;
  letter-spacing: 0.3px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #090909;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 10% 30px;
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #c9a96e;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #aaa;
  max-width: 320px;
  line-height: 1.7;
}

.footer-links-group h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links-group ul {
  list-style: none;
}

.footer-links-group li {
  margin-bottom: 12px;
  color: #9d9d9d;
}

.footer-links-group a {
  color: #9d9d9d;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links-group a:hover {
  color: #c9a96e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #c9a96e;
}

/* ===== SCROLL TO TOP ===== */
#scrollToTop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a96e, #e6c88c);
  color: #000;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 1200;
}

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

/* ===== FADE ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav-spacer {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    justify-self: auto;
    text-align: left;
  }

  .nav-links {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .navbar {
    padding: 20px 7%;
  }

  section {
    padding: 100px 7%;
  }

  .hero-proof {
    gap: 18px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 6%;
    grid-template-columns: 52px 1fr 52px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo {
    font-size: 1.8rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 6%;
    right: 6%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(201, 169, 110, 0.08);
  }

  .nav-links .nav-btn {
    margin-top: 8px;
    text-align: center;
    padding: 14px 18px;
  }

  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding: 150px 20px 85px;
  }

  .hero-short {
    min-height: auto;
    padding: 130px 20px 70px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtext,
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }

  section {
    padding: 80px 7%;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    min-width: 100%;
    width: 100%;
    flex: 1 1 100%;
  }

  .work-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 14px;
    justify-content: flex-start;
  }

  .site-footer {
    padding: 60px 7% 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }

  .work-image {
    min-height: 190px;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 14px 5%;
    grid-template-columns: 48px 1fr 48px;
  }

  .menu-toggle,
  .nav-spacer {
    width: 48px;
    height: 48px;
  }

  .logo {
    font-size: 1.65rem;
  }

  .nav-links {
    left: 5%;
    right: 5%;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.78rem;
    letter-spacing: 1.4px;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .card,
  .pricing-card {
    padding: 24px;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
  }

  #scrollToTop {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}