@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap);
/* TYPOGRAHPY */
body {
  font-family: "Outfit", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
}

img {
  max-width: 100%;
}

p {
  font-size: 18px;
  line-height: 28px;
}

.h1, .h2, .h3, .h4, .h5, .h6, p {
  margin: 0;
}

/* GENERAL STYLING */
* {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER AND FOOTER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid rgba(221, 162, 44, 0.18);
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  /* DESKTOP MENU */
  /* HAMBURGER */
}
.header .container {
  height: 100%;
  padding: 0;
}
.header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 0 48px;
  height: 100%;
}
.header .header-inner a {
  margin-bottom: 0;
}
.header .logo_header {
  justify-self: start;
}
.header .logo_header a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header .logo_header a:hover {
  opacity: 0.9;
}
.header .logo_header .logo_text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0;
}
.header .logo_header .logo_text span {
  color: #DDA22C;
}
.header .model-agency_logo {
  width: auto;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .model-agency_menu {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .model-agency_menu li {
  margin: 0;
}
.header .model-agency_menu li a {
  color: #8C8C8C;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.14px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
}
.header .model-agency_menu li.current-menu-item a, .header .model-agency_menu li.current_page_item a,
.header .model-agency_menu li a:hover {
  color: #DDA22C;
}
.header .header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}
.header .model-agency_language_switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}
.header .model-agency_language_option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.22em;
  line-height: 1;
}
.header .model-agency_language_option.is-active {
  background: #DDA22C;
  color: #111111;
}
.header .model-agency_language_option.is-static {
  cursor: default;
}
.header .model-agency_hamburger {
  display: none;
  cursor: pointer;
  width: 26px;
  height: 20px;
  position: relative;
}
.header .model-agency_hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}
.header .model-agency_hamburger span:nth-child(1) {
  top: 0;
}
.header .model-agency_hamburger span:nth-child(2) {
  top: 8px;
}
.header .model-agency_hamburger span:nth-child(3) {
  top: 16px;
}
.header .model-agency_hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.header .model-agency_hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .model-agency_hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* ========================= */
/* MOBILE MENU (ONLY SYSTEM) */
/* ========================= */
.menu-items-mobile {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(221, 162, 44, 0.18);
  padding: 24px 20px 28px;
  z-index: 999;
  display: none;
}
.menu-items-mobile.active {
  display: block;
}
.menu-items-mobile .menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.menu-items-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu-items-mobile li {
  margin-bottom: 16px;
}
.menu-items-mobile li a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
}
.menu-items-mobile .model-agency_nav_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #DDA22C;
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .header {
    height: 72px;
  }
  .header .header-inner {
    padding: 0 28px;
    gap: 20px;
  }
  .header .model-agency_logo {
    height: 42px;
  }
  .header .logo_text {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .header .model-agency_menu {
    gap: 22px;
  }
  .header .model-agency_menu li a {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .header .header-actions {
    gap: 12px;
  }
  .header .model-agency_language_option {
    min-width: 30px;
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .menu-items-mobile {
    top: 72px;
  }
}
/* ================= */
/* MOBILE BREAKPOINT */
/* ================= */
@media (max-width: 991px) {
  /* Hide desktop nav + button ONLY */
  .header {
    /* Show hamburger */
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
  }
  .header .model-agency_menu,
  .header .model-agency_language_switcher {
    display: none;
  }
  .header .model-agency_hamburger {
    display: block;
  }
  .header .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    gap: 12px;
  }
  .header .model-agency_logo {
    height: 34px;
  }
  .header .logo_text {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .menu-items-mobile {
    top: 64px;
  }
  .menu-items-mobile {
    padding: 22px 20px 26px;
  }
  .menu-items-mobile li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header .header-inner {
    padding: 0 16px;
  }
  .header .model-agency_logo {
    height: 28px;
  }
  .header .logo_text {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .menu-items-mobile {
    top: 60px;
    padding: 20px 16px 24px;
  }
}
@media (max-width: 480px) {
  .header {
    height: 60px;
    min-height: 60px;
  }
  .header .header-inner {
    padding: 0 12px;
  }
  .header .logo_header a {
    gap: 8px;
  }
  .header .logo_text {
    font-size: 12px;
  }
  .menu-items-mobile {
    top: 60px;
  }
  .menu-items-mobile .model-agency_nav_button,
  .menu-items-mobile .model-agency_nav_button:visited,
  .menu-items-mobile .model-agency_nav_button:hover,
  .menu-items-mobile .model-agency_nav_button:active,
  .menu-items-mobile .model-agency_nav_button:focus {
    color: white;
    text-decoration: none;
  }
}
.site-footer {
  padding: 96px 0 48px;
  background: #121212;
}
.site-footer .container {
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .site-footer .container {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  .site-footer .container {
    padding: 0 16px;
  }
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.9fr) minmax(190px, 1fr) minmax(200px, 0.9fr);
  gap: 40px 52px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1199px) {
  .site-footer .footer-inner {
    gap: 32px 28px;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .site-footer .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }
}
.site-footer .footer-brand {
  max-width: 320px;
}
.site-footer .footer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.site-footer .footer-logo {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}
.site-footer .footer-title {
  margin: 0;
  color: #f7f1e7;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.site-footer .footer-tagline {
  margin: 0;
  color: rgba(242, 238, 232, 0.7);
  font-size: 15px;
  line-height: 1.8;
}
.site-footer .footer-column {
  min-width: 0;
}
.site-footer .footer-heading {
  margin: 2px 0 18px;
  color: #dda22c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-footer .footer-links,
.site-footer .footer-contact-item,
.site-footer .footer-socials {
  font-size: 15px;
}
.site-footer .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-menu li + li {
  margin-top: 12px;
}
.site-footer .footer-menu a,
.site-footer .footer-contact-item,
.site-footer .footer-contact-item--link {
  color: rgba(242, 238, 232, 0.74);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s ease;
}
.site-footer .footer-menu a:hover,
.site-footer .footer-contact-item--link:hover {
  color: #f7f1e7;
}
.site-footer .footer-contact-item {
  display: block;
  margin: 0;
}
.site-footer .footer-contact-item + .footer-contact-item {
  margin-top: 10px;
}
.site-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 238, 232, 0.8);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.site-footer .footer-socials a:hover {
  border-color: rgba(221, 162, 44, 0.75);
  color: #f7f1e7;
  transform: translateY(-1px);
}
.site-footer .footer-socials svg {
  fill: transparent;
  stroke: transparent;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  color: rgba(242, 238, 232, 0.44);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 900px) {
  .site-footer {
    padding: 72px 0 36px;
  }
  .site-footer .footer-brand {
    max-width: none;
  }
}
@media (max-width: 640px) {
  .site-footer .footer-heading {
    margin-bottom: 14px;
  }
  .site-footer .footer-bottom {
    justify-content: flex-start;
    text-align: left;
  }
}

/* COMPONENTS */
.hero-section {
  --hero-header-offset: 80px;
  --hero-overlay-opacity: 0.58;
  --hero-content-max-width: 620px;
  position: relative;
  min-height: 100svh;
  padding-top: var(--hero-header-offset);
  color: #f8f3eb;
  background-color: #050505;
  background-image: var(--hero-background-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.5) 66.67%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1280px;
}

.hero-section__inner {
  min-height: calc(100svh - var(--hero-header-offset));
  display: flex;
  align-items: flex-end;
  padding: 100px 0 128px;
}

.hero-section__content {
  max-width: var(--hero-content-max-width);
}

.hero-section__tagline {
  margin: 0 0 22px;
  color: #dda22c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-section__title {
  margin: 0 0 22px;
  color: #f6f1e8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 6.3vw, 86px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-section__description {
  max-width: 560px;
  margin: 0 0 34px;
  color: rgba(248, 243, 235, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid #dda22c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-section__button--primary {
  background: #dda22c;
  color: #121212;
}
.hero-section__button--primary:hover {
  background: #ebb94a;
  border-color: #ebb94a;
  color: #121212;
}

.hero-section__button--secondary {
  background: transparent;
  color: #dda22c;
}
.hero-section__button--secondary:hover {
  background: rgba(221, 162, 44, 0.12);
  color: #f5d48a;
}

@media (max-width: 1199px) {
  .hero-section {
    --hero-header-offset: 72px;
  }
  .hero-section .container {
    padding: 0 28px;
  }
  .hero-section__inner {
    padding: 92px 0 56px;
  }
  .hero-section__title {
    font-size: clamp(52px, 8vw, 72px);
  }
}
@media (max-width: 991px) {
  .hero-section {
    --hero-header-offset: 64px;
    background-position: 58% top;
  }
  .hero-section .container {
    padding: 0 20px;
  }
  .hero-section__inner {
    align-items: flex-end;
    padding: 84px 0 44px;
  }
  .hero-section__content {
    max-width: 540px;
  }
  .hero-section__title {
    font-size: clamp(44px, 9vw, 64px);
  }
  .hero-section__description {
    max-width: 460px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    --hero-header-offset: 60px;
    background-image: var(--hero-background-image-mobile, var(--hero-background-image));
    background-position: center top;
  }
  .hero-section .container {
    padding: 0 16px;
  }
  .hero-section__inner {
    min-height: calc(100svh - var(--hero-header-offset));
    padding: 64px 0 32px;
  }
  .hero-section__tagline {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.32em;
  }
  .hero-section__title {
    margin-bottom: 18px;
    font-size: clamp(36px, 14vw, 52px);
    line-height: 0.95;
  }
  .hero-section__description {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-section__button {
    width: 100%;
    min-height: 50px;
  }
}
.about-section {
  background: #050505;
  color: #f3efe8;
  padding: 96px 0;
}

.about-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-section__title {
  margin: 0 0 48px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
}

.about-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.about-section__description {
  color: #8C8C8C;
  font-size: 16px;
  line-height: 26px;
}
.about-section__description p {
  margin: 0 0 24px;
}
.about-section__description p:last-child {
  margin-bottom: 0;
}

.about-section__side-blocks {
  display: grid;
  gap: 26px;
}

.about-section__side-block {
  position: relative;
  padding-left: 18px;
}
.about-section__side-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #dda22c;
}

.about-section__side-title {
  margin: 0 0 10px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.about-section__side-text {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  font-size: 13px;
  line-height: 1.85;
}

.about-section__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(221, 162, 44, 0.16);
}

.about-section__stat {
  text-align: center;
}

.about-section__stat-value {
  margin-bottom: 6px;
  color: #dda22c;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.about-section__stat-label {
  color: rgba(243, 239, 232, 0.56);
  font-size: 10px;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .about-section {
    padding: 96px 0 72px;
  }
  .about-section__container {
    padding: 0 28px;
  }
  .about-section__content {
    gap: 36px;
  }
}
@media (max-width: 991px) {
  .about-section__container {
    padding: 0 20px;
  }
  .about-section__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-section__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 72px 0 56px;
  }
  .about-section__container {
    padding: 0 16px;
  }
  .about-section__title {
    margin-bottom: 28px;
    font-size: clamp(34px, 11vw, 46px);
  }
  .about-section__tagline {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.28em;
  }
  .about-section__description {
    font-size: 13px;
    line-height: 1.85;
  }
  .about-section__side-title {
    font-size: 26px;
  }
  .about-section__side-text {
    font-size: 12px;
  }
  .about-section__stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding-top: 24px;
  }
}
.models-section {
  background: #121212;
  color: #f4efe8;
  padding: 96px 0;
}

.models-section__container {
  text-align: center;
}

.models-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.models-section__title {
  margin: 0 0 64px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 300;
  line-height: 0.98;
}

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

.models-card {
  min-width: 0;
}

.models-card__media {
  position: relative;
  aspect-ratio: 0.76;
  background: #0a0a0a;
  clip-path: inset(0);
}

.models-card__image {
  position: absolute;
  inset: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.models-card__overlay {
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.models-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.models-card__category {
  margin: 0 0 10px;
  color: #dda22c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.models-card__name {
  margin: 0 0 12px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 0.98;
}

.models-card__link {
  display: inline-flex;
  align-items: center;
  color: #dda22c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  text-decoration: none;
}
.models-card__link:visited, .models-card__link:hover, .models-card__link:active, .models-card__link:focus {
  color: #dda22c;
  text-decoration: none;
}

.models-card:hover .models-card__image,
.models-card:focus-within .models-card__image {
  transform: scale(1.03);
  filter: brightness(0.45);
}

.models-card:hover .models-card__overlay,
.models-card:focus-within .models-card__overlay {
  opacity: 1;
}

.models-card:hover .models-card__content,
.models-card:focus-within .models-card__content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .models-section {
    padding: 96px 0 104px;
  }
  .models-section__container {
    padding: 0 28px;
  }
}
@media (max-width: 991px) {
  .models-section__container {
    padding: 0 20px;
  }
  .models-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .models-section {
    padding: 72px 0 80px;
  }
  .models-section__container {
    padding: 0 16px;
  }
  .models-section__title {
    margin-bottom: 32px;
    font-size: clamp(34px, 10vw, 44px);
  }
  .models-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .models-card__media {
    aspect-ratio: 0.82;
  }
  .models-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.78) 100%);
  }
  .models-card__content {
    opacity: 1;
    transform: none;
  }
  .models-card__image {
    filter: brightness(0.62);
  }
}
.events-section {
  background: #0A0A0A;
  color: #f4efe8;
  padding: 96px 0;
}

