/* ========================================= */
/* STOREHOUSE316 — LUXURY BLACK & GOLD v2 */
/* ========================================= */

/* ===== ROOT VARIABLES ===== */
:root {
  --black: #0d0d0d;
  --black-soft: #111111;
  --charcoal: #161616;
  --card: #1c1c1c;

  --gold: #c6a74a;
  --gold-soft: #e6c76a;
  --gold-glow: rgba(198, 167, 74, 0.25);

  --white: #ffffff;
  --gray: #999;
  --border: rgba(198, 167, 74, 0.12);

  --radius: 14px;
  --transition: 0.3s ease;
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ===== CONTAINER ===== */
.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}

.brand__logo img {
  height: 48px;
  margin-right: 14px;
}

.brand__text strong {
  font-size: 18px;
}

.brand__text span {
  font-size: 12px;
  color: var(--gray);
  display: block;
}

/* NAVIGATION */

.nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 30px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--gold);
  left: 0;
  bottom: -6px;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--gold-soft);
}

.nav a:hover::after {
  width: 100%;
}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero {
  padding: 120px 0 100px;
  background: radial-gradient(circle at top, #141414, #0d0d0d);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: 46px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.2;
}

.lead {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 30px;
}

/* PILL */

.pill {
  display: inline-block;
  background: rgba(198, 167, 74, 0.1);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--white);
  margin-left: 15px;
}

.btn--ghost:hover {
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* ========================================= */
/* HERO CARD */
/* ========================================= */

.hero__card {
  background: var(--card);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.heroCard__top h2 {
  margin-bottom: 10px;
}

.heroCard__top p {
  color: var(--gray);
  margin-bottom: 25px;
}

/* ========================================= */
/* FORM */
/* ========================================= */

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 2px rgba(198, 167, 74, 0.2);
}

/* ========================================= */
/* SECTIONS */
/* ========================================= */

.section {
  padding: 100px 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

.section--muted {
  background: #101010;
}

.sectionHead {
  margin-bottom: 60px;
}

.sectionHead h2 {
  font-size: 34px;
  margin-bottom: 15px;
  position: relative;
}

.sectionHead h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
}

.sectionHead p {
  color: var(--gray);
}

/* ========================================= */
/* CARDS */
/* ========================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: var(--card);
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 40px var(--gold-glow);
}

/* ========================================= */
/* PHOTO GRID */
/* ========================================= */

.photoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.photoCard img {
  width: 100%;
  border-radius: 12px;
  transition: var(--transition);
}

.photoCard img:hover {
  transform: scale(1.04);
}

.cap {
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray);
}

/* ========================================= */
/* REVIEWS */
/* ========================================= */

.quotes {
  display: grid;
  gap: 30px;
}

.quote {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-style: italic;
}

.quote footer {
  margin-top: 15px;
  color: var(--gold);
  font-style: normal;
}

/* ========================================= */
/* PROCESS */
/* ========================================= */

.steps {
  list-style: none;
  display: grid;
  gap: 25px;
}

.steps li {
  background: var(--card);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {
  background: #0a0a0a;
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--gray);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 900px) {

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }

}