/*
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: 32px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  transform: translateY(0); /* always visible — not hidden */
  transition: background 0.3s;
}
.portfolio-card:hover .portfolio-overlay { background: linear-gradient(transparent, rgba(0,0,0,0.95)); }
.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: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Side column: 4 small cards stacked */
.blog-side-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Small horizontal blog card */
.blog-card-small {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-card-small:last-child { border-bottom: none; }
.blog-card-small:hover .blog-title { color: var(--gold); }

.blog-card-img-small {
  width: 90px;
  min-width: 90px;
  height: 90px;
  overflow: hidden;
  background: var(--dark-gray);
  flex-shrink: 0;
}
.blog-card-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card-small:hover .blog-card-img-small img { transform: scale(1.05); }
.blog-card-small .blog-title { font-size: 15px; line-height: 1.4; margin-bottom: 0; }
.blog-card-small .blog-cat  { margin-bottom: 6px; }
.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; }
  .blog-side-col { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .blog-card-small { width: calc(50% - 8px); border-bottom: none; padding: 0; }
  .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: 90px 20px 36px 56px;
    order: 1;
  }
  .hero-eyebrow { font-size: 10px; }
  .hero-title { font-size: 34px; line-height: 1.1; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }

  /* 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: side by side, compact */
  .hero-buttons { flex-direction: row; flex-wrap: nowrap; gap: 10px; }
  .btn-primary  { padding: 13px 18px; font-size: 11px; white-space: nowrap; flex: 1; text-align: center; }
  .btn-outline  { padding: 13px 18px; font-size: 11px; white-space: nowrap; flex: 1; text-align: center; }

  /* Stats: 2 columns grid so they don't wrap awkwardly */
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; padding-top: 24px; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { 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 {
  overflow: hidden;
  background: var(--dark-gray);
  /* No fixed aspect-ratio — let the image show at its natural height */
}
.archive-card-img img {
  width: 100%;
  height: auto;          /* full image, no cropping */
  display: block;
  object-fit: unset;     /* don't crop */
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}
.archive-card:hover .archive-card-img img {
  transform: scale(1.03);
  filter: brightness(0.78);
}
.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; }

/* ── Blog Row 2 (posts 4-6) ── */
.blog-grid-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.blog-grid-row2 .blog-card-img img { aspect-ratio: 16/9; }

@media (max-width: 900px) {
  .blog-grid-row2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid-row2 { grid-template-columns: 1fr; }
}

/* ── Small phones (under 480px) ── */
@media (max-width: 480px) {
  .hero-left { padding: 88px 16px 32px 52px; }
  .hero-title { font-size: 30px; }
  .hero-sub   { font-size: 13px; }
  .btn-primary, .btn-outline { padding: 12px 14px; font-size: 10px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat-num { font-size: 22px; }
  .nav-logo { font-size: 18px; }
  #site-header { padding: 0 16px; }
}

/* ═══════════════════════════════════════════
   LUXURY PORTFOLIO GALLERY
════════════════════════════════════════════ */

.gallery-page { background: var(--black); }

/* ── Gallery Hero ── */
.gallery-hero {
  position: relative;
  padding: 110px 0 56px;
  background: var(--off-black);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(201,168,76,0.04) 100%);
}
.gallery-hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}
.gallery-hero-desc {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 620px;
  line-height: 1.8;
}
.gallery-hero-line {
  position: absolute;
  bottom: 0; left: 60px;
  width: 80px;
  height: 3px;
  background: var(--gold);
}

/* ── Gallery Wrap ── */
.gallery-wrap { padding: 56px 0 80px; }

/* ── Masonry-style Grid ── */
.gng-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  auto-rows: 380px;
}

/* ── Model Card ── */
.gng-model-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  display: block;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.3s;
}
.gng-model-card:hover { border-color: rgba(201,168,76,0.3); }

/* Wide card — spans 2 columns */
.card-wide {
  grid-column: span 2;
}
/* Tall card — spans 2 rows */
.card-tall {
  grid-row: span 2;
}