.events-section__container {
  max-width: 1140px;
  padding: 0 48px;
}

.events-section__intro {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.events-section__tagline {
  margin: 0 0 14px;
  color: #dda22c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.events-section__title {
  margin: 0 0 18px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 0.98;
}

.events-section__description {
  color: rgba(243, 239, 232, 0.62);
  font-size: 14px;
  line-height: 1.8;
}
.events-section__description p {
  margin: 0;
}

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

.events-card {
  min-width: 0;
}

.events-card__media {
  position: relative;
  aspect-ratio: 0.79;
  background: #0b0b0b;
}

.events-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.events-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.72) 100%);
}

.events-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  text-align: left;
}

.events-card__eyebrow {
  margin: 0 0 8px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.events-card__title {
  margin: 0;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2vw, 24px);
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 1199px) {
  .events-section {
    padding: 96px 0 104px;
  }
  .events-section__container {
    padding: 0 28px;
  }
}
@media (max-width: 991px) {
  .events-section__container {
    padding: 0 20px;
  }
  .events-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .events-section__intro {
    margin-bottom: 36px;
  }
  .events-card__media {
    aspect-ratio: 1.1;
  }
}
@media (max-width: 767px) {
  .events-section {
    padding: 72px 0 80px;
  }
  .events-section__container {
    padding: 0 16px;
  }
  .events-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .events-section__description {
    font-size: 13px;
  }
  .events-card__title {
    font-size: 28px;
  }
  .events-card__content {
    padding: 18px 16px 16px;
  }
}
.services-section {
  background: #121212;
  color: #f4efe8;
  padding: 96px 0;
}

