﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --ink: #0e0c0a;
  --cream: #f5f0e8;
  --gold: #c9a96e;
  --gold-light: #e8d4a8;
  --rose: #c4765a;
  --rose-muted: #e8b89e;
  --charcoal: #1c1a17;
  --mid: #3a3630;
  --soft: #7a7268;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', sans-serif;
  --panel: #231f1b;
  --panel-border: rgba(245, 240, 232, 0.18);
  --warm-white: var(--cream);
  --dusty-rose: var(--rose);
  --soft-gray: var(--mid);
}

html { scroll-behavior: smooth; }

.wrapper {
  text-align: center;
  padding: calc(var(--nav-height, 88px) + 12px) 20px 0;
}

.home-hero {
  background-image: url('/images/mainimg.jpg');
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

p,
li,
label,
small,
input,
textarea,
select,
button,
a {
  font-family: var(--sans);
}

p {
  color: rgba(245, 240, 232, 0.64);
}

h1 em,
h2 em,
.headline-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

body.lightbox-open {
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(14, 12, 10, 0.72);
  border-bottom: 1px solid rgba(245, 240, 232, 0.18);
  backdrop-filter: blur(8px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  display: block;
  height: 80px;
  width: auto;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.nav-right nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-contact {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.nav-contact a {
  margin-left: 14px;
}

.nav-contact a:first-child {
  margin-left: 0;
}

.nav a {
  color: var(--cream);
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.btn-primary {
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.96), rgba(184, 146, 86, 0.96));
  color: var(--ink);
  padding: 11px 24px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(232, 212, 168, 0.45);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(232, 212, 168, 0.96), rgba(201, 169, 110, 0.96));
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid rgba(201, 169, 110, 0.75);
  color: var(--gold-light);
  padding: 11px 24px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.14);
  color: var(--ink);
}

.portfolio-page-actions .btn-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.inline-form {
  display: inline-block;
}

.btn-secondary-plain {
  background: transparent;
  cursor: pointer;
}

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  font-size: 0.68rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 44px;
  height: 1px;
  background: rgba(201, 169, 110, 0.55);
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.08), rgba(14, 12, 10, 0));
}

.cta h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 26px 20px;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(245, 240, 232, 0.72);
  border-top: 1px solid rgba(245, 240, 232, 0.16);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold-light);
  text-decoration: none;
}

footer a:hover {
  color: var(--cream);
  text-decoration: none;
}

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

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

input, textarea {
  width: 100%;
  padding: 11px 12px;
  margin: 10px 0;
  background: var(--mid);
  border: 1px solid rgba(245, 240, 232, 0.22);
  color: var(--cream);
  border-radius: 2px;
}

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

.intro h2 {
  font-family: var(--serif);
  margin-bottom: 20px;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: var(--serif);
}

/* BOOKING PAGE */
.booking {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

.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: var(--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(245, 240, 232, 0.06), rgba(245, 240, 232, 0.02));
  padding: 24px;
  text-align: left;
  backdrop-filter: blur(1px);
}

.management-auth-panel {
  max-width: 560px;
  margin-bottom: 80px;
}

.management-auth-link-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

.management-auth-link {
  color: var(--gold);
  font-size: 0.9rem;
}

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

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

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.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:not([type="checkbox"]),
.booking-form textarea,
.booking-form select {
  padding: 12px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  background: var(--soft-gray);
  color: var(--warm-white);
  border-radius: 2px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

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

.booking-form input:not([type="checkbox"]),
.booking-form select {
  min-height: 52px;
}

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

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

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

.booking-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
  border: 1px solid rgba(245, 240, 232, 0.35);
  border-radius: 2px;
  background: var(--mid);
}

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

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

/* PORTFOLIO PAGES — hero/shell kept for management views */
.portfolio-hero,
.portfolio-gallery-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 20px 40px;
  text-align: center;
}

