* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f3eadc;
  color: #21180f;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

img,
video {
  display: block;
  width: 100%;
}

.background-video {
  background: #21180f;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 42px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(33, 24, 15, 0.96);
}

.brand {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff7ea;
  max-width: 42%;
  line-height: 0.95;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

.partner-logo {
  width: clamp(110px, 11vw, 190px);
  height: auto;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.96;
}

.menu-toggle {
  width: 58px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff7ea;
  width: 100%;
}

/* ================= SIDE MENU ================= */

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(460px, 100%);
  height: 100vh;
  background: #f3eadc;
  color: #21180f;
  z-index: 90;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: 0.45s ease;
}

.side-menu.active {
  right: 0;
}

.side-menu a {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.95;
  text-transform: uppercase;
}

.side-menu .book-link {
  margin-top: 30px;
  font-size: 1rem;
  letter-spacing: 0;
  border: 1px solid #21180f;
  width: fit-content;
  padding: 14px 22px;
  border-radius: 999px;
  background: #21180f;
  color: #f3eadc;
}

/* ================= HERO ================= */

.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #21180f;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-filter {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle, rgba(33, 24, 15, 0.08), rgba(33, 24, 15, 0.52)),
    linear-gradient(to bottom, rgba(33, 24, 15, 0.16), rgba(33, 24, 15, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px;
  color: #fff7ea;
}

.topline,
.hero-bottom {
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.28em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 13.5rem);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.09em;
  margin: 38px auto;
  text-transform: uppercase;
  max-width: 1450px;
}

/* ================= GLOBAL SECTIONS ================= */

.section {
  padding: 120px 42px;
}

.section-title {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 60px;
}

.section-title span {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 14px;
}

.section-title h2 {
  font-size: clamp(4rem, 14vw, 15rem);
  line-height: 0.75;
  font-weight: 950;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

/* ================= ABOUT ================= */

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  background: #f3eadc;
  align-items: start;
}

.about .section-title {
  position: sticky;
  top: 120px;
}

.about-text {
  padding-top: 30px;
  max-width: 720px;
}

.about-text p {
  font-size: clamp(1.25rem, 2vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.045em;
  max-width: 720px;
  margin-bottom: 34px;
}

.about-text p:first-child {
  font-size: clamp(1.45rem, 2.4vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

/* ================= IMAGE STRIP ================= */

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 70vh;
  min-height: 520px;
}

.image-strip img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition: 0.35s ease;
}

.image-strip img:hover {
  filter: saturate(1.08) contrast(1.05);
}

/* ================= SERVICES ================= */

.place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.place-image img {
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.place-content {
  padding: 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #6f4e37;
  color: #fff7ea;
}

.small-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 800;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: #d8b56d;
}

.place-content h2 {
  font-size: clamp(3rem, 6vw, 6.1rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
  margin-bottom: 34px;
}

.place-content > p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 40px;
}

.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}

.info p {
  line-height: 1.6;
}

.info strong {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #d8b56d;
}

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

.btn {
  border: 1px solid #fff7ea;
  color: #fff7ea;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn:hover {
  background: #fff7ea;
  color: #6f4e37;
}

.btn.filled {
  background: #fff7ea;
  color: #6f4e37;
}

.btn.filled:hover {
  background: transparent;
  color: #fff7ea;
}

/* ================= EXPERIENCE ================= */

.awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #21180f;
  color: #fff7ea;
  border-top: 1px solid rgba(255, 247, 234, 0.22);
  border-bottom: 1px solid rgba(255, 247, 234, 0.22);
}

.award {
  padding: 70px 42px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 247, 234, 0.22);
}

.award:last-child {
  border-right: none;
}

.award span {
  opacity: 0.5;
}

.award h3 {
  font-size: clamp(2rem, 3.6vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

/* ================= FULL VIDEO ================= */

.full-video {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px 42px;
  background: #21180f;
}

.full-video video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(33, 24, 15, 0.84), transparent);
}

.full-video div {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  color: #fff7ea;
}

.full-video p {
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #d8b56d;
}