/* ── Card Image ── */
.gng-card-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gng-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.82) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
}
.gng-model-card:hover .gng-card-img img {
  transform: scale(1.07);
  filter: brightness(0.65) contrast(1.1);
}

/* ── Card Overlay ── */
.gng-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(
    transparent 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.88) 100%
  );
  transform: translateY(0);
  transition: padding 0.3s ease;
}
.gng-model-card:hover .gng-card-overlay { padding-bottom: 24px; }

.gng-card-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.gng-card-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.card-wide .gng-card-name { font-size: 26px; }
.card-tall .gng-card-name { font-size: 22px; }

.gng-card-excerpt {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-bottom: 10px;
  display: none; /* shown on hover */
}
.gng-model-card:hover .gng-card-excerpt { display: block; }

.gng-card-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gng-card-cta span { display: inline-block; transition: transform 0.2s; }
.gng-model-card:hover .gng-card-cta { opacity: 1; transform: translateY(0); }
.gng-model-card:hover .gng-card-cta span { transform: translateX(4px); }

/* ── Shine effect ── */
.gng-card-shine {
  position: absolute;
  top: -100%; left: -100%;
  width: 60%;
  height: 60%;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: rotate(30deg);
  transition: top 0.5s ease, left 0.5s ease;
  pointer-events: none;
}
.gng-model-card:hover .gng-card-shine { top: 100%; left: 100%; }

/* ── No image placeholder ── */
.gng-no-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(201,168,76,0.12);
  background: var(--dark-gray);
}

/* ── Pagination ── */
.gallery-pagination {
  padding: 48px 0 0;
  display: flex;
  justify-content: center;
}
.gallery-pagination .nav-links { display: flex; gap: 8px; align-items: center; }
.gallery-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-size: 13px;
  color: var(--light-gray);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--sans);
}
.gallery-pagination .page-numbers.current,
.gallery-pagination .page-numbers:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.gallery-pagination .page-numbers.dots {
  border: none;
  color: var(--light-gray);
}

/* ── Bottom CTA ── */
.gallery-bottom-cta {
  padding: 72px 0;
  background: var(--off-black);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.gallery-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.gallery-cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  margin: 10px 0 12px;
}
.gallery-cta-desc {
  font-size: 15px;
  color: var(--light-gray);
  max-width: 440px;
}
.gallery-cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .gng-masonry { grid-template-columns: repeat(3, 1fr); }
  .card-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .gng-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    auto-rows: 280px;
  }
  .card-wide  { grid-column: span 2; }
  .card-tall  { grid-row: span 1; } /* disable tall on mobile */
  .gng-card-name { font-size: 16px; }
  .card-wide .gng-card-name { font-size: 18px; }
  .gallery-cta-inner { flex-direction: column; align-items: flex-start; }
  .gallery-hero-title { font-size: 36px; }
}

@media (max-width: 480px) {
  .gng-masonry {
    grid-template-columns: 1fr 1fr;
    auto-rows: 240px;
    gap: 6px;
  }
  .card-wide { grid-column: span 2; }
  .gng-card-name { font-size: 14px; }
  .gallery-cta-buttons { flex-direction: column; width: 100%; }
  .gallery-cta-buttons .btn-primary,
  .gallery-cta-buttons .btn-outline { text-align: center; }
}

/* ═══════════════════════════════════════════
   FEMALE MODELS GALLERY
════════════════════════════════════════════ */
.fm-hero {
  padding: 110px 60px 60px;
  background: var(--off-black);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.fm-hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}
.fm-hero-title em { font-style: italic; color: var(--gold); }
.fm-hero-desc { font-size: 15px; color: var(--light-gray); max-width: 440px; line-height: 1.8; margin-bottom: 28px; }
.fm-hero-stats { display: flex; flex-direction: column; gap: 24px; align-items: flex-end; flex-shrink: 0; }
.fm-stat { text-align: right; }
.fm-stat-num { font-family: var(--serif); font-size: 40px; color: var(--gold); display: block; font-weight: 700; line-height: 1; }
.fm-stat-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-gray); }

