/* ===========================
   407 Singles — Global Styles
   =========================== */

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

:root {
  --gold: #c9a96e;
  --gold-dark: #b8944f;
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #161616;
  --border: #1e1e1e;
  --border2: #2a2a2a;
  --text: #f0ece4;
  --text-muted: #999;
  --text-dim: #666;
  --text-faint: #444;
  --serif: 'Georgia', serif;
  --sans: 'Arial', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ---- HEADER ---- */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border2);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
}

header nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 28px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
header nav a:hover { color: var(--gold); }
header nav a.nav-portal {
  border: 1px solid var(--border2);
  padding: 7px 16px;
  margin-left: 32px;
  color: var(--gold);
}
header nav a.nav-portal:hover { border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 130px 40px 110px;
  background: linear-gradient(180deg, #0d0d0d 0%, #121212 100%);
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: normal;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 52px;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
}
.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  padding: 16px 48px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.cta:hover { background: var(--gold-dark); }
.cta-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  padding: 14px 40px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.cta-outline:hover { background: var(--gold); color: var(--bg); }
.sub-cta {
  display: block;
  margin-top: 18px;
  color: var(--text-faint);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* ---- SECTIONS ---- */
section {
  padding: 90px 48px;
  max-width: 1060px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

#pricing .section-label,
#pricing > h2,
#apply .section-label,
#apply > h2 {
  text-align: center;
}
h2 {
  font-size: 2.1rem;
  font-weight: normal;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.25;
}
.body-text {
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.95rem;
  max-width: 640px;
  margin-bottom: 18px;
  line-height: 1.75;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---- THREE COL ---- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.three-col .col .num {
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: normal;
  margin-bottom: 14px;
}
.three-col .col h3 {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.three-col .col p {
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.step-num {
  font-size: 0.95rem;
  color: var(--gold);
  font-family: var(--sans);
  letter-spacing: 0.1em;
  min-width: 36px;
  padding-top: 3px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--text);
  margin-bottom: 8px;
}
.step p {
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.testimonial {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.testimonial blockquote {
  font-size: 0.97rem;
  color: #ccc;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 44px 40px;
}
.pricing-card.featured {
  border-color: var(--gold);
}
.pricing-tier {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-price {
  font-size: 2.2rem;
  color: var(--text);
  font-weight: normal;
  margin-bottom: 20px;
}
.pricing-card p {
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-card ul li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul li::before {
  content: "— ";
  color: var(--gold);
}
.pricing-note {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-faint);
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- APPLY FORM ---- */
.apply-form {
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  margin-bottom: 24px;
}
.form-group label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.apply-form .cta { margin-top: 8px; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 48px;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.footer-links a {
  color: var(--text-faint);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  color: var(--text-faint);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .three-col { grid-template-columns: 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  header { padding: 20px 24px; }
  header nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border2); padding: 20px 24px; gap: 16px; }
  header nav.open { display: flex; }
  header nav a { margin-left: 0; }
  .nav-toggle { display: block; }
  .hero { padding: 80px 24px 70px; }
  .hero h1 { font-size: 2.1rem; }
  section { padding: 64px 24px; }
  footer { padding: 40px 24px; }
}

/* ===========================
   IMAGE ADDITIONS
   =========================== */

/* ---- HERO WITH PHOTO ---- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.58) 50%,
    rgba(10,10,10,0.80) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* ---- COL IMAGES (Why Us) ---- */
.col-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 24px;
}
.col-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.4s, transform 0.5s;
}
.col-img-wrap:hover img {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.03);
}

/* ---- FULL-WIDTH PHOTO BREAK ---- */
.photo-break {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.photo-break-sm { height: 260px; }
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.45) grayscale(15%);
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.photo-break-overlay blockquote {
  font-size: 1.6rem;
  color: #f0ece4;
  font-style: italic;
  max-width: 680px;
  line-height: 1.5;
  border: none;
}
.photo-break-overlay blockquote::before { content: "\201C"; color: #c9a96e; font-size: 2.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.photo-break-overlay blockquote::after  { content: "\201D"; color: #c9a96e; font-size: 2.4rem; line-height: 0; vertical-align: -0.4em; margin-left: 4px; }

.photo-break-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-num {
  font-size: 3.6rem;
  color: #c9a96e;
  font-weight: normal;
  line-height: 1;
}
.stat-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  color: #ccc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- TESTIMONIAL AVATARS ---- */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  filter: grayscale(30%);
  border: 2px solid #2a2a2a;
}

/* ---- RESPONSIVE IMAGES ---- */
@media (max-width: 640px) {
  .photo-break { height: 240px; }
  .photo-break-sm { height: 180px; }
  .photo-break-overlay blockquote { font-size: 1.1rem; }
  .stat-num { font-size: 2.4rem; }
}