.portfolio-hero h1,
.portfolio-gallery-header h1 {
  font-family: var(--serif);
  margin-bottom: 12px;
}

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

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

/* Portfolio image — CSS variable scale with hover */
.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-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(245, 240, 232, 0.03);
  color: rgba(245, 241, 234, 0.78);
}

.portfolio-empty-tight {
  margin: 0;
}

.portfolio-manager-panel {
  max-width: none;
  margin-bottom: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.portfolio-manager-heading {
  margin-bottom: 1rem;
}

.portfolio-manager-form {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  gap: 12px;
}

.portfolio-manager-control {
  height: 50px;
  min-height: 50px;
  line-height: 50px;
  padding: 0 14px;
  margin: 0;
  box-sizing: border-box;
}

.portfolio-manager-action {
  width: 100%;
  height: 44px;
  margin: 0;
  box-sizing: border-box;
}

.portfolio-manager-panel .btn-primary.portfolio-manager-action {
  height: 50px;
}

.portfolio-manager-article {
  max-width: none;
  margin-bottom: 1.5rem;
}

.portfolio-manager-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.portfolio-manager-title {
  margin: 0;
}

.portfolio-manager-subtitle {
  margin: 0.4rem 0 0;
}

.portfolio-manager-label {
  text-align: left;
}

.portfolio-manager-card-active {
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.55), 0 14px 28px rgba(255, 193, 7, 0.25);
  transform: translateY(-2px);
}

.portfolio-manager-image {
  height: 240px;
  object-fit: contain;
  background: #111;
}

.portfolio-manager-card-body {
  gap: 0.75rem;
}

.portfolio-manager-card-title {
  font-size: 1rem;
  word-break: break-word;
  min-height: 3rem;
  margin: 0;
}

.portfolio-manager-card-text {
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.7);
  min-height: 1.35rem;
  margin: 0;
}

.portfolio-manager-cover-form {
  margin: 0;
}

.portfolio-manager-cover-button {
  width: 100%;
  height: 44px;
  margin: 0;
  box-sizing: border-box;
}

.portfolio-manager-cover-button-current {
  cursor: default;
}

.portfolio-manager-details {
  margin-top: auto;
}

.portfolio-manager-summary {
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.portfolio-manager-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust {
  padding-top: 20px;
}

/* PORTFOLIO LIGHTBOX */
.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);
}

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

.models-page .portfolio-category-link {
  color: var(--gold-light);
  text-decoration: none;
}

.models-page .portfolio-category-link:hover {
  color: var(--cream);
  text-decoration: none;
}

.models-page .portfolio-category-link:focus,
.models-page .portfolio-category-link:active,
.models-page .portfolio-category-link h3,
.models-page .portfolio-category-link p {
  text-decoration: none;
}

.models-page .portfolio-category-link h3,
.models-page h1,
.models-page h2,
.models-page .models-inline-questions h3 {
  color: var(--cream);
}

.models-page .eyebrow {
  color: var(--gold-light);
}

.models-page .eyebrow::before,
.models-page .eyebrow::after {
  background: rgba(201, 169, 110, 0.55);
}

.portfolio-page .portfolio-category-link {
  color: var(--gold-light);
  text-decoration: none;
}

.portfolio-page .portfolio-category-link:hover {
  color: var(--cream);
  text-decoration: none;
}

.portfolio-page .portfolio-category-link:focus,
.portfolio-page .portfolio-category-link:active,
.portfolio-page .portfolio-category-link h3,
.portfolio-page .portfolio-category-link p,
.portfolio-page .portfolio-gallery-header nav a {
  text-decoration: none;
}

.portfolio-page .portfolio-gallery-header nav a {
  color: var(--gold-light);
}

.portfolio-page .portfolio-gallery-header nav a:hover {
  color: var(--cream);
}

.portfolio-page .portfolio-hero h1,
.portfolio-page .portfolio-gallery-header h1,
.portfolio-page .portfolio-gallery-header h2,
.portfolio-page .portfolio-category-link h3 {
  color: var(--cream);
}