.fm-gallery-wrap { padding: 48px 0 64px; background: var(--black); }
.fm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fm-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark-gray);
  aspect-ratio: 2/3;
}
.fm-card-feature {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 560px;
}
.fm-card-img { width: 100%; height: 100%; }
.fm-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: brightness(0.82); transition: transform 0.6s ease, filter 0.4s ease; }
.fm-card:hover .fm-card-img img { transform: scale(1.06); filter: brightness(0.65); }
.fm-feature-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--black);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px;
}
.fm-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.fm-card-city { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.fm-card-name { font-family: var(--serif); font-size: 20px; color: var(--white); }
.fm-card-feature .fm-card-name { font-size: 32px; }
.fm-card-action {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
  opacity: 0; transform: translateY(6px); transition: all 0.3s;
}
.fm-card:hover .fm-card-action { opacity: 1; transform: translateY(0); }

.fm-cta {
  padding: 72px 60px;
  background: var(--gold);
}
.fm-cta-title { font-family: var(--serif); font-size: clamp(28px, 3vw, 48px); color: var(--black); margin-bottom: 12px; }
.fm-cta-desc { font-size: 15px; color: rgba(0,0,0,0.65); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   MALE MODELS GALLERY
════════════════════════════════════════════ */
.mm-hero {
  padding: 110px 0 56px;
  background: var(--black);
  border-bottom: 3px solid var(--gold);
}
.mm-hero-inner { display: flex; justify-content: space-between; align-items: center; gap: 48px; }
.mm-hero-left { flex: 1; }
.mm-hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 16px 0 24px;
  text-transform: uppercase;
}
.mm-hero-desc { font-size: 15px; color: var(--light-gray); max-width: 400px; line-height: 1.8; margin-bottom: 28px; }
.mm-hero-right { flex-shrink: 0; }
.mm-hero-tag-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 280px; justify-content: flex-end;
}
.mm-hero-tag-cloud span {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 6px 14px;
}

