:root {
  --charcoal: #1a1a1a;
  --warm-white: #f5f1ea;
  --gold: #c6a77b;
  --dusty-rose: #b08a8a;
  --soft-gray: #2a2a2a;
  --panel: #231f1b;
  --panel-border: rgba(245, 241, 234, 0.12);
}

.wrapper {
  text-align: center;
  padding: 88px 20px 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: var(--charcoal);
  color: var(--warm-white);
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(0,0,0,0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(6px);
}


.nav a {
  color: var(--warm-white);
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav a:hover {
  color: var(--gold);
}

.hero {
  height:100vh;
  background: url('../images/mainimg.jpg') center/cover no-repeat;
  position:relative;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-family: "Georgia", serif;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  color: #ddd;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--dusty-rose);
  color: var(--warm-white);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* PORTFOLIO */
.portfolio {
  padding: 60px 40px;
}

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

.section-heading h2,
.portfolio-hero h1,
.portfolio-gallery-header h1 {
  font-family: "Georgia", serif;
  margin-bottom: 12px;
}

.eyebrow {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 0.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  height: 300px;
  background: var(--soft-gray);
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.cta h2 {
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: #aaa;
}

.gallery-img {
  width:100%;
  cursor:pointer;
}

.booking, .model-call {
  max-width:600px;
  margin:80px auto;
  text-align:center;
}

input, textarea {
  width:100%;
  padding:10px;
  margin:10px 0;
  background:#2a2a2a;
  border:none;
  color:white;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 80px 20px;
  max-width: 700px;
  margin: auto;
}

.intro h2 {
  font-family: "Georgia", serif;
  margin-bottom: 20px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Georgia", serif;
}

/* GALLERY */
.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-img:hover {
  opacity: 0.8;
}

.portfolio-hero,
.portfolio-gallery-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 20px 40px;
  text-align: center;
}

.portfolio-shell {
  padding: 0px 20px 80px;
}

.portfolio-category-grid,
.portfolio-gallery-grid {
  padding-inline: 400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.home-portfolio-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.portfolio-category-card,
.portfolio-gallery-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--panel-border);
  overflow: hidden;
}

.portfolio-category-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.portfolio-category-media,
.portfolio-gallery-frame {
  background: #120f0d;
  overflow: hidden;
}

.portfolio-category-media {
  aspect-ratio: 4 / 5;
}
.trust {
  padding-top: 20px;
}

.portfolio-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--preview-scale, 1.12));
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.portfolio-category-link:hover .portfolio-category-image,
.portfolio-gallery-item:hover .gallery-img {
  transform: scale(1.03);
  opacity: 0.88;
}

.portfolio-category-copy {
  padding: 18px 18px 22px;
  text-align: left;
}

.portfolio-category-copy h3 {
  font-family: "Georgia", serif;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.portfolio-category-copy p,
.portfolio-hero p,
.portfolio-gallery-header p,
.portfolio-empty {
  color: rgba(245, 241, 234, 0.78);
}

.portfolio-actions,
.portfolio-page-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.portfolio-page-actions {
  margin: 0 0 36px;
}

.portfolio-gallery-item {
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.portfolio-gallery-frame {
  aspect-ratio: 4 / 5;
}

.portfolio-gallery-item .gallery-img {
  height: 100%;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.portfolio-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.03);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(8, 7, 6, 0.94);
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-figure {
  max-width: min(1100px, 100%);
  margin: 0 auto;
}

.portfolio-lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
}

.portfolio-lightbox-caption {
  margin-top: 14px;
  text-align: center;
  color: rgba(245, 241, 234, 0.8);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.06);
  color: var(--warm-white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
}

.lightbox-nav {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--warm-white);
  font-size: 40px;
  cursor: pointer;
}