.services-section__intro {
  margin: 0 auto 64px;
  text-align: center;
}

.services-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-section__title {
  margin: 0;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 0.98;
}

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

.service-card {
  min-height: 154px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  margin-bottom: 24px;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  margin: 0 0 12px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card__description {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .services-section__container {
    padding: 0 20px;
  }
  .services-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .service-card:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .services-section {
    padding: 72px 0 80px;
  }
  .services-section__container {
    padding: 0 16px;
  }
  .services-section__intro {
    margin-bottom: 32px;
  }
  .services-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .services-section__grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n) {
    min-height: auto;
    border-right: 0;
  }
  .service-card {
    padding: 26px 18px 22px;
  }
}
.application-section {
  background: #050505;
  color: #f4efe8;
  padding: 96px 0 104px;
}

.application-section__container {
  max-width: 768px;
}

.application-section__intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.application-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.application-section__title {
  margin: 0 0 16px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 1;
}

.application-section__description {
  color: rgba(243, 239, 232, 0.62);
  font-size: 16px;
  line-height: 24px;
}
.application-section__description p {
  margin: 0;
}

.application-section__form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.application-section__placeholder {
  padding: 28px;
  border: 1px dashed rgba(221, 162, 44, 0.35);
  color: rgba(243, 239, 232, 0.58);
  text-align: center;
}

