:root {
  --bg: #050806;
  --panel: #073d25;
  --panel-strong: #0d5a35;
  --green: #32d16d;
  --green-deep: #159947;
  --mint: #b8f8ca;
  --gold: #f2c14e;
  --ink: #f6fff8;
  --muted: #b7c8bd;
  --line: rgba(184, 248, 202, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 22px max(24px, calc((100vw - 1480px) / 2));
  background: rgba(5, 8, 6, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  min-width: 190px;
}

.city-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.city-nav a,
.menu-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  text-transform: uppercase;
}

.city-nav a.active,
.city-nav a:hover,
.menu-button:hover {
  background: var(--green);
  color: #031006;
}

.menu-button {
  display: none;
  background: transparent;
  cursor: pointer;
}

main {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  margin: 34px 0 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #06140d;
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.2), rgba(4, 22, 12, 0.9)),
    linear-gradient(180deg, rgba(42, 201, 100, 0.16), rgba(0, 0, 0, 0.92));
}

.city-shape {
  position: absolute;
  bottom: 88px;
  width: 18%;
  background: linear-gradient(180deg, #1b5e37, #06140d);
  border: 1px solid rgba(184, 248, 202, 0.14);
}

.shape-one {
  left: 8%;
  height: 46%;
}

.shape-two {
  left: 27%;
  height: 62%;
}

.shape-three {
  left: 47%;
  height: 38%;
}

.skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background:
    repeating-linear-gradient(90deg, #0f2d1f 0 52px, #153f2a 52px 88px, #08160f 88px 124px),
    linear-gradient(180deg, transparent, #030604);
  opacity: 0.88;
}

.hero-copy {
  position: relative;
  align-self: end;
  max-width: 820px;
  padding: clamp(28px, 6vw, 76px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #e4f6e9;
  font-size: 19px;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  padding: 12px 22px;
}

.primary-action {
  background: var(--green);
  color: #031006;
}

.secondary-action {
  border: 1px solid var(--line);
}

.content-band,
.profiles-section,
.booking-section,
.rates-band,
.faq-section,
.tags-section,
.locations-section {
  margin: 36px 0;
  padding: clamp(24px, 4vw, 44px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 980px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.feature-grid,
.profile-grid,
.steps,
.location-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.profile-card,
.steps article,
.location-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.feature-grid p,
.profile-card p,
.steps p,
.split-band p,
footer p {
  color: var(--muted);
}

.profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card {
  min-height: 250px;
}

.profile-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: #031006;
  font-size: 26px;
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.meta-row span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(50, 209, 109, 0.16);
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 10px;
}

.split-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-left: 4px solid var(--green);
  background: rgba(50, 209, 109, 0.1);
  padding: 14px 16px;
  font-weight: 800;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #031006;
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
}

th,
td {
  border: 1px solid rgba(184, 248, 202, 0.24);
  padding: 16px;
  text-align: left;
}

th {
  background: var(--green);
  color: #031006;
  font-size: 18px;
}

td {
  color: #e9fff0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  padding: 18px 20px;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card {
  transition: transform 160ms ease, border-color 160ms ease;
}

.location-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.location-card p {
  margin-bottom: 0;
  color: var(--muted);
}

footer {
  width: 100%;
}

.page-title {
  width: min(100%, 1480px);
  margin: 40px 0 26px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
}

.image-strip {
  width: 100%;
  height: clamp(150px, 18vw, 260px);
  margin: 28px 0 58px;
  border: 18px solid var(--panel);
  background-position: center;
  background-size: cover;
}

.image-strip-one {
  background-image: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.72)), url("assets/models.jpg");
}

.image-strip-two {
  height: clamp(240px, 28vw, 420px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76)), url("assets/models_2.jpg");
}

.image-strip-three {
  background-image: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.78)), url("assets/model_1.jpg");
}

.image-strip-four {
  height: clamp(220px, 24vw, 360px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.78)), url("assets/d.jpg");
}

.profile-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 0 54px;
}

.listing-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(184, 248, 202, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.listing-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #06140d;
}

.listing-body {
  padding: 18px;
}

.listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.listing-top strong {
  color: #ff58cf;
}

.listing-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.listing-card p {
  margin: 0;
  color: #edfdf1;
  font-size: 16px;
  font-weight: 700;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.listing-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(50, 209, 109, 0.18);
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 10px;
}