.full-video h2 {
  font-size: clamp(3.5rem, 9vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

/* ================= OFFERS ================= */

.press {
  padding: 120px 42px;
  background: #d8b56d;
  color: #21180f;
}

.press h2 {
  font-size: clamp(4rem, 14vw, 15rem);
  line-height: 0.75;
  letter-spacing: -0.08em;
  margin-bottom: 80px;
  text-transform: uppercase;
}

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

.press article {
  border-top: 1px solid #21180f;
  padding-top: 24px;
}

.press article span {
  font-size: 12px;
  opacity: 0.55;
}

.press article h3 {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 24px 0;
}

.press article p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ================= GALLERY ================= */

.gallery {
  background: #f3eadc;
}

.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}

.gallery-grid img {
  margin-bottom: 18px;
  break-inside: avoid;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: 0.35s ease;
}

.gallery-grid img:nth-child(3n) {
  height: 520px;
}

.gallery-grid img:nth-child(2n) {
  height: 360px;
}

.gallery-grid img:nth-child(5n) {
  height: 640px;
}

.gallery-grid img:hover {
  filter: saturate(1.08) contrast(1.05);
}

/* ================= CONTACT ================= */

.contact {
  min-height: 80vh;
  padding: 120px 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  background: #21180f;
  color: #fff7ea;
}

.contact h2 {
  font-size: clamp(3.8rem, 11vw, 11.5rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  max-width: 1100px;
}

.contact p {
  margin-top: 40px;
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 680px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-links a {
  border: 1px solid rgba(255, 247, 234, 0.45);
  padding: 24px;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.contact-links a:hover {
  background: #fff7ea;
  color: #21180f;
}

/* ================= FOOTER ================= */

footer {
  padding: 32px 42px;
  border-top: 1px solid rgba(255, 247, 234, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #21180f;
  color: #fff7ea;
}

/* ================= RESPONSIVE TABLET ================= */

@media (max-width: 900px) {
  .header {
    padding: 0 24px;
  }

  .brand {
    max-width: 38%;
  }

  .header-right {
    gap: 22px;
  }

  .partner-logo {
    width: 130px;
  }

  .about,
  .place,
  .contact {
    grid-template-columns: 1fr;
  }

  .about .section-title {
    position: static;
  }

  .about-text {
    max-width: 100%;
    padding-top: 0;
  }

  .about-text p,
  .about-text p:first-child {
    max-width: 100%;
    font-size: clamp(1.65rem, 5vw, 2.5rem);
    line-height: 1.08;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 8rem);
    letter-spacing: -0.08em;
    line-height: 0.88;
  }

  .image-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .image-strip img {
    height: 420px;
  }

  .awards,
  .press-list {
    grid-template-columns: 1fr;
  }

  .award {
    min-height: 260px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 247, 234, 0.22);
  }

  .award:last-child {
    border-bottom: none;
  }

  .place-image img {
    min-height: 520px;
  }

  .section,
  .press,
  .contact {
    padding: 90px 24px;
  }

  .full-video {
    padding: 40px 24px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 10px;
  }
}

/* ================= RESPONSIVE MOBILE ================= */

@media (max-width: 600px) {
  .header {
    height: 78px;
    padding: 0 20px;
  }

  .brand {
    font-size: 15px;
    max-width: 38%;
    line-height: 1;
  }

  .header-right {
    gap: 14px;
  }

  .partner-logo {
    width: 92px;
  }

  .menu-toggle {
    width: 42px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.7rem);
    letter-spacing: -0.08em;
    line-height: 0.9;
    margin: 30px auto;
  }

  .topline,
  .hero-bottom {
    font-size: 10px;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }

  .section-title {
    gap: 14px;
  }

  .section-title h2 {
    font-size: clamp(3.4rem, 18vw, 6rem);
  }

  .about-text p,
  .about-text p:first-child {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .info {
    grid-template-columns: 1fr;
  }

  .side-menu {
    padding: 110px 28px;
  }

  .side-menu a {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .place-content {
    padding: 70px 24px;
  }

  .place-content h2 {
    font-size: clamp(3rem, 14vw, 4rem);
    line-height: 0.88;
  }

  .award {
    padding: 58px 24px;
  }

  .award h3 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .full-video h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.88;
  }

  .press h2,
  .contact h2 {
    font-size: clamp(3.6rem, 16vw, 5.8rem);
    line-height: 0.82;
  }

  .press article h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .gallery-grid {
    columns: 1;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2n),
  .gallery-grid img:nth-child(3n),
  .gallery-grid img:nth-child(5n) {
    height: auto;
  }
}