.application-section .wpcf7 {
  width: 100%;
}
.application-section .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.application-section .wpcf7 form p {
  margin: 0;
}
.application-section .wpcf7 form .form-row {
  display: grid;
  gap: 16px;
}
.application-section .wpcf7 form .form-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.application-section .wpcf7 form .form-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.application-section .wpcf7 form .form-field {
  width: 100%;
}
.application-section .wpcf7 input:not([type=submit]),
.application-section .wpcf7 textarea {
  width: 100%;
  background: transparent;
  color: #f5efe6;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 12px 0 11px;
  font-size: 13px;
  line-height: 1.4;
  outline: none;
  box-shadow: none;
}
.application-section .wpcf7 textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 14px;
}
.application-section .wpcf7 input::-moz-placeholder, .application-section .wpcf7 textarea::-moz-placeholder {
  color: rgba(243, 239, 232, 0.34);
}
.application-section .wpcf7 input::placeholder,
.application-section .wpcf7 textarea::placeholder {
  color: rgba(243, 239, 232, 0.34);
}
.application-section .wpcf7 input:focus,
.application-section .wpcf7 textarea:focus {
  border-bottom-color: rgba(221, 162, 44, 0.6);
}
.application-section .wpcf7 .wpcf7-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  background: linear-gradient(105.08deg, #AE7B13 0%, #DDA22C 50%, #DBB870 100%);
  color: #111111;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: filter 0.2s ease;
}
.application-section .wpcf7 .wpcf7-submit:hover {
  filter: brightness(1.06);
}
.application-section .wpcf7 .wpcf7-spinner {
  display: none;
}
.application-section .wpcf7 form .wpcf7-not-valid-tip,
.application-section .wpcf7 form .wpcf7-response-output,
.application-section .wpcf7 .wpcf7-not-valid-tip,
.application-section .wpcf7 .wpcf7-response-output {
  display: block;
  margin: 8px 0 0;
  color: #d94b4b !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.4;
  border: 0;
  padding: 0;
  text-transform: none;
}
.application-section .wpcf7 form .wpcf7-not-valid {
  border-bottom-color: #d94b4b !important;
}