.portfolio-page .eyebrow {
  color: var(--gold-light);
}

.portfolio-page .eyebrow::before,
.portfolio-page .eyebrow::after {
  background: rgba(201, 169, 110, 0.55);
}

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

.models-inline-questions {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.03);
}

.models-inline-questions h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.models-sample-description {
  min-height: 3.2em;
  margin-bottom: 8px;
  color: rgba(245, 241, 234, 0.78);
}

.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-grid + .models-field-full,
.models-field-full + .models-field-full {
  margin-top: 10px;
}

.models-form input:not([type="checkbox"]),
.models-form textarea,
.models-form select {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.models-form select {
  min-height: 44px;
  line-height: 1.2;
  padding: 12px;
  border: 1px solid rgba(245, 240, 232, 0.22);
  background: var(--soft-gray);
  color: var(--warm-white);
  border-radius: 2px;
}

.models-form input:not([type="checkbox"]),
.models-form select {
  min-height: 52px;
}

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

.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: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--gold);
  border: 1px solid rgba(245, 240, 232, 0.35);
  border-radius: 2px;
  background: var(--mid);
}

.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) {
  .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;
  }

  .logo-image {
    height: 64px;
  }

  .nav-right,
  .nav-right nav,
  .nav-contact {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

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

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

  .models-form-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-overlay.age-gate-hidden {
  display: none !important;
}

.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: var(--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;
  display: block;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(201, 169, 110, 0.7);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
}

/* Keep native dropdown menus readable when the OS/browser uses a light popup panel. */
select option,
select optgroup {
  color: #161616;
  background-color: #ffffff;
}

select option:disabled {
  color: #666666;
}

/* Final Reformulation Layer */
:root {
  --ink: #090909;
  --cream: #f7f0e6;
  --gold: #d2ab64;
  --gold-light: #efd9ad;
  --panel: #131313;
  --panel-border: rgba(239, 217, 173, 0.28);
  --soft-gray: #2d2a27;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(210, 171, 100, 0.14), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(196, 118, 90, 0.12), transparent 42%),
    linear-gradient(170deg, #12110f 0%, #0b0b0b 60%, #060606 100%);
}

.wrapper {
  padding-top: calc(var(--nav-height, 88px) + 28px);
}

.nav {
  background: rgba(8, 8, 8, 0.88);
  border-bottom: 1px solid rgba(239, 217, 173, 0.24);
  padding: 14px 0;
}

.nav-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.logo-link {
  gap: 12px;
}

.brand-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(239, 217, 173, 0.85);
}

.nav-contact {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.nav-right nav {
  flex-wrap: nowrap;
  gap: 10px;
}

.nav-right nav a {
  margin-left: 0;
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.reform-hero {
  min-height: min(820px, calc(100vh - var(--nav-height, 88px)));
  border: 1px solid rgba(239, 217, 173, 0.18);
  width: min(1200px, 94%);
  margin: 0 auto 54px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.reform-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(0, 0, 0, 0.82) 12%, rgba(0, 0, 0, 0.34) 70%);
}

.reform-hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 90%);
  margin: 0 auto;
  text-align: left;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 48px);
}

.reform-hero-content h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  margin-bottom: 1.1rem;
}

.reform-hero-content h1 em {
  display: inline-block;
  font-style: italic;
  color: var(--gold);
}

.reform-hero-content p {
  max-width: 650px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(247, 240, 230, 0.76);
}

.reform-hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.reform-section {
  width: min(1200px, 94%);
  margin: 0 auto 52px;
}

.reform-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reform-card {
  background: linear-gradient(160deg, rgba(239, 217, 173, 0.08), rgba(239, 217, 173, 0.01));
  border: 1px solid rgba(239, 217, 173, 0.2);
  border-radius: 14px;
  padding: 26px;
  text-align: left;
}

.reform-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.reform-card p {
  margin: 0;
}