.mm-gallery-wrap { padding: 48px 0 64px; background: var(--off-black); }
.mm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.mm-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--dark-gray);
  min-height: 220px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.mm-card:hover { background: #1a1a1a; }
.mm-card-wide { grid-column: span 2; grid-template-columns: 1.2fr 1fr; }
.mm-card-img { position: relative; overflow: hidden; min-height: 220px; }
.mm-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: brightness(0.85); transition: transform 0.5s ease; }
.mm-card:hover .mm-card-img img { transform: scale(1.04); }
.mm-card-num {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--serif); font-size: 28px; color: rgba(201,168,76,0.5);
  line-height: 1; font-weight: 700;
}
.mm-card-info {
  padding: 24px 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-left: 1px solid rgba(201,168,76,0.08);
}
.mm-card-city { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.mm-card-name { font-family: var(--serif); font-size: 18px; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.mm-card-wide .mm-card-name { font-size: 24px; }
.mm-card-excerpt { font-size: 12px; color: var(--light-gray); line-height: 1.6; margin-bottom: 12px; }
.mm-card-cta { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.mm-card-cta span { display: inline-block; transition: transform 0.2s; }
.mm-card:hover .mm-card-cta span { transform: translateX(4px); }

.mm-cta { padding: 60px 0; background: var(--black); border-top: 1px solid rgba(201,168,76,0.12); }
.mm-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.mm-cta-title { font-family: var(--serif); font-size: clamp(24px,3vw,40px); color: var(--white); margin-bottom: 10px; }
.mm-cta-desc { font-size: 14px; color: var(--light-gray); max-width: 440px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   KIDS MODELS GALLERY
════════════════════════════════════════════ */
.kids-hero {
  padding: 110px 0 0;
  background: var(--off-black);
  position: relative;
}
.kids-hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.kids-hero-title em { font-style: italic; color: var(--gold); }
.kids-hero-desc { font-size: 15px; color: var(--light-gray); max-width: 520px; line-height: 1.8; margin-bottom: 24px; }
.kids-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.kids-hero-pills span {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 40px;
}
.kids-hero-bar { height: 4px; background: linear-gradient(to right, var(--gold), var(--gold-dark)); margin-top: 32px; }

.kids-gallery-wrap { padding: 48px 0 64px; background: var(--black); }
.kids-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}
.kids-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--dark-gray);
  border-radius: 2px;
}
.kids-card-lg { grid-column: span 2; grid-row: span 2; }
.kids-card-wide { grid-column: span 2; }
.kids-card-img { width: 100%; height: 100%; }
.kids-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(0.85); transition: transform 0.5s ease, filter 0.3s; }
.kids-card:hover .kids-card-img img { transform: scale(1.06); filter: brightness(0.65); }
.kids-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.kids-card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-bottom: 6px;
}
.kids-card-name { font-family: var(--serif); font-size: 16px; color: var(--white); line-height: 1.2; }
.kids-card-lg .kids-card-name { font-size: 22px; }
.kids-card-city { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.kids-info {
  padding: 48px 0;
  background: var(--off-black);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.kids-info-inner {
  display: flex; align-items: center; gap: 32px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 32px 36px;
}
.kids-info-icon { font-size: 32px; color: var(--gold); flex-shrink: 0; }
.kids-info-title { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 8px; }
.kids-info-text { font-size: 14px; color: var(--light-gray); line-height: 1.7; }

/* ── Responsive for all three galleries ── */
@media (max-width: 900px) {
  .fm-hero { flex-direction: column; padding: 100px 24px 40px; gap: 24px; }
  .fm-hero-stats { flex-direction: row; align-items: flex-start; gap: 24px; }
  .fm-stat { text-align: left; }
  .fm-grid { grid-template-columns: repeat(2, 1fr); }
  .fm-card-feature { grid-column: span 2; min-height: 360px; }
  .fm-cta { padding: 48px 24px; }
  .mm-hero-inner { flex-direction: column; align-items: flex-start; }
  .mm-hero-tag-cloud { justify-content: flex-start; }
  .mm-grid { grid-template-columns: 1fr; }
  .mm-card, .mm-card-wide { grid-column: span 1; grid-template-columns: 1fr 1fr; }
  .mm-cta-inner { flex-direction: column; align-items: flex-start; }
  .kids-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .kids-info-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .fm-grid { grid-template-columns: 1fr 1fr; }
  .fm-card-feature { grid-column: span 2; min-height: 280px; }
  .mm-card { grid-template-columns: 1fr; }
  .mm-card-img { min-height: 200px; }
  .kids-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .kids-card-lg { grid-column: span 2; grid-row: span 1; }
}

/* ── Portfolio card placeholder (when no image set in Customizer) ── */
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dark-gray);
  gap: 12px;
}
.portfolio-placeholder-icon {
  font-size: 32px;
  color: rgba(201,168,76,0.2);
}
.portfolio-placeholder-text {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.6;
  font-family: var(--sans);
  letter-spacing: 0.04em;
}

/* Ensure portfolio card always has minimum height */
.portfolio-card {
  min-height: 320px;
}

/* ═══════════════════════════════════════════
   PORTFOLIO PACKAGES PAGE
════════════════════════════════════════════ */

.pkg-page { background: var(--black); }

/* ── Hero ── */
.pkg-hero {
  padding: 110px 0 0;
  background: var(--off-black);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  position: relative;
}
.pkg-hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}
.pkg-hero-title em { font-style: italic; color: var(--gold); }
.pkg-hero-desc {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 580px;
  line-height: 1.8;
  padding-bottom: 36px;
}
.pkg-hero-bar { height: 3px; background: linear-gradient(to right, var(--gold), transparent); }

/* ── Why Section ── */
.pkg-why {
  padding: 80px 0;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pkg-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pkg-why-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 20px;
}
.pkg-why-desc {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pkg-why-points { display: flex; flex-direction: column; gap: 0; }
.pkg-why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pkg-why-point:first-child { padding-top: 0; }
.pkg-why-point:last-child { border-bottom: none; }
.pkg-why-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  min-width: 24px;
  margin-top: 3px;
}
.pkg-why-pt-title {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--white);
  margin-bottom: 6px;
}
.pkg-why-pt-desc { font-size: 13px; color: var(--light-gray); line-height: 1.7; }