.rating {
  color: #fff;
  letter-spacing: 5px;
  background: #18a854;
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 14px;
}

.content-panel {
  margin: 36px 0;
  padding: clamp(22px, 2.6vw, 36px);
  background: var(--panel);
  border: 1px solid rgba(184, 248, 202, 0.16);
}

.content-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 2.6vw, 42px);
}

.content-panel p {
  color: #edfdf1;
  font-size: 18px;
  font-weight: 700;
}

.content-panel strong {
  color: #ffffff;
}

.rates-panel h2:not(:first-child) {
  margin-top: 34px;
}

.tags-section {
  background: transparent;
  border: 0;
  padding: 0;
}

.tags-section h2 {
  color: #2b3731;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  padding-bottom: 8px;
}

.tag-cloud span:nth-child(3n + 1) {
  background: #9bd6a8;
  color: #07120c;
}

.tag-cloud span:nth-child(3n + 2) {
  background: #9ed4dd;
  color: #07120c;
}

.tag-cloud span:nth-child(3n + 3) {
  background: #9c8dbd;
  color: #07120c;
}

.locations-section {
  background: #073d70;
  padding: clamp(28px, 4vw, 42px);
  margin-top: 72px;
}

.locations-section h2 {
  margin-bottom: 26px;
  font-size: 22px;
}

.location-card {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
  border: 0;
  border-radius: 15px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  padding: 8px 17px;
  transition: transform 160ms ease, filter 160ms ease;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 15px;
}

.location-card.active {
  outline: 3px solid rgba(255, 255, 255, 0.5);
}

.location-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.location-card:nth-child(4n + 1) {
  background: #ff5536;
}

.location-card:nth-child(4n + 2) {
  background: #2eef58;
}

.location-card:nth-child(4n + 3) {
  background: #3457f0;
}

.location-card:nth-child(4n + 4) {
  background: #f3329d;
}

.site-footer {
  margin: 22px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: calc(100% - 32px);
  margin: 0 auto 22px;
  padding: 36px 28px;
  background: #073d70;
}

.footer-nav a {
  color: #ffffff;
  background: rgba(208, 178, 111, 0.9);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  padding: 1px 5px;
  text-decoration: none;
}

.footer-nav a + a {
  border-left: 2px solid #ffffff;
}

.admin-mail,
.copyright {
  width: calc(100% - 32px);
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.admin-mail a,
.copyright a {
  color: #ffd200;
  text-decoration: underline;
}

.plain-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px max(24px, calc((100vw - 1480px) / 2));
  background: #000000;
  border-bottom: 1px solid rgba(214, 176, 42, 0.3);
}

.plain-brand {
  color: #d6b02a;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 900;
  white-space: nowrap;
}

.plain-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
}

.plain-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.info-hero {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: 70px 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.78)),
    url("assets/models_2.jpg") center / cover;
  text-align: center;
}

.info-hero h1 {
  max-width: 1100px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.05;
}

.info-hero span {
  color: #d6b02a;
}

.info-main {
  width: min(1180px, calc(100% - 40px));
  margin: 48px auto;
}

.info-panel {
  margin-bottom: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid rgba(184, 248, 202, 0.16);
}

.info-panel h2 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
}

.info-panel p,
.info-panel li {
  color: #edfdf1;
  font-size: 18px;
  font-weight: 700;
}

.info-panel a {
  color: #ffd200;
  text-decoration: underline;
}

.info-panel ul {
  margin: 0;
  padding-left: 22px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .city-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
  }

  .city-nav.open {
    display: flex;
  }

  .feature-grid,
  .profile-grid,
  .profile-row,
  .steps,
  .split-band {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
  }

  .plain-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .plain-nav {
    justify-content: flex-start;
    gap: 16px;
    margin-left: 0;
  }

  .plain-nav a {
    font-size: 16px;
  }
}

@media (max-width: 620px) {
  main,
  footer {
    width: min(100% - 24px, 1480px);
  }

  .site-header {
    padding: 14px 12px;
  }

  .hero {
    min-height: 520px;
    margin-top: 18px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .image-strip {
    border-width: 10px;
    margin-bottom: 36px;
  }

  .content-panel p {
    font-size: 16px;
  }

  .location-card {
    font-size: 16px;
  }

  .footer-nav,
  .admin-mail,
  .copyright {
    width: min(100% - 24px, 1480px);
  }

  .rating {
    letter-spacing: 2px;
    padding: 7px 8px;
  }
}