@media (max-width: 767px) {
  .application-section {
    padding: 72px 0 80px;
  }
  .application-section__container {
    padding: 0 16px;
  }
  .application-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .application-section .wpcf7 form .form-row--two,
  .application-section .wpcf7 form .form-row--three {
    grid-template-columns: 1fr;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid rgba(221, 162, 44, 0.18);
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  /* DESKTOP MENU */
  /* HAMBURGER */
}
.header .container {
  height: 100%;
  padding: 0;
}
.header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 0 48px;
  height: 100%;
}
.header .header-inner a {
  margin-bottom: 0;
}
.header .logo_header {
  justify-self: start;
}
.header .logo_header a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header .logo_header a:hover {
  opacity: 0.9;
}
.header .logo_header .logo_text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: white;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 0;
}
.header .logo_header .logo_text span {
  color: #DDA22C;
}
.header .model-agency_logo {
  width: auto;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .model-agency_menu {
  display: flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .model-agency_menu li {
  margin: 0;
}
.header .model-agency_menu li a {
  color: #8C8C8C;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.14px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
}
.header .model-agency_menu li.current-menu-item a, .header .model-agency_menu li.current_page_item a,
.header .model-agency_menu li a:hover {
  color: #DDA22C;
}
.header .header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}
.header .model-agency_language_switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}
.header .model-agency_language_option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.22em;
  line-height: 1;
}
.header .model-agency_language_option.is-active {
  background: #DDA22C;
  color: #111111;
}
.header .model-agency_language_option.is-static {
  cursor: default;
}
.header .model-agency_hamburger {
  display: none;
  cursor: pointer;
  width: 26px;
  height: 20px;
  position: relative;
}
.header .model-agency_hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}
.header .model-agency_hamburger span:nth-child(1) {
  top: 0;
}
.header .model-agency_hamburger span:nth-child(2) {
  top: 8px;
}
.header .model-agency_hamburger span:nth-child(3) {
  top: 16px;
}
.header .model-agency_hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.header .model-agency_hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .model-agency_hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* ========================= */
/* MOBILE MENU (ONLY SYSTEM) */
/* ========================= */
.menu-items-mobile {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid rgba(221, 162, 44, 0.18);
  padding: 24px 20px 28px;
  z-index: 999;
  display: none;
}
.menu-items-mobile.active {
  display: block;
}
.menu-items-mobile .menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.menu-items-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu-items-mobile li {
  margin-bottom: 16px;
}
.menu-items-mobile li a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
}
.menu-items-mobile .model-agency_nav_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #DDA22C;
  color: #111111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .header {
    height: 72px;
  }
  .header .header-inner {
    padding: 0 28px;
    gap: 20px;
  }
  .header .model-agency_logo {
    height: 42px;
  }
  .header .logo_text {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .header .model-agency_menu {
    gap: 22px;
  }
  .header .model-agency_menu li a {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .header .header-actions {
    gap: 12px;
  }
  .header .model-agency_language_option {
    min-width: 30px;
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .menu-items-mobile {
    top: 72px;
  }
}
/* ================= */
/* MOBILE BREAKPOINT */
/* ================= */
@media (max-width: 991px) {
  /* Hide desktop nav + button ONLY */
  .header {
    /* Show hamburger */
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
  }
  .header .model-agency_menu,
  .header .model-agency_language_switcher {
    display: none;
  }
  .header .model-agency_hamburger {
    display: block;
  }
  .header .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    gap: 12px;
  }
  .header .model-agency_logo {
    height: 34px;
  }
  .header .logo_text {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .menu-items-mobile {
    top: 64px;
  }
  .menu-items-mobile {
    padding: 22px 20px 26px;
  }
  .menu-items-mobile li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .header .header-inner {
    padding: 0 16px;
  }
  .header .model-agency_logo {
    height: 28px;
  }
  .header .logo_text {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .menu-items-mobile {
    top: 60px;
    padding: 20px 16px 24px;
  }
}
@media (max-width: 480px) {
  .header {
    height: 60px;
    min-height: 60px;
  }
  .header .header-inner {
    padding: 0 12px;
  }
  .header .logo_header a {
    gap: 8px;
  }
  .header .logo_text {
    font-size: 12px;
  }
  .menu-items-mobile {
    top: 60px;
  }
  .menu-items-mobile .model-agency_nav_button,
  .menu-items-mobile .model-agency_nav_button:visited,
  .menu-items-mobile .model-agency_nav_button:hover,
  .menu-items-mobile .model-agency_nav_button:active,
  .menu-items-mobile .model-agency_nav_button:focus {
    color: white;
    text-decoration: none;
  }
}
.hero-section {
  --hero-header-offset: 80px;
  --hero-overlay-opacity: 0.58;
  --hero-content-max-width: 620px;
  position: relative;
  min-height: 100svh;
  padding-top: var(--hero-header-offset);
  color: #f8f3eb;
  background-color: #050505;
  background-image: var(--hero-background-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.5) 66.67%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1280px;
}

.hero-section__inner {
  min-height: calc(100svh - var(--hero-header-offset));
  display: flex;
  align-items: flex-end;
  padding: 100px 0 128px;
}

.hero-section__content {
  max-width: var(--hero-content-max-width);
}

.hero-section__tagline {
  margin: 0 0 22px;
  color: #dda22c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-section__title {
  margin: 0 0 22px;
  color: #f6f1e8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(62px, 6.3vw, 86px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-section__description {
  max-width: 560px;
  margin: 0 0 34px;
  color: rgba(248, 243, 235, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid #dda22c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-section__button--primary {
  background: #dda22c;
  color: #121212;
}
.hero-section__button--primary:hover {
  background: #ebb94a;
  border-color: #ebb94a;
  color: #121212;
}

.hero-section__button--secondary {
  background: transparent;
  color: #dda22c;
}
.hero-section__button--secondary:hover {
  background: rgba(221, 162, 44, 0.12);
  color: #f5d48a;
}

@media (max-width: 1199px) {
  .hero-section {
    --hero-header-offset: 72px;
  }
  .hero-section .container {
    padding: 0 28px;
  }
  .hero-section__inner {
    padding: 92px 0 56px;
  }
  .hero-section__title {
    font-size: clamp(52px, 8vw, 72px);
  }
}
@media (max-width: 991px) {
  .hero-section {
    --hero-header-offset: 64px;
    background-position: 58% top;
  }
  .hero-section .container {
    padding: 0 20px;
  }
  .hero-section__inner {
    align-items: flex-end;
    padding: 84px 0 44px;
  }
  .hero-section__content {
    max-width: 540px;
  }
  .hero-section__title {
    font-size: clamp(44px, 9vw, 64px);
  }
  .hero-section__description {
    max-width: 460px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    --hero-header-offset: 60px;
    background-image: var(--hero-background-image-mobile, var(--hero-background-image));
    background-position: center top;
  }
  .hero-section .container {
    padding: 0 16px;
  }
  .hero-section__inner {
    min-height: calc(100svh - var(--hero-header-offset));
    padding: 64px 0 32px;
  }
  .hero-section__tagline {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 0.32em;
  }
  .hero-section__title {
    margin-bottom: 18px;
    font-size: clamp(36px, 14vw, 52px);
    line-height: 0.95;
  }
  .hero-section__description {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-section__button {
    width: 100%;
    min-height: 50px;
  }
}
.about-section {
  background: #050505;
  color: #f3efe8;
  padding: 96px 0;
}

.about-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-section__title {
  margin: 0 0 48px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
}

.about-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.about-section__description {
  color: #8C8C8C;
  font-size: 16px;
  line-height: 26px;
}
.about-section__description p {
  margin: 0 0 24px;
}
.about-section__description p:last-child {
  margin-bottom: 0;
}

.about-section__side-blocks {
  display: grid;
  gap: 26px;
}

.about-section__side-block {
  position: relative;
  padding-left: 18px;
}
.about-section__side-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #dda22c;
}

.about-section__side-title {
  margin: 0 0 10px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.about-section__side-text {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  font-size: 13px;
  line-height: 1.85;
}

.about-section__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(221, 162, 44, 0.16);
}

.about-section__stat {
  text-align: center;
}

.about-section__stat-value {
  margin-bottom: 6px;
  color: #dda22c;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.about-section__stat-label {
  color: rgba(243, 239, 232, 0.56);
  font-size: 10px;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .about-section {
    padding: 96px 0 72px;
  }
  .about-section__container {
    padding: 0 28px;
  }
  .about-section__content {
    gap: 36px;
  }
}
@media (max-width: 991px) {
  .about-section__container {
    padding: 0 20px;
  }
  .about-section__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-section__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 72px 0 56px;
  }
  .about-section__container {
    padding: 0 16px;
  }
  .about-section__title {
    margin-bottom: 28px;
    font-size: clamp(34px, 11vw, 46px);
  }
  .about-section__tagline {
    margin-bottom: 12px;
    font-size: 9px;
    letter-spacing: 0.28em;
  }
  .about-section__description {
    font-size: 13px;
    line-height: 1.85;
  }
  .about-section__side-title {
    font-size: 26px;
  }
  .about-section__side-text {
    font-size: 12px;
  }
  .about-section__stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    padding-top: 24px;
  }
}
.models-section {
  background: #121212;
  color: #f4efe8;
  padding: 96px 0;
}

.models-section__container {
  text-align: center;
}

.models-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.models-section__title {
  margin: 0 0 64px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 300;
  line-height: 0.98;
}

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

.models-card {
  min-width: 0;
}

.models-card__media {
  position: relative;
  aspect-ratio: 0.76;
  background: #0a0a0a;
  clip-path: inset(0);
}

.models-card__image {
  position: absolute;
  inset: -1px;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.models-card__overlay {
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.models-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 22px 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.models-card__category {
  margin: 0 0 10px;
  color: #dda22c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.models-card__name {
  margin: 0 0 12px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 0.98;
}

.models-card__link {
  display: inline-flex;
  align-items: center;
  color: #dda22c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  text-decoration: none;
}
.models-card__link:visited, .models-card__link:hover, .models-card__link:active, .models-card__link:focus {
  color: #dda22c;
  text-decoration: none;
}

.models-card:hover .models-card__image,
.models-card:focus-within .models-card__image {
  transform: scale(1.03);
  filter: brightness(0.45);
}

.models-card:hover .models-card__overlay,
.models-card:focus-within .models-card__overlay {
  opacity: 1;
}

.models-card:hover .models-card__content,
.models-card:focus-within .models-card__content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .models-section {
    padding: 96px 0 104px;
  }
  .models-section__container {
    padding: 0 28px;
  }
}
@media (max-width: 991px) {
  .models-section__container {
    padding: 0 20px;
  }
  .models-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .models-section {
    padding: 72px 0 80px;
  }
  .models-section__container {
    padding: 0 16px;
  }
  .models-section__title {
    margin-bottom: 32px;
    font-size: clamp(34px, 10vw, 44px);
  }
  .models-section__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .models-card__media {
    aspect-ratio: 0.82;
  }
  .models-card__overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.78) 100%);
  }
  .models-card__content {
    opacity: 1;
    transform: none;
  }
  .models-card__image {
    filter: brightness(0.62);
  }
}
.events-section {
  background: #0A0A0A;
  color: #f4efe8;
  padding: 96px 0;
}

