/*
Theme Name: GNG Models Luxury
Theme URI: https://www.gngmodels.com
Author: GNG Models
Author URI: https://www.gngmodels.com
Description: A luxury black-and-gold theme for GNG Models — India's premier modeling agency. Features a split-hero homepage, model portfolio grid, services section, blog layout, and full SEO-safe structure.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Tags: photography, modeling, fashion, luxury, dark, portfolio
Text Domain: gng-models
*/

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

/* ── CSS VARIABLES ── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark:  #8B6914;
  --black:      #0A0A0A;
  --off-black:  #141414;
  --dark-gray:  #1E1E1E;
  --mid-gray:   #2D2D2D;
  --light-gray: #B0B0B0;
  --white:      #FAFAFA;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

p { line-height: 1.75; }

/* ── UTILITIES ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; } }

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 16px 36px;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); color: var(--black); }

.btn-outline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 16px 40px;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--off-black); color: var(--white); }

/* ── NAVIGATION ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}

.site-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.site-logo span { color: var(--white); font-weight: 400; }

#primary-menu {
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#primary-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.2s;
}
#primary-menu a:hover,
#primary-menu .current-menu-item > a { color: var(--gold); }

#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: var(--off-black);
  border: 1px solid rgba(201,168,76,0.15);
  min-width: 200px;
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
}
#primary-menu li { position: relative; }
#primary-menu li:hover > .sub-menu { display: flex; }
#primary-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav-cta-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: background 0.2s;
}
.nav-cta-btn:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--light-gray);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--off-black);
}

.hero-gold-line {
  position: absolute;
  top: 72px; left: 0;
  width: 1px;
  height: calc(100% - 72px);
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  opacity: 0.4;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
  padding-top: 72px;
}

.hero-img {
  background: var(--dark-gray);
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88) contrast(1.05);
}
.hero-img:hover img { transform: scale(1.04); }
.hero-img.tall { grid-row: span 2; }

.hero-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ── MOTW ── */
#motw {
  padding: 100px 0;
  background: var(--off-black);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.motw-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.motw-text { flex: 1; }
.motw-cards {
  flex: 1.3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.motw-card {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--dark-gray);
  overflow: hidden;
}
.motw-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.motw-card:hover img { transform: scale(1.05); }
.motw-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.motw-card-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
}
.motw-card-type {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.motw-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 10px;
  z-index: 2;
}

/* ── SERVICES ── */
#services {
  padding: 100px 0;
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card {
  background: var(--black);
  padding: 40px 32px;
  transition: background 0.3s;
  display: block;
}
.service-card:hover { background: var(--off-black); }
.service-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  margin-bottom: 16px;
  line-height: 1;
}
.service-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── PORTFOLIO ── */
#portfolio {
  padding: 100px 0;
  background: var(--off-black);
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.portfolio-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ptab {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.ptab:hover, .ptab.active { color: var(--gold); border-bottom-color: var(--gold); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark-gray);
  overflow: hidden;
  display: block;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}
.portfolio-card:hover img { transform: scale(1.05); filter: brightness(0.75); }
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transform: translateY(8px);
  transition: transform 0.3s;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-city {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-model-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
}
.portfolio-view-all { text-align: center; margin-top: 40px; }

/* ── WHY GNG ── */
#why {
  padding: 100px 0;
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 32px; margin-top: 24px; }
.why-point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  min-width: 28px;
  margin-top: 4px;
}
.why-point-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.why-point-text { font-size: 14px; color: var(--light-gray); line-height: 1.7; }
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark-gray);
  overflow: hidden;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }
.why-visual-badge {
  position: absolute;
  bottom: 32px; left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 28px;
  max-width: 220px;
}
.why-visual-badge-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.why-visual-badge-text { font-size: 12px; letter-spacing: 0.06em; font-weight: 500; }

/* ── CITIES ── */
#cities {
  padding: 80px 0;
  background: var(--off-black);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.cities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
}
.city-card {
  background: var(--off-black);
  padding: 36px 28px;
  transition: background 0.3s;
  display: block;
}
.city-card:hover { background: #1a1a1a; }
.city-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
}
.city-desc { font-size: 13px; color: var(--light-gray); line-height: 1.6; margin-bottom: 20px; }
.city-link { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* ── BLOG ── */
#blog { padding: 100px 0; background: var(--black); }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.blog-card { display: block; text-decoration: none; color: inherit; }
.blog-card-img {
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--dark-gray);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.5s ease, filter 0.3s;
  aspect-ratio: 16/10;
}
.blog-card.featured .blog-card-img img { aspect-ratio: 4/5; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); filter: brightness(0.75); }
.blog-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card.featured .blog-title { font-size: 26px; }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { font-size: 13px; color: var(--light-gray); line-height: 1.7; }

/* ── JOIN CTA ── */
#join-cta {
  padding: 100px 60px;
  background: var(--gold);
  text-align: center;
}
.join-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 24px;
}
.join-cta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: var(--black);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.join-cta-desc {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
}
.join-cta-buttons { display: flex; gap: 16px; justify-content: center; }
.btn-ghost-dark {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  padding: 16px 40px;
  border: 1px solid rgba(0,0,0,0.35);
  transition: all 0.2s;
}
.btn-ghost-dark:hover { background: rgba(0,0,0,0.06); color: var(--black); }
.seo-cities {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  max-width: 800px;
  margin: 40px auto 0;
  line-height: 1.6;
}