.reform-portfolio {
  padding: 34px;
  border: 1px solid rgba(239, 217, 173, 0.2);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.55);
}

.reform-section-heading {
  max-width: 740px;
  margin: 0 auto 28px;
  text-align: center;
}

.reform-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.reform-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reform-gallery-card {
  border: 1px solid rgba(239, 217, 173, 0.16);
  border-radius: 10px;
}

.reform-gallery-media {
  background: #0f0f0f;
}

.reform-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.reform-location-row {
  text-align: center;
}

.reform-location-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.reform-cta-panel {
  text-align: center;
  max-width: 920px;
  padding: 42px 26px;
  border: 1px solid rgba(239, 217, 173, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(239, 217, 173, 0.08), rgba(239, 217, 173, 0.02));
}

.reform-cta-panel h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 0.65rem;
}

.reform-cta-panel p {
  max-width: 680px;
  margin: 0 auto 18px;
}

footer {
  margin-top: 28px;
  padding: 34px 20px;
  background: rgba(7, 7, 7, 0.95);
}

.footer-grid {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.3fr;
  gap: 22px;
  text-align: left;
}

.footer-title {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 6px;
}

@media (max-width: 1180px) {
  .nav-inner {
    width: min(1200px, 95%);
    gap: 14px;
  }

  .logo-image {
    height: 68px;
  }

  .brand-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.17em;
  }

  .nav-right {
    gap: 4px;
  }

  .nav-contact {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 1024px) {
  .reform-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reform-grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .brand-kicker {
    display: none;
  }

  .reform-hero-content {
    text-align: center;
  }

  .reform-hero-actions {
    justify-content: center;
  }

  .reform-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Active Link + Navigation Ergonomics */
.nav-link {
  position: relative;
}

.nav-link-active {
  color: var(--gold-light) !important;
}

.nav-link-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(210, 171, 100, 0.28), rgba(210, 171, 100, 0.95), rgba(210, 171, 100, 0.28));
}

/* Button Hierarchy By Page Context */
.route-home .btn-primary,
.route-portfolio .btn-primary {
  box-shadow: 0 12px 30px rgba(210, 171, 100, 0.28);
}

.route-home .btn-secondary,
.route-portfolio .btn-secondary {
  border-color: rgba(239, 217, 173, 0.62);
  color: var(--cream);
}

.route-booking .btn-primary,
.route-models .btn-primary {
  width: 100%;
  justify-content: center;
}

.route-management .btn-primary {
  background: rgba(210, 171, 100, 0.9);
  color: #111;
  box-shadow: none;
}

.route-management .btn-secondary {
  border-color: rgba(239, 217, 173, 0.36);
  color: rgba(247, 240, 230, 0.9);
}

@media (max-width: 768px) {
  .nav {
    padding-bottom: 10px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .logo-link {
    justify-content: center;
  }

  .nav-right {
    width: 100%;
    align-items: stretch;
    gap: 10px;
  }

  .nav-right nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .nav-right nav a {
    margin-left: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(239, 217, 173, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.09em;
  }

  .nav-link-active::after {
    display: none;
  }

  .nav-right nav a.nav-link-active {
    border-color: rgba(239, 217, 173, 0.65);
    background: rgba(210, 171, 100, 0.16);
  }

  .nav-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center;
  }

  .nav-contact a {
    margin-left: 0;
  }
}

/* Sitewide Consistency Layer */
.booking-hero,
.portfolio-hero,
.portfolio-gallery-header {
  width: min(1100px, 94%);
  margin: 0 auto 26px;
  padding: 22px 8px 8px;
}

.booking-hero h1,
.portfolio-hero h1,
.portfolio-gallery-header h1 {
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  margin-bottom: 0.55rem;
}

.booking-hero p,
.portfolio-hero p,
.portfolio-gallery-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(247, 240, 230, 0.74);
}