.events-section__container {
  max-width: 1140px;
  padding: 0 48px;
}

.events-section__intro {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.events-section__tagline {
  margin: 0 0 14px;
  color: #dda22c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.events-section__title {
  margin: 0 0 18px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 0.98;
}

.events-section__description {
  color: rgba(243, 239, 232, 0.62);
  font-size: 14px;
  line-height: 1.8;
}
.events-section__description p {
  margin: 0;
}

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

.events-card {
  min-width: 0;
}

.events-card__media {
  position: relative;
  aspect-ratio: 0.79;
  background: #0b0b0b;
}

.events-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.events-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.72) 100%);
}

.events-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  text-align: left;
}

.events-card__eyebrow {
  margin: 0 0 8px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.events-card__title {
  margin: 0;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2vw, 24px);
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 1199px) {
  .events-section {
    padding: 96px 0 104px;
  }
  .events-section__container {
    padding: 0 28px;
  }
}
@media (max-width: 991px) {
  .events-section__container {
    padding: 0 20px;
  }
  .events-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .events-section__intro {
    margin-bottom: 36px;
  }
  .events-card__media {
    aspect-ratio: 1.1;
  }
}
@media (max-width: 767px) {
  .events-section {
    padding: 72px 0 80px;
  }
  .events-section__container {
    padding: 0 16px;
  }
  .events-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .events-section__description {
    font-size: 13px;
  }
  .events-card__title {
    font-size: 28px;
  }
  .events-card__content {
    padding: 18px 16px 16px;
  }
}
.services-section {
  background: #121212;
  color: #f4efe8;
  padding: 96px 0;
}