/* ── FOOTER ── */
#colophon {
  background: var(--off-black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 64px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-brand { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.footer-about { font-size: 13px; color: var(--light-gray); line-height: 1.7; margin-bottom: 20px; }
.footer-contact { font-size: 13px; color: var(--light-gray); line-height: 2; }
.footer-contact a { color: var(--gold); }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; color: var(--light-gray); transition: color 0.2s; }
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid, .city-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card.featured { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  #site-header { padding: 0 24px; }
  #primary-menu, .nav-cta-btn { display: none; }
  .menu-toggle { display: flex; }
  #primary-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--off-black);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  /* Mobile hero: stack vertically — text on top, image below */
  #hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    padding: 100px 20px 40px;
    order: 1;
  }
  .hero-eyebrow { font-size: 10px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 14px; margin-bottom: 32px; }

  /* Hero image — show as full-width banner below text */
  .hero-right {
    display: block;
    order: 2;
    height: 320px;
    width: 100%;
  }
  .hero-gold-line { display: none; }
  .hero-grid {
    display: block;
    height: 320px;
    padding-top: 0;
    position: relative;
  }
  /* Hide all hero-img panels by default */
  .hero-img { display: none !important; }
  /* Show ONLY the first (tall) image on mobile — label is hidden anyway */
  .hero-img.tall {
    display: block !important;
    height: 320px;
    width: 100%;
  }
  .hero-img.tall img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
  }
  /* Hide the image label on mobile */
  .hero-img-label { display: none; }
  .motw-inner { flex-direction: column; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 640px) {
  .motw-cards { grid-template-columns: 1fr; }
  .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card.featured { grid-column: span 1; }
  .city-grid, .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; gap: 20px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 11px; }
  /* Buttons: don't stretch full width on mobile */
  .hero-buttons { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .btn-primary, .btn-outline { padding: 13px 20px; font-size: 11px; }
  .hero-buttons { flex-direction: column; }
  #join-cta { padding: 60px 24px; }
  .join-cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  #colophon { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ═══════════════════════════════════════════
   INNER PAGES (archive, page, single)
════════════════════════════════════════════ */

.inner-page { padding-top: 72px; }

/* Nav offset fix — inner hero starts below the fixed 72px nav */

/* ── Inner Hero Banner ── */
.inner-hero {
  padding: 100px 0 60px;
  background: var(--off-black);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.inner-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 0;
}
.inner-desc {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.8;
}
.inner-content { padding: 64px 0 100px; }

/* ── Archive Grid ── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.archive-card {
  display: block;
  background: var(--off-black);
  border: 1px solid rgba(201,168,76,0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.archive-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.archive-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-gray);
}
.archive-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.88);
}
.archive-card:hover .archive-card-img img {
  transform: scale(1.05);
  filter: brightness(0.75);
}
.archive-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(201,168,76,0.15);
}

.archive-card-body { padding: 20px; }
.archive-card-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.archive-card-excerpt {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}
.archive-card-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Pagination ── */
.archive-pagination { margin-top: 16px; }
.archive-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-size: 13px;
  color: var(--light-gray);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  text-decoration: none;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ── Page Content (WP content area) ── */
.page-content {
  max-width: 860px;
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.85;
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: var(--serif);
  color: var(--white);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.page-content h2 { font-size: 32px; }
.page-content h3 { font-size: 24px; }
.page-content p  { margin-bottom: 20px; }
.page-content a  { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--gold-light); }
.page-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  display: block;
}
.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; }
.page-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.page-content th {
  background: var(--off-black);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.page-content td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--light-gray);
}
.page-content tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Single Post ── */
.single-meta {
  font-size: 13px;
  color: var(--light-gray);
  margin-top: 16px;
  letter-spacing: 0.04em;
}
.single-featured-img { padding: 40px 0 0; }
.single-featured-img img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  filter: brightness(0.88);
}
.single-content { max-width: 760px; }
.single-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .archive-grid { grid-template-columns: 1fr; }
  .inner-hero { padding: 80px 0 40px; }
  .inner-content { padding: 40px 0 60px; }
}

/* ═══════════════════════════════════════════
   FORM STYLING (Contact, Become a Model etc)
════════════════════════════════════════════ */
.page-content input[type="text"],
.page-content input[type="email"],
.page-content input[type="tel"],
.page-content input[type="number"],
.page-content textarea,
.page-content select {
  width: 100%;
  background: var(--dark-gray);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.page-content input[type="text"]:focus,
.page-content input[type="email"]:focus,
.page-content input[type="tel"]:focus,
.page-content textarea:focus {
  border-color: var(--gold);
}
.page-content textarea { min-height: 120px; resize: vertical; }
.page-content input[type="submit"],
.page-content button[type="submit"] {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 36px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.page-content input[type="submit"]:hover { background: var(--gold-light); }

/* Labels */
.page-content label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 6px;
}

/* WP generated form tables */
.page-content .wpcf7-form,
.page-content form { width: 100%; }

/* ── Sidebar layout fix (Become a Model has sidebar form) ── */
.page-content .wp-block-columns,
.page-content .columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 768px) {
  .page-content .wp-block-columns,
  .page-content .columns-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery / image grid inside pages ── */
.page-content .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.page-content .gallery-item { overflow: hidden; }
.page-content .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  margin: 0;
}
.page-content .gallery-item:hover img { transform: scale(1.04); }

/* ── Unite Gallery (old plugin) ── */
.page-content .ug-gallery-wrapper { margin: 24px 0; }

/* ── Headings inside page content ── */
.page-content h1.entry-title,
.page-content h2:first-child {
  margin-top: 0;
}

/* ── Full width page content ── */
.page-content { max-width: 100%; }
.single-content { max-width: 860px; }