/* BOOKING PAGE */
.booking,
.booking-panel {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.booking-hero {
  max-width: 820px;
  margin: 70px auto 30px;
  text-align: center;
}

.booking-hero h1,
.booking-panel h2 {
  font-family: "Georgia", serif;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.booking-panel {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 24px;
  text-align: left;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field span {
  color: rgba(245, 241, 234, 0.92);
  font-size: 0.95rem;
}

.booking-field small {
  color: rgba(245, 241, 234, 0.62);
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  padding: 12px;
  border: none;
  background: var(--soft-gray);
  color: var(--warm-white);
}

.booking-form select {
  width: 100%;
  min-height: 44px;
  line-height: 1.2;
}

.booking-form textarea {
  min-height: 120px;
  margin-top: 2px;
}

.booking-field-full {
  width: 100%;
}

.booking-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 10px;
}

.booking-consent input {
  width: auto;
  margin: 3px 0 0;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form .btn-primary[disabled] {
  opacity: 0.7;
  cursor: wait;
}

/* MODELS SUBSITE */
.models-hero {
  max-width: 860px;
  margin: 70px auto 34px;
  text-align: center;
}

.models-hero h1,
.models-panel h2,
.models-application h2 {
  font-family: "Georgia", serif;
}

.models-content-grid {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.models-panel,
.models-application {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 24px;
  text-align: left;
}

.models-list {
  list-style: disc;
  padding-left: 18px;
  color: rgba(245, 241, 234, 0.9);
}

.models-list li + li {
  margin-top: 10px;
}

.models-application {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.models-sample-portfolio {
  max-width: 1100px;
  margin: 0 auto 34px;
}

.models-sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.models-sample-description {
  min-height: 3.2em;
  margin-bottom: 8px;
}

.models-form {
  margin-top: 20px;
}

.models-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.models-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.models-field span {
  color: rgba(245, 241, 234, 0.92);
  font-size: 0.95rem;
}

.models-field small {
  color: rgba(245, 241, 234, 0.62);
}

.models-field-full {
  width: 100%;
}

.models-form input,
.models-form textarea,
.models-form select {
  width: 100%;
}

.models-form select {
  min-height: 44px;
  line-height: 1.2;
  padding: 12px;
  border: none;
  background: var(--soft-gray);
  color: var(--warm-white);
}

.models-form textarea {
  min-height: 120px;
  margin-top: 12px;
}

.models-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.models-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
}

.models-consent input {
  width: auto;
  margin: 0;
}

.models-form .btn-primary[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.form-alert {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--panel-border);
}

.form-alert.success {
  border-color: rgba(122, 195, 146, 0.65);
  background: rgba(122, 195, 146, 0.14);
}

.form-alert.error {
  border-color: rgba(211, 127, 127, 0.8);
  background: rgba(211, 127, 127, 0.14);
}

.form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

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

  .portfolio-lightbox {
    grid-template-columns: 1fr;
    padding: 72px 16px 24px;
  }

  .lightbox-nav {
    width: 100%;
    height: 48px;
    max-width: 180px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
  }

  .wrapper {
    padding-top: 140px;
  }

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

  .portfolio,
  .portfolio-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-gallery-header,
  .portfolio-hero {
    padding-top: 56px;
  }

  .models-content-grid,
  .models-form-grid,
  .models-sample-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

/* AGE GATE MODAL */
#age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-box {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  max-width: 540px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.age-gate-box h2 {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--warm-white);
}

.age-gate-box p {
  color: var(--warm-white);
  margin-bottom: 16px;
  line-height: 1.7;
}

.age-gate-legal {
  font-size: 0.8rem;
  color: #d8cec0;
  opacity: 0.95;
  border-top: 1px solid var(--panel-border);
  padding-top: 16px;
  margin-top: 4px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  align-items: center;
}

.age-gate-actions .btn-primary,
.age-gate-actions .btn-secondary {
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 1px;
  font-weight: bold;
}

.age-gate-actions .btn-secondary {
  background: transparent;
}