/* ── Pricing Section ── */
.pkg-pricing {
  padding: 80px 0;
  background: var(--off-black);
}
.pkg-pricing-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin: 12px 0 14px;
}
.pkg-pricing-desc {
  font-size: 15px;
  color: var(--light-gray);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Package Cards ── */
.pkg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.12);
}
.pkg-card {
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.pkg-card:hover { background: #1a1a1a; }
.pkg-card-featured {
  background: var(--dark-gray);
  border: 1px solid rgba(201,168,76,0.3);
  margin: -1px;
  z-index: 2;
}
.pkg-card-featured:hover { background: #222; }

.pkg-popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
  font-family: var(--sans);
}

.pkg-card-header {
  padding: 36px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pkg-card-tier {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  margin-bottom: 12px;
}
.pkg-card-price {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.pkg-card-featured .pkg-card-price { color: var(--gold); }
.pkg-card-slash { font-size: 24px; color: var(--light-gray); }
.pkg-card-sub {
  font-size: 12px;
  color: var(--light-gray);
  font-family: var(--sans);
  letter-spacing: 0.04em;
}

.pkg-card-body { padding: 24px 28px; flex: 1; }
.pkg-card-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pkg-li {
  font-size: 14px;
  color: var(--light-gray);
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.pkg-li::before {
  content: '✓';
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}
.pkg-li.no { color: rgba(255,255,255,0.3); }
.pkg-li.no::before {
  content: '✕';
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.2);
}

.pkg-card-footer { padding: 20px 28px 28px; }
.pkg-card-btn {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px;
  transition: all 0.25s;
  font-family: var(--sans);
  text-decoration: none;
}
.pkg-card-btn:hover { border-color: var(--gold); color: var(--gold); }
.pkg-card-btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.pkg-card-btn-gold:hover { background: var(--gold-light); color: var(--black); border-color: var(--gold-light); }

/* ── Form Section ── */
.pkg-form-section {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.pkg-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.pkg-form-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  line-height: 1.15;
  margin: 12px 0 16px;
}
.pkg-form-desc {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.pkg-contact-details { display: flex; flex-direction: column; gap: 12px; }
.pkg-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--light-gray);
}
.pkg-contact-icon { font-size: 16px; color: var(--gold); }

/* Style the embedded form */
.pkg-form-wrap { background: var(--off-black); border: 1px solid rgba(201,168,76,0.12); padding: 32px; }
.pkg-form-wrap input,
.pkg-form-wrap textarea,
.pkg-form-wrap select {
  width: 100%;
  background: var(--dark-gray);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.pkg-form-wrap input:focus,
.pkg-form-wrap textarea:focus { border-color: var(--gold); }
.pkg-form-wrap textarea { min-height: 100px; resize: vertical; }
.pkg-form-wrap input[type="submit"],
.pkg-form-wrap button[type="submit"] {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  width: 100%;
  transition: background 0.2s;
}
.pkg-form-wrap input[type="submit"]:hover { background: var(--gold-light); }
.pkg-form-wrap label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 5px;
  font-family: var(--sans);
}

/* Fallback: style existing page content inside form section */
.pkg-content h1, .pkg-content h2, .pkg-content h3 { display: none; }
.pkg-content p { font-size: 14px; color: var(--light-gray); margin-bottom: 12px; line-height: 1.7; font-family: var(--sans); }

/* ── Trust Strip ── */
.pkg-trust {
  padding: 48px 0;
  background: var(--gold);
}
.pkg-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}
.pkg-trust-item { text-align: center; }
.pkg-trust-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.pkg-trust-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  font-family: var(--sans);
}
.pkg-trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.15);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pkg-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .pkg-cards { grid-template-columns: 1fr; }
  .pkg-card-featured { margin: 0; border: 2px solid var(--gold); }
  .pkg-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .pkg-trust-inner { flex-wrap: wrap; gap: 32px; }
  .pkg-trust-divider { display: none; }
}
@media (max-width: 600px) {
  .pkg-hero-title { font-size: 36px; }
  .pkg-card-price { font-size: 32px; }
}