.booking-panel,
.portfolio-shell,
.models-page section,
.portfolio-page section {
  width: min(1100px, 94%);
  margin-left: auto;
  margin-right: auto;
}

.booking-panel {
  margin-bottom: 20px;
  border: 1px solid rgba(239, 217, 173, 0.22);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(239, 217, 173, 0.08), rgba(239, 217, 173, 0.02));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.booking-panel h2,
.models-page h2,
.portfolio-page h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.booking-panel p,
.models-page p,
.portfolio-page p {
  color: rgba(247, 240, 230, 0.72);
}

.booking-form,
.models-form {
  margin-top: 16px;
}

.booking-form input:not([type="checkbox"]),
.booking-form select,
.booking-form textarea,
.models-form input:not([type="checkbox"]),
.models-form select,
.models-form textarea {
  background: rgba(247, 240, 230, 0.08);
  border: 1px solid rgba(239, 217, 173, 0.32);
}

.portfolio-page .portfolio-categories-grid article,
.models-page .models-categories-grid article,
.portfolio-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border-color: rgba(239, 217, 173, 0.2) !important;
  background: linear-gradient(180deg, rgba(247, 240, 230, 0.06), rgba(247, 240, 230, 0.015));
}

.portfolio-page .portfolio-category-link h3,
.models-page .portfolio-category-link h3 {
  font-size: 1.4rem;
}

.portfolio-shell {
  padding-bottom: 58px;
}

.route-management .table-responsive {
  border: 1px solid rgba(239, 217, 173, 0.22);
  border-radius: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(8, 8, 8, 0.7);
}

.route-management .table {
  margin-bottom: 0;
  color: rgba(247, 240, 230, 0.9);
}

.route-management .table thead th {
  background: rgba(210, 171, 100, 0.14);
  color: var(--gold-light);
  border-color: rgba(239, 217, 173, 0.28);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.route-management .table td,
.route-management .table th {
  border-color: rgba(239, 217, 173, 0.16);
  background: rgba(10, 10, 10, 0.62);
}

.route-management .table-striped > tbody > tr:nth-of-type(odd) > * {
  background: rgba(247, 240, 230, 0.03);
}

.route-management .pagination {
  gap: 6px;
}

.route-management .page-link {
  background: rgba(247, 240, 230, 0.06);
  border-color: rgba(239, 217, 173, 0.28);
  color: var(--gold-light);
}

.route-management .page-item.active .page-link {
  background: rgba(210, 171, 100, 0.25);
  border-color: rgba(239, 217, 173, 0.5);
  color: var(--cream);
}

.route-management .page-link:hover {
  background: rgba(210, 171, 100, 0.18);
  color: var(--cream);
}

.models-list {
  line-height: 1.7;
}

.models-list a,
.booking-panel a,
.portfolio-shell a {
  color: var(--gold-light);
}

.models-list a:hover,
.booking-panel a:hover,
.portfolio-shell a:hover {
  color: var(--cream);
}

/* Rounded media consistency */
img:not(.logo-image):not(.portfolio-lightbox-image) {
  border-radius: 10px;
}

/* Keep image containers clipped when image zoom effects are active */
.portfolio-category-link picture,
.portfolio-gallery-item,
.portfolio-manager-image-wrap,
.portfolio-manager-image,
.reform-gallery-media {
  border-radius: 10px;
  overflow: hidden;
}

/* Models page box normalization */
.models-page > section:nth-of-type(2) > article,
.models-page > section:last-of-type {
  border-radius: 14px;
  border-color: rgba(239, 217, 173, 0.22) !important;
  background: linear-gradient(170deg, rgba(239, 217, 173, 0.08), rgba(239, 217, 173, 0.02));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.models-inline-questions,
.form-alert,
.portfolio-empty {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .booking-panel,
  .portfolio-shell,
  .models-page section,
  .portfolio-page section,
  .booking-hero,
  .portfolio-hero,
  .portfolio-gallery-header {
    width: min(1100px, 96%);
  }

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