.services-section__intro {
  margin: 0 auto 64px;
  text-align: center;
}

.services-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-section__title {
  margin: 0;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 0.98;
}

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

.service-card {
  min-height: 154px;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 28px;
  margin-bottom: 24px;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  margin: 0 0 12px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card__description {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .services-section__container {
    padding: 0 20px;
  }
  .services-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .service-card:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .services-section {
    padding: 72px 0 80px;
  }
  .services-section__container {
    padding: 0 16px;
  }
  .services-section__intro {
    margin-bottom: 32px;
  }
  .services-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .services-section__grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(2n),
  .service-card:nth-child(3n) {
    min-height: auto;
    border-right: 0;
  }
  .service-card {
    padding: 26px 18px 22px;
  }
}
.application-section {
  background: #050505;
  color: #f4efe8;
  padding: 96px 0 104px;
}

.application-section__container {
  max-width: 768px;
}

.application-section__intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.application-section__tagline {
  margin: 0 0 16px;
  color: #dda22c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.application-section__title {
  margin: 0 0 16px;
  color: #f5efe6;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 1;
}

.application-section__description {
  color: rgba(243, 239, 232, 0.62);
  font-size: 16px;
  line-height: 24px;
}
.application-section__description p {
  margin: 0;
}

.application-section__form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.application-section__placeholder {
  padding: 28px;
  border: 1px dashed rgba(221, 162, 44, 0.35);
  color: rgba(243, 239, 232, 0.58);
  text-align: center;
}

.application-section .wpcf7 {
  width: 100%;
}
.application-section .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.application-section .wpcf7 form p {
  margin: 0;
}
.application-section .wpcf7 form .form-row {
  display: grid;
  gap: 16px;
}
.application-section .wpcf7 form .form-row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.application-section .wpcf7 form .form-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.application-section .wpcf7 form .form-field {
  width: 100%;
}
.application-section .wpcf7 input:not([type=submit]),
.application-section .wpcf7 textarea {
  width: 100%;
  background: transparent;
  color: #f5efe6;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 12px 0 11px;
  font-size: 13px;
  line-height: 1.4;
  outline: none;
  box-shadow: none;
}
.application-section .wpcf7 textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 14px;
}
.application-section .wpcf7 input::-moz-placeholder, .application-section .wpcf7 textarea::-moz-placeholder {
  color: rgba(243, 239, 232, 0.34);
}
.application-section .wpcf7 input::placeholder,
.application-section .wpcf7 textarea::placeholder {
  color: rgba(243, 239, 232, 0.34);
}
.application-section .wpcf7 input:focus,
.application-section .wpcf7 textarea:focus {
  border-bottom-color: rgba(221, 162, 44, 0.6);
}
.application-section .wpcf7 .wpcf7-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  background: linear-gradient(105.08deg, #AE7B13 0%, #DDA22C 50%, #DBB870 100%);
  color: #111111;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: filter 0.2s ease;
}
.application-section .wpcf7 .wpcf7-submit:hover {
  filter: brightness(1.06);
}
.application-section .wpcf7 .wpcf7-spinner {
  display: none;
}
.application-section .wpcf7 form .wpcf7-not-valid-tip,
.application-section .wpcf7 form .wpcf7-response-output,
.application-section .wpcf7 .wpcf7-not-valid-tip,
.application-section .wpcf7 .wpcf7-response-output {
  display: block;
  margin: 8px 0 0;
  color: #d94b4b !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.4;
  border: 0;
  padding: 0;
  text-transform: none;
}
.application-section .wpcf7 form .wpcf7-not-valid {
  border-bottom-color: #d94b4b !important;
}

@media (max-width: 767px) {
  .application-section {
    padding: 72px 0 80px;
  }
  .application-section__container {
    padding: 0 16px;
  }
  .application-section__title {
    font-size: clamp(34px, 10vw, 44px);
  }
  .application-section .wpcf7 form .form-row--two,
  .application-section .wpcf7 form .form-row--three {
    grid-template-columns: 1fr;
  }
}
